Files
ComfyUI_frontend/src/stores/workspaceStore.ts
Christian Byrne 27ab355f9c [refactor] Improve updates/notifications domain organization (#5590)
* [refactor] Move update-related functionality to platform/updates domain

Reorganizes release management, version compatibility, and notification functionality
following Domain-Driven Design principles, mirroring VSCode's architecture pattern.

- Move releaseService.ts to platform/updates/common/
- Move releaseStore.ts to platform/updates/common/
- Move versionCompatibilityStore.ts to platform/updates/common/
- Move useFrontendVersionMismatchWarning.ts to platform/updates/common/
- Move toastStore.ts to platform/updates/common/
- Move ReleaseNotificationToast.vue to platform/updates/components/
- Move WhatsNewPopup.vue to platform/updates/components/
- Update 25+ import paths across codebase and tests

This creates a cohesive "updates" domain containing all functionality related to
software updates, version checking, release notifications, and user communication
about application state changes.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* fix imports

---------

Co-authored-by: Claude <noreply@anthropic.com>
2025-09-15 04:34:37 -07:00

110 lines
3.5 KiB
TypeScript

import { defineStore } from 'pinia'
import { computed, ref } from 'vue'
import { useSettingStore } from '@/platform/settings/settingStore'
import { useToastStore } from '@/platform/updates/common/toastStore'
import { useWorkflowStore } from '@/platform/workflow/management/stores/workflowStore'
import type { Settings } from '@/schemas/apiSchema'
import { useColorPaletteService } from '@/services/colorPaletteService'
import { useDialogService } from '@/services/dialogService'
import type { SidebarTabExtension, ToastManager } from '@/types/extensionTypes'
import { useApiKeyAuthStore } from './apiKeyAuthStore'
import { useCommandStore } from './commandStore'
import { useFirebaseAuthStore } from './firebaseAuthStore'
import { useQueueSettingsStore } from './queueStore'
import { useBottomPanelStore } from './workspace/bottomPanelStore'
import { useSidebarTabStore } from './workspace/sidebarTabStore'
export const useWorkspaceStore = defineStore('workspace', () => {
const spinner = ref(false)
const shiftDown = ref(false)
/**
* Whether the workspace is in focus mode.
* When in focus mode, only the graph editor is visible.
*/
const focusMode = ref(false)
const toast = computed<ToastManager>(() => useToastStore())
const queueSettings = computed(() => useQueueSettingsStore())
const command = computed(() => ({
commands: useCommandStore().commands,
execute: useCommandStore().execute
}))
const sidebarTab = computed(() => useSidebarTabStore())
const setting = computed(() => ({
settings: useSettingStore().settingsById,
// Allow generic key access to settings as custom nodes may add their
// own settings which is not tracked by the `Setting` schema.
get: (key: string) => useSettingStore().get(key as keyof Settings),
set: (key: string, value: unknown) =>
useSettingStore().set(key as keyof Settings, value)
}))
const workflow = computed(() => useWorkflowStore())
const colorPalette = useColorPaletteService()
const dialog = useDialogService()
const bottomPanel = useBottomPanelStore()
const authStore = useFirebaseAuthStore()
const apiKeyStore = useApiKeyAuthStore()
const firebaseUser = computed(() => authStore.currentUser)
const isApiKeyLogin = computed(() => apiKeyStore.isAuthenticated)
const isLoggedIn = computed(
() => !!isApiKeyLogin.value || firebaseUser.value !== null
)
const partialUserStore = {
isLoggedIn
}
/**
* Registers a sidebar tab.
* @param tab The sidebar tab to register.
* @deprecated Use `sidebarTab.registerSidebarTab` instead.
*/
function registerSidebarTab(tab: SidebarTabExtension) {
sidebarTab.value.registerSidebarTab(tab)
}
/**
* Unregisters a sidebar tab.
* @param id The id of the sidebar tab to unregister.
* @deprecated Use `sidebarTab.unregisterSidebarTab` instead.
*/
function unregisterSidebarTab(id: string) {
sidebarTab.value.unregisterSidebarTab(id)
}
/**
* Gets all registered sidebar tabs.
* @returns All registered sidebar tabs.
* @deprecated Use `sidebarTab.sidebarTabs` instead.
*/
function getSidebarTabs(): SidebarTabExtension[] {
return sidebarTab.value.sidebarTabs
}
return {
spinner,
shiftDown,
focusMode,
toggleFocusMode: () => {
focusMode.value = !focusMode.value
},
toast,
queueSettings,
command,
sidebarTab,
setting,
workflow,
colorPalette,
dialog,
bottomPanel,
user: partialUserStore,
registerSidebarTab,
unregisterSidebarTab,
getSidebarTabs
}
})