refactor(dashboard-v2): move access guards outside of SWRConfig
This commit is contained in:
parent
51952c88ed
commit
2c2a1259d3
|
@ -1,4 +1,5 @@
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
|
import { SWRConfig } from "swr";
|
||||||
import "@fontsource/sora/300.css"; // light
|
import "@fontsource/sora/300.css"; // light
|
||||||
import "@fontsource/sora/400.css"; // normal
|
import "@fontsource/sora/400.css"; // normal
|
||||||
import "@fontsource/sora/500.css"; // medium
|
import "@fontsource/sora/500.css"; // medium
|
||||||
|
@ -6,6 +7,7 @@ import "@fontsource/sora/600.css"; // semibold
|
||||||
import "@fontsource/source-sans-pro/400.css"; // normal
|
import "@fontsource/source-sans-pro/400.css"; // normal
|
||||||
import "@fontsource/source-sans-pro/600.css"; // semibold
|
import "@fontsource/source-sans-pro/600.css"; // semibold
|
||||||
import "./src/styles/global.css";
|
import "./src/styles/global.css";
|
||||||
|
import swrConfig from "./src/lib/swrConfig";
|
||||||
import { MODAL_ROOT_ID } from "./src/components/Modal";
|
import { MODAL_ROOT_ID } from "./src/components/Modal";
|
||||||
import { PortalSettingsProvider } from "./src/contexts/portal-settings";
|
import { PortalSettingsProvider } from "./src/contexts/portal-settings";
|
||||||
|
|
||||||
|
@ -13,10 +15,12 @@ export function wrapPageElement({ element, props }) {
|
||||||
const Layout = element.type.Layout ?? React.Fragment;
|
const Layout = element.type.Layout ?? React.Fragment;
|
||||||
return (
|
return (
|
||||||
<PortalSettingsProvider>
|
<PortalSettingsProvider>
|
||||||
|
<SWRConfig value={swrConfig}>
|
||||||
<Layout {...props}>
|
<Layout {...props}>
|
||||||
{element}
|
{element}
|
||||||
<div id={MODAL_ROOT_ID} />
|
<div id={MODAL_ROOT_ID} />
|
||||||
</Layout>
|
</Layout>
|
||||||
|
</SWRConfig>
|
||||||
</PortalSettingsProvider>
|
</PortalSettingsProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
|
import { SWRConfig } from "swr";
|
||||||
import "@fontsource/sora/300.css"; // light
|
import "@fontsource/sora/300.css"; // light
|
||||||
import "@fontsource/sora/400.css"; // normal
|
import "@fontsource/sora/400.css"; // normal
|
||||||
import "@fontsource/sora/500.css"; // medium
|
import "@fontsource/sora/500.css"; // medium
|
||||||
|
@ -6,6 +7,7 @@ import "@fontsource/sora/600.css"; // semibold
|
||||||
import "@fontsource/source-sans-pro/400.css"; // normal
|
import "@fontsource/source-sans-pro/400.css"; // normal
|
||||||
import "@fontsource/source-sans-pro/600.css"; // semibold
|
import "@fontsource/source-sans-pro/600.css"; // semibold
|
||||||
import "./src/styles/global.css";
|
import "./src/styles/global.css";
|
||||||
|
import swrConfig from "./src/lib/swrConfig";
|
||||||
import { MODAL_ROOT_ID } from "./src/components/Modal";
|
import { MODAL_ROOT_ID } from "./src/components/Modal";
|
||||||
import { PortalSettingsProvider } from "./src/contexts/portal-settings";
|
import { PortalSettingsProvider } from "./src/contexts/portal-settings";
|
||||||
|
|
||||||
|
@ -13,10 +15,12 @@ export function wrapPageElement({ element, props }) {
|
||||||
const Layout = element.type.Layout ?? React.Fragment;
|
const Layout = element.type.Layout ?? React.Fragment;
|
||||||
return (
|
return (
|
||||||
<PortalSettingsProvider>
|
<PortalSettingsProvider>
|
||||||
|
<SWRConfig value={swrConfig}>
|
||||||
<Layout {...props}>
|
<Layout {...props}>
|
||||||
{element}
|
{element}
|
||||||
<div id={MODAL_ROOT_ID} />
|
<div id={MODAL_ROOT_ID} />
|
||||||
</Layout>
|
</Layout>
|
||||||
|
</SWRConfig>
|
||||||
</PortalSettingsProvider>
|
</PortalSettingsProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ export const NavBar = () => {
|
||||||
as="button"
|
as="button"
|
||||||
onClick={onLogout}
|
onClick={onLogout}
|
||||||
activeClassName="text-primary"
|
activeClassName="text-primary"
|
||||||
className="cursor-pointer"
|
className="cursor-pointer w-full"
|
||||||
icon={LockClosedIcon}
|
icon={LockClosedIcon}
|
||||||
label="Log out"
|
label="Log out"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -16,7 +16,7 @@ const fetcher = async (path) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const PortalSettingsProvider = ({ children }) => {
|
export const PortalSettingsProvider = ({ children }) => {
|
||||||
const { data, error } = useSWRImmutable("/__internal/do/not/use/accounts", fetcher);
|
const { data, error } = useSWRImmutable("__internal/do/not/use/accounts", fetcher);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [settings, setSettings] = useState(defaultSettings);
|
const [settings, setSettings] = useState(defaultSettings);
|
||||||
|
|
||||||
|
|
|
@ -1,17 +1,41 @@
|
||||||
|
import { navigate } from "gatsby";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import useSWRImmutable from "swr/immutable";
|
import useSWRImmutable from "swr/immutable";
|
||||||
|
|
||||||
|
import { UnauthorizedError } from "../../lib/swrConfig";
|
||||||
|
import { FullScreenLoadingIndicator } from "../../components/LoadingIndicator";
|
||||||
import { UserContext } from "./UserContext";
|
import { UserContext } from "./UserContext";
|
||||||
|
|
||||||
export const UserProvider = ({ children }) => {
|
export const UserProvider = ({ children, allowGuests = false, allowAuthenticated = true }) => {
|
||||||
const { data: user, error, mutate } = useSWRImmutable("user");
|
const { data: user, error, mutate } = useSWRImmutable("user");
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (user || error) {
|
const guard = async () => {
|
||||||
|
if (user) {
|
||||||
|
if (!allowAuthenticated) {
|
||||||
|
navigate("/");
|
||||||
|
} else {
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
}
|
}
|
||||||
}, [user, error]);
|
} else if (error) {
|
||||||
|
if (error instanceof UnauthorizedError && !allowGuests) {
|
||||||
|
await navigate(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`);
|
||||||
|
} else {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
} else if (user === null) {
|
||||||
|
setLoading(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return <UserContext.Provider value={{ user, error, loading, mutate }}>{children}</UserContext.Provider>;
|
guard();
|
||||||
|
}, [user, error, allowGuests, allowAuthenticated]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<UserContext.Provider value={{ user, error, loading, mutate }}>
|
||||||
|
{loading && <FullScreenLoadingIndicator />}
|
||||||
|
{!loading && children}
|
||||||
|
</UserContext.Provider>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { SWRConfig } from "swr";
|
|
||||||
|
|
||||||
import { UserProvider } from "../contexts/user";
|
import { UserProvider } from "../contexts/user";
|
||||||
import { guestsOnly, allUsers } from "../lib/swrConfig";
|
|
||||||
|
|
||||||
const Layout = styled.div.attrs({
|
const Layout = styled.div.attrs({
|
||||||
className: "min-h-screen w-screen bg-black flex",
|
className: "min-h-screen w-screen bg-black flex",
|
||||||
|
@ -22,12 +20,11 @@ const Content = styled.div.attrs({
|
||||||
})``;
|
})``;
|
||||||
|
|
||||||
const AuthLayout =
|
const AuthLayout =
|
||||||
(swrConfig) =>
|
(userProviderProps) =>
|
||||||
({ children }) => {
|
({ children }) =>
|
||||||
return (
|
(
|
||||||
<>
|
<>
|
||||||
<SWRConfig value={swrConfig}>
|
<UserProvider {...userProviderProps}>
|
||||||
<UserProvider>
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<SloganContainer className="pl-20 pr-20 lg:pr-30 xl:pr-40">
|
<SloganContainer className="pl-20 pr-20 lg:pr-30 xl:pr-40">
|
||||||
<div className="">
|
<div className="">
|
||||||
|
@ -39,12 +36,16 @@ const AuthLayout =
|
||||||
<Content>{children}</Content>
|
<Content>{children}</Content>
|
||||||
</Layout>
|
</Layout>
|
||||||
</UserProvider>
|
</UserProvider>
|
||||||
</SWRConfig>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
|
||||||
|
|
||||||
// Some pages (e.g. email confirmation) need to be accessible to both logged-in and guest users.
|
// Some pages (e.g. email confirmation) need to be accessible to both logged-in and guest users.
|
||||||
export const AllUsersAuthLayout = AuthLayout(allUsers);
|
export const AllUsersAuthLayout = AuthLayout({
|
||||||
|
allowGuests: true,
|
||||||
|
allowAuthenticated: true,
|
||||||
|
});
|
||||||
|
|
||||||
export default AuthLayout(guestsOnly);
|
export default AuthLayout({
|
||||||
|
allowGuests: true,
|
||||||
|
allowAuthenticated: false,
|
||||||
|
});
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { SWRConfig } from "swr";
|
|
||||||
|
|
||||||
import { authenticatedOnly } from "../lib/swrConfig";
|
|
||||||
|
|
||||||
import { PageContainer } from "../components/PageContainer";
|
import { PageContainer } from "../components/PageContainer";
|
||||||
import { NavBar } from "../components/NavBar";
|
import { NavBar } from "../components/NavBar";
|
||||||
|
@ -30,22 +27,16 @@ const Layout = ({ children }) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const DashboardLayout = ({ children }) => {
|
const DashboardLayout = ({ children }) => (
|
||||||
return (
|
|
||||||
<>
|
<>
|
||||||
<SWRConfig value={authenticatedOnly}>
|
|
||||||
<UserProvider>
|
<UserProvider>
|
||||||
<Layout>
|
<Layout>
|
||||||
<NavBar />
|
<NavBar />
|
||||||
<PageContainer>
|
<PageContainer className="mt-2 md:mt-14">{children}</PageContainer>
|
||||||
<main className="mt-14">{children}</main>
|
|
||||||
</PageContainer>
|
|
||||||
<Footer />
|
<Footer />
|
||||||
</Layout>
|
</Layout>
|
||||||
</UserProvider>
|
</UserProvider>
|
||||||
</SWRConfig>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
|
||||||
|
|
||||||
export default DashboardLayout;
|
export default DashboardLayout;
|
||||||
|
|
|
@ -1,43 +1,12 @@
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Link } from "gatsby";
|
import { Link } from "gatsby";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { SWRConfig } from "swr";
|
|
||||||
|
|
||||||
import { authenticatedOnly } from "../lib/swrConfig";
|
import DashboardLayout from "./DashboardLayout";
|
||||||
|
|
||||||
import { PageContainer } from "../components/PageContainer";
|
|
||||||
import { NavBar } from "../components/NavBar";
|
|
||||||
import { Footer } from "../components/Footer";
|
|
||||||
import { UserProvider, useUser } from "../contexts/user";
|
|
||||||
import { ContainerLoadingIndicator } from "../components/LoadingIndicator";
|
|
||||||
|
|
||||||
const Wrapper = styled.div.attrs({
|
|
||||||
className: "min-h-screen overflow-hidden",
|
|
||||||
})`
|
|
||||||
background-image: url(/images/dashboard-bg.svg);
|
|
||||||
background-position: center -280px;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Layout = ({ children }) => {
|
|
||||||
const { user } = useUser();
|
|
||||||
|
|
||||||
// Prevent from flashing the dashboard screen to unauthenticated users.
|
|
||||||
return (
|
|
||||||
<Wrapper>
|
|
||||||
{!user && (
|
|
||||||
<div className="fixed inset-0 flex justify-center items-center bg-palette-100/50">
|
|
||||||
<ContainerLoadingIndicator className="!text-palette-200/50" />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
{user && <>{children}</>}
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const Sidebar = () => (
|
const Sidebar = () => (
|
||||||
<aside className="w-full lg:w-48 bg-white text-sm font-sans font-light text-palette-600 shrink-0">
|
<aside className="w-full lg:w-48 text-sm font-sans font-light text-palette-600 shrink-0">
|
||||||
<nav>
|
<nav className="bg-white">
|
||||||
<SidebarLink activeClassName="!border-l-primary" to="/settings">
|
<SidebarLink activeClassName="!border-l-primary" to="/settings">
|
||||||
Account
|
Account
|
||||||
</SidebarLink>
|
</SidebarLink>
|
||||||
|
@ -55,7 +24,7 @@ const Sidebar = () => (
|
||||||
);
|
);
|
||||||
|
|
||||||
const SidebarLink = styled(Link).attrs({
|
const SidebarLink = styled(Link).attrs({
|
||||||
className: `h-12 py-3 px-6 h-full w-full flex
|
className: `h-12 py-3 px-6 w-full flex
|
||||||
border-l-2 border-l-palette-200
|
border-l-2 border-l-palette-200
|
||||||
border-b border-b-palette-100 last:border-b-transparent`,
|
border-b border-b-palette-100 last:border-b-transparent`,
|
||||||
})``;
|
})``;
|
||||||
|
@ -67,21 +36,13 @@ const Content = styled.main.attrs({
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const UserSettingsLayout = ({ children }) => (
|
const UserSettingsLayout = ({ children }) => (
|
||||||
<SWRConfig value={authenticatedOnly}>
|
<DashboardLayout>
|
||||||
<UserProvider>
|
|
||||||
<Layout>
|
|
||||||
<NavBar />
|
|
||||||
<PageContainer className="mt-2 md:mt-14">
|
|
||||||
<h6 className="hidden md:block mb-2 text-palette-400">Settings</h6>
|
<h6 className="hidden md:block mb-2 text-palette-400">Settings</h6>
|
||||||
<div className="flex flex-col lg:flex-row">
|
<div className="flex flex-col lg:flex-row">
|
||||||
<Sidebar />
|
<Sidebar />
|
||||||
<Content className="lg:w-settings-lg xl:w-settings-xl">{children}</Content>
|
<Content className="lg:w-settings-lg xl:w-settings-xl">{children}</Content>
|
||||||
</div>
|
</div>
|
||||||
</PageContainer>
|
</DashboardLayout>
|
||||||
<Footer />
|
|
||||||
</Layout>
|
|
||||||
</UserProvider>
|
|
||||||
</SWRConfig>
|
|
||||||
);
|
);
|
||||||
|
|
||||||
export default UserSettingsLayout;
|
export default UserSettingsLayout;
|
||||||
|
|
|
@ -1,39 +1,22 @@
|
||||||
import { navigate } from "gatsby";
|
|
||||||
import { StatusCodes } from "http-status-codes";
|
import { StatusCodes } from "http-status-codes";
|
||||||
|
|
||||||
// TODO: portal-aware URL
|
export class UnauthorizedError extends Error {}
|
||||||
const baseUrl = process.env.NODE_ENV !== "production" ? "/api" : "https://account.skynetpro.net/api";
|
|
||||||
|
|
||||||
const redirectUnauthenticated = (key) =>
|
const config = {
|
||||||
fetch(`${baseUrl}/${key}`).then((response) => {
|
fetcher: (key) =>
|
||||||
if (response.status === StatusCodes.UNAUTHORIZED) {
|
fetch(`/api/${key}`).then(async (response) => {
|
||||||
navigate(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return response.json();
|
|
||||||
});
|
|
||||||
|
|
||||||
const redirectAuthenticated = (key) =>
|
|
||||||
fetch(`${baseUrl}/${key}`).then(async (response) => {
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
await navigate("/");
|
|
||||||
return response.json();
|
return response.json();
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there was an error, let's throw so useSWR's "error" property is populated instead "data".
|
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
throw new Error(data?.message || `Error occured when trying to fetch: ${key}`);
|
|
||||||
});
|
|
||||||
|
|
||||||
export const allUsers = {
|
if (response.status === StatusCodes.UNAUTHORIZED) {
|
||||||
fetcher: (key) => fetch(`${baseUrl}/${key}`).then((response) => response.json()),
|
throw new UnauthorizedError(data?.message || "Unauthorized");
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error(data?.message || `Error occurred when trying to fetch: ${key}`);
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const authenticatedOnly = {
|
export default config;
|
||||||
fetcher: redirectUnauthenticated,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const guestsOnly = {
|
|
||||||
fetcher: redirectAuthenticated,
|
|
||||||
};
|
|
||||||
|
|
Reference in New Issue