Files
speckle-server/packages/frontend-2/components/server-management/DeleteProjectDialog.vue
T
Kristaps Fabians Geikins 0b2ca9a515 feat: add missing FE1 fields to the FE2 GQL schema (#2471)
* WIP version create

* commitCreate migrated

* minor cleanup

* commitReceived migrated

* added Project.object

* Project.comment introduced

* moving away old API usages in FE1

* ProjectMutations.batchDelete

* project pending access requests

* WIP project access req tests

* project access req tests done

* ModelByName test

* version mutation tests

* project.object tests

* batch delete tests

* minor improvements to redirect logging
2024-07-10 11:33:53 +02:00

136 lines
4.1 KiB
Vue

<template>
<LayoutDialog v-model:open="isOpen" max-width="sm" :buttons="dialogButtons">
<template #header>Delete Project</template>
<div class="flex flex-col gap-6">
<p>
Are you sure you want to
<strong>permanently delete</strong>
the selected project?
</p>
<div v-if="project">
<strong>{{ project.name }}</strong>
<p>
{{ project.models.totalCount }} models,
{{ project.versions.totalCount }} versions,
</p>
</div>
<p>
This action
<strong>cannot</strong>
be undone.
</p>
</div>
</LayoutDialog>
</template>
<script setup lang="ts">
import { useMutation } from '@vue/apollo-composable'
import { LayoutDialog, type LayoutDialogButton } from '@speckle/ui-components'
import type { ProjectItem } from '~~/lib/server-management/helpers/types'
import { adminDeleteProjectMutation } from '~~/lib/server-management/graphql/mutations'
import { useGlobalToast, ToastNotificationType } from '~~/lib/common/composables/toast'
import {
ROOT_QUERY,
convertThrowIntoFetchResult,
getCacheId,
getFirstErrorMessage,
modifyObjectFields
} from '~~/lib/common/helpers/graphql'
import type { ProjectCollection } from '~~/lib/common/generated/gql/graphql'
const props = defineProps<{
open: boolean
title: string
project: ProjectItem | null
}>()
const { triggerNotification } = useGlobalToast()
const { mutate: adminDeleteMutation } = useMutation(adminDeleteProjectMutation)
const isOpen = defineModel<boolean>('open', { required: true })
const deleteConfirmed = async () => {
const projectId = props.project?.id
if (!projectId) {
return
}
const result = await adminDeleteMutation(
{
ids: [projectId]
},
{
update: (cache, { data }) => {
if (data?.projectMutations.batchDelete) {
// Remove project from cache
const cacheId = getCacheId('Project', projectId)
cache.evict({
id: cacheId
})
// Modify 'admin' field of ROOT_QUERY so that we can modify all `projectList` instances
modifyObjectFields<undefined, { [key: string]: ProjectCollection }>(
cache,
ROOT_QUERY,
(_fieldName, _variables, value, details) => {
// Find all `projectList` fields (there can be multiple due to differing variables)
const projectListFields = Object.keys(value).filter(
(k) =>
details.revolveFieldNameAndVariables(k).fieldName === 'projectList'
)
// Being careful not to mutate original `value`
const newVal: typeof value = { ...value }
// Iterate over each and adjust `items` and `totalCount`
for (const field of projectListFields) {
const oldItems = value[field]?.items || []
const newItems = oldItems.filter((i) => i.__ref !== cacheId)
newVal[field] = {
...value[field],
...(value[field]?.items ? { items: newItems } : {}),
totalCount: Math.max(0, (value[field]?.totalCount || 0) - 1)
}
}
return newVal
},
{ fieldNameWhitelist: ['admin'] }
)
}
}
}
).catch(convertThrowIntoFetchResult)
if (result?.data?.projectMutations.batchDelete) {
triggerNotification({
type: ToastNotificationType.Success,
title: 'Project deleted',
description: 'The project has been successfully deleted'
})
isOpen.value = false
} else {
const errorMessage = getFirstErrorMessage(result?.errors)
triggerNotification({
type: ToastNotificationType.Danger,
title: 'Failed to delete project',
description: errorMessage
})
}
}
const dialogButtons: LayoutDialogButton[] = [
{
text: 'Delete',
props: { color: 'danger', fullWidth: true },
onClick: deleteConfirmed
},
{
text: 'Cancel',
props: { color: 'secondary', fullWidth: true, outline: true },
onClick: () => (isOpen.value = false)
}
]
</script>