mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import { Plugin, defineConfig } from 'vite'
|
|
import { mergeConfig } from 'vite'
|
|
import type { UserConfig } from 'vitest/config'
|
|
|
|
import baseConfig from './vite.config.mts'
|
|
|
|
const mockElectronAPI: Plugin = {
|
|
name: 'mock-electron-api',
|
|
transformIndexHtml() {
|
|
return [
|
|
{
|
|
tag: 'script',
|
|
children: `window.electronAPI = {
|
|
restartApp: () => {
|
|
alert('restartApp')
|
|
},
|
|
sendReady: () => {},
|
|
onShowSelectDirectory: () => {},
|
|
onFirstTimeSetupComplete: () => {},
|
|
onProgressUpdate: () => {},
|
|
onLogMessage: () => {},
|
|
isFirstTimeSetup: () => Promise.resolve(true),
|
|
getSystemPaths: () =>
|
|
Promise.resolve({
|
|
appData: 'C:/Users/username/AppData/Roaming',
|
|
appPath: 'C:/Program Files/comfyui-electron/resources/app',
|
|
defaultInstallPath: 'bad'
|
|
}),
|
|
validateInstallPath: (path) => {
|
|
if (path === 'bad') {
|
|
return { isValid: false, error: 'Bad path!' }
|
|
}
|
|
return { isValid: true }
|
|
},
|
|
migrationItems: () =>
|
|
Promise.resolve([
|
|
{
|
|
id: 'user_files',
|
|
label: 'User Files',
|
|
description: 'Settings and user-created workflows'
|
|
}
|
|
]),
|
|
validateComfyUISource: (path) => {
|
|
if (path === 'bad') {
|
|
return { isValid: false, error: 'Bad path!' }
|
|
}
|
|
return { isValid: true }
|
|
},
|
|
showDirectoryPicker: () => Promise.resolve('C:/Users/username/comfyui-electron/1'),
|
|
DownloadManager: {
|
|
getAllDownloads: () => Promise.resolve([]),
|
|
onDownloadProgress: () => {}
|
|
},
|
|
getElectronVersion: () => Promise.resolve('1.0.0'),
|
|
getComfyUIVersion: () => '9.9.9',
|
|
getPlatform: () => 'win32',
|
|
changeTheme: () => {},
|
|
Config: {
|
|
setWindowStyle: () => {},
|
|
getWindowStyle: () => Promise.resolve('default')
|
|
}
|
|
};`
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default mergeConfig(
|
|
baseConfig as unknown as UserConfig,
|
|
defineConfig({
|
|
plugins: [mockElectronAPI]
|
|
})
|
|
)
|