任务开启后自动关闭悬浮窗

This commit is contained in:
zhbaor 2025-03-15 22:14:56 +08:00
parent 5d1321724a
commit 392cfd6d8e
2 changed files with 71 additions and 33 deletions

102
main.js
View file

@ -2,19 +2,48 @@
storage = storages.create("mower-ng helper"); storage = storages.create("mower-ng helper");
wx = storage.get("wx", 10); const config_items = {
wy = storage.get("wy", 10); wx: 10,
http_proto = storage.get("http_proto", "http"); wy: 10,
host = storage.get("host", "127.0.0.1"); http_proto: "http",
port = storage.get("port", "58000"); 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() { function save_config() {
http_proto = ui.proto.getText(); config.http_proto = ui.proto.getText();
host = ui.host.getText(); config.host = ui.host.getText();
port = ui.port.getText(); config.port = ui.port.getText();
storage.put("http_proto", http_proto); config.auto_close = ui.auto_close.isChecked();
storage.put("host", host);
storage.put("port", port);
} }
w = null; w = null;
@ -25,7 +54,7 @@ ui.layout(
<img id="logo" w="64" h="64" src="file://logo.png" /> <img id="logo" w="64" h="64" src="file://logo.png" />
<vertical marginLeft="8"> <vertical marginLeft="8">
<text text="mower-ng helper" textColor="black" textSize="22sp" /> <text text="mower-ng helper" textColor="black" textSize="22sp" />
<text text="v1.1.0" /> <text text="v1.2.0" />
</vertical> </vertical>
</horizontal> </horizontal>
<horizontal gravity="center"> <horizontal gravity="center">
@ -40,16 +69,20 @@ ui.layout(
<text text="port" w="40" /> <text text="port" w="40" />
<input id="port" text="58000" w="200" /> <input id="port" text="58000" w="200" />
</horizontal> </horizontal>
<horizontal gravity="center" margin="0 6 0 0"> <horizontal gravity="left" w="255" margin="0 6 0 6">
<button w="130" id="start" text="开启悬浮窗" /> <checkbox id="auto_close" text="任务开始后,自动关闭悬浮窗" />
<button w="130" id="stop" text="关闭悬浮窗" /> </horizontal>
<horizontal gravity="center">
<button w="125" id="start" text="开启悬浮窗" />
<button w="125" id="stop" text="关闭悬浮窗" />
</horizontal> </horizontal>
</vertical> </vertical>
); );
ui.proto.setText(http_proto); ui.proto.setText(config.http_proto);
ui.host.setText(host); ui.host.setText(config.host);
ui.port.setText(port); ui.port.setText(config.port);
ui.auto_close.setChecked(config.auto_close);
function toggle_ui(running) { function toggle_ui(running) {
group_waiting = [ui.proto, ui.host, ui.port, ui.start]; group_waiting = [ui.proto, ui.host, ui.port, ui.start];
@ -72,7 +105,6 @@ function toggle_ui(running) {
toggle_ui(false); toggle_ui(false);
ws = null; ws = null;
ws_proto = http_proto == "https" ? "wss" : "ws";
reg = /^[0-9].*/; reg = /^[0-9].*/;
log = []; log = [];
@ -109,9 +141,7 @@ function time_diff(diff) {
function update_tasks() { function update_tasks() {
if (w) { if (w) {
request = new Request.Builder() request = new Request.Builder().url(config.scheduler_url).build();
.url(`${http_proto}://${host}:${port}/scheduler`)
.build();
response = client.newCall(request).execute(); response = client.newCall(request).execute();
scheduler = JSON.parse(response.body().string()); scheduler = JSON.parse(response.body().string());
setTimeout(update_tasks, 5000); setTimeout(update_tasks, 5000);
@ -130,6 +160,7 @@ function stop_floaty() {
w.close(); w.close();
w = null; w = null;
} }
scheduler = { idle: false, next_time: null };
stop_ws(); stop_ws();
clearInterval(w_timer); clearInterval(w_timer);
toggle_ui(false); toggle_ui(false);
@ -190,7 +221,7 @@ ui.start.click(() => {
); );
w.setSize(-2, -2); w.setSize(-2, -2);
w.setPosition(wx, wy); w.setPosition(config.wx, config.wy);
w.container.setOnTouchListener((view, event) => { w.container.setOnTouchListener((view, event) => {
switch (event.getAction()) { switch (event.getAction()) {
@ -201,13 +232,11 @@ ui.start.click(() => {
case event.ACTION_MOVE: case event.ACTION_MOVE:
dx = event.getRawX() - X; dx = event.getRawX() - X;
dy = event.getRawY() - Y; dy = event.getRawY() - Y;
w.setPosition(wx + dx, wy + dy); w.setPosition(config.wx + dx, config.wy + dy);
return true; return true;
case event.ACTION_UP: case event.ACTION_UP:
wx += dx; config.wx += dx;
wy += dy; config.wy += dy;
storage.put("wx", wx);
storage.put("wy", wy);
return true; return true;
} }
}); });
@ -220,9 +249,7 @@ ui.start.click(() => {
stop_ws(); stop_ws();
return; return;
} }
request = new Request.Builder() request = new Request.Builder().url(config.ws_url).build();
.url(`${ws_proto}://${host}:${port}/ws`)
.build();
ws = client.newWebSocket( ws = client.newWebSocket(
request, request,
new okhttp3.WebSocketListener({ new okhttp3.WebSocketListener({
@ -260,6 +287,10 @@ ui.start.click(() => {
next_time = no_time; next_time = no_time;
remain_time = no_time; remain_time = no_time;
} }
if (config.auto_close && remain_time == no_time) {
stop_floaty();
return;
}
ui.run(() => { ui.run(() => {
w.next.setText(`下次任务:${next_time}`); w.next.setText(`下次任务:${next_time}`);
w.remain.setText(`剩余时间:${remain_time}`); w.remain.setText(`剩余时间:${remain_time}`);
@ -267,7 +298,14 @@ ui.start.click(() => {
}, 1000); }, 1000);
threads.start(() => { threads.start(() => {
update_tasks(); try {
update_tasks();
} catch {
ui.run(() => {
stop_floaty();
alert("网络连接错误", "请检查设置填写是否正确!");
});
}
}); });
}); });

View file

@ -16,5 +16,5 @@
"packageName": "vip.zhaozuohong.mowernghelper", "packageName": "vip.zhaozuohong.mowernghelper",
"scripts": {}, "scripts": {},
"versionCode": 2, "versionCode": 2,
"versionName": "1.1.0" "versionName": "1.2.0"
} }