Skip to content

chore: add stories for Loader #12445

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions site/src/components/ErrorBoundary/RuntimeErrorState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Helmet } from "react-helmet-async";
import type { BuildInfoResponse } from "api/typesGenerated";
import { CopyButton } from "components/CopyButton/CopyButton";
import { CoderIcon } from "components/Icons/CoderIcon";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { Margins } from "components/Margins/Margins";
import { Stack } from "components/Stack/Stack";

Expand Down Expand Up @@ -50,7 +50,9 @@ export const RuntimeErrorState: FC<RuntimeErrorStateProps> = ({ error }) => {
<Helmet>
<title>Something went wrong...</title>
</Helmet>
{!checkingError ? (
{checkingError ? (
<Loader fullscreen />
) : (
<Margins css={styles.root}>
<div css={{ width: "100%" }}>
<CoderIcon css={styles.logo} />
Expand Down Expand Up @@ -109,8 +111,6 @@ export const RuntimeErrorState: FC<RuntimeErrorStateProps> = ({ error }) => {
)}
</div>
</Margins>
) : (
<FullScreenLoader />
)}
</>
);
Expand Down
23 changes: 0 additions & 23 deletions site/src/components/Loader/FullScreenLoader.tsx

This file was deleted.

18 changes: 18 additions & 0 deletions site/src/components/Loader/Loader.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import type { Meta, StoryObj } from "@storybook/react";
import { Loader } from "./Loader";

const meta: Meta<typeof Loader> = {
title: "components/Loader",
component: Loader,
};

export default meta;
type Story = StoryObj<typeof Loader>;

export const Example: Story = {};

export const Fullscreen: Story = {
args: {
fullscreen: true,
},
};
38 changes: 29 additions & 9 deletions site/src/components/Loader/Loader.tsx
Original file line number Diff line number Diff line change
@@ -1,25 +1,45 @@
import type { Interpolation, Theme } from "@emotion/react";
import CircularProgress from "@mui/material/CircularProgress";
import type { FC, HTMLAttributes } from "react";

interface LoaderProps extends HTMLAttributes<HTMLDivElement> {
fullscreen?: boolean;
size?: number;
}

export const Loader: FC<LoaderProps> = ({ size = 26, ...attrs }) => {
export const Loader: FC<LoaderProps> = ({
fullscreen,
size = 26,
...attrs
}) => {
return (
<div
css={{
padding: 32,
width: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
css={fullscreen ? styles.fullscreen : styles.inline}
data-testid="loader"
data-chromatic="ignore"
{...attrs}
>
<CircularProgress size={size} />
</div>
);
};

const styles = {
inline: {
padding: 32,
width: "100%",
display: "flex",
alignItems: "center",
justifyContent: "center",
},
fullscreen: (theme) => ({
position: "absolute",
top: "0",
left: "0",
right: "0",
bottom: "0",
display: "flex",
justifyContent: "center",
alignItems: "center",
background: theme.palette.background.default,
}),
} satisfies Record<string, Interpolation<Theme>>;
4 changes: 2 additions & 2 deletions site/src/contexts/auth/RequireAuth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import axios from "axios";
import { type FC, useEffect } from "react";
import { Outlet, Navigate, useLocation } from "react-router-dom";
import { isApiError } from "api/errors";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { ProxyProvider } from "contexts/ProxyContext";
import { DashboardProvider } from "modules/dashboard/DashboardProvider";
import { embedRedirect } from "utils/redirect";
Expand Down Expand Up @@ -43,7 +43,7 @@ export const RequireAuth: FC = () => {
}, [isLoading, isSigningOut, isSignedIn, signOut]);

if (isLoading || isSigningOut) {
return <FullScreenLoader />;
return <Loader fullscreen />;
}

if (isSignedOut) {
Expand Down
4 changes: 2 additions & 2 deletions site/src/modules/dashboard/DashboardProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type {
Experiments,
} from "api/typesGenerated";
import { displayError } from "components/GlobalSnackbar/utils";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { hslToHex, isHexColor, isHslColor } from "utils/colors";

interface Appearance {
Expand Down Expand Up @@ -78,7 +78,7 @@ export const DashboardProvider: FC<PropsWithChildren> = ({ children }) => {
}, []);

if (isLoading) {
return <FullScreenLoader />;
return <Loader fullscreen />;
}

return (
Expand Down
4 changes: 2 additions & 2 deletions site/src/pages/CliAuthPage/CliAuthPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { visuallyHidden } from "@mui/utils";
import type { FC } from "react";
import { Link as RouterLink } from "react-router-dom";
import { CodeExample } from "components/CodeExample/CodeExample";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { SignInLayout } from "components/SignInLayout/SignInLayout";
import { Welcome } from "components/Welcome/Welcome";

Expand All @@ -15,7 +15,7 @@ const VISUALLY_HIDDEN_SPACE = " ";

export const CliAuthPageView: FC<CliAuthPageViewProps> = ({ sessionToken }) => {
if (!sessionToken) {
return <FullScreenLoader />;
return <Loader fullscreen />;
}

return (
Expand Down
4 changes: 2 additions & 2 deletions site/src/pages/SetupPage/SetupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Helmet } from "react-helmet-async";
import { useMutation } from "react-query";
import { Navigate, useNavigate } from "react-router-dom";
import { createFirstUser } from "api/queries/users";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { useAuth } from "contexts/auth/useAuth";
import { pageTitle } from "utils/page";
import { SetupPageView } from "./SetupPageView";
Expand All @@ -21,7 +21,7 @@ export const SetupPage: FC = () => {
const navigate = useNavigate();

if (isLoading) {
return <FullScreenLoader />;
return <Loader fullscreen />;
}

// If the user is logged in, navigate to the app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type {
TemplateVersion,
} from "api/typesGenerated";
import { displayError } from "components/GlobalSnackbar/utils";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import { useOrganizationId } from "contexts/auth/useOrganizationId";
import { useWatchVersionLogs } from "modules/templates/useWatchVersionLogs";
import { type FileTree, traverse } from "utils/filetree";
Expand Down Expand Up @@ -120,7 +120,9 @@ export const TemplateVersionEditorPage: FC = () => {
<title>{pageTitle(`${templateName} · Template Editor`)}</title>
</Helmet>

{templateQuery.data && templateVersionQuery.data && fileTree ? (
{!(templateQuery.data && templateVersionQuery.data && fileTree) ? (
<Loader fullscreen />
) : (
<TemplateVersionEditor
activePath={activePath}
onActivePathChange={onActivePathChange}
Expand Down Expand Up @@ -223,8 +225,6 @@ export const TemplateVersionEditorPage: FC = () => {
setProvisionerTags(tags);
}}
/>
) : (
<FullScreenLoader />
)}
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import type {
import { ErrorAlert } from "components/Alert/ErrorAlert";
import { Avatar } from "components/Avatar/Avatar";
import { AvatarData } from "components/AvatarData/AvatarData";
import { FullScreenLoader } from "components/Loader/FullScreenLoader";
import { Loader } from "components/Loader/Loader";
import {
MoreMenu,
MoreMenuContent,
Expand Down Expand Up @@ -52,7 +52,7 @@ export const ExternalAuthPageView: FC<ExternalAuthPageViewProps> = ({
}

if (isLoading || !auths) {
return <FullScreenLoader />;
return <Loader fullscreen />;
}

return (
Expand Down
4 changes: 2 additions & 2 deletions site/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
Outlet,
Route,
} from "react-router-dom";
import { FullScreenLoader } from "./components/Loader/FullScreenLoader";
import { Loader } from "./components/Loader/Loader";
import { RequireAuth } from "./contexts/auth/RequireAuth";
import { DashboardLayout } from "./modules/dashboard/DashboardLayout";
import AuditPage from "./pages/AuditPage/AuditPage";
Expand Down Expand Up @@ -243,7 +243,7 @@ const ProvisionerDaemonsHealthPage = lazy(

const RoutesWithSuspense = () => {
return (
<Suspense fallback={<FullScreenLoader />}>
<Suspense fallback={<Loader fullscreen />}>
<Outlet />
</Suspense>
);
Expand Down