antares/src/renderer/ipc-api/Application.ts

43 lines
1.3 KiB
TypeScript
Raw Normal View History

import { ShortcutRecord } from 'common/shortcuts';
2022-06-05 17:57:44 +02:00
import { ipcRenderer, OpenDialogOptions, OpenDialogReturnValue } from 'electron';
2022-06-05 17:57:44 +02:00
import { unproxify } from '../libs/unproxify';
export default class {
static showOpenDialog (options: OpenDialogOptions): Promise<OpenDialogReturnValue> {
return ipcRenderer.invoke('show-open-dialog', unproxify(options));
}
static showSaveDialog (options: OpenDialogOptions): Promise<OpenDialogReturnValue> {
return ipcRenderer.invoke('show-save-dialog', unproxify(options));
}
2022-06-05 17:57:44 +02:00
static getDownloadPathDirectory (): Promise<string> {
return ipcRenderer.invoke('get-download-dir-path');
}
static reloadShortcuts () {
return ipcRenderer.invoke('reload-shortcuts');
}
static updateShortcuts (shortcuts: ShortcutRecord[]) {
return ipcRenderer.invoke('update-shortcuts', unproxify(shortcuts));
}
static restoreDefaultShortcuts () {
return ipcRenderer.invoke('resotre-default-shortcuts');
}
static unregisterShortcuts () {
return ipcRenderer.invoke('unregister-shortcuts');
}
static readFile (path: string): Promise<string> {
return ipcRenderer.invoke('read-file', path);
}
static writeFile (path: string, content: unknown) {
return ipcRenderer.invoke('write-file', path, content);
}
2022-06-05 17:57:44 +02:00
}