mirror of
https://github.com/hicccc77/WeFlow.git
synced 2026-05-01 07:26:48 +00:00
253 lines
7.4 KiB
TypeScript
253 lines
7.4 KiB
TypeScript
import { defineConfig } from 'vite'
|
||
import react from '@vitejs/plugin-react'
|
||
import electron from 'vite-plugin-electron'
|
||
import renderer from 'vite-plugin-electron-renderer'
|
||
import { resolve } from 'path'
|
||
|
||
const handleElectronOnStart = (options: { reload: () => void }) => {
|
||
options.reload()
|
||
}
|
||
|
||
const exportWorkerElectronShimPlugin = () => {
|
||
const virtualId = 'virtual:weflow-export-worker-electron'
|
||
const resolvedVirtualId = `\0${virtualId}`
|
||
|
||
return {
|
||
name: 'weflow-export-worker-electron-shim',
|
||
enforce: 'pre' as const,
|
||
resolveId(id: string) {
|
||
if (id === virtualId) return resolvedVirtualId
|
||
return null
|
||
},
|
||
load(id: string) {
|
||
if (id !== resolvedVirtualId) return null
|
||
return `
|
||
import { homedir, tmpdir } from 'os'
|
||
import { join } from 'path'
|
||
|
||
const workerUserDataPath = () => String(process.env.WEFLOW_USER_DATA_PATH || process.env.WEFLOW_CONFIG_CWD || '').trim()
|
||
const appDataPath = () => {
|
||
if (process.platform === 'win32' && process.env.APPDATA) return process.env.APPDATA
|
||
if (process.platform === 'darwin') return join(homedir(), 'Library', 'Application Support')
|
||
return process.env.XDG_CONFIG_HOME || join(homedir(), '.config')
|
||
}
|
||
const getPath = (name) => {
|
||
if (name === 'userData') return workerUserDataPath() || join(appDataPath(), 'WeFlow')
|
||
if (name === 'documents') return join(homedir(), 'Documents')
|
||
if (name === 'desktop') return join(homedir(), 'Desktop')
|
||
if (name === 'downloads') return join(homedir(), 'Downloads')
|
||
if (name === 'temp') return tmpdir()
|
||
if (name === 'appData') return appDataPath()
|
||
return process.cwd()
|
||
}
|
||
|
||
export const app = {
|
||
isPackaged: Boolean(process.resourcesPath && process.env.NODE_ENV !== 'development'),
|
||
getPath,
|
||
getAppPath: () => process.cwd(),
|
||
getName: () => 'WeFlow',
|
||
getVersion: () => process.env.npm_package_version || '0.0.0'
|
||
}
|
||
export const BrowserWindow = { getAllWindows: () => [] }
|
||
export const dialog = { showMessageBox: async () => ({ response: 0, checkboxChecked: false }) }
|
||
export const shell = { openExternal: async () => false, showItemInFolder: () => {} }
|
||
export const ipcMain = { on: () => {}, handle: () => {}, removeHandler: () => {} }
|
||
export const ipcRenderer = { sendSync: () => ({}) }
|
||
export const safeStorage = {
|
||
isEncryptionAvailable: () => false,
|
||
encryptString: (value) => Buffer.from(String(value || ''), 'utf8'),
|
||
decryptString: (value) => Buffer.isBuffer(value) ? value.toString('utf8') : Buffer.from(value).toString('utf8')
|
||
}
|
||
export const Notification = class {
|
||
static isSupported() { return false }
|
||
on() { return this }
|
||
show() {}
|
||
close() {}
|
||
}
|
||
export default { app, BrowserWindow, dialog, shell, ipcMain, ipcRenderer, safeStorage, Notification }
|
||
`
|
||
},
|
||
transform(code: string, id: string) {
|
||
if (!/\.[cm]?[jt]s$/.test(id)) return null
|
||
if (!code.includes("'electron'") && !code.includes('"electron"')) return null
|
||
const next = code
|
||
.replace(/from\s+(['"])electron\1/g, `from '${virtualId}'`)
|
||
.replace(/import\s*\(\s*(['"])electron\1\s*\)/g, `import('${virtualId}')`)
|
||
.replace(/require\s*\(\s*(['"])electron\1\s*\)/g, `require('${virtualId}')`)
|
||
return next === code ? null : { code: next, map: null }
|
||
}
|
||
}
|
||
}
|
||
|
||
export default defineConfig({
|
||
base: './',
|
||
server: {
|
||
port: 3000,
|
||
strictPort: false // 如果3000被占用,自动尝试下一个
|
||
},
|
||
build: {
|
||
chunkSizeWarningLimit: 900,
|
||
commonjsOptions: {
|
||
ignoreDynamicRequires: true
|
||
}
|
||
},
|
||
optimizeDeps: {
|
||
exclude: []
|
||
},
|
||
plugins: [
|
||
react(),
|
||
electron([
|
||
{
|
||
entry: 'electron/main.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'better-sqlite3',
|
||
'koffi',
|
||
'fsevents',
|
||
'whisper-node',
|
||
'shelljs',
|
||
'exceljs',
|
||
'node-llama-cpp',
|
||
'@vscode/sudo-prompt'
|
||
]
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/annualReportWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'koffi',
|
||
'fsevents'
|
||
],
|
||
output: {
|
||
entryFileNames: 'annualReportWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/dualReportWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'koffi',
|
||
'fsevents'
|
||
],
|
||
output: {
|
||
entryFileNames: 'dualReportWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/imageSearchWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
output: {
|
||
entryFileNames: 'imageSearchWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/wcdbWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'better-sqlite3',
|
||
'koffi',
|
||
'fsevents'
|
||
],
|
||
output: {
|
||
entryFileNames: 'wcdbWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/transcribeWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'sherpa-onnx-node'
|
||
],
|
||
output: {
|
||
entryFileNames: 'transcribeWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/exportWorker.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
plugins: [exportWorkerElectronShimPlugin()],
|
||
build: {
|
||
outDir: 'dist-electron',
|
||
rollupOptions: {
|
||
external: [
|
||
'better-sqlite3',
|
||
'koffi',
|
||
'fsevents',
|
||
'exceljs'
|
||
],
|
||
output: {
|
||
entryFileNames: 'exportWorker.js',
|
||
inlineDynamicImports: true
|
||
}
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
entry: 'electron/preload.ts',
|
||
onstart: handleElectronOnStart,
|
||
vite: {
|
||
build: {
|
||
outDir: 'dist-electron'
|
||
}
|
||
}
|
||
}
|
||
]),
|
||
renderer()
|
||
],
|
||
resolve: {
|
||
dedupe: ['react', 'react-dom'],
|
||
alias: {
|
||
'@': resolve(__dirname, 'src')
|
||
}
|
||
}
|
||
})
|