prasi-lib/preset/menu/Layout.tsx

83 lines
2.0 KiB
TypeScript
Executable File

import { getPathname } from "lib/utils/pathname";
import { FC, ReactNode, useEffect, useLayoutEffect, useState } from "react";
import { loadSession } from "../login/utils/load";
import { useLocal } from "lib/utils/use-local";
const w = window as any;
const fn = function () {
const mode = localStorage.getItem("prasi-editor-mode");
if (isEditor) {
setTimeout(() => {
if (mode === "mobile") {
w.isMobile = true;
w.isDesktop = false;
} else {
w.isMobile = false;
w.isDesktop = true;
}
}, 50);
} else {
if (mode === "desktop") {
if (window.matchMedia("screen and (max-width: 768px)").matches) {
w.isMobile = true;
w.isDesktop = false;
} else {
w.isMobile = false;
w.isDesktop = true;
}
}
}
};
type LYTChild = {
mobile?: ReactNode;
desktop?: ReactNode;
tablet?: ReactNode;
child?: ReactNode;
default_layout: ReactNode;
exception?: Array<string>;
blank_layout: ReactNode;
login_url: string;
};
export const Layout: FC<LYTChild> = (props) => {
const local = useLocal({loading: true})
const render = local.render;
useLayoutEffect(() => {
if (!isEditor) {
window.addEventListener("resize", render);
return () => {
window.removeEventListener("resize", render);
};
} else {
const el = document.querySelector(".main-editor-content");
if (el) {
const rx = new ResizeObserver(render);
rx.observe(el);
return () => {
rx.disconnect();
};
}
}
}, []);
fn();
const path = getPathname();
const no_layout = props.exception;
if (!w.user) loadSession(props.login_url || "/auth/login");
if (!isEditor && Array.isArray(no_layout)) {
if (no_layout.length) {
if (no_layout.includes(path)) {
return <>{props.blank_layout}</>;
}
}
}
if (path === props.login_url) return props.blank_layout;
if (!w.user && !isEditor) return props.blank_layout;
return <>{props.default_layout}</>;
};