mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
* Basic prototype * Welcome screen animation * nit * Refactor structure * Fix mocking * Add tooltips * i18n * Add next button * nit * Stepper navigate * Extract * More i18n * More i18n * Polish MigrationPicker * Polish settings step * Add more i18n * nit * nit
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { defineConfig, Plugin } 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 = {
|
|
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: 'C:/Users/username/comfyui-electron'
|
|
}),
|
|
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')
|
|
};`
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default mergeConfig(
|
|
baseConfig as unknown as UserConfig,
|
|
defineConfig({
|
|
plugins: [mockElectronAPI]
|
|
})
|
|
) |