mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-06-13 19:36:26 +03:00
formatting
This commit is contained in:
@@ -318,10 +318,10 @@ function updateMask(entity: any, de: any, dd: any) {
|
|||||||
const old_custom_name = dd.nodes[dd_objIndex].cn;
|
const old_custom_name = dd.nodes[dd_objIndex].cn;
|
||||||
console.log(
|
console.log(
|
||||||
'comparing names, old (' +
|
'comparing names, old (' +
|
||||||
old_custom_name +
|
old_custom_name +
|
||||||
') with new (' +
|
') with new (' +
|
||||||
new_custom_name +
|
new_custom_name +
|
||||||
')'
|
')'
|
||||||
);
|
);
|
||||||
if (old_custom_name !== new_custom_name) {
|
if (old_custom_name !== new_custom_name) {
|
||||||
changed = true;
|
changed = true;
|
||||||
@@ -438,9 +438,9 @@ function upgradeImportantMessages(version: string) {
|
|||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
'upgradeImportantMessageType: version=' +
|
'upgradeImportantMessageType: version=' +
|
||||||
version +
|
version +
|
||||||
' type=' +
|
' type=' +
|
||||||
upgradeImportantMessageType_n
|
upgradeImportantMessageType_n
|
||||||
);
|
);
|
||||||
return { upgradeImportantMessageType: upgradeImportantMessageType_n };
|
return { upgradeImportantMessageType: upgradeImportantMessageType_n };
|
||||||
}
|
}
|
||||||
@@ -487,17 +487,17 @@ function get_versions() {
|
|||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
'getVersions: current=' +
|
'getVersions: current=' +
|
||||||
THIS_VERSION +
|
THIS_VERSION +
|
||||||
' stable=' +
|
' stable=' +
|
||||||
LATEST_STABLE_VERSION +
|
LATEST_STABLE_VERSION +
|
||||||
' (upgradeable=' +
|
' (upgradeable=' +
|
||||||
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
(STABLE_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
||||||
') dev=' +
|
') dev=' +
|
||||||
LATEST_DEV_VERSION +
|
LATEST_DEV_VERSION +
|
||||||
' (upgradeable=' +
|
' (upgradeable=' +
|
||||||
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
(DEV_VERSION_IS_UPGRADEABLE ? 'YES' : 'NO') +
|
||||||
')' +
|
')' +
|
||||||
(MOCK_OFFLINE ? ' [offline]' : '')
|
(MOCK_OFFLINE ? ' [offline]' : '')
|
||||||
);
|
);
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
@@ -4796,7 +4796,9 @@ router
|
|||||||
}
|
}
|
||||||
|
|
||||||
// add the scheduler data
|
// add the scheduler data
|
||||||
const namedSchedules = emsesp_schedule.schedule.filter((item: any) => item.name);
|
const namedSchedules = emsesp_schedule.schedule.filter(
|
||||||
|
(item: any) => item.name
|
||||||
|
);
|
||||||
if (namedSchedules.length > 0) {
|
if (namedSchedules.length > 0) {
|
||||||
const scheduler_data = namedSchedules.map((item: any, index: number) => ({
|
const scheduler_data = namedSchedules.map((item: any, index: number) => ({
|
||||||
id: DeviceTypeUniqueID.SCHEDULER_UID * 100 + index,
|
id: DeviceTypeUniqueID.SCHEDULER_UID * 100 + index,
|
||||||
@@ -4816,7 +4818,9 @@ router
|
|||||||
}
|
}
|
||||||
|
|
||||||
// add the command items (executable from dashboard)
|
// add the command items (executable from dashboard)
|
||||||
const namedCommands = emsesp_commands.commands.filter((item: any) => item.name);
|
const namedCommands = emsesp_commands.commands.filter(
|
||||||
|
(item: any) => item.name
|
||||||
|
);
|
||||||
if (namedCommands.length > 0) {
|
if (namedCommands.length > 0) {
|
||||||
const command_data = namedCommands.map((item: any, index: number) => ({
|
const command_data = namedCommands.map((item: any, index: number) => ({
|
||||||
id: DeviceTypeUniqueID.COMMAND_UID * 100 + index,
|
id: DeviceTypeUniqueID.COMMAND_UID * 100 + index,
|
||||||
|
|||||||
Reference in New Issue
Block a user