mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-06 16:10:09 +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>
79 lines
2.4 KiB
Vue
79 lines
2.4 KiB
Vue
<template>
|
|
<div
|
|
class="flex w-full max-w-[360px] flex-col rounded-2xl border border-border-default bg-base-background"
|
|
>
|
|
<!-- Header -->
|
|
<div
|
|
class="flex h-12 items-center justify-between border-b border-border-default px-4"
|
|
>
|
|
<h2 class="m-0 text-sm font-normal text-base-foreground">
|
|
{{ $t('workspacePanel.leaveDialog.title') }}
|
|
</h2>
|
|
<button
|
|
class="cursor-pointer rounded border-none bg-transparent p-0 text-muted-foreground transition-colors hover:text-base-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-secondary-foreground"
|
|
:aria-label="$t('g.close')"
|
|
@click="onCancel"
|
|
>
|
|
<i class="pi pi-times size-4" />
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Body -->
|
|
<div class="px-4 py-4">
|
|
<p class="m-0 text-sm text-muted-foreground">
|
|
{{ $t('workspacePanel.leaveDialog.message') }}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="flex items-center justify-end gap-4 px-4 py-4">
|
|
<Button variant="muted-textonly" @click="onCancel">
|
|
{{ $t('g.cancel') }}
|
|
</Button>
|
|
<Button variant="destructive" size="lg" :loading @click="onLeave">
|
|
{{ $t('workspacePanel.leaveDialog.leave') }}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { useToast } from 'primevue/usetoast'
|
|
import { ref } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import Button from '@/components/ui/button/Button.vue'
|
|
import { useTeamWorkspaceStore } from '@/platform/workspace/stores/teamWorkspaceStore'
|
|
import { useDialogStore } from '@/stores/dialogStore'
|
|
|
|
const { t } = useI18n()
|
|
const toast = useToast()
|
|
const dialogStore = useDialogStore()
|
|
const workspaceStore = useTeamWorkspaceStore()
|
|
const loading = ref(false)
|
|
|
|
function onCancel() {
|
|
dialogStore.closeDialog({ key: 'leave-workspace' })
|
|
}
|
|
|
|
async function onLeave() {
|
|
loading.value = true
|
|
try {
|
|
// leaveWorkspace() handles switching to personal workspace internally and reloads
|
|
await workspaceStore.leaveWorkspace()
|
|
dialogStore.closeDialog({ key: 'leave-workspace' })
|
|
window.location.reload()
|
|
} catch (error) {
|
|
console.error('[LeaveWorkspaceDialog] Failed to leave workspace:', error)
|
|
toast.add({
|
|
severity: 'error',
|
|
summary: t('workspacePanel.toast.failedToLeaveWorkspace'),
|
|
detail: error instanceof Error ? error.message : t('g.unknownError'),
|
|
life: 5000
|
|
})
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
</script>
|