summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2021-08-13 16:39:56 +0300
committerMaxim Devaev <[email protected]>2021-08-13 16:39:56 +0300
commit976662df8310b145f23ac22360a3bd9e38ed65a1 (patch)
tree369dbca05e61bf9d950e15960749725f8824f2c4 /web
parentc233e3bee7b30f7f285869d81f2e18b16b8708c2 (diff)
bindSimpleSwitch()
Diffstat (limited to 'web')
-rw-r--r--web/share/js/kvm/atx.js6
-rw-r--r--web/share/js/kvm/hid.js5
-rw-r--r--web/share/js/kvm/mouse.js5
-rw-r--r--web/share/js/tools.js5
4 files changed, 8 insertions, 13 deletions
diff --git a/web/share/js/kvm/atx.js b/web/share/js/kvm/atx.js
index fb1e0d28..b0978b2c 100644
--- a/web/share/js/kvm/atx.js
+++ b/web/share/js/kvm/atx.js
@@ -36,11 +36,7 @@ export function Atx() {
$("atx-power-led").title = "Power Led";
$("atx-hdd-led").title = "Disk Activity Led";
- $("atx-ask-switch").checked = tools.storage.getBool("atx.ask", true);
- tools.el.setOnClick($("atx-ask-switch"), function() {
- tools.storage.setBool("atx.ask", $("atx-ask-switch").checked);
- }, false);
-
+ tools.storage.bindSimpleSwitch($("atx-ask-switch"), "atx.ask", true);
for (let args of [
["atx-power-button", "power", "Are you sure you want to press the power button?"],
diff --git a/web/share/js/kvm/hid.js b/web/share/js/kvm/hid.js
index 6dfad27b..017eecba 100644
--- a/web/share/js/kvm/hid.js
+++ b/web/share/js/kvm/hid.js
@@ -74,10 +74,7 @@ export function Hid(__getResolution) {
window.addEventListener("pagehide", __releaseAll);
window.addEventListener("blur", __releaseAll);
- $("hid-pak-ask-switch").checked = tools.storage.getBool("hid.pak.ask", true);
- tools.el.setOnClick($("hid-pak-ask-switch"), function() {
- tools.storage.setBool("hid.pak.ask", $("hid-pak-ask-switch").checked);
- }, false);
+ tools.storage.bindSimpleSwitch($("hid-pak-ask-switch"), "hid.pak.ask", true);
$("hid-pak-keymap-selector").addEventListener("change", function() {
tools.storage.set("hid.pak.keymap", $("hid-pak-keymap-selector").value);
diff --git a/web/share/js/kvm/mouse.js b/web/share/js/kvm/mouse.js
index c3215d55..cfc70bff 100644
--- a/web/share/js/kvm/mouse.js
+++ b/web/share/js/kvm/mouse.js
@@ -61,10 +61,7 @@ export function Mouse(__getResolution, __recordWsEvent) {
$("stream-box").onwheel = __streamWheelHandler;
$("stream-box").ontouchstart = (event) => __streamTouchMoveHandler(event);
- $("hid-mouse-squash-switch").checked = tools.storage.getBool("hid.mouse.squash", true);
- tools.el.setOnClick($("hid-mouse-squash-switch"), function() {
- tools.storage.setBool("hid.mouse.squash", $("hid-mouse-squash-switch").checked);
- }, false);
+ tools.storage.bindSimpleSwitch($("hid-mouse-squash-switch"), "hid.mouse.squash", true);
setInterval(__sendMove, 100);
};
diff --git a/web/share/js/tools.js b/web/share/js/tools.js
index dc443517..4bc5c90b 100644
--- a/web/share/js/tools.js
+++ b/web/share/js/tools.js
@@ -280,6 +280,11 @@ export var tools = new function() {
"getBool": (key, default_value) => !!parseInt(self.storage.get(key, (default_value ? "1" : "0"))),
"setBool": (key, value) => self.storage.set(key, (value ? "1" : "0")),
+
+ "bindSimpleSwitch": function(el, key, default_value) {
+ el.checked = self.storage.getBool(key, default_value);
+ self.el.setOnClick(el, () => self.storage.setBool(key, el.checked), false);
+ },
};
};