mirror of
https://github.com/AmintaCCCP/GithubStarsManager.git
synced 2025-11-25 02:34:54 +08:00
* Implemented `.hd-drag` and `.hd-btns` classes for better window management in the Electron app. * Updated `Header.tsx` to utilize these new classes for improved user experience.
180 lines
4.4 KiB
JavaScript
180 lines
4.4 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
const { execSync } = require('child_process');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
console.log('🚀 开始构建桌面应用...');
|
|
|
|
// 1. 构建Web应用
|
|
console.log('📦 构建Web应用...');
|
|
execSync('pnpm run build', { stdio: 'inherit' });
|
|
|
|
// 2. 创建Electron目录和文件
|
|
console.log('⚡ 设置Electron环境...');
|
|
const electronDir = path.join(__dirname, '../electron');
|
|
if (!fs.existsSync(electronDir)) {
|
|
fs.mkdirSync(electronDir, { recursive: true });
|
|
}
|
|
|
|
// 3. 创建主进程文件
|
|
const mainJs = `
|
|
const { app, BrowserWindow, Menu, shell } = require('electron');
|
|
const path = require('path');
|
|
const isDev = process.env.NODE_ENV === 'development';
|
|
|
|
let mainWindow;
|
|
|
|
function createWindow() {
|
|
mainWindow = new BrowserWindow({
|
|
width: 1200,
|
|
height: 800,
|
|
minWidth: 800,
|
|
minHeight: 600,
|
|
webPreferences: {
|
|
nodeIntegration: false,
|
|
contextIsolation: true,
|
|
enableRemoteModule: false,
|
|
webSecurity: true
|
|
},
|
|
icon: path.join(__dirname, '../dist/icon.svg'),
|
|
titleBarStyle: process.platform === 'darwin' ? 'hiddenInset' : 'default',
|
|
show: false
|
|
});
|
|
|
|
// 加载应用
|
|
if (isDev) {
|
|
mainWindow.loadURL('http://localhost:5173');
|
|
mainWindow.webContents.openDevTools();
|
|
} else {
|
|
mainWindow.loadFile(path.join(__dirname, '../dist/index.html'));
|
|
}
|
|
|
|
mainWindow.once('ready-to-show', () => {
|
|
mainWindow.show();
|
|
|
|
// 设置应用菜单
|
|
if (process.platform === 'darwin') {
|
|
const template = [
|
|
{
|
|
label: 'GitHub Stars Manager',
|
|
submenu: [
|
|
{ role: 'about' },
|
|
{ type: 'separator' },
|
|
{ role: 'services' },
|
|
{ type: 'separator' },
|
|
{ role: 'hide' },
|
|
{ role: 'hideothers' },
|
|
{ role: 'unhide' },
|
|
{ type: 'separator' },
|
|
{ role: 'quit' }
|
|
]
|
|
},
|
|
{
|
|
label: 'Edit',
|
|
submenu: [
|
|
{ role: 'undo' },
|
|
{ role: 'redo' },
|
|
{ type: 'separator' },
|
|
{ role: 'cut' },
|
|
{ role: 'copy' },
|
|
{ role: 'paste' },
|
|
{ role: 'selectall' }
|
|
]
|
|
},
|
|
{
|
|
label: 'View',
|
|
submenu: [
|
|
{ role: 'reload' },
|
|
{ role: 'forceReload' },
|
|
{ role: 'toggleDevTools' },
|
|
{ type: 'separator' },
|
|
{ role: 'resetZoom' },
|
|
{ role: 'zoomIn' },
|
|
{ role: 'zoomOut' },
|
|
{ type: 'separator' },
|
|
{ role: 'togglefullscreen' }
|
|
]
|
|
},
|
|
{
|
|
label: 'Window',
|
|
submenu: [
|
|
{ role: 'minimize' },
|
|
{ role: 'close' }
|
|
]
|
|
}
|
|
];
|
|
Menu.setApplicationMenu(Menu.buildFromTemplate(template));
|
|
}
|
|
});
|
|
|
|
// 处理外部链接
|
|
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
|
|
shell.openExternal(url);
|
|
return { action: 'deny' };
|
|
});
|
|
|
|
mainWindow.on('closed', () => {
|
|
mainWindow = null;
|
|
});
|
|
}
|
|
|
|
app.whenReady().then(createWindow);
|
|
|
|
app.on('window-all-closed', () => {
|
|
if (process.platform !== 'darwin') {
|
|
app.quit();
|
|
}
|
|
});
|
|
|
|
app.on('activate', () => {
|
|
if (BrowserWindow.getAllWindows().length === 0) {
|
|
createWindow();
|
|
}
|
|
});
|
|
|
|
// 安全设置
|
|
app.on('web-contents-created', (event, contents) => {
|
|
contents.on('new-window', (event, navigationUrl) => {
|
|
event.preventDefault();
|
|
shell.openExternal(navigationUrl);
|
|
});
|
|
});
|
|
`;
|
|
|
|
fs.writeFileSync(path.join(electronDir, 'main.js'), mainJs);
|
|
|
|
// 4. 创建Electron package.json
|
|
const electronPackageJson = {
|
|
name: 'github-stars-manager-desktop',
|
|
version: '1.0.0',
|
|
description: 'GitHub Stars Manager Desktop App',
|
|
main: 'main.js',
|
|
author: 'GitHub Stars Manager',
|
|
license: 'MIT'
|
|
};
|
|
|
|
fs.writeFileSync(
|
|
path.join(electronDir, 'package.json'),
|
|
JSON.stringify(electronPackageJson, null, 2)
|
|
);
|
|
|
|
// 5. 安装Electron依赖
|
|
console.log('📥 安装Electron依赖...');
|
|
try {
|
|
execSync('pnpm install --save-dev electron electron-builder', { stdio: 'inherit' });
|
|
} catch (error) {
|
|
console.error('安装依赖失败:', error.message);
|
|
process.exit(1);
|
|
}
|
|
|
|
// 6. 构建应用
|
|
console.log('🔨 构建桌面应用...');
|
|
try {
|
|
execSync('npx electron-builder', { stdio: 'inherit' });
|
|
console.log('✅ 桌面应用构建完成!');
|
|
console.log('📁 构建文件位于 release/ 目录');
|
|
} catch (error) {
|
|
console.error('构建失败:', error.message);
|
|
process.exit(1);
|
|
} |