From 392cfd6d8e465efe2710ddae6aeeb012b0b0118f Mon Sep 17 00:00:00 2001 From: zhbaor Date: Sat, 15 Mar 2025 22:14:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=BC=80=E5=90=AF=E5=90=8E?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=85=B3=E9=97=AD=E6=82=AC=E6=B5=AE=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 102 +++++++++++++++++++++++++++++++++++---------------- project.json | 2 +- 2 files changed, 71 insertions(+), 33 deletions(-) diff --git a/main.js b/main.js index ab771de..3d24d27 100644 --- a/main.js +++ b/main.js @@ -2,19 +2,48 @@ storage = storages.create("mower-ng helper"); -wx = storage.get("wx", 10); -wy = storage.get("wy", 10); -http_proto = storage.get("http_proto", "http"); -host = storage.get("host", "127.0.0.1"); -port = storage.get("port", "58000"); +const config_items = { + wx: 10, + wy: 10, + http_proto: "http", + host: "127.0.0.1", + port: "58000", + auto_close: false, +}; + +config = {}; + +Object.entries(config_items).forEach(([key, value]) => { + config[key + "_"] = storage.get(key, value); + Object.defineProperty(config, key, { + get() { + return this[key + "_"]; + }, + set(new_value) { + this[key + "_"] = new_value; + storage.put(key, new_value); + }, + }); +}); +Object.defineProperties(config, { + scheduler_url: { + get() { + return `${this.http_proto}://${this.host}:${this.port}/scheduler`; + }, + }, + ws_url: { + get() { + ws_proto = this.http_proto == "https" ? "wss" : "ws"; + return `${ws_proto}://${this.host}:${this.port}/ws`; + }, + }, +}); function save_config() { - http_proto = ui.proto.getText(); - host = ui.host.getText(); - port = ui.port.getText(); - storage.put("http_proto", http_proto); - storage.put("host", host); - storage.put("port", port); + config.http_proto = ui.proto.getText(); + config.host = ui.host.getText(); + config.port = ui.port.getText(); + config.auto_close = ui.auto_close.isChecked(); } w = null; @@ -25,7 +54,7 @@ ui.layout( - + @@ -40,16 +69,20 @@ ui.layout( - -