Save local presets

This commit is contained in:
2025-03-09 22:42:08 -05:00
parent afdf713263
commit d9b376815f
6 changed files with 156 additions and 19 deletions

View File

@@ -10,14 +10,19 @@ export default defineComponent({
data() {
return {
selected: "custom",
localPresets: [],
};
},
emits: [
'selected'
"selected",
"save",
],
props: {
generator: null,
},
async mounted() {
this.localPresets = await localforage.getItem("local_presets") ?? [];
},
computed: {
settings() {
const settings = {};
@@ -54,26 +59,60 @@ export default defineComponent({
methods: {
change() {
if (this.selected && this.selected != "custom") {
this.$emit("selected", this.presets[this.selected]);
if (this.selected.startsWith("local_")) {
this.$emit("selected", this.localPresets[this.selected.substring(6)]);
} else {
this.$emit("selected", this.presets[this.selected]);
}
}
},
settingsMatch(newSettings, preset) {
for (const settingName of Object.keys(newSettings)) {
if (preset[settingName] != newSettings[settingName]) {
return false;
}
}
return true
},
settingChanged(newSettings) {
for (const presetName of Object.keys(this.presets)) {
const preset = this.presets[presetName];
var matches = true;
for (const settingName of Object.keys(newSettings)) {
if (preset[settingName] != newSettings[settingName]) {
matches = false;
break;
}
}
if (matches) {
if (this.settingsMatch(newSettings, preset)) {
this.selected = presetName;
return;
}
}
for (const [idx, preset] of this.localPresets.entries()) {
if (this.settingsMatch(newSettings, preset)) {
this.selected = `local_${idx}`;
return;
}
}
this.selected = "custom";
},
saveClicked() {
this.$emit("save", this.localPresets.map(s => s.display));
},
async deleteClicked() {
const idx = this.selected.substring(6);
this.localPresets.splice(idx, 1);
this.selected = "custom";
await this.updateLocalPresets();
},
async savePreset(idx, settings) {
if (idx == null) {
idx = this.localPresets.length;
this.localPresets.push(settings);
} else {
this.localPresets[idx] = settings;
}
this.selected = `local_${idx}`;
await this.updateLocalPresets();
},
async updateLocalPresets() {
const copy = JSON.parse(JSON.stringify(this.localPresets));
await localforage.setItem("local_presets", copy);
},
},
});
</script>
@@ -84,12 +123,29 @@ export default defineComponent({
Preset:
</label>
<select v-model="selected" class="form-select" id="presetSelector" @change="change">
<option value="custom" selected>Custom</option>
<template v-for="name of Object.keys(presets)">
<option :value="name">
{{ presets[name].display }}
</option>
</template>
<option disabled="true" value="custom">Custom</option>
<optgroup label="Global Presets">
<template v-for="name of Object.keys(presets)">
<option :value="name">
{{ presets[name].display }}
</option>
</template>
</optgroup>
<optgroup v-if="localPresets.length" label="Local Presets">
<template v-for="(preset, idx) of localPresets">
<option :value="`local_${idx}`">
{{ preset.display }}
</option>
</template>
</optgroup>
</select>
<button class="btn btn-outline-secondary" type="button" @click="saveClicked"
:disabled="selected != 'custom'">
Save Preset
</button>
<button class="btn btn-outline-danger" type="button" @click="deleteClicked"
:disabled="!selected.startsWith('local_')">
<i class="bi bi-trash"></i>
</button>
</div>
</template>