mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
fixes to customizations
This commit is contained in:
@@ -200,12 +200,16 @@ const SettingsCustomization: FC = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function formatName(de: DeviceEntity) {
|
function formatName(de: DeviceEntity) {
|
||||||
if (de.n === undefined) {
|
if (de.n === undefined || de.n === de.id) {
|
||||||
return de.id;
|
return de.id;
|
||||||
}
|
}
|
||||||
return de.n + ' (' + de.id + ')';
|
return de.n + ' (' + de.id + ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isCmd(de: DeviceEntity) {
|
||||||
|
return de.n === undefined;
|
||||||
|
}
|
||||||
|
|
||||||
const getMaskNumber = (newMask: string[]) => {
|
const getMaskNumber = (newMask: string[]) => {
|
||||||
var new_mask = 0;
|
var new_mask = 0;
|
||||||
for (let entry of newMask) {
|
for (let entry of newMask) {
|
||||||
@@ -310,8 +314,18 @@ const SettingsCustomization: FC = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Box color="warning.main">
|
<Box mb={2} color="warning.main">
|
||||||
<Typography variant="body2">Select a device and customize each of its entities using the options.</Typography>
|
<Typography variant="body2">Select a device and customize each of its entities using the options:</Typography>
|
||||||
|
<Typography variant="body2">
|
||||||
|
<StarIcon sx={{ fontSize: 16, verticalAlign: 'middle' }} />
|
||||||
|
=mark/unmark as a favorite
|
||||||
|
<EditOffOutlinedIcon sx={{ fontSize: 16, verticalAlign: 'middle' }} />
|
||||||
|
=enable/disable write action
|
||||||
|
<CommentsDisabledOutlinedIcon sx={{ fontSize: 16, verticalAlign: 'middle' }} />
|
||||||
|
=include/excluded from MQTT and API outputs
|
||||||
|
<VisibilityOffOutlinedIcon sx={{ fontSize: 16, verticalAlign: 'middle' }} />
|
||||||
|
=show/hide from Web Dashboard
|
||||||
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
<ValidatedTextField
|
<ValidatedTextField
|
||||||
name="device"
|
name="device"
|
||||||
@@ -406,11 +420,7 @@ const SettingsCustomization: FC = () => {
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<CommentsDisabledOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />
|
<Tooltip arrow placement="top" title="set selected entities to be both visible and output">
|
||||||
<VisibilityOffOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />:
|
|
||||||
</Grid>
|
|
||||||
<Grid item>
|
|
||||||
<Tooltip arrow placement="top" title="set shown entities to be all visible and output">
|
|
||||||
<Button
|
<Button
|
||||||
size="small"
|
size="small"
|
||||||
sx={{ fontSize: 10 }}
|
sx={{ fontSize: 10 }}
|
||||||
@@ -418,12 +428,14 @@ const SettingsCustomization: FC = () => {
|
|||||||
color="inherit"
|
color="inherit"
|
||||||
onClick={() => maskDisabled(false)}
|
onClick={() => maskDisabled(false)}
|
||||||
>
|
>
|
||||||
enable
|
set
|
||||||
|
<CommentsDisabledOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />
|
||||||
|
<VisibilityOffOutlinedIcon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />
|
||||||
</Button>
|
</Button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Tooltip arrow placement="top" title="set shown entities to be not visible or output">
|
<Tooltip arrow placement="top" title="set selected entities to be not visible and not output">
|
||||||
<Button
|
<Button
|
||||||
size="small"
|
size="small"
|
||||||
sx={{ fontSize: 10 }}
|
sx={{ fontSize: 10 }}
|
||||||
@@ -431,7 +443,9 @@ const SettingsCustomization: FC = () => {
|
|||||||
color="inherit"
|
color="inherit"
|
||||||
onClick={() => maskDisabled(true)}
|
onClick={() => maskDisabled(true)}
|
||||||
>
|
>
|
||||||
disable
|
unset
|
||||||
|
<CommentsDisabledOutlinedIcon sx={{ fontSize: 14, verticalAlign: 'middle' }} />
|
||||||
|
<VisibilityOffOutlinedIcon sx={{ fontSize: 14, verticalAlign: 'middle' }} />
|
||||||
</Button>
|
</Button>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -471,16 +485,16 @@ const SettingsCustomization: FC = () => {
|
|||||||
setMasks(['']);
|
setMasks(['']);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<ToggleButton value="8" disabled={(de.m & 1) !== 0 || de.id === '' || de.n === undefined}>
|
<ToggleButton value="8" disabled={(de.m & 1) !== 0}>
|
||||||
<StarIcon sx={{ fontSize: 14 }} />
|
<StarIcon sx={{ fontSize: 14 }} />
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="4" disabled={!de.w || (de.m & 3) === 3}>
|
<ToggleButton value="4" disabled={!de.w || (de.m & 3) === 3 || isCmd(de)}>
|
||||||
<EditOffOutlinedIcon sx={{ fontSize: 14 }} />
|
<EditOffOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="2">
|
<ToggleButton value="2" disabled={isCmd(de)}>
|
||||||
<CommentsDisabledOutlinedIcon sx={{ fontSize: 14 }} />
|
<CommentsDisabledOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<ToggleButton value="1" disabled={de.n === undefined}>
|
<ToggleButton value="1">
|
||||||
<VisibilityOffOutlinedIcon sx={{ fontSize: 14 }} />
|
<VisibilityOffOutlinedIcon sx={{ fontSize: 14 }} />
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
</ToggleButtonGroup>
|
</ToggleButtonGroup>
|
||||||
|
|||||||
@@ -593,6 +593,13 @@ const emsesp_deviceentities_1 = [
|
|||||||
m: 0,
|
m: 0,
|
||||||
w: false,
|
w: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
v: 'test data',
|
||||||
|
n: 'test',
|
||||||
|
id: 'test',
|
||||||
|
m: 0,
|
||||||
|
w: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
v: 'roomTemp',
|
v: 'roomTemp',
|
||||||
id: 'hc1/HA climate config creation',
|
id: 'hc1/HA climate config creation',
|
||||||
|
|||||||
Reference in New Issue
Block a user