mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 16:59:50 +03:00
282 lines
8.1 KiB
TypeScript
282 lines
8.1 KiB
TypeScript
import { FC, useState, useEffect, useCallback } from 'react';
|
|
|
|
import {
|
|
Button,
|
|
Table,
|
|
TableBody,
|
|
TableHead,
|
|
TableRow,
|
|
Typography,
|
|
Box,
|
|
MenuItem,
|
|
Dialog,
|
|
DialogActions,
|
|
DialogContent,
|
|
DialogTitle
|
|
} from '@mui/material';
|
|
|
|
import TableCell, { tableCellClasses } from '@mui/material/TableCell';
|
|
|
|
import { styled } from '@mui/material/styles';
|
|
|
|
import { useSnackbar } from 'notistack';
|
|
|
|
import SaveIcon from '@mui/icons-material/Save';
|
|
import CloseIcon from '@mui/icons-material/Close';
|
|
import CancelIcon from '@mui/icons-material/Cancel';
|
|
import SettingsBackupRestoreIcon from '@mui/icons-material/SettingsBackupRestore';
|
|
|
|
import { ButtonRow, FormLoader, ValidatedTextField, SectionContent } from '../components';
|
|
|
|
import * as EMSESP from './api';
|
|
|
|
import { extractErrorMessage } from '../utils';
|
|
|
|
import { DeviceShort, Devices, DeviceEntity } from './types';
|
|
|
|
const StyledTableCell = styled(TableCell)(({ theme }) => ({
|
|
[`&.${tableCellClasses.head}`]: {
|
|
backgroundColor: '#607d8b',
|
|
color: theme.palette.common.white,
|
|
fontSize: 11
|
|
},
|
|
[`&.${tableCellClasses.body}`]: {
|
|
fontSize: 11
|
|
}
|
|
}));
|
|
|
|
const SettingsCustomization: FC = () => {
|
|
const { enqueueSnackbar } = useSnackbar();
|
|
|
|
const [deviceEntities, setDeviceEntities] = useState<DeviceEntity[]>();
|
|
const [devices, setDevices] = useState<Devices>();
|
|
const [errorMessage, setErrorMessage] = useState<string>();
|
|
const [selectedDevice, setSelectedDevice] = useState<number>(0);
|
|
const [confirmReset, setConfirmReset] = useState<boolean>(false);
|
|
|
|
const fetchDevices = useCallback(async () => {
|
|
try {
|
|
setDevices((await EMSESP.readDevices()).data);
|
|
} catch (error: any) {
|
|
setErrorMessage(extractErrorMessage(error, 'Failed to fetch device list'));
|
|
}
|
|
}, []);
|
|
|
|
const fetchDeviceEntities = async (unique_id: number) => {
|
|
try {
|
|
setDeviceEntities((await EMSESP.readDeviceEntities({ id: unique_id })).data);
|
|
} catch (error: any) {
|
|
setErrorMessage(extractErrorMessage(error, 'Problem fetching device entities'));
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
fetchDevices();
|
|
}, [fetchDevices]);
|
|
|
|
function formatValue(value: any) {
|
|
if (typeof value === 'number') {
|
|
return new Intl.NumberFormat().format(value);
|
|
} else if (value === undefined) {
|
|
return '';
|
|
} else if (typeof value === 'boolean') {
|
|
return value ? 'true' : 'false';
|
|
}
|
|
return value;
|
|
}
|
|
|
|
const renderDeviceList = () => {
|
|
if (!devices) {
|
|
return <FormLoader errorMessage={errorMessage} />;
|
|
}
|
|
|
|
function compareDevices(a: DeviceShort, b: DeviceShort) {
|
|
if (a.s < b.s) {
|
|
return -1;
|
|
}
|
|
if (a.s > b.s) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
const changeSelectedDevice = (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const selected_device = parseInt(event.target.value, 10);
|
|
setSelectedDevice(selected_device);
|
|
fetchDeviceEntities(selected_device);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Box color="warning.main">
|
|
<Typography variant="body2">
|
|
Customize which entities to exclude from all all services (MQTT, API). This will have immediate effect.
|
|
</Typography>
|
|
</Box>
|
|
<ValidatedTextField
|
|
name="device"
|
|
label="EMS Device"
|
|
variant="outlined"
|
|
fullWidth
|
|
value={selectedDevice}
|
|
onChange={changeSelectedDevice}
|
|
margin="normal"
|
|
select
|
|
>
|
|
<MenuItem disabled key={0} value={0}>
|
|
Select a device...
|
|
</MenuItem>
|
|
{devices.devices.sort(compareDevices).map((device: DeviceShort, index) => (
|
|
<MenuItem key={index} value={device.i}>
|
|
{device.s}
|
|
</MenuItem>
|
|
))}
|
|
</ValidatedTextField>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const saveCustomization = async () => {
|
|
if (deviceEntities && selectedDevice) {
|
|
const exclude_entities = deviceEntities.filter((de) => de.x).map((new_de) => new_de.i);
|
|
try {
|
|
const response = await EMSESP.writeExcludeEntities({
|
|
id: selectedDevice,
|
|
entity_ids: exclude_entities
|
|
});
|
|
if (response.status === 200) {
|
|
enqueueSnackbar('Customization saved', { variant: 'success' });
|
|
} else {
|
|
enqueueSnackbar('Customization save failed', { variant: 'error' });
|
|
}
|
|
} catch (error: any) {
|
|
enqueueSnackbar(extractErrorMessage(error, 'Problem sending entity list'), { variant: 'error' });
|
|
}
|
|
}
|
|
};
|
|
|
|
const renderDeviceData = () => {
|
|
if (devices?.devices.length === 0 || !deviceEntities) {
|
|
return;
|
|
}
|
|
|
|
const toggleDeviceEntity = (id: number) => {
|
|
setDeviceEntities(
|
|
deviceEntities.map((o) => {
|
|
if (o.i === id) {
|
|
return { ...o, x: !o.x };
|
|
}
|
|
return o;
|
|
})
|
|
);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Table size="small">
|
|
<TableHead>
|
|
<TableRow>
|
|
<StyledTableCell>
|
|
({deviceEntities.reduce((a, v) => (v.x ? a + 1 : a), 0)}/{deviceEntities.length})
|
|
</StyledTableCell>
|
|
<StyledTableCell align="left">ENTITY NAME</StyledTableCell>
|
|
<StyledTableCell>CODE</StyledTableCell>
|
|
<StyledTableCell align="right">VALUE</StyledTableCell>
|
|
</TableRow>
|
|
</TableHead>
|
|
<TableBody>
|
|
{deviceEntities.map((de) => (
|
|
<TableRow
|
|
key={de.i}
|
|
onClick={() => toggleDeviceEntity(de.i)}
|
|
sx={de.x ? { backgroundColor: '#f8696b' } : { backgroundColor: 'black' }}
|
|
>
|
|
<StyledTableCell padding="checkbox">{de.x && <CloseIcon fontSize="small" />}</StyledTableCell>
|
|
<StyledTableCell component="th" scope="row">
|
|
{de.n}
|
|
</StyledTableCell>
|
|
<StyledTableCell>{de.s}</StyledTableCell>
|
|
<StyledTableCell align="right">{formatValue(de.v)}</StyledTableCell>
|
|
</TableRow>
|
|
))}
|
|
</TableBody>
|
|
</Table>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const resetCustomization = async () => {
|
|
try {
|
|
await EMSESP.resetCustomizations();
|
|
enqueueSnackbar('All customizations have been removed. Restarting...', { variant: 'info' });
|
|
} catch (error: any) {
|
|
enqueueSnackbar(extractErrorMessage(error, 'Problem resetting customizations'), { variant: 'error' });
|
|
} finally {
|
|
setConfirmReset(false);
|
|
}
|
|
};
|
|
|
|
const renderResetDialog = () => (
|
|
<Dialog open={confirmReset} onClose={() => setConfirmReset(false)}>
|
|
<DialogTitle>Reset</DialogTitle>
|
|
<DialogContent dividers>
|
|
Are you sure you want remove all customizations? EMS-ESP will then restart.
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<Button startIcon={<CancelIcon />} variant="outlined" onClick={() => setConfirmReset(false)} color="secondary">
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
startIcon={<SettingsBackupRestoreIcon />}
|
|
variant="outlined"
|
|
onClick={resetCustomization}
|
|
autoFocus
|
|
color="error"
|
|
>
|
|
Reset
|
|
</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
);
|
|
|
|
const content = () => {
|
|
return (
|
|
<>
|
|
<Typography sx={{ pt: 2, pb: 2 }} variant="h6" color="primary">
|
|
Device Entities
|
|
</Typography>
|
|
{renderDeviceList()}
|
|
{renderDeviceData()}
|
|
<Box display="flex" flexWrap="wrap">
|
|
<Box flexGrow={1}>
|
|
<ButtonRow>
|
|
<Button startIcon={<SaveIcon />} variant="outlined" color="primary" onClick={() => saveCustomization()}>
|
|
Save
|
|
</Button>
|
|
</ButtonRow>
|
|
</Box>
|
|
<ButtonRow>
|
|
<Button
|
|
startIcon={<SettingsBackupRestoreIcon />}
|
|
variant="outlined"
|
|
color="error"
|
|
onClick={() => setConfirmReset(true)}
|
|
>
|
|
Reset
|
|
</Button>
|
|
</ButtonRow>
|
|
</Box>
|
|
{renderResetDialog()}
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<SectionContent title="User Customization" titleGutter>
|
|
{content()}
|
|
</SectionContent>
|
|
);
|
|
};
|
|
|
|
export default SettingsCustomization;
|