diff --git a/backend/static/js/Options.js b/backend/static/js/Options.js new file mode 100644 index 0000000..3fef8de --- /dev/null +++ b/backend/static/js/Options.js @@ -0,0 +1,65 @@ +import Cookies from "./js.cookie.js"; + +export class BooleanOption { + constructor(checkbox, callable, defaultValue) { + this.checkbox = checkbox; + this.callable = callable; + this.defaultValue = defaultValue || false; + } + + get() { + return this.checkbox.is(':checked') + } + + set(value) { + this.checkbox.attr('checked', value); + this.checkbox.prop('checked', value); + } + + call(value) { + this.callable(value) + } + + selector() { + return this.checkbox + } + + default() { + return this.defaultValue + } +} + +export class Options { + constructor(options) { + this.options = options + for (let [name, option] of options) { + option.selector().change(function () { + const value = option.get(); + Cookies.set(name, value, {SameSite: "Strict"}) + option.call(value) + }) + let value = Cookies.get(name) + if (value === undefined) { + value = option.default() + Cookies.set(name, value, {SameSite: "Strict"}) + } + option.set(value) + option.call(value) + } + } + + get(name) { + return this.options.get(name).get() + } + set(name, value) { + this.options.get(name).set(value) + } + + call(name, value) { + this.options.get(name).call(value) + } + + selector(name) { + return this.options.get(name).selector() + } +} diff --git a/backend/templates/songs/index.html b/backend/templates/songs/index.html index 75be260..d21a959 100644 --- a/backend/templates/songs/index.html +++ b/backend/templates/songs/index.html @@ -14,15 +14,21 @@ defer> - + {% endblock %} {% block extra_options %} -
-