aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/timeline/TimelineDeleteDialog.tsx
blob: 7bcea6c5142e20ce65f188b53db89194e77ec1e7 (plain)
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
import React from 'react';
import { useHistory } from 'react-router';
import { Trans } from 'react-i18next';

import OperationDialog from '../common/OperationDialog';
import { timelineService } from '../data/timeline';

interface TimelineDeleteDialog {
  open: boolean;
  name: string;
  close: () => void;
}

const TimelineDeleteDialog: React.FC<TimelineDeleteDialog> = (props) => {
  const history = useHistory();

  const { name } = props;

  return (
    <OperationDialog
      open={props.open}
      close={props.close}
      title="timeline.deleteDialog.title"
      titleColor="danger"
      inputPrompt={() => {
        return (
          <Trans i18nKey="timeline.deleteDialog.inputPrompt">
            0<code className="mx-2">{{ name }}</code>2
          </Trans>
        );
      }}
      inputScheme={[
        {
          type: 'text',
          validator: (value) => {
            if (value !== name) {
              return 'timeline.deleteDialog.notMatch';
            } else {
              return null;
            }
          },
        },
      ]}
      onProcess={() => {
        return timelineService.deleteTimeline(name).toPromise();
      }}
      onSuccessAndClose={() => {
        history.replace('/');
      }}
    />
  );
};

export default TimelineDeleteDialog;