1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import { useNavigate } from "react-router-dom";
import { Trans } from "react-i18next";
import { getHttpTimelineClient, HttpTimelineInfo } from "~src/http/timeline";
import { OperationDialog } from "~src/components/dialog";
interface TimelineDeleteDialog {
open: boolean;
onClose: () => void;
timeline: HttpTimelineInfo;
}
export default function TimelineDeleteDialog({
open,
onClose,
timeline,
}: TimelineDeleteDialog) {
const navigate = useNavigate();
return (
<OperationDialog
open={open}
onClose={onClose}
title="timeline.deleteDialog.title"
color="danger"
inputPromptNode={
<Trans
i18nKey="timeline.deleteDialog.inputPrompt"
values={{ name: timeline.nameV2 }}
>
0<code>1</code>2
</Trans>
}
inputs={{
inputs: [
{
key: "name",
type: "text",
label: "",
},
],
validator: ({ name }, errors) => {
if (name !== timeline.nameV2) {
errors.name = "timeline.deleteDialog.notMatch";
}
},
}}
onProcess={() => {
return getHttpTimelineClient().deleteTimeline(
timeline.owner.username,
timeline.nameV2,
);
}}
onSuccessAndClose={() => {
navigate("/", { replace: true });
}}
/>
);
}
TimelineDeleteDialog;
|