From 68ca8b0976efe90c0c40bcae69f0825671b98bad Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 30 May 2020 16:23:25 +0800 Subject: Merge front end to this repo. But I need to wait for aspnet core support for custom port and package manager for dev server. --- .../src/timeline/TimelineDeleteDialog.tsx | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Timeline/ClientApp/src/timeline/TimelineDeleteDialog.tsx (limited to 'Timeline/ClientApp/src/timeline/TimelineDeleteDialog.tsx') diff --git a/Timeline/ClientApp/src/timeline/TimelineDeleteDialog.tsx b/Timeline/ClientApp/src/timeline/TimelineDeleteDialog.tsx new file mode 100644 index 00000000..2b682a6b --- /dev/null +++ b/Timeline/ClientApp/src/timeline/TimelineDeleteDialog.tsx @@ -0,0 +1,59 @@ +import React from 'react'; +import axios from 'axios'; +import { useHistory } from 'react-router'; +import { Trans } from 'react-i18next'; + +import { apiBaseUrl } from '../config'; +import { useUser } from '../data/user'; +import OperationDialog from '../common/OperationDialog'; + +interface TimelineDeleteDialog { + open: boolean; + name: string; + close: () => void; +} + +const TimelineDeleteDialog: React.FC = props => { + const user = useUser()!; + const history = useHistory(); + + const { name } = props; + + return ( + { + return ( + + 0{{ name }}2 + + ); + }} + inputScheme={[ + { + type: 'text', + validator: value => { + if (value !== name) { + return 'timeline.deleteDialog.notMatch'; + } else { + return null; + } + } + } + ]} + onProcess={() => { + return axios.delete( + `${apiBaseUrl}/timelines/${name}?token=${user.token}` + ); + }} + onSuccessAndClose={() => { + history.replace('/'); + }} + /> + ); +}; + +export default TimelineDeleteDialog; -- cgit v1.2.3