source: src/components/custom-date-range-picker/custom-date-range-picker.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 3.1 KB
Line 
1// @mui
2import { DatePicker } from '@mui/x-date-pickers/DatePicker';
3import { DateCalendar } from '@mui/x-date-pickers/DateCalendar';
4import Paper from '@mui/material/Paper';
5import Stack from '@mui/material/Stack';
6import Button from '@mui/material/Button';
7import Dialog from '@mui/material/Dialog';
8import DialogTitle from '@mui/material/DialogTitle';
9import DialogActions from '@mui/material/DialogActions';
10import DialogContent from '@mui/material/DialogContent';
11import FormHelperText from '@mui/material/FormHelperText';
12// hooks
13import { useResponsive } from 'src/hooks/use-responsive';
14//
15import { DateRangePickerProps } from './types';
16
17// ----------------------------------------------------------------------
18
19export 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}
Note: See TracBrowser for help on using the repository browser.