mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
faa6a2bcbc
* feat: update, delete link refactor: using old fetch-key * feat: issue activity with ability to view & add comment feat: click on view more to view more options in the issue detail * fix: upload image not working on mobile * feat: select blocker, blocking, and parent dev: auth layout for web-view, console.log callback for web-view * style: made design consistant * fix: displaying page only on web-view * style: removed overflow hidden
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
// swr
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import userService from "services/user.service";
|
|
|
|
// fetch keys
|
|
import { CURRENT_USER } from "constants/fetch-keys";
|
|
|
|
// icons
|
|
import { AlertCircle } from "lucide-react";
|
|
|
|
// ui
|
|
import { Spinner } from "components/ui";
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
const getIfInWebview = (userAgent: NavigatorID["userAgent"]) => {
|
|
if (/iphone|ipod|ipad/.test(userAgent) || userAgent.includes("wv")) return true;
|
|
else return false;
|
|
};
|
|
|
|
const useMobileDetect = () => {
|
|
const userAgent = typeof navigator === "undefined" ? "SSR" : navigator.userAgent;
|
|
return getIfInWebview(userAgent);
|
|
};
|
|
|
|
const WebViewLayout: React.FC<Props> = ({ children }) => {
|
|
const { data: currentUser, error } = useSWR(CURRENT_USER, () => userService.currentUser());
|
|
|
|
const isWebview = useMobileDetect();
|
|
|
|
if (!currentUser && !error) {
|
|
return (
|
|
<div className="h-screen grid place-items-center p-4">
|
|
<div className="flex flex-col items-center gap-3 text-center">
|
|
<h3 className="text-xl">Loading your profile...</h3>
|
|
<Spinner />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="h-screen w-full bg-custom-background-100">
|
|
{error || !isWebview ? (
|
|
<div className="flex flex-col items-center justify-center gap-y-3 h-full text-center text-custom-text-200">
|
|
<AlertCircle size={64} />
|
|
<h2 className="text-2xl font-semibold">You are not authorized to view this page.</h2>
|
|
</div>
|
|
) : (
|
|
children
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default WebViewLayout;
|