uptime-kuma/src/mixins/theme.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

export default {
data() {
return {
2021-08-12 14:17:20 +00:00
system: (window.matchMedia("(prefers-color-scheme: dark)").matches) ? "dark" : "light",
userTheme: localStorage.theme,
2021-08-15 18:46:21 +00:00
userHeartbeatBar: localStorage.heartbeatBarTheme
};
},
mounted() {
// Default Light
if (! this.userTheme) {
this.userTheme = "light";
}
2021-08-15 18:46:21 +00:00
//Default Heartbeat Bar
if (! this.userHeartbeatBar) {
this.userHeartbeatBar = "normal";
}
document.body.classList.add(this.theme);
2021-08-12 16:23:40 +00:00
this.updateThemeColorMeta();
},
computed: {
theme() {
if (this.userTheme === "auto") {
return this.system;
}
return this.userTheme;
}
},
watch: {
userTheme(to, from) {
localStorage.theme = to;
},
theme(to, from) {
document.body.classList.remove(from);
document.body.classList.add(this.theme);
2021-08-12 16:23:40 +00:00
this.updateThemeColorMeta();
2021-08-15 18:46:21 +00:00
},
userHeartbeatBar(to, from) {
localStorage.heartbeatBarTheme = to;
},
heartbeatBarTheme(to, from) {
document.body.classList.remove(from);
document.body.classList.add(this.heartbeatBarTheme);
2021-08-12 16:23:40 +00:00
}
},
methods: {
updateThemeColorMeta() {
if (this.theme === "dark") {
document.querySelector("#theme-color").setAttribute("content", "#161B22");
} else {
document.querySelector("#theme-color").setAttribute("content", "#5cdd8b");
}
}
}
}