mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { Notification } from "electron";
|
|
import { getResolvedUpdateChannel } from "emain/updater";
|
|
import { RpcResponseHelper, WshClient } from "../frontend/app/store/wshclient";
|
|
import { getWaveWindowById } from "./emain-viewmgr";
|
|
import { getWebContentsByBlockId, webGetSelector } from "./emain-web";
|
|
|
|
export class ElectronWshClientType extends WshClient {
|
|
constructor() {
|
|
super("electron");
|
|
}
|
|
|
|
async handle_webselector(rh: RpcResponseHelper, data: CommandWebSelectorData): Promise<string[]> {
|
|
if (!data.tabid || !data.blockid || !data.windowid) {
|
|
throw new Error("tabid and blockid are required");
|
|
}
|
|
const ww = getWaveWindowById(data.windowid);
|
|
if (ww == null) {
|
|
throw new Error(`no window found with id ${data.windowid}`);
|
|
}
|
|
const wc = await getWebContentsByBlockId(ww, data.tabid, data.blockid);
|
|
if (wc == null) {
|
|
throw new Error(`no webcontents found with blockid ${data.blockid}`);
|
|
}
|
|
const rtn = await webGetSelector(wc, data.selector, data.opts);
|
|
return rtn;
|
|
}
|
|
|
|
async handle_notify(rh: RpcResponseHelper, notificationOptions: WaveNotificationOptions) {
|
|
new Notification({
|
|
title: notificationOptions.title,
|
|
body: notificationOptions.body,
|
|
silent: notificationOptions.silent,
|
|
}).show();
|
|
}
|
|
|
|
async handle_getupdatechannel(rh: RpcResponseHelper): Promise<string> {
|
|
return getResolvedUpdateChannel();
|
|
}
|
|
}
|
|
|
|
export let ElectronWshClient: ElectronWshClientType;
|
|
|
|
export function initElectronWshClient() {
|
|
ElectronWshClient = new ElectronWshClientType();
|
|
}
|