feat(script): 添加脚本管理页面和相关功能

- 实现了脚本管理页面的基本布局和样式
- 添加了脚本列表加载、添加、编辑和删除功能- 集成了文件夹和文件选择对话框
- 优化了主题模式和颜色的动态切换
- 新增了多个脚本相关类型定义
This commit is contained in:
2025-08-04 14:42:31 +08:00
parent 94d038d563
commit 0b1ed48471
21 changed files with 3770 additions and 70 deletions

View File

@@ -1,12 +1,12 @@
import { app, BrowserWindow, ipcMain } from 'electron'
import { app, BrowserWindow, ipcMain, dialog } from 'electron'
import * as path from 'path'
let mainWindow: BrowserWindow | null = null
function createWindow() {
mainWindow = new BrowserWindow({
width: 1200,
height: 800,
width: 1600,
height: 900,
minWidth: 800,
minHeight: 600,
icon: path.join(__dirname, '../public/AUTO_MAA.ico'), // 设置应用图标
@@ -44,6 +44,41 @@ ipcMain.handle('open-dev-tools', () => {
}
})
// 处理文件夹选择请求
ipcMain.handle('select-folder', async () => {
if (!mainWindow) return null
const result = await dialog.showOpenDialog(mainWindow, {
properties: ['openDirectory'],
title: '选择文件夹'
})
if (result.canceled) {
return null
}
return result.filePaths[0]
})
// 处理文件选择请求
ipcMain.handle('select-file', async (event, filters = []) => {
if (!mainWindow) return null
const result = await dialog.showOpenDialog(mainWindow, {
properties: ['openFile'],
title: '选择文件',
filters: filters.length > 0 ? filters : [
{ name: '所有文件', extensions: ['*'] }
]
})
if (result.canceled) {
return null
}
return result.filePaths[0]
})
app.whenReady().then(createWindow)
app.on('window-all-closed', () => {

View File

@@ -6,5 +6,7 @@ window.addEventListener('DOMContentLoaded', () => {
// 暴露安全的 API 给渲染进程
contextBridge.exposeInMainWorld('electronAPI', {
openDevTools: () => ipcRenderer.invoke('open-dev-tools')
openDevTools: () => ipcRenderer.invoke('open-dev-tools'),
selectFolder: () => ipcRenderer.invoke('select-folder'),
selectFile: (filters?: any[]) => ipcRenderer.invoke('select-file', filters)
})