2022-10-17 09:14:05 +02:00
|
|
|
|
// Saving settings
|
|
|
|
|
let saveSettingsConfigTable = document.getElementById("save-settings-config-table")
|
|
|
|
|
let saveSettingsConfigOverlay = document.getElementById("save-settings-config")
|
2022-10-20 06:12:01 +02:00
|
|
|
|
let resetImageSettingsButton = document.getElementById("reset-image-settings")
|
2022-10-17 09:14:05 +02:00
|
|
|
|
|
2022-10-20 06:12:01 +02:00
|
|
|
|
const SETTINGS_KEY = "user_settings_v2"
|
|
|
|
|
|
|
|
|
|
const SETTINGS = {} // key=id. dict initialized in initSettings. { element, default, value, ignore }
|
|
|
|
|
const SETTINGS_IDS_LIST = [
|
|
|
|
|
"prompt",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"seed",
|
|
|
|
|
"random_seed",
|
|
|
|
|
"num_outputs_total",
|
|
|
|
|
"num_outputs_parallel",
|
|
|
|
|
"stable_diffusion_model",
|
2022-11-08 12:24:15 +01:00
|
|
|
|
"vae_model",
|
2022-12-07 06:54:16 +01:00
|
|
|
|
"hypernetwork_model",
|
2022-12-12 10:51:02 +01:00
|
|
|
|
"sampler_name",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"width",
|
|
|
|
|
"height",
|
|
|
|
|
"num_inference_steps",
|
2022-10-20 06:12:01 +02:00
|
|
|
|
"guidance_scale",
|
|
|
|
|
"prompt_strength",
|
2022-12-07 06:54:16 +01:00
|
|
|
|
"hypernetwork_strength",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"output_format",
|
2022-12-05 06:32:33 +01:00
|
|
|
|
"output_quality",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"negative_prompt",
|
|
|
|
|
"stream_image_progress",
|
|
|
|
|
"use_face_correction",
|
2023-01-19 20:49:54 +01:00
|
|
|
|
"gfpgan_model",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"use_upscale",
|
2022-12-27 11:50:16 +01:00
|
|
|
|
"upscale_amount",
|
2023-02-18 10:31:13 +01:00
|
|
|
|
"block_nsfw",
|
2022-10-17 09:14:05 +02:00
|
|
|
|
"show_only_filtered_image",
|
|
|
|
|
"upscale_model",
|
|
|
|
|
"preview-image",
|
2022-10-18 08:00:08 +02:00
|
|
|
|
"modifier-card-size-slider",
|
2022-10-19 05:49:58 +02:00
|
|
|
|
"theme",
|
|
|
|
|
"save_to_disk",
|
|
|
|
|
"diskPath",
|
|
|
|
|
"sound_toggle",
|
2022-12-16 07:04:49 +01:00
|
|
|
|
"vram_usage_level",
|
2022-11-23 23:05:30 +01:00
|
|
|
|
"confirm_dangerous_actions",
|
2022-12-12 09:36:20 +01:00
|
|
|
|
"metadata_output_format",
|
2022-12-09 15:09:56 +01:00
|
|
|
|
"auto_save_settings",
|
2022-12-29 02:50:18 +01:00
|
|
|
|
"apply_color_correction",
|
2023-02-22 15:02:00 +01:00
|
|
|
|
"process_order_toggle",
|
2023-03-01 13:57:48 +01:00
|
|
|
|
"thumbnail_size",
|
|
|
|
|
"auto_scroll"
|
2022-10-17 09:14:05 +02:00
|
|
|
|
]
|
|
|
|
|
|
2022-10-20 06:12:01 +02:00
|
|
|
|
const IGNORE_BY_DEFAULT = [
|
|
|
|
|
"prompt"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
const SETTINGS_SECTIONS = [ // gets the "keys" property filled in with an ordered list of settings in this section via initSettings
|
|
|
|
|
{ id: "editor-inputs", name: "Prompt" },
|
|
|
|
|
{ id: "editor-settings", name: "Image Settings" },
|
|
|
|
|
{ id: "system-settings", name: "System Settings" },
|
|
|
|
|
{ id: "container", name: "Other" }
|
|
|
|
|
]
|
|
|
|
|
|
2022-10-17 09:14:05 +02:00
|
|
|
|
async function initSettings() {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
SETTINGS_IDS_LIST.forEach(id => {
|
|
|
|
|
var element = document.getElementById(id)
|
2022-10-29 03:25:54 +02:00
|
|
|
|
if (!element) {
|
|
|
|
|
console.error(`Missing settings element ${id}`)
|
|
|
|
|
}
|
2022-11-30 11:15:30 +01:00
|
|
|
|
if (id in SETTINGS) { // don't create it again
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-10-20 06:12:01 +02:00
|
|
|
|
SETTINGS[id] = {
|
|
|
|
|
key: id,
|
|
|
|
|
element: element,
|
|
|
|
|
label: getSettingLabel(element),
|
|
|
|
|
default: getSetting(element),
|
|
|
|
|
value: getSetting(element),
|
|
|
|
|
ignore: IGNORE_BY_DEFAULT.includes(id)
|
|
|
|
|
}
|
2022-10-17 09:14:05 +02:00
|
|
|
|
element.addEventListener("input", settingChangeHandler)
|
|
|
|
|
element.addEventListener("change", settingChangeHandler)
|
|
|
|
|
})
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var unsorted_settings_ids = [...SETTINGS_IDS_LIST]
|
|
|
|
|
SETTINGS_SECTIONS.forEach(section => {
|
|
|
|
|
var name = section.name
|
|
|
|
|
var element = document.getElementById(section.id)
|
2022-11-02 07:03:05 +01:00
|
|
|
|
var unsorted_ids = unsorted_settings_ids.map(id => `#${id}`).join(",")
|
|
|
|
|
var children = unsorted_ids == "" ? [] : Array.from(element.querySelectorAll(unsorted_ids));
|
2022-10-20 06:12:01 +02:00
|
|
|
|
section.keys = []
|
|
|
|
|
children.forEach(e => {
|
|
|
|
|
section.keys.push(e.id)
|
|
|
|
|
})
|
|
|
|
|
unsorted_settings_ids = unsorted_settings_ids.filter(id => children.find(e => e.id == id) == undefined)
|
|
|
|
|
})
|
2022-10-17 09:14:05 +02:00
|
|
|
|
loadSettings()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getSetting(element) {
|
2023-02-12 10:18:09 +01:00
|
|
|
|
if (element.dataset && 'path' in element.dataset) {
|
|
|
|
|
return element.dataset.path
|
|
|
|
|
}
|
2022-10-20 06:12:01 +02:00
|
|
|
|
if (typeof element === "string" || element instanceof String) {
|
|
|
|
|
element = SETTINGS[element].element
|
2022-10-19 05:49:58 +02:00
|
|
|
|
}
|
2022-10-17 09:14:05 +02:00
|
|
|
|
if (element.type == "checkbox") {
|
|
|
|
|
return element.checked
|
|
|
|
|
}
|
|
|
|
|
return element.value
|
|
|
|
|
}
|
|
|
|
|
function setSetting(element, value) {
|
2023-02-12 10:18:09 +01:00
|
|
|
|
if (element.dataset && 'path' in element.dataset) {
|
|
|
|
|
element.dataset.path = value
|
|
|
|
|
return // no need to dispatch any event here because the models are not loaded yet
|
|
|
|
|
}
|
2022-10-19 07:13:45 +02:00
|
|
|
|
if (typeof element === "string" || element instanceof String) {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
element = SETTINGS[element].element
|
2022-10-19 07:13:45 +02:00
|
|
|
|
}
|
2022-10-20 06:12:01 +02:00
|
|
|
|
SETTINGS[element.id].value = value
|
2022-10-17 09:14:05 +02:00
|
|
|
|
if (getSetting(element) == value) {
|
|
|
|
|
return // no setting necessary
|
|
|
|
|
}
|
|
|
|
|
if (element.type == "checkbox") {
|
|
|
|
|
element.checked = value
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
element.value = value
|
|
|
|
|
}
|
|
|
|
|
element.dispatchEvent(new Event("input"))
|
|
|
|
|
element.dispatchEvent(new Event("change"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function saveSettings() {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var saved_settings = Object.values(SETTINGS).map(setting => {
|
|
|
|
|
return {
|
|
|
|
|
key: setting.key,
|
|
|
|
|
value: setting.value,
|
|
|
|
|
ignore: setting.ignore
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
localStorage.setItem(SETTINGS_KEY, JSON.stringify(saved_settings))
|
2022-10-17 09:14:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var CURRENTLY_LOADING_SETTINGS = false
|
|
|
|
|
function loadSettings() {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var saved_settings_text = localStorage.getItem(SETTINGS_KEY)
|
|
|
|
|
if (saved_settings_text) {
|
|
|
|
|
var saved_settings = JSON.parse(saved_settings_text)
|
2022-12-09 12:04:59 +01:00
|
|
|
|
if (saved_settings.find(s => s.key == "auto_save_settings")?.value == false) {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
setSetting("auto_save_settings", false)
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-10-17 09:14:05 +02:00
|
|
|
|
CURRENTLY_LOADING_SETTINGS = true
|
2022-10-29 03:25:54 +02:00
|
|
|
|
saved_settings.forEach(saved_setting => {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var setting = SETTINGS[saved_setting.key]
|
2022-10-29 03:25:54 +02:00
|
|
|
|
if (!setting) {
|
|
|
|
|
console.warn(`Attempted to load setting ${saved_setting.key}, but no setting found`);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2022-10-20 06:12:01 +02:00
|
|
|
|
setting.ignore = saved_setting.ignore
|
|
|
|
|
if (!setting.ignore) {
|
|
|
|
|
setting.value = saved_setting.value
|
|
|
|
|
setSetting(setting.element, setting.value)
|
2022-10-17 09:14:05 +02:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
CURRENTLY_LOADING_SETTINGS = false
|
|
|
|
|
}
|
|
|
|
|
else {
|
2022-10-22 02:13:13 +02:00
|
|
|
|
CURRENTLY_LOADING_SETTINGS = true
|
|
|
|
|
tryLoadOldSettings();
|
|
|
|
|
CURRENTLY_LOADING_SETTINGS = false
|
2022-10-17 09:14:05 +02:00
|
|
|
|
saveSettings()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-20 06:12:01 +02:00
|
|
|
|
function loadDefaultSettingsSection(section_id) {
|
2022-10-17 09:14:05 +02:00
|
|
|
|
CURRENTLY_LOADING_SETTINGS = true
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var section = SETTINGS_SECTIONS.find(s => s.id == section_id);
|
|
|
|
|
section.keys.forEach(key => {
|
|
|
|
|
var setting = SETTINGS[key];
|
|
|
|
|
setting.value = setting.default
|
|
|
|
|
setSetting(setting.element, setting.value)
|
2022-10-17 09:14:05 +02:00
|
|
|
|
})
|
|
|
|
|
CURRENTLY_LOADING_SETTINGS = false
|
|
|
|
|
saveSettings()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function settingChangeHandler(event) {
|
|
|
|
|
if (!CURRENTLY_LOADING_SETTINGS) {
|
|
|
|
|
var element = event.target
|
|
|
|
|
var value = getSetting(element)
|
2022-10-20 06:12:01 +02:00
|
|
|
|
if (value != SETTINGS[element.id].value) {
|
|
|
|
|
SETTINGS[element.id].value = value
|
2022-10-17 09:14:05 +02:00
|
|
|
|
saveSettings()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-20 06:12:01 +02:00
|
|
|
|
function getSettingLabel(element) {
|
|
|
|
|
var labelElement = document.querySelector(`label[for='${element.id}']`)
|
|
|
|
|
var label = labelElement?.innerText || element.id
|
|
|
|
|
var truncate_length = 30
|
|
|
|
|
if (label.includes(" (")) {
|
|
|
|
|
label = label.substring(0, label.indexOf(" ("))
|
|
|
|
|
}
|
|
|
|
|
if (label.length > truncate_length) {
|
|
|
|
|
label = label.substring(0, truncate_length - 3) + "..."
|
|
|
|
|
}
|
|
|
|
|
label = label.replace("➕", "")
|
|
|
|
|
label = label.replace("➖", "")
|
|
|
|
|
return label
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-17 09:14:05 +02:00
|
|
|
|
function fillSaveSettingsConfigTable() {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
saveSettingsConfigTable.textContent = ""
|
|
|
|
|
SETTINGS_SECTIONS.forEach(section => {
|
|
|
|
|
var section_row = `<tr><th>${section.name}</th><td></td></tr>`
|
|
|
|
|
saveSettingsConfigTable.insertAdjacentHTML("beforeend", section_row)
|
|
|
|
|
section.keys.forEach(key => {
|
|
|
|
|
var setting = SETTINGS[key]
|
|
|
|
|
var element = setting.element
|
|
|
|
|
var checkbox_id = `shouldsave_${element.id}`
|
|
|
|
|
var is_checked = setting.ignore ? "" : "checked"
|
|
|
|
|
var value = setting.value
|
|
|
|
|
var value_truncate_length = 30
|
|
|
|
|
if ((typeof value === "string" || value instanceof String) && value.length > value_truncate_length) {
|
|
|
|
|
value = value.substring(0, value_truncate_length - 3) + "..."
|
2022-10-17 09:14:05 +02:00
|
|
|
|
}
|
2022-10-20 06:12:01 +02:00
|
|
|
|
var newrow = `<tr><td><label for="${checkbox_id}">${setting.label}</label></td><td><input id="${checkbox_id}" name="${checkbox_id}" ${is_checked} type="checkbox" ></td><td><small>(${value})</small></td></tr>`
|
|
|
|
|
saveSettingsConfigTable.insertAdjacentHTML("beforeend", newrow)
|
|
|
|
|
var checkbox = document.getElementById(checkbox_id)
|
|
|
|
|
checkbox.addEventListener("input", event => {
|
|
|
|
|
setting.ignore = !checkbox.checked
|
|
|
|
|
saveSettings()
|
|
|
|
|
})
|
2022-10-17 09:14:05 +02:00
|
|
|
|
})
|
|
|
|
|
})
|
2022-11-18 02:58:09 +01:00
|
|
|
|
prettifyInputs(saveSettingsConfigTable)
|
2022-10-17 09:14:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-29 03:25:54 +02:00
|
|
|
|
// configureSettingsSaveBtn
|
|
|
|
|
|
2022-10-29 01:48:32 +02:00
|
|
|
|
|
2022-10-29 03:25:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var autoSaveSettings = document.getElementById("auto_save_settings")
|
|
|
|
|
var configSettingsButton = document.createElement("button")
|
|
|
|
|
configSettingsButton.textContent = "Configure"
|
|
|
|
|
configSettingsButton.style.margin = "0px 5px"
|
2022-11-18 02:58:09 +01:00
|
|
|
|
autoSaveSettings.insertAdjacentElement("beforebegin", configSettingsButton)
|
2022-10-29 03:25:54 +02:00
|
|
|
|
autoSaveSettings.addEventListener("change", () => {
|
|
|
|
|
configSettingsButton.style.display = autoSaveSettings.checked ? "block" : "none"
|
|
|
|
|
})
|
|
|
|
|
configSettingsButton.addEventListener('click', () => {
|
2022-10-20 06:12:01 +02:00
|
|
|
|
fillSaveSettingsConfigTable()
|
2022-10-29 01:48:32 +02:00
|
|
|
|
saveSettingsConfigOverlay.classList.add("active")
|
2022-10-20 06:12:01 +02:00
|
|
|
|
})
|
|
|
|
|
resetImageSettingsButton.addEventListener('click', event => {
|
|
|
|
|
loadDefaultSettingsSection("editor-settings");
|
|
|
|
|
event.stopPropagation()
|
2022-10-22 02:13:13 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tryLoadOldSettings() {
|
|
|
|
|
console.log("Loading old user settings")
|
|
|
|
|
// load v1 auto-save.js settings
|
|
|
|
|
var old_map = {
|
|
|
|
|
"guidance_scale_slider": "guidance_scale",
|
|
|
|
|
"prompt_strength_slider": "prompt_strength"
|
|
|
|
|
}
|
|
|
|
|
var settings_key_v1 = "user_settings"
|
|
|
|
|
var saved_settings_text = localStorage.getItem(settings_key_v1)
|
|
|
|
|
if (saved_settings_text) {
|
|
|
|
|
var saved_settings = JSON.parse(saved_settings_text)
|
|
|
|
|
Object.keys(saved_settings.should_save).forEach(key => {
|
|
|
|
|
key = key in old_map ? old_map[key] : key
|
2023-02-08 06:48:28 +01:00
|
|
|
|
if (!(key in SETTINGS)) return
|
2022-10-22 02:13:13 +02:00
|
|
|
|
SETTINGS[key].ignore = !saved_settings.should_save[key]
|
|
|
|
|
});
|
|
|
|
|
Object.keys(saved_settings.values).forEach(key => {
|
|
|
|
|
key = key in old_map ? old_map[key] : key
|
2023-02-08 06:48:28 +01:00
|
|
|
|
if (!(key in SETTINGS)) return
|
2022-10-22 02:13:13 +02:00
|
|
|
|
var setting = SETTINGS[key]
|
|
|
|
|
if (!setting.ignore) {
|
|
|
|
|
setting.value = saved_settings.values[key]
|
|
|
|
|
setSetting(setting.element, setting.value)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
localStorage.removeItem(settings_key_v1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// load old individually stored items
|
|
|
|
|
var individual_settings_map = { // maps old localStorage-key to new SETTINGS-key
|
|
|
|
|
"soundEnabled": "sound_toggle",
|
|
|
|
|
"saveToDisk": "save_to_disk",
|
|
|
|
|
"useCPU": "use_cpu",
|
|
|
|
|
"diskPath": "diskPath",
|
|
|
|
|
"useFaceCorrection": "use_face_correction",
|
|
|
|
|
"useUpscaling": "use_upscale",
|
|
|
|
|
"showOnlyFilteredImage": "show_only_filtered_image",
|
|
|
|
|
"streamImageProgress": "stream_image_progress",
|
|
|
|
|
"outputFormat": "output_format",
|
|
|
|
|
"autoSaveSettings": "auto_save_settings",
|
|
|
|
|
};
|
|
|
|
|
Object.keys(individual_settings_map).forEach(localStorageKey => {
|
|
|
|
|
var localStorageValue = localStorage.getItem(localStorageKey);
|
|
|
|
|
if (localStorageValue !== null) {
|
2022-11-16 06:49:10 +01:00
|
|
|
|
let key = individual_settings_map[localStorageKey]
|
|
|
|
|
var setting = SETTINGS[key]
|
|
|
|
|
if (!setting) {
|
|
|
|
|
console.warn(`Attempted to map old setting ${key}, but no setting found`);
|
|
|
|
|
return null;
|
2022-11-14 13:39:25 +01:00
|
|
|
|
}
|
2022-10-22 02:13:13 +02:00
|
|
|
|
if (setting.element.type == "checkbox" && (typeof localStorageValue === "string" || localStorageValue instanceof String)) {
|
|
|
|
|
localStorageValue = localStorageValue == "true"
|
|
|
|
|
}
|
|
|
|
|
setting.value = localStorageValue
|
|
|
|
|
setSetting(setting.element, setting.value)
|
|
|
|
|
localStorage.removeItem(localStorageKey);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|