mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
107 lines
2.3 KiB
TypeScript
107 lines
2.3 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
|
|
import CancelIcon from '@mui/icons-material/Cancel';
|
|
import DoneIcon from '@mui/icons-material/Done';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Checkbox,
|
|
Dialog,
|
|
DialogActions,
|
|
DialogContent,
|
|
DialogTitle,
|
|
Grid,
|
|
TextField
|
|
} from '@mui/material';
|
|
|
|
import { dialogStyle } from 'CustomTheme';
|
|
import { BlockFormControlLabel } from 'components';
|
|
import { useI18nContext } from 'i18n/i18n-react';
|
|
import { updateValue } from 'utils';
|
|
|
|
import type { ModuleItem } from './types';
|
|
|
|
interface ModulesDialogProps {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
onSave: (mi: ModuleItem) => void;
|
|
selectedItem: ModuleItem;
|
|
}
|
|
|
|
const ModulesDialog = ({
|
|
open,
|
|
onClose,
|
|
onSave,
|
|
selectedItem
|
|
}: ModulesDialogProps) => {
|
|
const { LL } = useI18nContext();
|
|
const [editItem, setEditItem] = useState<ModuleItem>(selectedItem);
|
|
|
|
const updateFormValue = updateValue(setEditItem);
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
setEditItem(selectedItem);
|
|
}
|
|
}, [open, selectedItem]);
|
|
|
|
const close = () => {
|
|
onClose();
|
|
};
|
|
|
|
const save = () => {
|
|
onSave(editItem);
|
|
};
|
|
|
|
return (
|
|
<Dialog sx={dialogStyle} fullWidth maxWidth="xs" open={open} onClose={onClose}>
|
|
<DialogTitle>{LL.EDIT() + ' ' + editItem.key}</DialogTitle>
|
|
<DialogContent dividers>
|
|
<Grid container>
|
|
<BlockFormControlLabel
|
|
control={
|
|
<Checkbox
|
|
checked={editItem.enabled}
|
|
onChange={updateFormValue}
|
|
name="enabled"
|
|
/>
|
|
}
|
|
label="Enabled"
|
|
/>
|
|
</Grid>
|
|
<Box mt={2} mb={1}>
|
|
<TextField
|
|
name="license"
|
|
label="License Key"
|
|
multiline
|
|
rows={6}
|
|
fullWidth
|
|
value={editItem.license}
|
|
onChange={updateFormValue}
|
|
/>
|
|
</Box>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<Button
|
|
startIcon={<CancelIcon />}
|
|
variant="outlined"
|
|
onClick={close}
|
|
color="secondary"
|
|
>
|
|
{LL.CANCEL()}
|
|
</Button>
|
|
<Button
|
|
startIcon={<DoneIcon />}
|
|
variant="outlined"
|
|
onClick={save}
|
|
color="primary"
|
|
>
|
|
{LL.UPDATE()}
|
|
</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default ModulesDialog;
|