-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix router and move graph related parts to GraphView.vue * (fix) add back child element in UnloadWindowConfirmDialog * (cleanup) remove empty callback
- Loading branch information
Showing
3 changed files
with
160 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,156 @@ | ||
<template> | ||
<GraphCanvas /> | ||
<GlobalToast /> | ||
<UnloadWindowConfirmDialog /> | ||
<BrowserTabTitle /> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import GraphCanvas from '@/components/graph/GraphCanvas.vue' | ||
import { | ||
computed, | ||
markRaw, | ||
onMounted, | ||
onBeforeUnmount, | ||
watch, | ||
watchEffect | ||
} from 'vue' | ||
import { app } from '@/scripts/app' | ||
import { useSettingStore } from '@/stores/settingStore' | ||
import { useI18n } from 'vue-i18n' | ||
import { useWorkspaceStore } from '@/stores/workspaceStateStore' | ||
import { api } from '@/scripts/api' | ||
import { StatusWsMessageStatus } from '@/types/apiTypes' | ||
import { useQueuePendingTaskCountStore } from '@/stores/queueStore' | ||
import type { ToastMessageOptions } from 'primevue/toast' | ||
import { useToast } from 'primevue/usetoast' | ||
import { i18n } from '@/i18n' | ||
import { useExecutionStore } from '@/stores/executionStore' | ||
import { useWorkflowStore } from '@/stores/workflowStore' | ||
import QueueSidebarTab from '@/components/sidebar/tabs/QueueSidebarTab.vue' | ||
import NodeLibrarySidebarTab from '@/components/sidebar/tabs/NodeLibrarySidebarTab.vue' | ||
import GlobalToast from '@/components/toast/GlobalToast.vue' | ||
import UnloadWindowConfirmDialog from '@/components/dialog/UnloadWindowConfirmDialog.vue' | ||
import BrowserTabTitle from '@/components/BrowserTabTitle.vue' | ||
const { t } = useI18n() | ||
const toast = useToast() | ||
const settingStore = useSettingStore() | ||
const executionStore = useExecutionStore() | ||
const theme = computed<string>(() => settingStore.get('Comfy.ColorPalette')) | ||
watch( | ||
theme, | ||
(newTheme) => { | ||
const DARK_THEME_CLASS = 'dark-theme' | ||
const isDarkTheme = newTheme !== 'light' | ||
if (isDarkTheme) { | ||
document.body.classList.add(DARK_THEME_CLASS) | ||
} else { | ||
document.body.classList.remove(DARK_THEME_CLASS) | ||
} | ||
}, | ||
{ immediate: true } | ||
) | ||
watchEffect(() => { | ||
const fontSize = settingStore.get('Comfy.TextareaWidget.FontSize') | ||
document.documentElement.style.setProperty( | ||
'--comfy-textarea-font-size', | ||
`${fontSize}px` | ||
) | ||
}) | ||
watchEffect(() => { | ||
const padding = settingStore.get('Comfy.TreeExplorer.ItemPadding') | ||
document.documentElement.style.setProperty( | ||
'--comfy-tree-explorer-item-padding', | ||
`${padding}px` | ||
) | ||
}) | ||
watchEffect(() => { | ||
const locale = settingStore.get('Comfy.Locale') | ||
if (locale) { | ||
i18n.global.locale.value = locale as 'en' | 'zh' | ||
} | ||
}) | ||
const init = () => { | ||
settingStore.addSettings(app.ui.settings) | ||
app.extensionManager = useWorkspaceStore() | ||
app.extensionManager.registerSidebarTab({ | ||
id: 'queue', | ||
icon: 'pi pi-history', | ||
iconBadge: () => { | ||
const value = useQueuePendingTaskCountStore().count.toString() | ||
return value === '0' ? null : value | ||
}, | ||
title: t('sideToolbar.queue'), | ||
tooltip: t('sideToolbar.queue'), | ||
component: markRaw(QueueSidebarTab), | ||
type: 'vue' | ||
}) | ||
app.extensionManager.registerSidebarTab({ | ||
id: 'node-library', | ||
icon: 'pi pi-book', | ||
title: t('sideToolbar.nodeLibrary'), | ||
tooltip: t('sideToolbar.nodeLibrary'), | ||
component: markRaw(NodeLibrarySidebarTab), | ||
type: 'vue' | ||
}) | ||
} | ||
const queuePendingTaskCountStore = useQueuePendingTaskCountStore() | ||
const onStatus = (e: CustomEvent<StatusWsMessageStatus>) => { | ||
queuePendingTaskCountStore.update(e) | ||
} | ||
const reconnectingMessage: ToastMessageOptions = { | ||
severity: 'error', | ||
summary: t('reconnecting') | ||
} | ||
const onReconnecting = () => { | ||
toast.remove(reconnectingMessage) | ||
toast.add(reconnectingMessage) | ||
} | ||
const onReconnected = () => { | ||
toast.remove(reconnectingMessage) | ||
toast.add({ | ||
severity: 'success', | ||
summary: t('reconnected'), | ||
life: 2000 | ||
}) | ||
} | ||
const workflowStore = useWorkflowStore() | ||
app.workflowManager.executionStore = executionStore | ||
watchEffect(() => { | ||
app.menu.workflows.buttonProgress.style.width = `${executionStore.executionProgress}%` | ||
}) | ||
app.workflowManager.workflowStore = workflowStore | ||
onMounted(() => { | ||
api.addEventListener('status', onStatus) | ||
api.addEventListener('reconnecting', onReconnecting) | ||
api.addEventListener('reconnected', onReconnected) | ||
executionStore.bindExecutionEvents() | ||
try { | ||
init() | ||
} catch (e) { | ||
console.error('Failed to init ComfyUI frontend', e) | ||
} | ||
}) | ||
onBeforeUnmount(() => { | ||
api.removeEventListener('status', onStatus) | ||
api.removeEventListener('reconnecting', onReconnecting) | ||
api.removeEventListener('reconnected', onReconnected) | ||
executionStore.unbindExecutionEvents() | ||
}) | ||
</script> |