feat: add survey delete action
This commit is contained in:
parent
c9bf016fbf
commit
12cd54eafe
@ -2,12 +2,14 @@ import { defaultErrorHandler, defaultSuccessHandler, trpc } from '@/api/trpc';
|
||||
import { CommonHeader } from '@/components/CommonHeader';
|
||||
import { CommonWrapper } from '@/components/CommonWrapper';
|
||||
import { ScrollArea, ScrollBar } from '@/components/ui/scroll-area';
|
||||
import { useGlobalRangeDate } from '@/hooks/useGlobalRangeDate';
|
||||
import { useCurrentWorkspaceId } from '@/store/user';
|
||||
import { routeAuthBeforeLoad } from '@/utils/route';
|
||||
import { useTranslation } from '@i18next-toolkit/react';
|
||||
import { createFileRoute, useNavigate } from '@tanstack/react-router';
|
||||
import { useEvent } from '@/hooks/useEvent';
|
||||
import { AlertConfirm } from '@/components/AlertConfirm';
|
||||
import { LuTrash } from 'react-icons/lu';
|
||||
import { Button } from '@/components/ui/button';
|
||||
|
||||
export const Route = createFileRoute('/survey/$surveyId')({
|
||||
beforeLoad: routeAuthBeforeLoad,
|
||||
@ -43,7 +45,28 @@ function PageComponent() {
|
||||
});
|
||||
|
||||
return (
|
||||
<CommonWrapper header={<CommonHeader title={info?.name ?? ''} />}>
|
||||
<CommonWrapper
|
||||
header={
|
||||
<CommonHeader
|
||||
title={info?.name ?? ''}
|
||||
actions={
|
||||
<div>
|
||||
<AlertConfirm
|
||||
title={t('Confirm to delete this survey?')}
|
||||
description={t('Survey name: {{name}} | data count: {{num}}', {
|
||||
name: info?.name ?? '',
|
||||
num: count ?? 0,
|
||||
})}
|
||||
content={t('It will permanently delete the relevant data')}
|
||||
onConfirm={handleDelete}
|
||||
>
|
||||
<Button variant="outline" size="icon" Icon={LuTrash} />
|
||||
</AlertConfirm>
|
||||
</div>
|
||||
}
|
||||
/>
|
||||
}
|
||||
>
|
||||
<ScrollArea className="h-full overflow-hidden p-4">
|
||||
<ScrollBar orientation="horizontal" />
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user