calcom/apps/web/lib/hooks/useTheme.tsx
hariombalhara 4693cbba4f
Feature: Instant Theme Change, without refresh [Booking Pages Only] (#1807)
* Avoid Theme Flicker. Render Server Side

* Add back isReady implementation

* Use shorter syntax for Tag

* Listen to changes in pref-color-scheme and act

* Uglify Theme Applier code

* Resolve conflicts

* Add comments

* Appropriate function name

* Move uglify-js to dependencies

* Remove uglify-js

* Fix commnt

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Omar López <zomars@me.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
2022-02-16 15:53:26 +00:00

50 lines
1.4 KiB
TypeScript

import Head from "next/head";
import { useEffect, useState } from "react";
import { Maybe } from "@trpc/server";
// This method is stringified and executed only on client. So,
// - Pass all the params explicitly to this method. Don't use closure
function applyThemeAndAddListener(theme: string) {
const mediaQueryList = window.matchMedia("(prefers-color-scheme: dark)");
const applyTheme = function (theme: string, darkMatch: boolean) {
if (!theme) {
if (darkMatch) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
} else {
document.documentElement.classList.add(theme);
}
};
mediaQueryList.onchange = function (e) {
applyTheme(theme, e.matches);
};
applyTheme(theme, mediaQueryList.matches);
}
// makes sure the ui doesn't flash
export default function useTheme(theme?: Maybe<string>) {
const [isReady, setIsReady] = useState(false);
useEffect(() => {
// TODO: isReady doesn't seem required now. This is also impacting PSI Score for pages which are using isReady.
setIsReady(true);
}, []);
function Theme() {
const code = applyThemeAndAddListener.toString();
const themeStr = theme ? `"${theme}"` : null;
return (
<Head>
<script dangerouslySetInnerHTML={{ __html: `(${code})(${themeStr})` }}></script>
</Head>
);
}
return {
isReady,
Theme,
};
}