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.
65 lines
1.8 KiB
65 lines
1.8 KiB
<script lang="ts" setup> |
|
const props = defineProps<{ |
|
visible: boolean |
|
baseId: string |
|
}>() |
|
|
|
const emits = defineEmits(['update:visible']) |
|
|
|
const visible = useVModel(props, 'visible', emits) |
|
|
|
const { closeTab } = useTabs() |
|
|
|
const basesStore = useBases() |
|
const { deleteProject, navigateToFirstProjectOrHome } = basesStore |
|
const { bases } = storeToRefs(basesStore) |
|
|
|
const { removeFromRecentViews } = useViewsStore() |
|
|
|
const { refreshCommandPalette } = useCommandPalette() |
|
|
|
const base = computed(() => bases.value.get(props.baseId)) |
|
|
|
const isLoading = ref(false) |
|
|
|
const onDelete = async () => { |
|
if (!base.value) return |
|
|
|
const toBeDeletedProject = JSON.parse(JSON.stringify(base.value)) |
|
|
|
isLoading.value = true |
|
try { |
|
await deleteProject(toBeDeletedProject.id!) |
|
await closeTab(toBeDeletedProject.id as any) |
|
|
|
refreshCommandPalette() |
|
|
|
visible.value = false |
|
|
|
if (toBeDeletedProject.id === basesStore.activeProjectId) { |
|
await navigateToFirstProjectOrHome() |
|
} |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} finally { |
|
isLoading.value = false |
|
removeFromRecentViews({ baseId: toBeDeletedProject.id! }) |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<GeneralDeleteModal v-model:visible="visible" :entity-name="$t('objects.project')" :on-delete="onDelete"> |
|
<template #entity-preview> |
|
<div v-if="base" class="flex flex-row items-center py-2 px-2.25 bg-gray-50 rounded-lg text-gray-700 mb-4"> |
|
<GeneralProjectIcon :type="base.type" class="nc-view-icon px-1.5 w-10" /> |
|
<div |
|
class="capitalize text-ellipsis overflow-hidden select-none w-full pl-1.75" |
|
:style="{ wordBreak: 'keep-all', whiteSpace: 'nowrap', display: 'inline' }" |
|
> |
|
{{ base.title }} |
|
</div> |
|
</div> |
|
</template> |
|
</GeneralDeleteModal> |
|
</template>
|
|
|