mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
1 year ago
|
<script lang="ts" setup>
|
||
|
const props = defineProps<{
|
||
|
visible: boolean
|
||
|
workspaceId: string
|
||
|
}>()
|
||
|
|
||
|
const emits = defineEmits(['update:visible'])
|
||
|
const visible = useVModel(props, 'visible', emits)
|
||
|
|
||
|
const workspaceStore = useWorkspace()
|
||
|
|
||
|
const { deleteWorkspace: _deleteWorkspace, loadWorkspaces, navigateToWorkspace } = workspaceStore
|
||
|
|
||
|
const { workspaces, workspacesList } = storeToRefs(workspaceStore)
|
||
|
|
||
|
const workspace = computed(() => workspaces.value.get(props.workspaceId))
|
||
|
|
||
|
const onDelete = async () => {
|
||
|
if (!workspace.value) return
|
||
|
|
||
|
try {
|
||
|
await _deleteWorkspace(workspace.value.id!)
|
||
|
await loadWorkspaces()
|
||
|
|
||
|
if (!workspacesList.value?.[0]?.id) {
|
||
|
return await navigateToWorkspace()
|
||
|
}
|
||
|
|
||
|
await navigateToWorkspace(workspacesList.value?.[0]?.id)
|
||
|
} catch (e: any) {
|
||
|
message.error(await extractSdkResponseErrorMsg(e))
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<GeneralDeleteModal v-model:visible="visible" :entity-name="$t('objects.workspace')" :on-delete="onDelete">
|
||
|
<template #entity-preview>
|
||
|
<div v-if="workspace" class="flex flex-row items-center py-2.25 px-2.75 bg-gray-50 rounded-lg text-gray-700 mb-4">
|
||
|
<GeneralIcon icon="workspace" />
|
||
|
<div
|
||
|
class="capitalize text-ellipsis overflow-hidden select-none w-full pl-2.25"
|
||
|
:style="{ wordBreak: 'keep-all', whiteSpace: 'nowrap', display: 'inline' }"
|
||
|
>
|
||
|
{{ workspace.title }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
</GeneralDeleteModal>
|
||
|
</template>
|