refactor: optimize RPC handling and wake on lan process management

This commit is contained in:
Huakun Shen 2025-01-28 11:38:25 -05:00
parent cc5c0a039d
commit dbd27233be
No known key found for this signature in database
2 changed files with 8 additions and 14 deletions

View File

@ -1,7 +1,7 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-wol",
"version": "0.0.7",
"version": "0.0.8",
"license": "MIT",
"type": "module",
"repository": {

View File

@ -51,18 +51,14 @@ async function getRpcAPI() {
class WakeOnLan extends WorkerExtension {
private hosts: WakeOnLanHost[] = [];
private rpc?: {
api: API;
rpcChannel: RPCChannel<object, API>;
process: Child;
command: DenoCommand<string>;
};
onListItemSelected(name: string): Promise<void> {
async onListItemSelected(name: string): Promise<void> {
const rpc = await getRpcAPI();
const host = this.hosts.find((host) => host.name === name);
if (host) {
console.log("host on list item selected", host);
this.rpc?.api
rpc?.api
.wakeOnLan(host.mac, host.ip, host.port)
.then(() => {
toast.success("Host waked", {
@ -73,15 +69,14 @@ class WakeOnLan extends WorkerExtension {
toast.error("Failed to wake host", {
description: err.message,
});
})
.finally(() => {
rpc?.process.kill();
});
}
return Promise.resolve();
}
async onBeforeGoBack(): Promise<void> {
this.rpc?.process.kill();
}
onActionSelected(value: string): Promise<void> {
const action = JSON.parse(value);
if (action.action === "delete") {
@ -104,7 +99,6 @@ class WakeOnLan extends WorkerExtension {
}
async load() {
this.rpc = await getRpcAPI();
const hosts = await db.search({
dataType: WakeOnLanHostType,
fields: ["data", "search_text"],