Skip to content

Commit 51d11bf

Browse files
sdetweilKristjanESPERANTOrejas
authored
add support for digital clock time color (#3737)
see https://forum.magicmirror.builders/topic/19440/digital-clock-minutes-darker changelog added question.. we have a config parm for seconds color, but not hour/minute I have used css here.. is that too inconsistent? --------- Co-authored-by: Kristjan ESPERANTO <[email protected]> Co-authored-by: Veeck <[email protected]>
1 parent 0afc1ed commit 51d11bf

File tree

6 files changed

+65
-23
lines changed

6 files changed

+65
-23
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ planned for 2025-04-01
1515
1616
### Added
1717

18+
- Add CSS support to the digital clock hour/minute/second through the use of the classes `clock-hour-digital`, `clock-minute-digital`, and `clock-second-digital`.
1819
- Add Arabic (#3719) and Esperanto translation.
20+
- Mark option `secondsColor` as deprecated in clock module.
1921
- Add Greek translation to Alerts module.
2022

2123
### Changed

js/app.js

+14-2
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,23 @@ function App () {
153153
*/
154154
function checkDeprecatedOptions (userConfig) {
155155
const deprecated = require(`${global.root_path}/js/deprecated`);
156-
const deprecatedOptions = deprecated.configs;
157156

157+
// check for deprecated core options
158+
const deprecatedOptions = deprecated.configs;
158159
const usedDeprecated = deprecatedOptions.filter((option) => userConfig.hasOwnProperty(option));
159160
if (usedDeprecated.length > 0) {
160-
Log.warn(`WARNING! Your config is using deprecated options: ${usedDeprecated.join(", ")}. Check README and CHANGELOG for more up-to-date ways of getting the same functionality.`);
161+
Log.warn(`WARNING! Your config is using deprecated option(s): ${usedDeprecated.join(", ")}. Check README and CHANGELOG for more up-to-date ways of getting the same functionality.`);
162+
}
163+
164+
// check for deprecated module options
165+
for (const element of userConfig.modules) {
166+
if (deprecated[element.module] !== undefined && element.config !== undefined) {
167+
const deprecatedModuleOptions = deprecated[element.module];
168+
const usedDeprecatedModuleOptions = deprecatedModuleOptions.filter((option) => element.config.hasOwnProperty(option));
169+
if (usedDeprecatedModuleOptions.length > 0) {
170+
Log.warn(`WARNING! Your config for module ${element.module} is using deprecated option(s): ${usedDeprecatedModuleOptions.join(", ")}. Check README and CHANGELOG for more up-to-date ways of getting the same functionality.`);
171+
}
172+
}
161173
}
162174
}
163175

js/deprecated.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
module.exports = {
2-
configs: ["kioskmode"]
2+
configs: ["kioskmode"],
3+
clock: ["secondsColor"]
34
};

modules/default/clock/clock.js

+22-19
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Module.register("clock", {
2323
analogFace: "simple", // options: 'none', 'simple', 'face-###' (where ### is 001 to 012 inclusive)
2424
analogPlacement: "bottom", // options: 'top', 'bottom', 'left', 'right'
2525
analogShowDate: "top", // OBSOLETE, can be replaced with analogPlacement and showTime, options: false, 'top', or 'bottom'
26-
secondsColor: "#888888",
26+
secondsColor: "#888888", // DEPRECATED, use CSS instead. Class "clock-second-digital" for digital clock, "clock-second" for analog clock.
2727

2828
showSunTimes: false,
2929
showMoonTimes: false, // options: false, 'times' (rise/set), 'percent' (lit percent), 'phase' (current phase), or 'both' (percent & phase)
@@ -105,6 +105,8 @@ Module.register("clock", {
105105
*/
106106
const dateWrapper = document.createElement("div");
107107
const timeWrapper = document.createElement("div");
108+
const hoursWrapper = document.createElement("span");
109+
const minutesWrapper = document.createElement("span");
108110
const secondsWrapper = document.createElement("sup");
109111
const periodWrapper = document.createElement("span");
110112
const sunWrapper = document.createElement("div");
@@ -114,39 +116,40 @@ Module.register("clock", {
114116
// Style Wrappers
115117
dateWrapper.className = "date normal medium";
116118
timeWrapper.className = "time bright large light";
117-
secondsWrapper.className = "seconds dimmed";
119+
hoursWrapper.className = "clock-hour-digital";
120+
minutesWrapper.className = "clock-minute-digital";
121+
secondsWrapper.className = "clock-second-digital dimmed";
118122
sunWrapper.className = "sun dimmed small";
119123
moonWrapper.className = "moon dimmed small";
120124
weekWrapper.className = "week dimmed medium";
121125

122126
// Set content of wrappers.
123-
// The moment().format("h") method has a bug on the Raspberry Pi.
124-
// So we need to generate the timestring manually.
125-
// See issue: https://github.com/MagicMirrorOrg/MagicMirror/issues/181
126-
let timeString;
127127
const now = moment();
128128
if (this.config.timezone) {
129129
now.tz(this.config.timezone);
130130
}
131131

132-
let hourSymbol = "HH";
133-
if (this.config.timeFormat !== 24) {
134-
hourSymbol = "h";
135-
}
136-
137-
if (this.config.clockBold) {
138-
timeString = now.format(`${hourSymbol}[<span class="bold">]mm[</span>]`);
139-
} else {
140-
timeString = now.format(`${hourSymbol}:mm`);
141-
}
142-
143132
if (this.config.showDate) {
144133
dateWrapper.innerHTML = now.format(this.config.dateFormat);
145134
digitalWrapper.appendChild(dateWrapper);
146135
}
147136

148137
if (this.config.displayType !== "analog" && this.config.showTime) {
149-
timeWrapper.innerHTML = timeString;
138+
let hourSymbol = "HH";
139+
if (this.config.timeFormat !== 24) {
140+
hourSymbol = "h";
141+
}
142+
143+
hoursWrapper.innerHTML = now.format(hourSymbol);
144+
minutesWrapper.innerHTML = now.format("mm");
145+
146+
timeWrapper.appendChild(hoursWrapper);
147+
if (this.config.clockBold) {
148+
minutesWrapper.classList.add("bold");
149+
} else {
150+
timeWrapper.innerHTML += ":";
151+
}
152+
timeWrapper.appendChild(minutesWrapper);
150153
secondsWrapper.innerHTML = now.format("ss");
151154
if (this.config.showPeriodUpper) {
152155
periodWrapper.innerHTML = now.format("A");
@@ -267,7 +270,7 @@ Module.register("clock", {
267270
clockSecond.id = "clock-second";
268271
clockSecond.style.transform = `rotate(${second}deg)`;
269272
clockSecond.className = "clock-second";
270-
clockSecond.style.backgroundColor = this.config.secondsColor;
273+
clockSecond.style.backgroundColor = this.config.secondsColor; /* DEPRECATED, to be removed in a future version , use CSS instead */
271274
clockFace.appendChild(clockSecond);
272275
}
273276
analogWrapper.appendChild(clockFace);

modules/default/clock/clock_styles.css

+18-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,12 @@
7878
left: 50%;
7979
margin: -38% -1px 0 0; /* numbers must match negative length & thickness */
8080
padding: 38% 1px 0 0; /* indicator length & thickness */
81-
background: var(--color-text);
81+
82+
/* background: #888888 !important; */
83+
84+
/* use this instead of secondsColor */
85+
86+
/* have to use !important, because the code explicitly sets the color currently */
8287
transform-origin: 50% 100%;
8388
}
8489

@@ -91,3 +96,15 @@
9196
.module.clock .moon > * {
9297
flex: 1;
9398
}
99+
100+
.module.clock .clock-hour-digital {
101+
color: var(--color-text-bright);
102+
}
103+
104+
.module.clock .clock-minute-digital {
105+
color: var(--color-text-bright);
106+
}
107+
108+
.module.clock .clock-second-digital {
109+
color: var(--color-text-dimmed);
110+
}

tests/e2e/modules/clock_spec.js

+7
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ describe("Clock module", () => {
3838
const timeRegex = /^(?:1[0-2]|[1-9]):[0-5]\d[0-5]\d[ap]m$/;
3939
await expect(helpers.testMatch(".clock .time", timeRegex)).resolves.toBe(true);
4040
});
41+
42+
it("check for discreet elements of clock", async () => {
43+
let elemClock = helpers.waitForElement(".clock-hour-digital");
44+
await expect(elemClock).not.toBeNull();
45+
elemClock = helpers.waitForElement(".clock-minute-digital");
46+
await expect(elemClock).not.toBeNull();
47+
});
4148
});
4249

4350
describe("with showPeriodUpper config enabled", () => {

0 commit comments

Comments
 (0)