cal.pub0.org/apps/web/lib/hooks/useTheme.tsx

59 lines
1.8 KiB
TypeScript
Raw Normal View History

import Head from "next/head";
import { useEffect, useState } from "react";
import { useEmbedTheme } from "@calcom/embed-core/embed-iframe";
2021-10-14 19:22:01 +00:00
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.remove("dark");
document.documentElement.classList.remove("light");
document.documentElement.classList.add(theme);
}
};
mediaQueryList.onchange = function (e) {
applyTheme(theme, e.matches);
};
applyTheme(theme, mediaQueryList.matches);
}
Feature/round robin (#613) * Heavy WIP * More WIP * Playing with backwards compat * Moar wip * wip * Email changes for group feature * Committing in redundant migrations for reference * Combine all WIP migrations into a single feature migration * Make backup of current version of radio area pending refactor * Improved accessibility through keyboard * Cleanup in seperate commit so I can cherrypick later * Added RadioArea component * wip * Ignore .yarn file * Kinda stable * Getting closer... * Hide header when there are only personal events * Added uid to event create, updated EventTypeDescription * Delete redundant migration * Committing new team related migrations * Optimising & implemented backwards compatibility * Removed now redundant pages * Undid prototyping to calendarClient I did not end up using * Properly typed Select & fixed lint throughout * How'd that get here, removed. * TODO: investigate why userData is not compatible with passed type * This likely matches the event type that is created for a user * Few bugfixes * Adding datepicker optimisations * Fixed new event type spacing, initial profile should always be there * Gave NEXT_PUBLIC_BASE_URL a try but I think it's not the right solution * Updated EventTypeDescription to account for long titles, added logo to team page. * Added logo to team query * Added cancel Cypress test because an upcoming merge contains changes * Fix for when the event type description is long * Turned Theme into the useTheme hook, and made it fully compatible with teams pages * Built AvatarGroup ui component + moved Avatar to ui * Give the avatar some space fom the description * Fixed timeZone selector * Disabled tooltip +1-... Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
2021-09-14 08:45:28 +00:00
// makes sure the ui doesn't flash
2021-09-27 16:09:19 +00:00
export default function useTheme(theme?: Maybe<string>) {
const [isReady, setIsReady] = useState(false);
const embedTheme = useEmbedTheme();
2022-03-31 08:45:47 +00:00
// Embed UI configuration takes more precedence over App Configuration
theme = embedTheme || theme;
const [_theme, setTheme] = useState<Maybe<string>>(theme);
useEffect(() => {
// TODO: isReady doesn't seem required now. This is also impacting PSI Score for pages which are using isReady.
setIsReady(true);
setTheme(theme);
}, [theme]);
function Theme() {
const code = applyThemeAndAddListener.toString();
const themeStr = _theme ? `"${_theme}"` : null;
return (
<Head>
2022-07-13 21:14:16 +00:00
<script dangerouslySetInnerHTML={{ __html: `(${code})(${themeStr})` }} />
</Head>
);
}
return {
2021-07-11 19:35:56 +00:00
isReady,
Theme,
2021-07-11 19:35:56 +00:00
};
}