blob: 0f4254a85f0f138892c5ca319c77c77247f15f47 (
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 Button from '@mui/material/Button';
import { Snackbar } from '@mui/material';
import makeStyles from '@mui/styles/makeStyles';
import { useTranslation } from './LocalizationProvider';
import { useCatch } from '../../reactHelper';
import { snackBarDurationLongMs } from '../util/duration';
const useStyles = makeStyles((theme) => ({
root: {
[theme.breakpoints.down('md')]: {
bottom: `calc(${theme.dimensions.bottomBarHeight}px + ${theme.spacing(1)})`,
},
},
button: {
height: 'auto',
marginTop: 0,
marginBottom: 0,
color: theme.palette.error.main,
},
}));
const RemoveDialog = ({
open, endpoint, itemId, onResult,
}) => {
const classes = useStyles();
const t = useTranslation();
const handleRemove = useCatch(async () => {
const response = await fetch(`/api/${endpoint}/${itemId}`, { method: 'DELETE' });
if (response.ok) {
onResult(true);
} else {
throw Error(await response.text());
}
});
return (
<Snackbar
className={classes.root}
open={open}
autoHideDuration={snackBarDurationLongMs}
onClose={() => onResult(false)}
message={t('sharedRemoveConfirm')}
action={(
<Button size="small" className={classes.button} onClick={handleRemove}>
{t('sharedRemove')}
</Button>
)}
/>
);
};
export default RemoveDialog;
|