This commit is contained in:
贾同学
2025-10-16 20:01:57 +08:00
commit 4768ef2d26
79 changed files with 3358 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
import { dialog } from 'electron';
import { getMainWindow } from 'ee-core/electron';
/**
* effect - demo
* @class
*/
class EffectController {
/**
* select file
*/
selectFile(): string | null {
const filePaths = dialog.showOpenDialogSync({
properties: ['openFile']
});
if (!filePaths) {
return null
}
return filePaths[0];
}
/**
* login window
*/
loginWindow(args: { width?: number; height?: number }): void {
const { width, height } = args;
const win = getMainWindow();
const size = {
width: width || 400,
height: height || 300
}
win.setSize(size.width, size.height);
win.setResizable(true);
win.center();
win.show();
win.focus();
}
/**
* restore window
*/
restoreWindow(args: { width?: number; height?: number }): void {
const { width, height } = args;
const win = getMainWindow();
const size = {
width: width || 980,
height: height || 650
}
win.setSize(size.width, size.height);
win.setResizable(true);
win.center();
win.show();
win.focus();
}
}
EffectController.toString = () => '[class EffectController]';
export default EffectController;