Skip to content

Commit

Permalink
feat: add spinner component
Browse files Browse the repository at this point in the history
  • Loading branch information
bacali95 committed Mar 12, 2022
1 parent 13d8c8f commit 61c417d
Show file tree
Hide file tree
Showing 6 changed files with 181 additions and 18 deletions.
8 changes: 8 additions & 0 deletions public/images/spinners-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/images/spinners-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion src/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
HiMenuAlt1,
} from 'react-icons/hi';
import { BsGithub } from 'react-icons/bs';
import { FaSpinner } from 'react-icons/fa';
import { Route, Routes } from 'react-router-dom';

import { DarkThemeToggle, Navbar, Sidebar, SidebarItem, Spinner } from './components';
Expand All @@ -20,6 +21,7 @@ const AccordionPage = lazy(() => import('./pages/AccordionPage'));
const BadgesPage = lazy(() => import('./pages/BadgesPage'));
const BreadcrumbPage = lazy(() => import('./pages/BreadcrumbPage'));
const ButtonsPage = lazy(() => import('./pages/ButtonsPage'));
const SpinnersPage = lazy(() => import('./pages/SpinnersPage'));
const TooltipsPage = lazy(() => import('./pages/TooltipsPage'));

export const Root: FC = () => {
Expand Down Expand Up @@ -62,6 +64,12 @@ export const Root: FC = () => {
title: 'Buttons',
href: '/buttons',
},
{
group: false,
icon: FaSpinner,
title: 'Spinners',
href: '/spinners',
},
{
group: false,
icon: HiDotsCircleHorizontal,
Expand Down Expand Up @@ -96,14 +104,21 @@ export const Root: FC = () => {
<div className="flex h-full overflow-hidden bg-gray-50 dark:bg-gray-900">
<Sidebar collapsed={collapsed} itemsGroups={itemsGroups} />
<main className="flex-1 overflow-auto p-4">
<Suspense fallback={<Spinner />}>
<Suspense
fallback={
<div className="flex items-center justify-center h-full">
<Spinner />
</div>
}
>
<Routes>
<Route path="" element={<DashboardPage />} />
<Route path="alerts" element={<AlertsPage />} />
<Route path="accordion" element={<AccordionPage />} />
<Route path="badges" element={<BadgesPage />} />
<Route path="breadcrumb" element={<BreadcrumbPage />} />
<Route path="buttons" element={<ButtonsPage />} />
<Route path="spinners" element={<SpinnersPage />} />
<Route path="tooltips" element={<TooltipsPage />} />
</Routes>
</Suspense>
Expand Down
61 changes: 44 additions & 17 deletions src/components/Spinner.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,49 @@
import classNames from 'classnames';
import { FC } from 'react';
import classNames from 'classnames';

type Color = 'blue' | 'gray' | 'green' | 'red' | 'yellow' | 'pink' | 'purple';
type Size = 'xs' | 'sm' | 'md' | 'lg';

export type SpinnerProps = {
color?: Color;
size?: Size;
};

const colorClasses: Record<Color, string> = {
blue: 'fill-blue-600',
gray: 'fill-gray-600 dark:fill-gray-300',
green: 'fill-green-500 dark:text-gray-600',
red: 'fill-red-600',
yellow: 'fill-yellow-400 dark:text-gray-600',
pink: 'fill-pink-600',
purple: 'fill-purple-600',
};

export type SpinnerProps = { className?: string; fullScreen?: boolean };
const sizeClasses: Record<Size, string> = {
xs: 'w-4 h-4',
sm: 'w-6 h-6',
md: 'w-8 h-8',
lg: 'w-10 h-10',
};

export const Spinner: FC<SpinnerProps> = ({ className, fullScreen }) => (
<div
className={classNames(className, 'flex items-center justify-center w-full', {
'h-screen': fullScreen,
'h-full': !fullScreen,
})}
export const Spinner: FC<SpinnerProps> = ({ color = 'blue', size = 'md' }) => (
<svg
className={classNames(
'inline text-gray-200 dark:text-gray-600 animate-spin',
colorClasses[color],
sizeClasses[size],
)}
viewBox="0 0 100 101"
fill="none"
role="status"
>
<svg className="animate-spin h-8 w-8 text-black dark:text-white" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
/>
</svg>
</div>
<path
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
fill="currentColor"
/>
<path
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
fill="currentFill"
/>
</svg>
);
6 changes: 6 additions & 0 deletions src/pages/DashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ const DashboardPage: FC = () => {
className: 'w-24',
images: { light: 'buttons.svg', dark: 'buttons.svg' },
},
{
title: 'Spinners',
href: '/spinners',
className: 'w-36',
images: { light: 'spinners-light.svg', dark: 'spinners-dark.svg' },
},
{
title: 'Tooltips',
href: '/tooltips',
Expand Down
99 changes: 99 additions & 0 deletions src/pages/SpinnersPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import { FC } from 'react';
import { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter';
import tsx from 'react-syntax-highlighter/dist/esm/languages/prism/tsx';
import { dracula } from 'react-syntax-highlighter/dist/esm/styles/prism';

import { Card, Spinner } from '../components';

SyntaxHighlighter.registerLanguage('tsx', tsx);

const SpinnersPage: FC = () => {
return (
<div className="flex flex-col max-w-4xl mx-auto gap-4 dark:text-white">
<div className="flex flex-col gap-2">
<span className="text-2xl font-bold">Default spinner</span>
<Card>
<Spinner />
<SyntaxHighlighter language="tsx" style={dracula}>
{`<Spinner />`}
</SyntaxHighlighter>
</Card>
</div>
<div className="flex flex-col gap-2">
<span className="text-2xl font-bold">Colors</span>
<Card>
<div className="flex flex-wrap gap-2">
<Spinner color="blue" />
<Spinner color="gray" />
<Spinner color="green" />
<Spinner color="red" />
<Spinner color="yellow" />
<Spinner color="pink" />
<Spinner color="purple" />
</div>
<SyntaxHighlighter language="tsx" style={dracula}>
{`
<Spinner color="blue" />
<Spinner color="gray" />
<Spinner color="green" />
<Spinner color="red" />
<Spinner color="yellow" />
<Spinner color="pink" />
<Spinner color="purple" />
`.trim()}
</SyntaxHighlighter>
</Card>
</div>
<div className="flex flex-col gap-2">
<span className="text-2xl font-bold">Sizing</span>
<Card>
<div className="flex flex-wrap items-center gap-2">
<Spinner size="xs" />
<Spinner size="sm" />
<Spinner size="md" />
<Spinner size="lg" />
</div>
<SyntaxHighlighter language="tsx" style={dracula}>
{`
<Spinner size="xs" />
<Spinner size="sm" />
<Spinner size="md" />
<Spinner size="lg" />
`.trim()}
</SyntaxHighlighter>
</Card>
</div>
<div className="flex flex-col gap-2">
<span className="text-2xl font-bold">Alignment</span>
<Card>
<div className="flex flex-col gap-2">
<div className="text-left">
<Spinner />
</div>
<div className="text-center">
<Spinner />
</div>
<div className="text-right">
<Spinner />
</div>
</div>
<SyntaxHighlighter language="tsx" style={dracula}>
{`
<div className="text-left">
<Spinner />
</div>
<div className="text-center">
<Spinner />
</div>
<div className="text-right">
<Spinner />
</div>
`.trim()}
</SyntaxHighlighter>
</Card>
</div>
</div>
);
};

export default SpinnersPage;

0 comments on commit 61c417d

Please sign in to comment.