mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
163 lines
4.3 KiB
TypeScript
163 lines
4.3 KiB
TypeScript
import { useState } from 'react';
|
|
|
|
import AccessTimeIcon from '@mui/icons-material/AccessTime';
|
|
import CancelIcon from '@mui/icons-material/Cancel';
|
|
import DeviceHubIcon from '@mui/icons-material/DeviceHub';
|
|
import ImportExportIcon from '@mui/icons-material/ImportExport';
|
|
import LockIcon from '@mui/icons-material/Lock';
|
|
import SettingsBackupRestoreIcon from '@mui/icons-material/SettingsBackupRestore';
|
|
import SettingsEthernetIcon from '@mui/icons-material/SettingsEthernet';
|
|
import SettingsInputAntennaIcon from '@mui/icons-material/SettingsInputAntenna';
|
|
import TuneIcon from '@mui/icons-material/Tune';
|
|
import ViewModuleIcon from '@mui/icons-material/ViewModule';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Dialog,
|
|
DialogActions,
|
|
DialogContent,
|
|
DialogTitle,
|
|
List
|
|
} from '@mui/material';
|
|
|
|
import { API } from 'api/app';
|
|
|
|
import { dialogStyle } from 'CustomTheme';
|
|
import { useRequest } from 'alova/client';
|
|
import type { APIcall } from 'app/main/types';
|
|
import { SectionContent, useLayoutTitle } from 'components';
|
|
import ListMenuItem from 'components/layout/ListMenuItem';
|
|
import { useI18nContext } from 'i18n/i18n-react';
|
|
|
|
const Settings = () => {
|
|
const { LL } = useI18nContext();
|
|
useLayoutTitle(LL.SETTINGS(0));
|
|
|
|
const [confirmFactoryReset, setConfirmFactoryReset] = useState<boolean>(false);
|
|
|
|
const { send: sendAPI } = useRequest((data: APIcall) => API(data), {
|
|
immediate: false
|
|
});
|
|
|
|
const doFormat = async () => {
|
|
await sendAPI({ device: 'system', cmd: 'format', id: 0 }).then(() => {
|
|
setConfirmFactoryReset(false);
|
|
});
|
|
};
|
|
|
|
const renderFactoryResetDialog = () => (
|
|
<Dialog
|
|
sx={dialogStyle}
|
|
open={confirmFactoryReset}
|
|
onClose={() => setConfirmFactoryReset(false)}
|
|
>
|
|
<DialogTitle>{LL.FACTORY_RESET()}</DialogTitle>
|
|
<DialogContent dividers>{LL.SYSTEM_FACTORY_TEXT_DIALOG()}</DialogContent>
|
|
<DialogActions>
|
|
<Button
|
|
startIcon={<CancelIcon />}
|
|
variant="outlined"
|
|
onClick={() => setConfirmFactoryReset(false)}
|
|
color="secondary"
|
|
>
|
|
{LL.CANCEL()}
|
|
</Button>
|
|
<Button
|
|
startIcon={<SettingsBackupRestoreIcon />}
|
|
variant="outlined"
|
|
onClick={doFormat}
|
|
color="error"
|
|
>
|
|
{LL.FACTORY_RESET()}
|
|
</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
);
|
|
|
|
const content = () => (
|
|
<>
|
|
<List sx={{ borderRadius: 3, border: '2px solid grey' }}>
|
|
<ListMenuItem
|
|
icon={TuneIcon}
|
|
bgcolor="#134ba2"
|
|
label={LL.APPLICATION()}
|
|
text={LL.APPLICATION_SETTINGS_1()}
|
|
to="application"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={SettingsEthernetIcon}
|
|
bgcolor="#40828f"
|
|
label={LL.NETWORK(0)}
|
|
text={LL.CONFIGURE(LL.SETTINGS_OF(LL.NETWORK(1)))}
|
|
to="network"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={SettingsInputAntennaIcon}
|
|
bgcolor="#5f9a5f"
|
|
label={LL.ACCESS_POINT(0)}
|
|
text={LL.CONFIGURE(LL.ACCESS_POINT(1))}
|
|
to="ap"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={AccessTimeIcon}
|
|
bgcolor="#c5572c"
|
|
label="NTP"
|
|
text={LL.CONFIGURE(LL.LOCAL_TIME(1))}
|
|
to="ntp"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={DeviceHubIcon}
|
|
bgcolor="#68374d"
|
|
label="MQTT"
|
|
text={LL.CONFIGURE('MQTT')}
|
|
to="mqtt"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={LockIcon}
|
|
label={LL.SECURITY(0)}
|
|
text={LL.SECURITY_1()}
|
|
to="security"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={ViewModuleIcon}
|
|
bgcolor="#efc34b"
|
|
label={LL.MODULES()}
|
|
text={LL.MODULES_1()}
|
|
to="modules"
|
|
/>
|
|
|
|
<ListMenuItem
|
|
icon={ImportExportIcon}
|
|
bgcolor="#5d89f7"
|
|
label={LL.DOWNLOAD_UPLOAD()}
|
|
text={LL.DOWNLOAD_UPLOAD_1()}
|
|
to="downloadUpload"
|
|
/>
|
|
</List>
|
|
|
|
{renderFactoryResetDialog()}
|
|
|
|
<Box mt={2} display="flex" flexWrap="wrap">
|
|
<Button
|
|
startIcon={<SettingsBackupRestoreIcon />}
|
|
variant="outlined"
|
|
onClick={() => setConfirmFactoryReset(true)}
|
|
color="error"
|
|
>
|
|
{LL.FACTORY_RESET()}
|
|
</Button>
|
|
</Box>
|
|
</>
|
|
);
|
|
|
|
return <SectionContent>{content()}</SectionContent>;
|
|
};
|
|
|
|
export default Settings;
|