keycloak_theme/src/lib/usePrepareTemplate.ts

107 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-03-17 20:40:29 +01:00
import { useReducer, useEffect } from "react";
2023-03-19 23:12:45 +01:00
import { headInsert } from "keycloakify/tools/headInsert";
import { pathJoin } from "keycloakify/bin/tools/pathJoin";
import { clsx } from "keycloakify/tools/clsx";
2023-03-17 20:40:29 +01:00
export function usePrepareTemplate(params: {
doFetchDefaultThemeResources: boolean;
stylesCommon?: string[];
styles?: string[];
scripts?: string[];
url: {
resourcesCommonPath: string;
resourcesPath: string;
};
htmlClassName: string | undefined;
bodyClassName: string | undefined;
2023-03-17 20:40:29 +01:00
}) {
const { doFetchDefaultThemeResources, stylesCommon = [], styles = [], url, scripts = [], htmlClassName, bodyClassName } = params;
2023-03-17 20:40:29 +01:00
const [isReady, setReady] = useReducer(() => true, !doFetchDefaultThemeResources);
useEffect(() => {
if (!doFetchDefaultThemeResources) {
return;
}
let isUnmounted = false;
const removeArray: (() => void)[] = [];
(async () => {
const prLoadedArray: Promise<void>[] = [];
2023-03-17 20:40:29 +01:00
[
...stylesCommon.map(relativePath => pathJoin(url.resourcesCommonPath, relativePath)),
...styles.map(relativePath => pathJoin(url.resourcesPath, relativePath))
2023-03-17 20:40:29 +01:00
]
.reverse()
.forEach(href => {
const { prLoaded, remove } = headInsert({
2023-03-17 20:40:29 +01:00
"type": "css",
"position": "prepend",
href
});
removeArray.push(remove);
prLoadedArray.push(prLoaded);
});
await Promise.all(prLoadedArray);
2023-03-17 20:40:29 +01:00
if (isUnmounted) {
return;
}
setReady();
})();
2023-03-17 20:40:29 +01:00
scripts.forEach(relativePath => {
const { remove } = headInsert({
2023-03-17 20:40:29 +01:00
"type": "javascript",
"src": pathJoin(url.resourcesPath, relativePath)
});
removeArray.push(remove);
});
2023-03-17 20:40:29 +01:00
return () => {
isUnmounted = true;
removeArray.forEach(remove => remove());
2023-03-17 20:40:29 +01:00
};
}, []);
useSetClassName({
"target": "html",
"className": htmlClassName
});
useSetClassName({
"target": "body",
"className": bodyClassName
});
return { isReady };
}
function useSetClassName(params: { target: "html" | "body"; className: string | undefined }) {
const { target, className } = params;
2023-03-17 20:40:29 +01:00
useEffect(() => {
if (className === undefined) {
return;
}
2023-03-21 03:01:49 +01:00
const htmlClassList = document.getElementsByTagName(target)[0].classList;
2023-03-17 20:40:29 +01:00
2023-03-21 03:01:49 +01:00
const tokens = clsx(className).split(" ");
2023-03-17 20:40:29 +01:00
htmlClassList.add(...tokens);
return () => {
htmlClassList.remove(...tokens);
};
}, [className]);
2023-03-17 20:40:29 +01:00
}