mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 06:06:01 +00:00
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
class ElectronApi {
|
|
private ipcRenderer = getIpcRenderer();
|
|
|
|
constructor() {}
|
|
|
|
send(msg, args = null) {
|
|
this.ipcRenderer.send(msg, args);
|
|
}
|
|
|
|
async showOpenDialog(options) {
|
|
const res = await this.ipcRenderer.invoke('showOpenDialog', options);
|
|
return res;
|
|
}
|
|
|
|
async showSaveDialog(options) {
|
|
const res = await this.ipcRenderer.invoke('showSaveDialog', options);
|
|
return res;
|
|
}
|
|
|
|
async showItemInFolder(path) {
|
|
const res = await this.ipcRenderer.invoke('showItemInFolder', path);
|
|
return res;
|
|
}
|
|
|
|
async openExternal(url) {
|
|
await this.ipcRenderer.invoke('openExternal', url);
|
|
}
|
|
|
|
async invoke(route, args) {
|
|
const res = await this.ipcRenderer.invoke(route, args);
|
|
return res;
|
|
}
|
|
|
|
addEventListener(channel: string, listener: Function) {
|
|
this.ipcRenderer.on(channel, listener);
|
|
}
|
|
|
|
removeEventListener(channel: string, listener: Function) {
|
|
this.ipcRenderer.removeListener(channel, listener);
|
|
}
|
|
}
|
|
|
|
function getIpcRenderer() {
|
|
if (window['require']) {
|
|
const electron = window['require']('electron');
|
|
return electron?.ipcRenderer;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
export function isElectronAvailable() {
|
|
return !!getIpcRenderer();
|
|
}
|
|
|
|
const apiInstance = isElectronAvailable() ? new ElectronApi() : null;
|
|
|
|
export default function getElectron(): ElectronApi {
|
|
return apiInstance;
|
|
// try {
|
|
// // @ts-ignore
|
|
// return ipcRenderer;
|
|
// } catch (e) {
|
|
// return null;
|
|
// }
|
|
// if (window['require']) {
|
|
// const electron = window['require']('electron');
|
|
// console.log('electron?.ipcRenderer', electron?.ipcRenderer);
|
|
// return electron?.ipcRenderer;
|
|
// }
|
|
// return null;
|
|
}
|