mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-04 05:02:17 +00:00
## Summary Add workspace creation and management (create, edit, delete, leave, switch workspaces). Follow-up PR will add invite and membership flow. ## Changes - Workspace CRUD dialogs - Workspace switcher popover in topbar - Workspace settings panel - Subscription panel for workspace context ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8221-Workspaces-3-create-a-workspace-2ef6d73d36508155975ffa6e315971ec) by [Unito](https://www.unito.io) --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
164 lines
4.8 KiB
Vue
164 lines
4.8 KiB
Vue
<template>
|
|
<div class="flex h-full w-full flex-col">
|
|
<div class="pb-8 flex items-center gap-4">
|
|
<WorkspaceProfilePic
|
|
class="size-12 !text-3xl"
|
|
:workspace-name="workspaceName"
|
|
/>
|
|
<h1 class="text-3xl text-base-foreground">
|
|
{{ workspaceName }}
|
|
</h1>
|
|
</div>
|
|
<Tabs :value="activeTab" @update:value="setActiveTab">
|
|
<div class="flex w-full items-center">
|
|
<TabList class="w-full">
|
|
<Tab value="plan">{{ $t('workspacePanel.tabs.planCredits') }}</Tab>
|
|
</TabList>
|
|
|
|
<template v-if="permissions.canAccessWorkspaceMenu">
|
|
<Button
|
|
v-tooltip="{ value: $t('g.moreOptions'), showDelay: 300 }"
|
|
variant="muted-textonly"
|
|
size="icon"
|
|
:aria-label="$t('g.moreOptions')"
|
|
@click="menu?.toggle($event)"
|
|
>
|
|
<i class="pi pi-ellipsis-h" />
|
|
</Button>
|
|
<Menu ref="menu" :model="menuItems" :popup="true">
|
|
<template #item="{ item }">
|
|
<div
|
|
v-tooltip="
|
|
item.disabled && deleteTooltip
|
|
? { value: deleteTooltip, showDelay: 0 }
|
|
: null
|
|
"
|
|
:class="[
|
|
'flex items-center gap-2 px-3 py-2',
|
|
item.class,
|
|
item.disabled ? 'pointer-events-auto' : ''
|
|
]"
|
|
@click="
|
|
item.command?.({
|
|
originalEvent: $event,
|
|
item
|
|
})
|
|
"
|
|
>
|
|
<i :class="item.icon" />
|
|
<span>{{ item.label }}</span>
|
|
</div>
|
|
</template>
|
|
</Menu>
|
|
</template>
|
|
</div>
|
|
|
|
<TabPanels>
|
|
<TabPanel value="plan">
|
|
<SubscriptionPanelContent />
|
|
</TabPanel>
|
|
</TabPanels>
|
|
</Tabs>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { storeToRefs } from 'pinia'
|
|
import Menu from 'primevue/menu'
|
|
import Tab from 'primevue/tab'
|
|
import TabList from 'primevue/tablist'
|
|
import TabPanel from 'primevue/tabpanel'
|
|
import TabPanels from 'primevue/tabpanels'
|
|
import Tabs from 'primevue/tabs'
|
|
import { computed, onMounted, ref } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import WorkspaceProfilePic from '@/components/common/WorkspaceProfilePic.vue'
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import SubscriptionPanelContent from '@/platform/cloud/subscription/components/SubscriptionPanelContentWorkspace.vue'
|
|
import { useWorkspaceUI } from '@/platform/workspace/composables/useWorkspaceUI'
|
|
import { useTeamWorkspaceStore } from '@/platform/workspace/stores/teamWorkspaceStore'
|
|
import { useDialogService } from '@/services/dialogService'
|
|
|
|
const { defaultTab = 'plan' } = defineProps<{
|
|
defaultTab?: string
|
|
}>()
|
|
|
|
const { t } = useI18n()
|
|
const {
|
|
showLeaveWorkspaceDialog,
|
|
showDeleteWorkspaceDialog,
|
|
showEditWorkspaceDialog
|
|
} = useDialogService()
|
|
const workspaceStore = useTeamWorkspaceStore()
|
|
const { workspaceName, isWorkspaceSubscribed } = storeToRefs(workspaceStore)
|
|
|
|
const { activeTab, setActiveTab, permissions, uiConfig } = useWorkspaceUI()
|
|
|
|
const menu = ref<InstanceType<typeof Menu> | null>(null)
|
|
|
|
function handleLeaveWorkspace() {
|
|
showLeaveWorkspaceDialog()
|
|
}
|
|
|
|
function handleDeleteWorkspace() {
|
|
showDeleteWorkspaceDialog()
|
|
}
|
|
|
|
function handleEditWorkspace() {
|
|
showEditWorkspaceDialog()
|
|
}
|
|
|
|
// Disable delete when workspace has an active subscription (to prevent accidental deletion)
|
|
// Use workspace's own subscription status, not the global isActiveSubscription
|
|
const isDeleteDisabled = computed(
|
|
() =>
|
|
uiConfig.value.workspaceMenuAction === 'delete' &&
|
|
isWorkspaceSubscribed.value
|
|
)
|
|
|
|
const deleteTooltip = computed(() => {
|
|
if (!isDeleteDisabled.value) return null
|
|
const tooltipKey = uiConfig.value.workspaceMenuDisabledTooltip
|
|
return tooltipKey ? t(tooltipKey) : null
|
|
})
|
|
|
|
const menuItems = computed(() => {
|
|
const items = []
|
|
|
|
// Add edit option for owners
|
|
if (uiConfig.value.showEditWorkspaceMenuItem) {
|
|
items.push({
|
|
label: t('workspacePanel.menu.editWorkspace'),
|
|
icon: 'pi pi-pencil',
|
|
command: handleEditWorkspace
|
|
})
|
|
}
|
|
|
|
const action = uiConfig.value.workspaceMenuAction
|
|
if (action === 'delete') {
|
|
items.push({
|
|
label: t('workspacePanel.menu.deleteWorkspace'),
|
|
icon: 'pi pi-trash',
|
|
class: isDeleteDisabled.value
|
|
? 'text-danger/50 cursor-not-allowed'
|
|
: 'text-danger',
|
|
disabled: isDeleteDisabled.value,
|
|
command: isDeleteDisabled.value ? undefined : handleDeleteWorkspace
|
|
})
|
|
} else if (action === 'leave') {
|
|
items.push({
|
|
label: t('workspacePanel.menu.leaveWorkspace'),
|
|
icon: 'pi pi-sign-out',
|
|
command: handleLeaveWorkspace
|
|
})
|
|
}
|
|
|
|
return items
|
|
})
|
|
|
|
onMounted(() => {
|
|
setActiveTab(defaultTab)
|
|
})
|
|
</script>
|