2022-10-29 01:48:32 +02:00
|
|
|
/**
|
|
|
|
* Enum of parameter types
|
|
|
|
* @readonly
|
|
|
|
* @enum {string}
|
|
|
|
*/
|
|
|
|
var ParameterType = {
|
|
|
|
checkbox: "checkbox",
|
|
|
|
select: "select",
|
2022-11-09 14:47:44 +01:00
|
|
|
select_multiple: "select_multiple",
|
2022-10-29 03:25:54 +02:00
|
|
|
custom: "custom",
|
2022-10-29 01:48:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JSDoc style
|
|
|
|
* @typedef {object} Parameter
|
|
|
|
* @property {string} id
|
|
|
|
* @property {ParameterType} type
|
|
|
|
* @property {string} label
|
|
|
|
* @property {?string} note
|
|
|
|
* @property {number|boolean|string} default
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/** @type {Array.<Parameter>} */
|
|
|
|
var PARAMETERS = [
|
|
|
|
{
|
|
|
|
id: "theme",
|
|
|
|
type: ParameterType.select,
|
|
|
|
label: "Theme",
|
|
|
|
default: "theme-default",
|
|
|
|
options: [ // Note: options expanded dynamically
|
|
|
|
{
|
|
|
|
value: "theme-default",
|
|
|
|
label: "Default"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "save_to_disk",
|
|
|
|
type: ParameterType.checkbox,
|
2022-10-29 03:31:46 +02:00
|
|
|
label: "Auto-Save Images",
|
|
|
|
note: "automatically saves images to the specified location",
|
2022-10-29 01:48:32 +02:00
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
2022-10-29 03:25:54 +02:00
|
|
|
id: "diskPath",
|
|
|
|
type: ParameterType.custom,
|
2022-10-29 01:48:32 +02:00
|
|
|
label: "Save Location",
|
2022-10-29 03:25:54 +02:00
|
|
|
render: (parameter) => {
|
2022-11-09 05:47:55 +01:00
|
|
|
return `<input id="${parameter.id}" name="${parameter.id}" size="30" disabled>`
|
2022-10-29 03:25:54 +02:00
|
|
|
}
|
2022-10-29 01:48:32 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "sound_toggle",
|
|
|
|
type: ParameterType.checkbox,
|
2022-10-29 03:31:46 +02:00
|
|
|
label: "Enable Sound",
|
|
|
|
note: "plays a sound on task completion",
|
2022-10-29 01:48:32 +02:00
|
|
|
default: true,
|
|
|
|
},
|
2022-11-16 08:13:46 +01:00
|
|
|
{
|
|
|
|
id: "ui_open_browser_on_start",
|
|
|
|
type: ParameterType.checkbox,
|
|
|
|
label: "Open browser on startup",
|
|
|
|
note: "starts the default browser on startup",
|
|
|
|
default: true,
|
|
|
|
},
|
2022-10-29 01:48:32 +02:00
|
|
|
{
|
|
|
|
id: "turbo",
|
|
|
|
type: ParameterType.checkbox,
|
|
|
|
label: "Turbo Mode",
|
|
|
|
default: true,
|
|
|
|
note: "generates images faster, but uses an additional 1 GB of GPU memory",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "use_cpu",
|
|
|
|
type: ParameterType.checkbox,
|
2022-11-09 05:47:55 +01:00
|
|
|
label: "Use CPU (not GPU)",
|
2022-10-29 01:48:32 +02:00
|
|
|
note: "warning: this will be *very* slow",
|
|
|
|
default: false,
|
|
|
|
},
|
2022-11-14 06:53:22 +01:00
|
|
|
{
|
|
|
|
id: "auto_pick_gpus",
|
|
|
|
type: ParameterType.checkbox,
|
2022-11-14 15:36:20 +01:00
|
|
|
label: "Automatically pick the GPUs (experimental)",
|
2022-11-14 06:53:22 +01:00
|
|
|
default: false,
|
|
|
|
},
|
2022-11-09 14:47:44 +01:00
|
|
|
{
|
|
|
|
id: "use_gpus",
|
|
|
|
type: ParameterType.select_multiple,
|
2022-11-14 15:36:20 +01:00
|
|
|
label: "GPUs to use (experimental)",
|
2022-11-14 08:32:36 +01:00
|
|
|
note: "to process in parallel",
|
2022-11-09 14:47:44 +01:00
|
|
|
default: false,
|
|
|
|
},
|
2022-10-29 01:48:32 +02:00
|
|
|
{
|
|
|
|
id: "use_full_precision",
|
|
|
|
type: ParameterType.checkbox,
|
2022-10-29 03:31:46 +02:00
|
|
|
label: "Use Full Precision",
|
2022-10-29 01:48:32 +02:00
|
|
|
note: "for GPU-only. warning: this will consume more VRAM",
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "auto_save_settings",
|
|
|
|
type: ParameterType.checkbox,
|
2022-10-29 03:31:46 +02:00
|
|
|
label: "Auto-Save Settings",
|
|
|
|
note: "restores settings on browser load",
|
2022-10-29 01:48:32 +02:00
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "use_beta_channel",
|
|
|
|
type: ParameterType.checkbox,
|
|
|
|
label: "🔥Beta channel",
|
|
|
|
note: "Get the latest features immediately (but could be less stable). Please restart the program after changing this.",
|
|
|
|
default: false,
|
|
|
|
},
|
2022-10-29 03:25:54 +02:00
|
|
|
];
|
|
|
|
|
2022-11-09 14:47:44 +01:00
|
|
|
function getParameterSettingsEntry(id) {
|
|
|
|
let parameter = PARAMETERS.filter(p => p.id === id)
|
|
|
|
if (parameter.length === 0) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return parameter[0].settingsEntry
|
|
|
|
}
|
2022-10-29 03:25:54 +02:00
|
|
|
|
|
|
|
function getParameterElement(parameter) {
|
|
|
|
switch (parameter.type) {
|
|
|
|
case ParameterType.checkbox:
|
|
|
|
var is_checked = parameter.default ? " checked" : "";
|
|
|
|
return `<input id="${parameter.id}" name="${parameter.id}"${is_checked} type="checkbox">`
|
|
|
|
case ParameterType.select:
|
2022-11-09 14:47:44 +01:00
|
|
|
case ParameterType.select_multiple:
|
2022-10-29 03:25:54 +02:00
|
|
|
var options = (parameter.options || []).map(option => `<option value="${option.value}">${option.label}</option>`).join("")
|
2022-11-09 14:47:44 +01:00
|
|
|
var multiple = (parameter.type == ParameterType.select_multiple ? 'multiple' : '')
|
|
|
|
return `<select id="${parameter.id}" name="${parameter.id}" ${multiple}>${options}</select>`
|
2022-10-29 03:25:54 +02:00
|
|
|
case ParameterType.custom:
|
|
|
|
return parameter.render(parameter)
|
|
|
|
default:
|
|
|
|
console.error(`Invalid type for parameter ${parameter.id}`);
|
|
|
|
return "ERROR: Invalid Type"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-15 07:52:55 +01:00
|
|
|
let parametersTable = document.querySelector("#system-settings table")
|
2022-10-29 03:25:54 +02:00
|
|
|
/* fill in the system settings popup table */
|
|
|
|
function initParameters() {
|
|
|
|
PARAMETERS.forEach(parameter => {
|
|
|
|
var element = getParameterElement(parameter)
|
|
|
|
var note = parameter.note ? `<small>${parameter.note}</small>` : "";
|
2022-11-09 14:47:44 +01:00
|
|
|
var newrow = document.createElement('tr')
|
|
|
|
newrow.innerHTML = `
|
2022-10-29 03:25:54 +02:00
|
|
|
<td><label for="${parameter.id}">${parameter.label}</label></td>
|
2022-11-09 14:47:44 +01:00
|
|
|
<td><div>${element}${note}<div></td>`
|
|
|
|
parametersTable.appendChild(newrow)
|
|
|
|
parameter.settingsEntry = newrow
|
2022-10-29 03:25:54 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-11-15 07:52:55 +01:00
|
|
|
initParameters()
|
|
|
|
|
|
|
|
let turboField = document.querySelector('#turbo')
|
|
|
|
let useCPUField = document.querySelector('#use_cpu')
|
|
|
|
let autoPickGPUsField = document.querySelector('#auto_pick_gpus')
|
|
|
|
let useGPUsField = document.querySelector('#use_gpus')
|
|
|
|
let useFullPrecisionField = document.querySelector('#use_full_precision')
|
|
|
|
let saveToDiskField = document.querySelector('#save_to_disk')
|
|
|
|
let diskPathField = document.querySelector('#diskPath')
|
|
|
|
let useBetaChannelField = document.querySelector("#use_beta_channel")
|
2022-11-16 08:13:46 +01:00
|
|
|
let uiOpenBrowserOnStartField = document.querySelector("#ui_open_browser_on_start")
|
2022-11-15 07:52:55 +01:00
|
|
|
|
|
|
|
let saveSettingsBtn = document.querySelector('#save-system-settings-btn')
|
|
|
|
|
|
|
|
async function changeAppConfig(configDelta) {
|
|
|
|
try {
|
|
|
|
let res = await fetch('/app_config', {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify(configDelta)
|
|
|
|
})
|
|
|
|
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('/get/app_config')
|
|
|
|
const config = await res.json()
|
|
|
|
|
|
|
|
if (config.update_branch === 'beta') {
|
|
|
|
useBetaChannelField.checked = true
|
|
|
|
}
|
2022-11-16 08:13:46 +01:00
|
|
|
if (config.ui && config.ui.open_browser_on_start === false) {
|
|
|
|
uiOpenBrowserOnStartField.checked = false
|
|
|
|
}
|
2022-11-15 07:52:55 +01:00
|
|
|
|
|
|
|
console.log('get config status response', config)
|
|
|
|
} catch (e) {
|
|
|
|
console.log('get config status error', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
saveToDiskField.addEventListener('change', function(e) {
|
|
|
|
diskPathField.disabled = !this.checked
|
|
|
|
})
|
|
|
|
|
|
|
|
function getCurrentRenderDeviceSelection() {
|
|
|
|
let selectedGPUs = $('#use_gpus').val()
|
|
|
|
|
|
|
|
if (useCPUField.checked && !autoPickGPUsField.checked) {
|
|
|
|
return 'cpu'
|
|
|
|
}
|
|
|
|
if (autoPickGPUsField.checked || selectedGPUs.length == 0) {
|
|
|
|
return 'auto'
|
|
|
|
}
|
|
|
|
|
|
|
|
return selectedGPUs.join(',')
|
|
|
|
}
|
|
|
|
|
|
|
|
useCPUField.addEventListener('click', function() {
|
|
|
|
let gpuSettingEntry = getParameterSettingsEntry('use_gpus')
|
|
|
|
let autoPickGPUSettingEntry = getParameterSettingsEntry('auto_pick_gpus')
|
|
|
|
if (this.checked) {
|
|
|
|
gpuSettingEntry.style.display = 'none'
|
|
|
|
autoPickGPUSettingEntry.style.display = 'none'
|
|
|
|
autoPickGPUsField.setAttribute('data-old-value', autoPickGPUsField.checked)
|
|
|
|
autoPickGPUsField.checked = false
|
|
|
|
} else if (useGPUsField.options.length >= MIN_GPUS_TO_SHOW_SELECTION) {
|
|
|
|
gpuSettingEntry.style.display = ''
|
|
|
|
autoPickGPUSettingEntry.style.display = ''
|
|
|
|
let oldVal = autoPickGPUsField.getAttribute('data-old-value')
|
|
|
|
if (oldVal === null || oldVal === undefined) { // the UI started with CPU selected by default
|
|
|
|
autoPickGPUsField.checked = true
|
|
|
|
} else {
|
|
|
|
autoPickGPUsField.checked = (oldVal === 'true')
|
|
|
|
}
|
|
|
|
gpuSettingEntry.style.display = (autoPickGPUsField.checked ? 'none' : '')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
useGPUsField.addEventListener('click', function() {
|
|
|
|
let selectedGPUs = $('#use_gpus').val()
|
|
|
|
autoPickGPUsField.checked = (selectedGPUs.length === 0)
|
|
|
|
})
|
|
|
|
|
|
|
|
autoPickGPUsField.addEventListener('click', function() {
|
|
|
|
if (this.checked) {
|
|
|
|
$('#use_gpus').val([])
|
|
|
|
}
|
|
|
|
|
|
|
|
let gpuSettingEntry = getParameterSettingsEntry('use_gpus')
|
|
|
|
gpuSettingEntry.style.display = (this.checked ? 'none' : '')
|
|
|
|
})
|
|
|
|
|
|
|
|
async function getDiskPath() {
|
|
|
|
try {
|
|
|
|
var diskPath = getSetting("diskPath")
|
|
|
|
if (diskPath == '' || diskPath == undefined || diskPath == "undefined") {
|
|
|
|
let res = await fetch('/get/output_dir')
|
|
|
|
if (res.status === 200) {
|
|
|
|
res = await res.json()
|
|
|
|
res = res.output_dir
|
|
|
|
|
|
|
|
setSetting("diskPath", res)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log('error fetching output dir path', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getDevices() {
|
|
|
|
try {
|
|
|
|
let res = await fetch('/get/devices')
|
|
|
|
if (res.status === 200) {
|
|
|
|
res = await res.json()
|
|
|
|
|
|
|
|
let allDeviceIds = Object.keys(res['all']).filter(d => d !== 'cpu')
|
|
|
|
let activeDeviceIds = Object.keys(res['active']).filter(d => d !== 'cpu')
|
|
|
|
|
|
|
|
if (activeDeviceIds.length === 0) {
|
|
|
|
useCPUField.checked = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allDeviceIds.length < MIN_GPUS_TO_SHOW_SELECTION || useCPUField.checked) {
|
|
|
|
let gpuSettingEntry = getParameterSettingsEntry('use_gpus')
|
|
|
|
gpuSettingEntry.style.display = 'none'
|
|
|
|
let autoPickGPUSettingEntry = getParameterSettingsEntry('auto_pick_gpus')
|
|
|
|
autoPickGPUSettingEntry.style.display = 'none'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allDeviceIds.length === 0) {
|
|
|
|
useCPUField.checked = true
|
|
|
|
useCPUField.disabled = true // no compatible GPUs, so make the CPU mandatory
|
|
|
|
}
|
|
|
|
|
|
|
|
autoPickGPUsField.checked = (res['config'] === 'auto')
|
|
|
|
|
|
|
|
useGPUsField.innerHTML = ''
|
|
|
|
allDeviceIds.forEach(device => {
|
|
|
|
let deviceName = res['all'][device]['name']
|
|
|
|
let deviceOption = `<option value="${device}">${deviceName} (${device})</option>`
|
|
|
|
useGPUsField.insertAdjacentHTML('beforeend', deviceOption)
|
|
|
|
})
|
|
|
|
|
|
|
|
if (autoPickGPUsField.checked) {
|
|
|
|
let gpuSettingEntry = getParameterSettingsEntry('use_gpus')
|
|
|
|
gpuSettingEntry.style.display = 'none'
|
|
|
|
} else {
|
|
|
|
$('#use_gpus').val(activeDeviceIds)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log('error fetching devices', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
saveSettingsBtn.addEventListener('click', function() {
|
|
|
|
let updateBranch = (useBetaChannelField.checked ? 'beta' : 'main')
|
2022-10-29 03:25:54 +02:00
|
|
|
|
2022-11-15 07:52:55 +01:00
|
|
|
changeAppConfig({
|
|
|
|
'render_devices': getCurrentRenderDeviceSelection(),
|
2022-11-16 08:13:46 +01:00
|
|
|
'update_branch': updateBranch,
|
|
|
|
'ui_open_browser_on_start': uiOpenBrowserOnStartField.checked
|
2022-11-15 07:52:55 +01:00
|
|
|
})
|
2022-11-17 06:31:10 +01:00
|
|
|
|
|
|
|
saveSettingsBtn.classList.add('active')
|
|
|
|
asyncDelay(300).then(() => saveSettingsBtn.classList.remove('active'))
|
2022-11-15 07:52:55 +01:00
|
|
|
})
|