forked from github/plane
0ff5f9ef62
* style: updated the UI of the signin and instance setups * fix: form validations and mutations * fix: updated Link tags in accordance to next v14 * chore: latest features image, reset password redirection
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// ui
|
|
import { Spinner } from "@plane/ui";
|
|
// store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
export interface IUserAuthWrapper {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const UserAuthWrapper: FC<IUserAuthWrapper> = observer((props) => {
|
|
const { children } = props;
|
|
// store
|
|
const {
|
|
user: {
|
|
currentUser,
|
|
currentUserError,
|
|
fetchCurrentUser,
|
|
fetchCurrentUserInstanceAdminStatus,
|
|
fetchCurrentUserSettings,
|
|
},
|
|
workspace: { fetchWorkspaces },
|
|
} = useMobxStore();
|
|
// router
|
|
const router = useRouter();
|
|
// fetching user information
|
|
useSWR("CURRENT_USER_DETAILS", () => fetchCurrentUser(), {
|
|
shouldRetryOnError: false,
|
|
});
|
|
// fetching current user instance admin status
|
|
useSWR("CURRENT_USER_INSTANCE_ADMIN_STATUS", () => fetchCurrentUserInstanceAdminStatus(), {
|
|
shouldRetryOnError: false,
|
|
});
|
|
// fetching user settings
|
|
useSWR("CURRENT_USER_SETTINGS", () => fetchCurrentUserSettings(), {
|
|
shouldRetryOnError: false,
|
|
});
|
|
// fetching all workspaces
|
|
useSWR(`USER_WORKSPACES_LIST`, () => fetchWorkspaces(), {
|
|
shouldRetryOnError: false,
|
|
});
|
|
|
|
if (!currentUser && !currentUserError) {
|
|
return (
|
|
<div className="h-screen grid place-items-center p-4 bg-custom-background-100">
|
|
<div className="flex flex-col items-center gap-3 text-center">
|
|
<Spinner />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (currentUserError) {
|
|
const redirectTo = router.asPath;
|
|
router.push(`/?next=${redirectTo}`);
|
|
return null;
|
|
}
|
|
|
|
return <>{children}</>;
|
|
});
|