1 | // @mui
|
---|
2 | import { DatePicker } from '@mui/x-date-pickers/DatePicker';
|
---|
3 | import { DateCalendar } from '@mui/x-date-pickers/DateCalendar';
|
---|
4 | import Paper from '@mui/material/Paper';
|
---|
5 | import Stack from '@mui/material/Stack';
|
---|
6 | import Button from '@mui/material/Button';
|
---|
7 | import Dialog from '@mui/material/Dialog';
|
---|
8 | import DialogTitle from '@mui/material/DialogTitle';
|
---|
9 | import DialogActions from '@mui/material/DialogActions';
|
---|
10 | import DialogContent from '@mui/material/DialogContent';
|
---|
11 | import FormHelperText from '@mui/material/FormHelperText';
|
---|
12 | // hooks
|
---|
13 | import { useResponsive } from 'src/hooks/use-responsive';
|
---|
14 | //
|
---|
15 | import { DateRangePickerProps } from './types';
|
---|
16 |
|
---|
17 | // ----------------------------------------------------------------------
|
---|
18 |
|
---|
19 | export default function CustomDateRangePicker({
|
---|
20 | title = 'Select date range',
|
---|
21 | variant = 'input',
|
---|
22 | //
|
---|
23 | startDate,
|
---|
24 | endDate,
|
---|
25 | //
|
---|
26 | onChangeStartDate,
|
---|
27 | onChangeEndDate,
|
---|
28 | //
|
---|
29 | open,
|
---|
30 | onClose,
|
---|
31 | //
|
---|
32 | error,
|
---|
33 | }: DateRangePickerProps) {
|
---|
34 | const mdUp = useResponsive('up', 'md');
|
---|
35 |
|
---|
36 | const isCalendarView = variant === 'calendar';
|
---|
37 |
|
---|
38 | return (
|
---|
39 | <Dialog
|
---|
40 | fullWidth
|
---|
41 | maxWidth={isCalendarView ? false : 'xs'}
|
---|
42 | open={open}
|
---|
43 | onClose={onClose}
|
---|
44 | PaperProps={{
|
---|
45 | sx: {
|
---|
46 | ...(isCalendarView && {
|
---|
47 | maxWidth: 720,
|
---|
48 | }),
|
---|
49 | },
|
---|
50 | }}
|
---|
51 | >
|
---|
52 | <DialogTitle sx={{ pb: 2 }}>{title}</DialogTitle>
|
---|
53 |
|
---|
54 | <DialogContent
|
---|
55 | sx={{
|
---|
56 | ...(isCalendarView &&
|
---|
57 | mdUp && {
|
---|
58 | overflow: 'unset',
|
---|
59 | }),
|
---|
60 | }}
|
---|
61 | >
|
---|
62 | <Stack
|
---|
63 | justifyContent="center"
|
---|
64 | spacing={isCalendarView ? 3 : 2}
|
---|
65 | direction={isCalendarView && mdUp ? 'row' : 'column'}
|
---|
66 | sx={{ pt: 1 }}
|
---|
67 | >
|
---|
68 | {isCalendarView ? (
|
---|
69 | <>
|
---|
70 | <Paper
|
---|
71 | variant="outlined"
|
---|
72 | sx={{
|
---|
73 | borderRadius: 2,
|
---|
74 | borderColor: 'divider',
|
---|
75 | borderStyle: 'dashed',
|
---|
76 | }}
|
---|
77 | >
|
---|
78 | <DateCalendar value={startDate} onChange={onChangeStartDate} />
|
---|
79 | </Paper>
|
---|
80 |
|
---|
81 | <Paper
|
---|
82 | variant="outlined"
|
---|
83 | sx={{
|
---|
84 | borderRadius: 2,
|
---|
85 | borderColor: 'divider',
|
---|
86 | borderStyle: 'dashed',
|
---|
87 | }}
|
---|
88 | >
|
---|
89 | <DateCalendar value={endDate} onChange={onChangeEndDate} />
|
---|
90 | </Paper>
|
---|
91 | </>
|
---|
92 | ) : (
|
---|
93 | <>
|
---|
94 | <DatePicker label="Start date" value={startDate} onChange={onChangeStartDate} />
|
---|
95 |
|
---|
96 | <DatePicker label="End date" value={endDate} onChange={onChangeEndDate} />
|
---|
97 | </>
|
---|
98 | )}
|
---|
99 | </Stack>
|
---|
100 |
|
---|
101 | {error && (
|
---|
102 | <FormHelperText error sx={{ px: 2 }}>
|
---|
103 | End date must be later than start date
|
---|
104 | </FormHelperText>
|
---|
105 | )}
|
---|
106 | </DialogContent>
|
---|
107 |
|
---|
108 | <DialogActions>
|
---|
109 | <Button variant="outlined" color="inherit" onClick={onClose}>
|
---|
110 | Cancel
|
---|
111 | </Button>
|
---|
112 |
|
---|
113 | <Button disabled={error} variant="contained" onClick={onClose}>
|
---|
114 | Apply
|
---|
115 | </Button>
|
---|
116 | </DialogActions>
|
---|
117 | </Dialog>
|
---|
118 | );
|
---|
119 | }
|
---|