mirror of
https://github.com/Matysh/houseplan-card
synced 2026-07-31 16:38:31 +00:00
Owner's rule, agreed 2026-07-29 after a field report (a lamp turned off by tap looked different from one turned off by the wall switch): - a lamp's colour lives ONLY in its glow. The v1.27 RGB tint of the icon, border and shadow is deleted — that tint was the fork: with colour data the lamp rendered dark-with-coloured-icon, without it plain yellow, and the same lamp crossed the fork depending on how it was switched. - in glow fill the indicator IS the spot: a source's badge stays standard, lit or not (litLightEntity — the exact condition that casts the spot — gates the suppression, so a lit socket keeps its yellow even in glow). - in every other fill a lit source is plain yellow, like a heating TRV. - icon morphing stays everywhere; the ripple colour still falls back to the light colour (both explicitly confirmed by the owner). smoke_light_badges covers the whole table (8 assertions); smoke_rgb_alarm re-asserted: no rgb class, lit lamp yellow, ripple fallback keeps the colour. README colour language updated. Inventory: 147 / 51 / 43 / 70.
47 lines
2.9 KiB
JavaScript
47 lines
2.9 KiB
JavaScript
import { launch, checkAll, finish } from './serve.mjs';
|
||
const { page, browser } = await launch();
|
||
const res = await page.evaluate(async () => {
|
||
const out = {};
|
||
const c = window.__card;
|
||
const sr = () => c.shadowRoot || c.renderRoot;
|
||
// RGB-лампа: ceiling on + rgb_color
|
||
c.hass = { ...c.hass, states: { ...c.hass.states,
|
||
'light.ceiling': { entity_id: 'light.ceiling', state: 'on', attributes: { friendly_name: 'Ceiling light', rgb_color: [255, 0, 128] } } } };
|
||
await c.updateComplete;
|
||
// v1.52.0 (правило владельца): RGB больше НЕ красит значок — цвет лампы
|
||
// живёт только в glow-пятне и в фолбэке цвета пульсации
|
||
out.rgbClassGone = !sr().querySelector('.dev.rgb');
|
||
out.litLampIsYellow = [...sr().querySelectorAll('.dev.on')].length > 0;
|
||
// фолбэк пульсации сохраняет цвет свечения: маркер icon_ripple на лампе
|
||
const lampDev = c._devices.find((x) => x.entities.includes('light.ceiling'));
|
||
c._serverCfg.markers = (c._serverCfg.markers || []).filter((m) => m.id !== lampDev.id);
|
||
c._serverCfg.markers.push({ id: lampDev.id, binding: 'device:' + lampDev.bindingRef, display: 'icon_ripple' });
|
||
c._cfgEpoch++; c._regSignature = ''; c._maybeRebuildDevices();
|
||
c.requestUpdate(); await c.updateComplete;
|
||
const rippleDev = [...sr().querySelectorAll('.dev')].find((e) => (e.getAttribute('style') || '').includes('--ripple-color'));
|
||
out.rippleKeepsLightColor = !!rippleDev && rippleDev.getAttribute('style').includes('rgb(255, 0, 128)');
|
||
c._serverCfg.markers = c._serverCfg.markers.filter((m) => m.id !== lampDev.id);
|
||
c._cfgEpoch++; c._regSignature = ''; c._maybeRebuildDevices(); await c.updateComplete;
|
||
// тревога: датчик протечки on
|
||
c.hass = { ...c.hass, states: { ...c.hass.states,
|
||
'binary_sensor.sink_leak': { entity_id: 'binary_sensor.sink_leak', state: 'on', attributes: { friendly_name: 'Leak', device_class: 'moisture' } } } };
|
||
await c.updateComplete;
|
||
out.alarmCount = sr().querySelectorAll('.dev.alarm').length;
|
||
// выключили — тревога ушла
|
||
c.hass = { ...c.hass, states: { ...c.hass.states,
|
||
'binary_sensor.sink_leak': { entity_id: 'binary_sensor.sink_leak', state: 'off', attributes: { friendly_name: 'Leak', device_class: 'moisture' } } } };
|
||
await c.updateComplete;
|
||
out.alarmCleared = sr().querySelectorAll('.dev.alarm').length === 0;
|
||
// unavailable не тревожит
|
||
c.hass = { ...c.hass, states: { ...c.hass.states,
|
||
'binary_sensor.sink_leak': { entity_id: 'binary_sensor.sink_leak', state: 'unavailable', attributes: { device_class: 'moisture' } } } };
|
||
await c.updateComplete;
|
||
out.outageSafe = sr().querySelectorAll('.dev.alarm').length === 0;
|
||
return out;
|
||
});
|
||
// значения зафиксированы прогоном на v1.43.1 и сверены с кодом (audit T1)
|
||
checkAll(res, {
|
||
"alarmCount": 1,
|
||
});
|
||
await finish(browser, res);
|