uptime-kuma/src/mixins/theme.js

77 lines
1.9 KiB
JavaScript
Raw Normal View History

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