mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-07-03 23:51:26 +00:00
update darkmode
This commit is contained in:
parent
eaad8a3080
commit
c8fbea7b07
1 changed files with 45 additions and 17 deletions
|
|
@ -5,6 +5,16 @@
|
||||||
|
|
||||||
let pagePath = `/posts/${slug}/`;
|
let pagePath = `/posts/${slug}/`;
|
||||||
|
|
||||||
|
function getTheme() {
|
||||||
|
return localStorage.getItem("color-theme") === "dark" ? "dark" : "light";
|
||||||
|
}
|
||||||
|
|
||||||
|
function syncRemark42Theme() {
|
||||||
|
if (window.REMARK42?.changeTheme) {
|
||||||
|
window.REMARK42.changeTheme(getTheme());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
const scriptId = "remark42-script";
|
const scriptId = "remark42-script";
|
||||||
|
|
||||||
|
|
@ -13,13 +23,12 @@
|
||||||
site_id: "cloverta-blog",
|
site_id: "cloverta-blog",
|
||||||
components: ["embed"],
|
components: ["embed"],
|
||||||
show_rss_subscription: false,
|
show_rss_subscription: false,
|
||||||
theme: localStorage.getItem("color-theme") ?? "light",
|
theme: getTheme(),
|
||||||
url: pagePath,
|
url: pagePath,
|
||||||
page_id: pagePath,
|
page_id: pagePath,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (document.getElementById(scriptId)) return;
|
if (!document.getElementById(scriptId)) {
|
||||||
|
|
||||||
const script = document.createElement("script");
|
const script = document.createElement("script");
|
||||||
script.id = scriptId;
|
script.id = scriptId;
|
||||||
script.async = true;
|
script.async = true;
|
||||||
|
|
@ -35,6 +44,25 @@
|
||||||
}(window.remark_config.components||["embed"],document);
|
}(window.remark_config.components||["embed"],document);
|
||||||
`;
|
`;
|
||||||
document.body.appendChild(script);
|
document.body.appendChild(script);
|
||||||
|
}
|
||||||
|
|
||||||
|
syncRemark42Theme();
|
||||||
|
|
||||||
|
const observer = new MutationObserver(() => {
|
||||||
|
syncRemark42Theme();
|
||||||
|
});
|
||||||
|
|
||||||
|
observer.observe(document.documentElement, {
|
||||||
|
attributes: true,
|
||||||
|
attributeFilter: ["class"],
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener("storage", syncRemark42Theme);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
observer.disconnect();
|
||||||
|
window.removeEventListener("storage", syncRemark42Theme);
|
||||||
|
};
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue