2022-09-23 16:18:48 +02:00
const SOUND _ENABLED _KEY = "soundEnabled"
const SAVE _TO _DISK _KEY = "saveToDisk"
const USE _CPU _KEY = "useCPU"
const USE _FULL _PRECISION _KEY = "useFullPrecision"
const USE _TURBO _MODE _KEY = "useTurboMode"
const DISK _PATH _KEY = "diskPath"
const ADVANCED _PANEL _OPEN _KEY = "advancedPanelOpen"
const MODIFIERS _PANEL _OPEN _KEY = "modifiersPanelOpen"
const USE _FACE _CORRECTION _KEY = "useFaceCorrection"
const USE _UPSCALING _KEY = "useUpscaling"
const SHOW _ONLY _FILTERED _IMAGE _KEY = "showOnlyFilteredImage"
const STREAM _IMAGE _PROGRESS _KEY = "streamImageProgress"
const HEALTH _PING _INTERVAL = 5 // seconds
const MAX _INIT _IMAGE _DIMENSION = 768
const IMAGE _REGEX = new RegExp ( 'data:image/[A-Za-z]+;base64' )
let sessionId = new Date ( ) . getTime ( )
let promptField = document . querySelector ( '#prompt' )
2022-09-27 15:39:28 +02:00
let negativePromptField = document . querySelector ( '#negative_prompt' )
2022-09-23 16:18:48 +02:00
let numOutputsTotalField = document . querySelector ( '#num_outputs_total' )
let numOutputsParallelField = document . querySelector ( '#num_outputs_parallel' )
let numInferenceStepsField = document . querySelector ( '#num_inference_steps' )
let guidanceScaleSlider = document . querySelector ( '#guidance_scale_slider' )
let guidanceScaleField = document . querySelector ( '#guidance_scale' )
let randomSeedField = document . querySelector ( "#random_seed" )
let seedField = document . querySelector ( '#seed' )
let widthField = document . querySelector ( '#width' )
let heightField = document . querySelector ( '#height' )
let initImageSelector = document . querySelector ( "#init_image" )
let initImagePreview = document . querySelector ( "#init_image_preview" )
let maskImageSelector = document . querySelector ( "#mask" )
let maskImagePreview = document . querySelector ( "#mask_preview" )
let turboField = document . querySelector ( '#turbo' )
let useCPUField = document . querySelector ( '#use_cpu' )
let useFullPrecisionField = document . querySelector ( '#use_full_precision' )
let saveToDiskField = document . querySelector ( '#save_to_disk' )
let diskPathField = document . querySelector ( '#diskPath' )
// let allowNSFWField = document.querySelector("#allow_nsfw")
let useBetaChannelField = document . querySelector ( "#use_beta_channel" )
let promptStrengthSlider = document . querySelector ( '#prompt_strength_slider' )
let promptStrengthField = document . querySelector ( '#prompt_strength' )
let samplerField = document . querySelector ( '#sampler' )
let samplerSelectionContainer = document . querySelector ( "#samplerSelection" )
let useFaceCorrectionField = document . querySelector ( "#use_face_correction" )
let useUpscalingField = document . querySelector ( "#use_upscale" )
let upscaleModelField = document . querySelector ( "#upscale_model" )
let showOnlyFilteredImageField = document . querySelector ( "#show_only_filtered_image" )
let updateBranchLabel = document . querySelector ( "#updateBranchLabel" )
let streamImageProgressField = document . querySelector ( "#stream_image_progress" )
let makeImageBtn = document . querySelector ( '#makeImage' )
let stopImageBtn = document . querySelector ( '#stopImage' )
let imagesContainer = document . querySelector ( '#current-images' )
let initImagePreviewContainer = document . querySelector ( '#init_image_preview_container' )
let initImageClearBtn = document . querySelector ( '.init_image_clear' )
let promptStrengthContainer = document . querySelector ( '#prompt_strength_container' )
2022-09-27 14:39:07 +02:00
let initialText = document . querySelector ( "#initial-text" )
let previewTools = document . querySelector ( "#preview-tools" )
let clearAllPreviewsBtn = document . querySelector ( "#clear-all-previews" )
2022-09-23 16:18:48 +02:00
// let maskSetting = document.querySelector('#editor-inputs-mask_setting')
// let maskImagePreviewContainer = document.querySelector('#mask_preview_container')
// let maskImageClearBtn = document.querySelector('#mask_clear')
let maskSetting = document . querySelector ( '#enable_mask' )
let editorModifierEntries = document . querySelector ( '#editor-modifiers-entries' )
let editorModifierTagsList = document . querySelector ( '#editor-inputs-tags-list' )
let editorTagsContainer = document . querySelector ( '#editor-inputs-tags-container' )
2022-09-27 14:39:07 +02:00
let imagePreview = document . querySelector ( "#preview" )
2022-09-23 16:18:48 +02:00
let previewImageField = document . querySelector ( '#preview-image' )
2022-09-29 09:38:42 +02:00
previewImageField . onchange = ( ) => changePreviewImages ( previewImageField . value )
2022-09-23 16:18:48 +02:00
let modifierCardSizeSlider = document . querySelector ( '#modifier-card-size-slider' )
2022-09-29 09:38:42 +02:00
modifierCardSizeSlider . onchange = ( ) => resizeModifierCards ( modifierCardSizeSlider . value )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
// let previewPrompt = document.querySelector('#preview-prompt')
2022-09-23 16:18:48 +02:00
let showConfigToggle = document . querySelector ( '#configToggleBtn' )
// let configBox = document.querySelector('#config')
2022-09-27 14:39:07 +02:00
// let outputMsg = document.querySelector('#outputMsg')
// let progressBar = document.querySelector("#progressBar")
2022-09-23 16:18:48 +02:00
let soundToggle = document . querySelector ( '#sound_toggle' )
let serverStatusColor = document . querySelector ( '#server-status-color' )
let serverStatusMsg = document . querySelector ( '#server-status-msg' )
let advancedPanelHandle = document . querySelector ( "#editor-settings .collapsible" )
let modifiersPanelHandle = document . querySelector ( "#editor-modifiers .collapsible" )
let inpaintingEditorContainer = document . querySelector ( '#inpaintingEditor' )
let inpaintingEditor = new DrawingBoard . Board ( 'inpaintingEditor' , {
color : "#ffffff" ,
background : false ,
size : 30 ,
webStorage : false ,
controls : [ { 'DrawingMode' : { 'filler' : false } } , 'Size' , 'Navigation' ]
} )
let inpaintingEditorCanvasBackground = document . querySelector ( '.drawing-board-canvas-wrapper' )
2022-09-24 14:01:36 +02:00
document . querySelector ( '.drawing-board-control-navigation-back' ) . innerHTML = '<i class="fa-solid fa-rotate-left"></i>'
document . querySelector ( '.drawing-board-control-navigation-forward' ) . innerHTML = '<i class="fa-solid fa-rotate-right"></i>'
2022-09-23 16:18:48 +02:00
let maskResetButton = document . querySelector ( '.drawing-board-control-navigation-reset' )
maskResetButton . innerHTML = 'Clear'
maskResetButton . style . fontWeight = 'normal'
maskResetButton . style . fontSize = '10pt'
let serverStatus = 'offline'
let activeTags = [ ]
let modifiers = [ ]
let lastPromptUsed = ''
2022-09-28 09:47:45 +02:00
let bellPending = false
2022-09-27 14:39:07 +02:00
let taskQueue = [ ]
2022-09-27 16:35:22 +02:00
let currentTask = null
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const modifierThumbnailPath = 'media/modifier-thumbnails'
const activeCardClass = 'modifier-card-active'
2022-09-23 16:18:48 +02:00
function getLocalStorageItem ( key , fallback ) {
let item = localStorage . getItem ( key )
if ( item === null ) {
return fallback
}
return item
}
function getLocalStorageBoolItem ( key , fallback ) {
let item = localStorage . getItem ( key )
if ( item === null ) {
return fallback
}
return ( item === 'true' ? true : false )
}
function handleBoolSettingChange ( key ) {
return function ( e ) {
localStorage . setItem ( key , e . target . checked . toString ( ) )
}
}
function handleStringSettingChange ( key ) {
return function ( e ) {
localStorage . setItem ( key , e . target . value . toString ( ) )
}
}
function isSoundEnabled ( ) {
return getLocalStorageBoolItem ( SOUND _ENABLED _KEY , true )
}
function isFaceCorrectionEnabled ( ) {
return getLocalStorageBoolItem ( USE _FACE _CORRECTION _KEY , false )
}
function isUpscalingEnabled ( ) {
return getLocalStorageBoolItem ( USE _UPSCALING _KEY , false )
}
function isShowOnlyFilteredImageEnabled ( ) {
return getLocalStorageBoolItem ( SHOW _ONLY _FILTERED _IMAGE _KEY , true )
}
function isSaveToDiskEnabled ( ) {
return getLocalStorageBoolItem ( SAVE _TO _DISK _KEY , false )
}
function isUseCPUEnabled ( ) {
return getLocalStorageBoolItem ( USE _CPU _KEY , false )
}
function isUseFullPrecisionEnabled ( ) {
return getLocalStorageBoolItem ( USE _FULL _PRECISION _KEY , false )
}
function isUseTurboModeEnabled ( ) {
return getLocalStorageBoolItem ( USE _TURBO _MODE _KEY , true )
}
function getSavedDiskPath ( ) {
return getLocalStorageItem ( DISK _PATH _KEY , '' )
}
function isAdvancedPanelOpenEnabled ( ) {
return getLocalStorageBoolItem ( ADVANCED _PANEL _OPEN _KEY , false )
}
function isModifiersPanelOpenEnabled ( ) {
return getLocalStorageBoolItem ( MODIFIERS _PANEL _OPEN _KEY , false )
}
function isStreamImageProgressEnabled ( ) {
return getLocalStorageBoolItem ( STREAM _IMAGE _PROGRESS _KEY , false )
}
function setStatus ( statusType , msg , msgType ) {
if ( statusType !== 'server' ) {
2022-09-29 09:38:42 +02:00
return
2022-09-23 16:18:48 +02:00
}
if ( msgType == 'error' ) {
// msg = '<span style="color: red">' + msg + '<span>'
serverStatusColor . style . color = 'red'
serverStatusMsg . style . color = 'red'
serverStatusMsg . innerText = 'Stable Diffusion has stopped'
} else if ( msgType == 'success' ) {
// msg = '<span style="color: green">' + msg + '<span>'
serverStatusColor . style . color = 'green'
serverStatusMsg . style . color = 'green'
serverStatusMsg . innerText = 'Stable Diffusion is ready'
serverStatus = 'online'
}
}
2022-09-27 14:39:07 +02:00
function logMsg ( msg , level , outputMsg ) {
2022-09-23 16:18:48 +02:00
if ( level === 'error' ) {
outputMsg . innerHTML = '<span style="color: red">Error: ' + msg + '</span>'
} else if ( level === 'warn' ) {
outputMsg . innerHTML = '<span style="color: orange">Warning: ' + msg + '</span>'
} else {
outputMsg . innerText = msg
}
console . log ( level , msg )
}
2022-09-27 14:39:07 +02:00
function logError ( msg , res , outputMsg ) {
logMsg ( msg , 'error' , outputMsg )
2022-09-23 16:18:48 +02:00
console . log ( 'request error' , res )
setStatus ( 'request' , 'error' , 'error' )
}
function playSound ( ) {
const audio = new Audio ( '/media/ding.mp3' )
audio . volume = 0.2
audio . play ( )
}
async function healthCheck ( ) {
try {
let res = await fetch ( '/ping' )
res = await res . json ( )
if ( res [ 0 ] == 'OK' ) {
setStatus ( 'server' , 'online' , 'success' )
} else {
setStatus ( 'server' , 'offline' , 'error' )
}
} catch ( e ) {
setStatus ( 'server' , 'offline' , 'error' )
}
}
2022-09-29 09:31:18 +02:00
function showImages ( req , res , outputContainer , livePreview ) {
2022-09-29 09:38:42 +02:00
let imageItemElements = outputContainer . querySelectorAll ( '.imgItem' )
2022-09-29 09:31:18 +02:00
2022-09-27 16:23:19 +02:00
res . output . forEach ( ( result , index ) => {
2022-09-29 09:38:42 +02:00
if ( typeof res != 'object' ) return
2022-09-25 01:55:11 +02:00
2022-09-27 23:05:34 +02:00
const imageData = result ? . data || result ? . path + '?t=' + new Date ( ) . getTime ( ) ,
imageSeed = req . seed ,
2022-09-25 01:55:11 +02:00
imageWidth = req . width ,
2022-09-29 09:31:18 +02:00
imageHeight = req . height ;
2022-09-27 16:23:19 +02:00
2022-09-27 23:05:34 +02:00
if ( ! imageData . includes ( '/' ) ) {
2022-09-27 16:23:19 +02:00
// res contained no data for the image, stop execution
2022-09-25 01:55:11 +02:00
2022-09-29 09:38:42 +02:00
setStatus ( 'request' , 'invalid image' , 'error' )
return
2022-09-25 01:55:11 +02:00
}
2022-09-29 09:31:18 +02:00
let imageItemElem = ( index < imageItemElements . length ? imageItemElements [ index ] : null )
2022-09-27 16:23:19 +02:00
if ( ! imageItemElem ) {
2022-09-29 09:38:42 +02:00
imageItemElem = document . createElement ( 'div' )
imageItemElem . className = 'imgItem'
2022-09-27 16:23:19 +02:00
imageItemElem . innerHTML = `
< div class = "imgContainer" >
< img / >
< div class = "imgItemInfo" >
< span class = "imgSeedLabel" > < / s p a n >
< button class = "imgUseBtn" > Use as Input < / b u t t o n >
< button class = "imgSaveBtn" > Download < / b u t t o n >
< / d i v >
2022-09-25 01:55:11 +02:00
< / d i v >
2022-09-29 09:38:42 +02:00
`
2022-09-27 16:23:19 +02:00
2022-09-27 23:05:34 +02:00
const useAsInputBtn = imageItemElem . querySelector ( '.imgUseBtn' ) ,
saveImageBtn = imageItemElem . querySelector ( '.imgSaveBtn' ) ;
2022-09-29 09:38:42 +02:00
useAsInputBtn . addEventListener ( 'click' , getUseAsInputHandler ( imageItemElem ) )
saveImageBtn . addEventListener ( 'click' , getSaveImageHandler ( imageItemElem ) )
2022-09-29 09:31:18 +02:00
2022-09-29 09:38:42 +02:00
outputContainer . appendChild ( imageItemElem )
2022-09-27 16:23:19 +02:00
}
2022-09-27 23:05:34 +02:00
const imageElem = imageItemElem . querySelector ( 'img' ) ,
imageSeedLabel = imageItemElem . querySelector ( '.imgSeedLabel' ) ;
2022-09-27 16:23:19 +02:00
2022-09-29 09:38:42 +02:00
imageElem . src = imageData
imageElem . width = parseInt ( imageWidth )
imageElem . height = parseInt ( imageHeight )
2022-09-29 09:31:18 +02:00
imageElem . setAttribute ( 'data-seed' , imageSeed )
2022-09-23 16:18:48 +02:00
2022-09-29 09:31:18 +02:00
const imageInfo = imageItemElem . querySelector ( '.imgItemInfo' )
imageInfo . style . visibility = ( livePreview ? 'hidden' : 'visible' )
2022-09-29 09:38:42 +02:00
imageSeedLabel . innerText = 'Seed: ' + imageSeed
} )
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:31:18 +02:00
function getUseAsInputHandler ( imageItemElem ) {
return function ( ) {
const imageElem = imageItemElem . querySelector ( 'img' )
2022-09-29 09:38:42 +02:00
const imgData = imageElem . src
2022-09-29 09:31:18 +02:00
const imageSeed = imageElem . getAttribute ( 'data-seed' )
2022-09-29 09:38:42 +02:00
initImageSelector . value = null
initImagePreview . src = imgData
2022-09-29 09:31:18 +02:00
2022-09-29 09:38:42 +02:00
initImagePreviewContainer . style . display = 'block'
inpaintingEditorContainer . style . display = 'none'
promptStrengthContainer . style . display = 'block'
maskSetting . checked = false
2022-09-29 09:42:01 +02:00
samplerSelectionContainer . style . display = 'none'
2022-09-29 09:31:18 +02:00
2022-09-29 09:38:42 +02:00
// maskSetting.style.display = 'block'
2022-09-29 09:31:18 +02:00
2022-09-29 09:38:42 +02:00
randomSeedField . checked = false
seedField . value = imageSeed
seedField . disabled = false
2022-09-29 09:31:18 +02:00
}
}
function getSaveImageHandler ( imageItemElem ) {
return function ( ) {
const imageElem = imageItemElem . querySelector ( 'img' )
2022-09-29 09:38:42 +02:00
const imgData = imageElem . src
2022-09-29 09:31:18 +02:00
const imageSeed = imageElem . getAttribute ( 'data-seed' )
2022-09-29 09:38:42 +02:00
const imgDownload = document . createElement ( 'a' )
imgDownload . download = createFileName ( imageSeed )
imgDownload . href = imgData
imgDownload . click ( )
2022-09-29 09:31:18 +02:00
}
}
2022-09-23 16:18:48 +02:00
// makes a single image. don't call this directly, use makeImage() instead
2022-09-27 14:39:07 +02:00
async function doMakeImage ( task ) {
if ( task . stopped ) {
2022-09-23 16:18:48 +02:00
return
}
2022-09-27 14:39:07 +02:00
const reqBody = task . reqBody
const batchCount = task . batchCount
const outputContainer = task . outputContainer
const outputMsg = task [ 'outputMsg' ]
const previewPrompt = task [ 'previewPrompt' ]
const progressBar = task [ 'progressBar' ]
2022-09-23 16:18:48 +02:00
let res = ''
let seed = reqBody [ 'seed' ]
let numOutputs = parseInt ( reqBody [ 'num_outputs' ] )
try {
res = await fetch ( '/image' , {
method : 'POST' ,
headers : {
'Content-Type' : 'application/json'
} ,
body : JSON . stringify ( reqBody )
} )
let reader = res . body . getReader ( )
let textDecoder = new TextDecoder ( )
let finalJSON = ''
let prevTime = - 1
while ( true ) {
try {
let t = new Date ( ) . getTime ( )
const { value , done } = await reader . read ( )
if ( done ) {
break
}
let timeTaken = ( prevTime === - 1 ? - 1 : t - prevTime )
let jsonStr = textDecoder . decode ( value )
try {
let stepUpdate = JSON . parse ( jsonStr )
if ( stepUpdate . step === undefined ) {
finalJSON += jsonStr
} else {
let batchSize = stepUpdate . total _steps
2022-09-27 14:39:07 +02:00
let overallStepCount = stepUpdate . step + task . batchesDone * batchSize
2022-09-23 16:18:48 +02:00
let totalSteps = batchCount * batchSize
let percent = 100 * ( overallStepCount / totalSteps )
percent = ( percent > 100 ? 100 : percent )
percent = percent . toFixed ( 0 )
stepsRemaining = totalSteps - overallStepCount
stepsRemaining = ( stepsRemaining < 0 ? 0 : stepsRemaining )
timeRemaining = ( timeTaken === - 1 ? '' : stepsRemaining * timeTaken ) // ms
2022-09-27 14:39:07 +02:00
outputMsg . innerHTML = ` Batch ${ task . batchesDone + 1 } of ${ batchCount } `
2022-09-27 10:26:17 +02:00
outputMsg . innerHTML += ` . Generating image(s): ${ percent } % `
2022-09-23 16:18:48 +02:00
2022-09-27 10:26:17 +02:00
timeRemaining = ( timeTaken !== - 1 ? millisecondsToStr ( timeRemaining ) : '' )
outputMsg . innerHTML += ` . Time remaining (approx): ${ timeRemaining } `
outputMsg . style . display = 'block'
2022-09-23 16:18:48 +02:00
if ( stepUpdate . output !== undefined ) {
2022-09-29 09:38:42 +02:00
showImages ( reqBody , stepUpdate , outputContainer , true )
2022-09-23 16:18:48 +02:00
}
}
} catch ( e ) {
finalJSON += jsonStr
}
prevTime = t
} catch ( e ) {
2022-09-27 14:39:07 +02:00
logError ( 'Stable Diffusion had an error. Please check the logs in the command-line window.' , res , outputMsg )
2022-09-23 16:18:48 +02:00
res = undefined
throw e
}
}
if ( res . status != 200 ) {
if ( serverStatus === 'online' ) {
2022-09-27 14:39:07 +02:00
logError ( 'Stable Diffusion had an error: ' + await res . text ( ) , res , outputMsg )
2022-09-23 16:18:48 +02:00
} else {
2022-09-27 14:39:07 +02:00
logError ( "Stable Diffusion is still starting up, please wait. If this goes on beyond a few minutes, Stable Diffusion has probably crashed. Please check the error message in the command-line window." , res , outputMsg )
2022-09-23 16:18:48 +02:00
}
res = undefined
progressBar . style . display = 'none'
} else {
2022-09-24 18:59:31 +02:00
if ( finalJSON !== undefined && finalJSON . indexOf ( '}{' ) !== - 1 ) {
// hack for a middleman buffering all the streaming updates, and unleashing them
// on the poor browser in one shot.
// this results in having to parse JSON like {"step": 1}{"step": 2}...{"status": "succeeded"..}
// which is obviously invalid.
// So we need to just extract the last {} section, starting from "status" to the end of the response
let lastChunkIdx = finalJSON . lastIndexOf ( '}{' )
if ( lastChunkIdx !== - 1 ) {
let remaining = finalJSON . substring ( lastChunkIdx )
finalJSON = remaining . substring ( 1 )
}
}
2022-09-23 16:18:48 +02:00
res = JSON . parse ( finalJSON )
if ( res . status !== 'succeeded' ) {
let msg = ''
if ( res . detail !== undefined ) {
msg = res . detail
if ( msg . toLowerCase ( ) . includes ( 'out of memory' ) ) {
msg += ` <br/><br/>
< b > Suggestions < / b > :
< br / >
1. If you have set an initial image , please try reducing its dimension to $ { MAX _INIT _IMAGE _DIMENSION } x$ { MAX _INIT _IMAGE _DIMENSION } or smaller . < br / >
2. Try disabling the '<em>Turbo mode</em>' under '<em>Advanced Settings</em>' . < br / >
3. Try generating a smaller image . < br / > `
}
} else {
msg = res
}
2022-09-27 14:39:07 +02:00
logError ( msg , res , outputMsg )
2022-09-23 16:18:48 +02:00
res = undefined
}
}
} catch ( e ) {
console . log ( 'request error' , e )
2022-09-27 14:39:07 +02:00
logError ( 'Stable Diffusion had an error. Please check the logs in the command-line window. <br/><br/>' + e + '<br/><pre>' + e . stack + '</pre>' , res , outputMsg )
2022-09-23 16:18:48 +02:00
setStatus ( 'request' , 'error' , 'error' )
progressBar . style . display = 'none'
res = undefined
}
2022-09-29 09:38:42 +02:00
if ( ! res ) return false
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
lastPromptUsed = reqBody [ 'prompt' ]
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
showImages ( reqBody , res , outputContainer , false )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
return true
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
async function checkTasks ( ) {
if ( taskQueue . length === 0 ) {
setStatus ( 'request' , 'done' , 'success' )
setTimeout ( checkTasks , 500 )
stopImageBtn . style . display = 'none'
makeImageBtn . innerHTML = 'Make Image'
2022-09-23 16:18:48 +02:00
2022-09-27 16:35:22 +02:00
currentTask = null
2022-09-28 09:47:45 +02:00
if ( bellPending ) {
if ( isSoundEnabled ( ) ) {
playSound ( )
}
bellPending = false
2022-09-23 16:18:48 +02:00
}
2022-09-28 09:47:45 +02:00
2022-09-27 14:39:07 +02:00
return
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
setStatus ( 'request' , 'fetching..' )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
stopImageBtn . style . display = 'block'
makeImageBtn . innerHTML = 'Enqueue Next Image'
2022-09-28 09:47:45 +02:00
bellPending = true
2022-09-27 14:39:07 +02:00
previewTools . style . display = 'block'
let task = taskQueue . pop ( )
2022-09-27 16:35:22 +02:00
currentTask = task
2022-09-27 14:39:07 +02:00
let time = new Date ( ) . getTime ( )
let successCount = 0
task . isProcessing = true
task [ 'stopTask' ] . innerHTML = '<i class="fa-solid fa-circle-stop"></i> Stop'
2022-09-27 15:07:21 +02:00
task [ 'taskStatusLabel' ] . innerText = "Processing"
task [ 'taskStatusLabel' ] . className += " activeTaskLabel"
2022-09-27 14:39:07 +02:00
for ( let i = 0 ; i < task . batchCount ; i ++ ) {
task . reqBody [ 'seed' ] = task . seed + ( i * task . reqBody [ 'num_outputs' ] )
let success = await doMakeImage ( task )
task . batchesDone ++
2022-09-27 16:35:22 +02:00
if ( ! task . isProcessing ) {
break
}
2022-09-27 14:39:07 +02:00
if ( success ) {
successCount ++
2022-09-23 16:18:48 +02:00
}
}
2022-09-27 14:39:07 +02:00
task . isProcessing = false
task [ 'stopTask' ] . innerHTML = '<i class="fa-solid fa-trash-can"></i> Remove'
2022-09-27 15:07:21 +02:00
task [ 'taskStatusLabel' ] . style . display = 'none'
2022-09-27 14:39:07 +02:00
time = new Date ( ) . getTime ( ) - time
time /= 1000
if ( successCount === task . batchCount ) {
task . outputMsg . innerText = 'Processed ' + task . numOutputsTotal + ' images in ' + time + ' seconds'
// setStatus('request', 'done', 'success')
2022-09-23 16:18:48 +02:00
} else {
2022-09-27 16:35:22 +02:00
task . outputMsg . innerText = 'Task ended after ' + time + ' seconds'
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
if ( randomSeedField . checked ) {
seedField . value = task . seed
}
2022-09-23 16:18:48 +02:00
2022-09-27 16:35:22 +02:00
currentTask = null
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
setTimeout ( checkTasks , 10 )
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
setTimeout ( checkTasks , 0 )
2022-09-23 16:18:48 +02:00
async function makeImage ( ) {
if ( serverStatus !== 'online' ) {
2022-09-27 14:39:07 +02:00
alert ( 'The server is still starting up..' )
2022-09-23 16:18:48 +02:00
return
}
2022-09-27 14:39:07 +02:00
let task = {
stopped : false ,
batchesDone : 0
}
2022-09-23 16:18:48 +02:00
let seed = ( randomSeedField . checked ? Math . floor ( Math . random ( ) * 10000000 ) : parseInt ( seedField . value ) )
let numOutputsTotal = parseInt ( numOutputsTotalField . value )
let numOutputsParallel = parseInt ( numOutputsParallelField . value )
let batchCount = Math . ceil ( numOutputsTotal / numOutputsParallel )
let batchSize = numOutputsParallel
let streamImageProgress = ( numOutputsTotal > 50 ? false : streamImageProgressField . checked )
let prompt = promptField . value
if ( activeTags . length > 0 ) {
2022-09-29 09:38:42 +02:00
let promptTags = activeTags . map ( x => x . name ) . join ( ", " )
prompt += ", " + promptTags
2022-09-23 16:18:48 +02:00
}
let reqBody = {
session _id : sessionId ,
prompt : prompt ,
2022-09-27 15:39:28 +02:00
negative _prompt : negativePromptField . value . trim ( ) ,
2022-09-23 16:18:48 +02:00
num _outputs : batchSize ,
num _inference _steps : numInferenceStepsField . value ,
guidance _scale : guidanceScaleField . value ,
width : widthField . value ,
height : heightField . value ,
// allow_nsfw: allowNSFWField.checked,
turbo : turboField . checked ,
use _cpu : useCPUField . checked ,
use _full _precision : useFullPrecisionField . checked ,
stream _progress _updates : true ,
stream _image _progress : streamImageProgress ,
show _only _filtered _image : showOnlyFilteredImageField . checked
}
if ( IMAGE _REGEX . test ( initImagePreview . src ) ) {
reqBody [ 'init_image' ] = initImagePreview . src
reqBody [ 'prompt_strength' ] = promptStrengthField . value
// if (IMAGE_REGEX.test(maskImagePreview.src)) {
// reqBody['mask'] = maskImagePreview.src
// }
if ( maskSetting . checked ) {
reqBody [ 'mask' ] = inpaintingEditor . getImg ( )
}
reqBody [ 'sampler' ] = 'ddim'
} else {
reqBody [ 'sampler' ] = samplerField . value
}
if ( saveToDiskField . checked && diskPathField . value . trim ( ) !== '' ) {
reqBody [ 'save_to_disk_path' ] = diskPathField . value . trim ( )
}
if ( useFaceCorrectionField . checked ) {
reqBody [ 'use_face_correction' ] = 'GFPGANv1.3'
}
if ( useUpscalingField . checked ) {
reqBody [ 'use_upscale' ] = upscaleModelField . value
}
2022-09-27 14:39:07 +02:00
let taskConfig = ` Seed: ${ seed } , Sampler: ${ reqBody [ 'sampler' ] } , Inference Steps: ${ numInferenceStepsField . value } , Guidance Scale: ${ guidanceScaleField . value } `
2022-09-23 16:18:48 +02:00
2022-09-27 15:39:28 +02:00
if ( negativePromptField . value . trim ( ) !== '' ) {
taskConfig += ` , Negative Prompt: ${ negativePromptField . value . trim ( ) } `
}
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
if ( reqBody [ 'init_image' ] !== undefined ) {
taskConfig += ` , Prompt Strength: ${ promptStrengthField . value } `
}
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
if ( useFaceCorrectionField . checked ) {
taskConfig += ` , Fix Faces: ${ reqBody [ 'use_face_correction' ] } `
}
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
if ( useUpscalingField . checked ) {
taskConfig += ` , Upscale: ${ reqBody [ 'use_upscale' ] } `
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
task [ 'reqBody' ] = reqBody
task [ 'seed' ] = seed
task [ 'batchCount' ] = batchCount
task [ 'isProcessing' ] = false
let taskEntry = document . createElement ( 'div' )
taskEntry . className = 'imageTaskContainer'
taskEntry . innerHTML = ` <div class="taskStatusLabel">Enqueued</div>
< button class = "secondaryButton stopTask" > < i class = "fa-solid fa-trash-can" > < / i > R e m o v e < / b u t t o n >
2022-09-28 10:14:48 +02:00
< div class = "preview-prompt collapsible active" > < / d i v >
2022-09-27 14:39:07 +02:00
< div class = "taskConfig" > $ { taskConfig } < / d i v >
2022-09-28 10:14:48 +02:00
< div class = "collapsible-content" style = "display: block" >
< div class = "outputMsg" > < / d i v >
< div class = "progressBar" > < / d i v >
< div class = "img-preview" >
< / d i v > `
createCollapsibles ( taskEntry )
2022-09-27 14:39:07 +02:00
task [ 'numOutputsTotal' ] = numOutputsTotal
task [ 'taskStatusLabel' ] = taskEntry . querySelector ( '.taskStatusLabel' )
task [ 'outputContainer' ] = taskEntry . querySelector ( '.img-preview' )
task [ 'outputMsg' ] = taskEntry . querySelector ( '.outputMsg' )
task [ 'previewPrompt' ] = taskEntry . querySelector ( '.preview-prompt' )
task [ 'progressBar' ] = taskEntry . querySelector ( '.progressBar' )
task [ 'stopTask' ] = taskEntry . querySelector ( '.stopTask' )
task [ 'stopTask' ] . addEventListener ( 'click' , async function ( ) {
if ( task [ 'isProcessing' ] ) {
2022-09-27 16:35:22 +02:00
task . isProcessing = false
2022-09-27 14:39:07 +02:00
try {
let res = await fetch ( '/image/stop' )
} catch ( e ) {
console . log ( e )
}
} else {
let idx = taskQueue . indexOf ( task )
if ( idx >= 0 ) {
taskQueue . splice ( idx , 1 )
}
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
taskEntry . remove ( )
2022-09-23 16:18:48 +02:00
}
2022-09-27 14:39:07 +02:00
} )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
imagePreview . insertBefore ( taskEntry , previewTools . nextSibling )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
task [ 'previewPrompt' ] . innerText = prompt
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
taskQueue . unshift ( task )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
initialText . style . display = 'none'
2022-09-23 16:18:48 +02:00
}
// create a file name with embedded prompt and metadata
// for easier cateloging and comparison
2022-09-25 01:55:11 +02:00
function createFileName ( seed ) {
2022-09-23 16:18:48 +02:00
// Most important information is the prompt
let underscoreName = lastPromptUsed . replace ( /[^a-zA-Z0-9]/g , '_' )
underscoreName = underscoreName . substring ( 0 , 100 )
const steps = numInferenceStepsField . value
const guidance = guidanceScaleField . value
// name and the top level metadata
let fileName = ` ${ underscoreName } _Seed- ${ seed } _Steps- ${ steps } _Guidance- ${ guidance } `
// add the tags
2022-09-29 09:38:42 +02:00
// let tags = []
// let tagString = ''
2022-09-23 16:18:48 +02:00
// document.querySelectorAll(modifyTagsSelector).forEach(function(tag) {
2022-09-29 09:38:42 +02:00
// tags.push(tag.innerHTML)
2022-09-23 16:18:48 +02:00
// })
// join the tags with a pipe
// if (activeTags.length > 0) {
2022-09-29 09:38:42 +02:00
// tagString = '_Tags-'
// tagString += tags.join('|')
2022-09-23 16:18:48 +02:00
// }
// // append empty or populated tags
2022-09-29 09:38:42 +02:00
// fileName += `${tagString}`
2022-09-23 16:18:48 +02:00
// add the file extension
fileName += ` .png `
return fileName
}
2022-09-27 14:39:07 +02:00
async function stopAllTasks ( ) {
taskQueue . forEach ( task => {
task . isProcessing = false
} )
taskQueue = [ ]
2022-09-27 16:35:22 +02:00
if ( currentTask !== null ) {
currentTask . isProcessing = false
}
2022-09-23 16:18:48 +02:00
try {
let res = await fetch ( '/image/stop' )
} catch ( e ) {
console . log ( e )
}
2022-09-27 14:39:07 +02:00
}
clearAllPreviewsBtn . addEventListener ( 'click' , async function ( ) {
await stopAllTasks ( )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
let taskEntries = document . querySelectorAll ( '.imageTaskContainer' )
taskEntries . forEach ( task => {
task . remove ( )
} )
2022-09-23 16:18:48 +02:00
2022-09-27 14:39:07 +02:00
previewTools . style . display = 'none'
initialText . style . display = 'block'
} )
stopImageBtn . addEventListener ( 'click' , async function ( ) {
await stopAllTasks ( )
2022-09-23 16:18:48 +02:00
} )
soundToggle . addEventListener ( 'click' , handleBoolSettingChange ( SOUND _ENABLED _KEY ) )
soundToggle . checked = isSoundEnabled ( )
saveToDiskField . checked = isSaveToDiskEnabled ( )
diskPathField . disabled = ! saveToDiskField . checked
useFaceCorrectionField . addEventListener ( 'click' , handleBoolSettingChange ( USE _FACE _CORRECTION _KEY ) )
useFaceCorrectionField . checked = isFaceCorrectionEnabled ( )
useUpscalingField . checked = isUpscalingEnabled ( )
upscaleModelField . disabled = ! useUpscalingField . checked
showOnlyFilteredImageField . addEventListener ( 'click' , handleBoolSettingChange ( SHOW _ONLY _FILTERED _IMAGE _KEY ) )
showOnlyFilteredImageField . checked = isShowOnlyFilteredImageEnabled ( )
useCPUField . addEventListener ( 'click' , handleBoolSettingChange ( USE _CPU _KEY ) )
useCPUField . checked = isUseCPUEnabled ( )
useFullPrecisionField . addEventListener ( 'click' , handleBoolSettingChange ( USE _FULL _PRECISION _KEY ) )
useFullPrecisionField . checked = isUseFullPrecisionEnabled ( )
turboField . addEventListener ( 'click' , handleBoolSettingChange ( USE _TURBO _MODE _KEY ) )
turboField . checked = isUseTurboModeEnabled ( )
streamImageProgressField . addEventListener ( 'click' , handleBoolSettingChange ( STREAM _IMAGE _PROGRESS _KEY ) )
streamImageProgressField . checked = isStreamImageProgressEnabled ( )
diskPathField . addEventListener ( 'change' , handleStringSettingChange ( DISK _PATH _KEY ) )
saveToDiskField . addEventListener ( 'click' , function ( e ) {
diskPathField . disabled = ! this . checked
handleBoolSettingChange ( SAVE _TO _DISK _KEY ) ( e )
} )
useUpscalingField . addEventListener ( 'click' , function ( e ) {
upscaleModelField . disabled = ! this . checked
handleBoolSettingChange ( USE _UPSCALING _KEY ) ( e )
} )
function setPanelOpen ( panelHandle ) {
let panelContents = panelHandle . nextElementSibling
panelHandle . classList . add ( 'active' )
panelContents . style . display = 'block'
}
if ( isAdvancedPanelOpenEnabled ( ) ) {
setPanelOpen ( advancedPanelHandle )
}
if ( isModifiersPanelOpenEnabled ( ) ) {
setPanelOpen ( modifiersPanelHandle )
}
makeImageBtn . addEventListener ( 'click' , makeImage )
function updateGuidanceScale ( ) {
guidanceScaleField . value = guidanceScaleSlider . value / 10
}
function updateGuidanceScaleSlider ( ) {
if ( guidanceScaleField . value < 0 ) {
guidanceScaleField . value = 0
} else if ( guidanceScaleField . value > 50 ) {
guidanceScaleField . value = 50
}
guidanceScaleSlider . value = guidanceScaleField . value * 10
}
guidanceScaleSlider . addEventListener ( 'input' , updateGuidanceScale )
guidanceScaleField . addEventListener ( 'input' , updateGuidanceScaleSlider )
updateGuidanceScale ( )
function updatePromptStrength ( ) {
promptStrengthField . value = promptStrengthSlider . value / 100
}
function updatePromptStrengthSlider ( ) {
if ( promptStrengthField . value < 0 ) {
promptStrengthField . value = 0
} else if ( promptStrengthField . value > 0.99 ) {
promptStrengthField . value = 0.99
}
promptStrengthSlider . value = promptStrengthField . value * 100
}
promptStrengthSlider . addEventListener ( 'input' , updatePromptStrength )
promptStrengthField . addEventListener ( 'input' , updatePromptStrengthSlider )
updatePromptStrength ( )
useBetaChannelField . addEventListener ( 'click' , async function ( e ) {
if ( serverStatus !== 'online' ) {
2022-09-27 14:39:07 +02:00
// logError('The server is still starting up..')
2022-09-23 16:18:48 +02:00
alert ( 'The server is still starting up..' )
e . preventDefault ( )
return false
}
let updateBranch = ( this . checked ? 'beta' : 'main' )
try {
let res = await fetch ( '/app_config' , {
method : 'POST' ,
headers : {
'Content-Type' : 'application/json'
} ,
body : JSON . stringify ( {
'update_branch' : updateBranch
} )
} )
res = await res . json ( )
console . log ( 'set config status response' , res )
} catch ( e ) {
console . log ( 'set config status error' , e )
}
} )
async function getAppConfig ( ) {
try {
let res = await fetch ( '/app_config' )
config = await res . json ( )
if ( config . update _branch === 'beta' ) {
useBetaChannelField . checked = true
updateBranchLabel . innerText = "(beta)"
}
console . log ( 'get config status response' , config )
} catch ( e ) {
console . log ( 'get config status error' , e )
}
}
function checkRandomSeed ( ) {
if ( randomSeedField . checked ) {
seedField . disabled = true
seedField . value = "0"
} else {
seedField . disabled = false
}
}
randomSeedField . addEventListener ( 'input' , checkRandomSeed )
checkRandomSeed ( )
function showInitImagePreview ( ) {
if ( initImageSelector . files . length === 0 ) {
initImagePreviewContainer . style . display = 'none'
// inpaintingEditorContainer.style.display = 'none'
promptStrengthContainer . style . display = 'none'
// maskSetting.style.display = 'none'
return
}
let reader = new FileReader ( )
let file = initImageSelector . files [ 0 ]
reader . addEventListener ( 'load' , function ( ) {
// console.log(file.name, reader.result)
initImagePreview . src = reader . result
initImagePreviewContainer . style . display = 'block'
inpaintingEditorContainer . style . display = 'none'
promptStrengthContainer . style . display = 'block'
samplerSelectionContainer . style . display = 'none'
// maskSetting.checked = false
} )
if ( file ) {
reader . readAsDataURL ( file )
}
}
initImageSelector . addEventListener ( 'change' , showInitImagePreview )
showInitImagePreview ( )
initImagePreview . addEventListener ( 'load' , function ( ) {
inpaintingEditorCanvasBackground . style . backgroundImage = "url('" + this . src + "')"
// maskSetting.style.display = 'block'
// inpaintingEditorContainer.style.display = 'block'
} )
initImageClearBtn . addEventListener ( 'click' , function ( ) {
initImageSelector . value = null
// maskImageSelector.value = null
initImagePreview . src = ''
// maskImagePreview.src = ''
maskSetting . checked = false
initImagePreviewContainer . style . display = 'none'
// inpaintingEditorContainer.style.display = 'none'
// maskImagePreviewContainer.style.display = 'none'
// maskSetting.style.display = 'none'
promptStrengthContainer . style . display = 'none'
samplerSelectionContainer . style . display = 'block'
} )
maskSetting . addEventListener ( 'click' , function ( ) {
inpaintingEditorContainer . style . display = ( this . checked ? 'block' : 'none' )
} )
// function showMaskImagePreview() {
// if (maskImageSelector.files.length === 0) {
// // maskImagePreviewContainer.style.display = 'none'
// return
// }
// let reader = new FileReader()
// let file = maskImageSelector.files[0]
// reader.addEventListener('load', function() {
// // maskImagePreview.src = reader.result
// // maskImagePreviewContainer.style.display = 'block'
// })
// if (file) {
// reader.readAsDataURL(file)
// }
// }
// maskImageSelector.addEventListener('change', showMaskImagePreview)
// showMaskImagePreview()
// maskImageClearBtn.addEventListener('click', function() {
// maskImageSelector.value = null
// maskImagePreview.src = ''
// // maskImagePreviewContainer.style.display = 'none'
// })
// https://stackoverflow.com/a/8212878
function millisecondsToStr ( milliseconds ) {
function numberEnding ( number ) {
2022-09-29 09:38:42 +02:00
return ( number > 1 ) ? 's' : ''
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
var temp = Math . floor ( milliseconds / 1000 )
var hours = Math . floor ( ( temp %= 86400 ) / 3600 )
2022-09-23 16:18:48 +02:00
var s = ''
if ( hours ) {
2022-09-29 09:38:42 +02:00
s += hours + ' hour' + numberEnding ( hours ) + ' '
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
var minutes = Math . floor ( ( temp %= 3600 ) / 60 )
2022-09-23 16:18:48 +02:00
if ( minutes ) {
2022-09-29 09:38:42 +02:00
s += minutes + ' minute' + numberEnding ( minutes ) + ' '
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
var seconds = temp % 60
2022-09-23 16:18:48 +02:00
if ( ! hours && minutes < 4 && seconds ) {
2022-09-29 09:38:42 +02:00
s += seconds + ' second' + numberEnding ( seconds )
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
return s
2022-09-23 16:18:48 +02:00
}
2022-09-28 10:14:48 +02:00
// https://gomakethings.com/finding-the-next-and-previous-sibling-elements-that-match-a-selector-with-vanilla-js/
function getNextSibling ( elem , selector ) {
// Get the next sibling element
var sibling = elem . nextElementSibling
// If there's no selector, return the first sibling
if ( ! selector ) return sibling
// If the sibling matches our selector, use it
// If not, jump to the next sibling and continue the loop
while ( sibling ) {
if ( sibling . matches ( selector ) ) return sibling
sibling = sibling . nextElementSibling
}
}
2022-09-23 16:18:48 +02:00
function createCollapsibles ( node ) {
if ( ! node ) {
node = document
}
let collapsibles = node . querySelectorAll ( ".collapsible" )
collapsibles . forEach ( function ( c ) {
let handle = document . createElement ( 'span' )
handle . className = 'collapsible-handle'
if ( c . className . indexOf ( 'active' ) !== - 1 ) {
handle . innerHTML = '➖' // minus
} else {
handle . innerHTML = '➕' // plus
}
c . insertBefore ( handle , c . firstChild )
c . addEventListener ( 'click' , function ( ) {
this . classList . toggle ( "active" )
2022-09-28 10:14:48 +02:00
let content = getNextSibling ( this , '.collapsible-content' )
2022-09-23 16:18:48 +02:00
if ( content . style . display === "block" ) {
content . style . display = "none"
handle . innerHTML = '➕' // plus
} else {
content . style . display = "block"
handle . innerHTML = '➖' // minus
}
if ( this == advancedPanelHandle ) {
let state = ( content . style . display === 'block' ? 'true' : 'false' )
localStorage . setItem ( ADVANCED _PANEL _OPEN _KEY , state )
} else if ( this == modifiersPanelHandle ) {
let state = ( content . style . display === 'block' ? 'true' : 'false' )
localStorage . setItem ( MODIFIERS _PANEL _OPEN _KEY , state )
}
} )
} )
}
createCollapsibles ( )
function refreshTagsList ( ) {
2022-09-29 09:38:42 +02:00
editorModifierTagsList . innerHTML = ''
2022-09-23 16:18:48 +02:00
if ( activeTags . length == 0 ) {
2022-09-29 09:38:42 +02:00
editorTagsContainer . style . display = 'none'
return
2022-09-23 16:18:48 +02:00
} else {
2022-09-29 09:38:42 +02:00
editorTagsContainer . style . display = 'block'
2022-09-23 16:18:48 +02:00
}
activeTags . forEach ( ( tag , index ) => {
2022-09-29 09:38:42 +02:00
tag . element . querySelector ( '.modifier-card-image-overlay' ) . innerText = '-'
tag . element . classList . add ( 'modifier-card-tiny' )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
editorModifierTagsList . appendChild ( tag . element )
2022-09-23 16:18:48 +02:00
tag . element . addEventListener ( 'click' , ( ) => {
2022-09-29 09:38:42 +02:00
let idx = activeTags . indexOf ( tag )
2022-09-23 16:18:48 +02:00
if ( idx !== - 1 ) {
2022-09-29 09:38:42 +02:00
activeTags [ idx ] . originElement . classList . remove ( activeCardClass )
activeTags [ idx ] . originElement . querySelector ( '.modifier-card-image-overlay' ) . innerText = '+'
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
activeTags . splice ( idx , 1 )
refreshTagsList ( )
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
} )
} )
2022-09-23 16:18:48 +02:00
let brk = document . createElement ( 'br' )
brk . style . clear = 'both'
editorModifierTagsList . appendChild ( brk )
}
async function getDiskPath ( ) {
try {
let diskPath = getSavedDiskPath ( )
if ( diskPath !== '' ) {
diskPathField . value = diskPath
return
}
let res = await fetch ( '/output_dir' )
if ( res . status === 200 ) {
res = await res . json ( )
res = res [ 0 ]
document . querySelector ( '#diskPath' ) . value = res
}
} catch ( e ) {
console . log ( 'error fetching output dir path' , e )
}
}
function createModifierCard ( name , previews ) {
2022-09-29 09:38:42 +02:00
const modifierCard = document . createElement ( 'div' )
modifierCard . className = 'modifier-card'
2022-09-23 16:18:48 +02:00
modifierCard . innerHTML = `
< div class = "modifier-card-overlay" > < / d i v >
< div class = "modifier-card-image-container" >
< div class = "modifier-card-image-overlay" > + < / d i v >
< p class = "modifier-card-error-label" > < / p >
< img onerror = "this.remove()" alt = "Modifier Image" class = "modifier-card-image" >
< / d i v >
< div class = "modifier-card-container" >
< div class = "modifier-card-label" > < p > < / p > < / d i v >
2022-09-29 09:38:42 +02:00
< / d i v > `
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const image = modifierCard . querySelector ( '.modifier-card-image' )
const errorText = modifierCard . querySelector ( '.modifier-card-error-label' )
const label = modifierCard . querySelector ( '.modifier-card-label' )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
errorText . innerText = 'No Image'
2022-09-23 16:18:48 +02:00
if ( typeof previews == 'object' ) {
image . src = previews [ 0 ] ; // portrait
2022-09-29 09:38:42 +02:00
image . setAttribute ( 'preview-type' , 'portrait' )
2022-09-23 16:18:48 +02:00
} else {
2022-09-29 09:38:42 +02:00
image . remove ( )
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
const maxLabelLength = 30
const nameWithoutBy = name . replace ( 'by ' , '' )
2022-09-23 16:18:48 +02:00
if ( nameWithoutBy . length <= maxLabelLength ) {
2022-09-29 09:38:42 +02:00
label . querySelector ( 'p' ) . innerText = nameWithoutBy
2022-09-23 16:18:48 +02:00
} else {
2022-09-29 09:38:42 +02:00
const tooltipText = document . createElement ( 'span' )
tooltipText . className = 'tooltip-text'
tooltipText . innerText = name
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
label . classList . add ( 'tooltip' )
label . appendChild ( tooltipText )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
label . querySelector ( 'p' ) . innerText = nameWithoutBy . substring ( 0 , maxLabelLength ) + '...'
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
return modifierCard
2022-09-23 16:18:48 +02:00
}
function changePreviewImages ( val ) {
2022-09-29 09:38:42 +02:00
const previewImages = document . querySelectorAll ( '.modifier-card-image-container img' )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
let previewArr = [ ]
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
modifiers . map ( x => x . modifiers ) . forEach ( x => previewArr . push ( ... x . map ( m => m . previews ) ) )
2022-09-23 16:18:48 +02:00
previewArr = previewArr . map ( x => {
2022-09-29 09:38:42 +02:00
let obj = { }
2022-09-23 16:18:48 +02:00
x . forEach ( preview => {
2022-09-29 09:38:42 +02:00
obj [ preview . name ] = preview . path
} )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
return obj
} )
2022-09-23 16:18:48 +02:00
previewImages . forEach ( previewImage => {
2022-09-29 09:38:42 +02:00
const currentPreviewType = previewImage . getAttribute ( 'preview-type' )
const relativePreviewPath = previewImage . src . split ( modifierThumbnailPath + '/' ) . pop ( )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const previews = previewArr . find ( preview => relativePreviewPath == preview [ currentPreviewType ] )
2022-09-23 16:18:48 +02:00
if ( typeof previews == 'object' ) {
2022-09-29 09:38:42 +02:00
let preview = null
2022-09-23 16:18:48 +02:00
if ( val == 'portrait' ) {
2022-09-29 09:38:42 +02:00
preview = previews . portrait
2022-09-23 16:18:48 +02:00
}
else if ( val == 'landscape' ) {
2022-09-29 09:38:42 +02:00
preview = previews . landscape
2022-09-23 16:18:48 +02:00
}
if ( preview != null ) {
2022-09-29 09:38:42 +02:00
previewImage . src = ` ${ modifierThumbnailPath } / ${ preview } `
previewImage . setAttribute ( 'preview-type' , val )
2022-09-23 16:18:48 +02:00
}
}
2022-09-29 09:38:42 +02:00
} )
2022-09-23 16:18:48 +02:00
}
function resizeModifierCards ( val ) {
2022-09-29 09:38:42 +02:00
const cardSizePrefix = 'modifier-card-size_'
const modifierCardClass = 'modifier-card'
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const modifierCards = document . querySelectorAll ( ` . ${ modifierCardClass } ` )
const cardSize = n => ` ${ cardSizePrefix } ${ n } `
2022-09-23 16:18:48 +02:00
modifierCards . forEach ( card => {
// remove existing size classes
2022-09-29 09:38:42 +02:00
const classes = card . className . split ( ' ' ) . filter ( c => ! c . startsWith ( cardSizePrefix ) )
card . className = classes . join ( ' ' ) . trim ( )
2022-09-23 16:18:48 +02:00
if ( val != 0 )
2022-09-29 09:38:42 +02:00
card . classList . add ( cardSize ( val ) )
} )
2022-09-23 16:18:48 +02:00
}
async function loadModifiers ( ) {
try {
2022-09-24 06:17:34 +02:00
let res = await fetch ( '/modifiers.json?v=2' )
2022-09-23 16:18:48 +02:00
if ( res . status === 200 ) {
res = await res . json ( )
modifiers = res ; // update global variable
2022-09-24 12:09:48 +02:00
res . forEach ( ( modifierGroup , idx ) => {
2022-09-29 09:38:42 +02:00
const title = modifierGroup . category
const modifiers = modifierGroup . modifiers
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const titleEl = document . createElement ( 'h5' )
titleEl . className = 'collapsible'
titleEl . innerText = title
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const modifiersEl = document . createElement ( 'div' )
modifiersEl . classList . add ( 'collapsible-content' , 'editor-modifiers-leaf' )
2022-09-23 16:18:48 +02:00
2022-09-24 12:09:48 +02:00
if ( idx == 0 ) {
titleEl . className += ' active'
modifiersEl . style . display = 'block'
}
2022-09-23 16:18:48 +02:00
modifiers . forEach ( modObj => {
2022-09-29 09:38:42 +02:00
const modifierName = modObj . modifier
const modifierPreviews = modObj ? . previews ? . map ( preview => ` ${ modifierThumbnailPath } / ${ preview . path } ` )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
const modifierCard = createModifierCard ( modifierName , modifierPreviews )
2022-09-23 16:18:48 +02:00
if ( typeof modifierCard == 'object' ) {
2022-09-29 09:38:42 +02:00
modifiersEl . appendChild ( modifierCard )
2022-09-23 16:18:48 +02:00
modifierCard . addEventListener ( 'click' , ( ) => {
if ( activeTags . map ( x => x . name ) . includes ( modifierName ) ) {
// remove modifier from active array
2022-09-29 09:38:42 +02:00
activeTags = activeTags . filter ( x => x . name != modifierName )
modifierCard . classList . remove ( activeCardClass )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
modifierCard . querySelector ( '.modifier-card-image-overlay' ) . innerText = '+'
2022-09-23 16:18:48 +02:00
} else {
// add modifier to active array
activeTags . push ( {
'name' : modifierName ,
'element' : modifierCard . cloneNode ( true ) ,
'originElement' : modifierCard ,
'previews' : modifierPreviews
2022-09-29 09:38:42 +02:00
} )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
modifierCard . classList . add ( activeCardClass )
2022-09-23 16:18:48 +02:00
2022-09-29 09:38:42 +02:00
modifierCard . querySelector ( '.modifier-card-image-overlay' ) . innerText = '-'
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
refreshTagsList ( )
} )
2022-09-23 16:18:48 +02:00
}
2022-09-29 09:38:42 +02:00
} )
2022-09-23 16:18:48 +02:00
let brk = document . createElement ( 'br' )
brk . style . clear = 'both'
modifiersEl . appendChild ( brk )
let e = document . createElement ( 'div' )
e . appendChild ( titleEl )
e . appendChild ( modifiersEl )
editorModifierEntries . appendChild ( e )
} )
createCollapsibles ( editorModifierEntries )
}
} catch ( e ) {
console . log ( 'error fetching modifiers' , e )
}
2022-09-25 01:55:11 +02:00
}