46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
import React, { useState } from 'react'
|
|
import {
|
|
Modal,
|
|
Button,
|
|
Input,
|
|
ModalDialog,
|
|
ModalClose,
|
|
Box,
|
|
Typography,
|
|
} from '@mui/joy'
|
|
|
|
function DateModal({ isOpen, onClose, onSave, current, title }) {
|
|
const [date, setDate] = useState(
|
|
current ? new Date(current).toISOString().split('T')[0] : null,
|
|
)
|
|
|
|
const handleSave = () => {
|
|
onSave(date)
|
|
onClose()
|
|
}
|
|
|
|
return (
|
|
<Modal open={isOpen} onClose={onClose}>
|
|
<ModalDialog>
|
|
{/* <ModalClose /> */}
|
|
<Typography variant='h4'>{title}</Typography>
|
|
<Input
|
|
sx={{ mt: 3 }}
|
|
type='date'
|
|
value={date}
|
|
onChange={e => setDate(e.target.value)}
|
|
/>
|
|
<Box display={'flex'} justifyContent={'space-around'} mt={1}>
|
|
<Button onClick={handleSave} fullWidth sx={{ mr: 1 }}>
|
|
Save
|
|
</Button>
|
|
<Button onClick={onClose} variant='outlined'>
|
|
Cancel
|
|
</Button>
|
|
</Box>
|
|
</ModalDialog>
|
|
</Modal>
|
|
)
|
|
}
|
|
export default DateModal
|