Files
speckle-server/packages/frontend-2/components/settings/user/profile/DeleteAccountDialog.vue
T

88 lines
2.7 KiB
Vue

<template>
<LayoutDialog v-model:open="isOpen" title="Delete account" max-width="md">
<form class="flex flex-col gap-2" @submit="onDelete">
<div
class="flex flex-col sm:flex-row sm:items-center gap-2 sm:gap-4 py-3 px-3 rounded border bg-foundation-2 border-outline-5 text-body-xs text-foreground py-4 px-6 mb-2"
>
<div>
<ExclamationTriangleIcon class="mt-0.5 h-6 w-6 text-danger" />
</div>
<div>
<p class="text-body-xs font-medium mb-1">
This action cannot be undone. We will delete all projects where you are the
sole owner, and any associated data.
</p>
<p class="text-body-xs">
To delete your account, type in your
<HelpText :text="emailPlaceholder">e-mail address</HelpText>
and press the button.
</p>
</div>
</div>
<div class="flex gap-2">
<FormTextInput
name="deleteEmail"
label="Your e-mail address"
:placeholder="emailPlaceholder"
color="foundation"
full-width
validate-on-mount
validate-on-value-update
hide-error-message
:rules="[stringMatchesEmail]"
/>
<FormButton
color="danger"
submit
:disabled="!!Object.values(errors).length || loading"
>
Delete
</FormButton>
</div>
</form>
</LayoutDialog>
</template>
<script setup lang="ts">
import { ExclamationTriangleIcon } from '@heroicons/vue/24/outline'
import { useForm } from 'vee-validate'
import type { GenericValidateFunction } from 'vee-validate'
import { graphql } from '~~/lib/common/generated/gql'
import type { SettingsUserProfileDeleteAccount_UserFragment } from '~~/lib/common/generated/gql/graphql'
import { useDeleteAccount } from '~~/lib/user/composables/management'
graphql(`
fragment SettingsUserProfileDeleteAccount_User on User {
id
email
}
`)
const stringMatchesEmail: GenericValidateFunction<string> = (val: string) => {
return (val || '').toLowerCase() === (props.user.email || '').toLowerCase()
? true
: 'Value must match the email exactly'
}
const emit = defineEmits<{
(e: 'deleted'): void
}>()
const props = defineProps<{
user: SettingsUserProfileDeleteAccount_UserFragment
}>()
const isOpen = defineModel<boolean>('open', { required: true })
const { handleSubmit, errors } = useForm<{ deleteEmail: string }>()
const { mutate, loading } = useDeleteAccount()
const emailPlaceholder = computed(() => props.user.email || 'example@example.com')
const onDelete = handleSubmit(async (values) => {
const isDeleted = await mutate({
email: values.deleteEmail
})
if (isDeleted) emit('deleted')
})
</script>