storybook/lib/ui/src/components/sidebar/Sidebar.stories.tsx
2022-07-18 11:19:12 +10:00

84 lines
1.7 KiB
TypeScript

import React from 'react';
import { Sidebar, DEFAULT_REF_ID } from './Sidebar';
import { standardData as standardHeaderData } from './Heading.stories';
import { mockDataset } from './mockdata';
import { RefType } from './types';
export default {
component: Sidebar,
title: 'UI/Sidebar/Sidebar',
excludeStories: /.*Data$/,
parameters: { layout: 'fullscreen' },
decorators: [
(storyFn: any) => <div style={{ padding: '0 20px', maxWidth: '230px' }}>{storyFn()}</div>,
],
};
const { menu } = standardHeaderData;
const stories = mockDataset.withRoot;
const refId = DEFAULT_REF_ID;
const storyId = 'root-1-child-a2--grandchild-a1-1';
export const simpleData = { menu, stories, storyId };
export const loadingData = { menu, stories: {} };
const refs: Record<string, RefType> = {
optimized: {
id: 'optimized',
title: 'This is a ref',
url: 'https://example.com',
ready: false,
type: 'lazy',
stories,
},
};
export const Simple = () => (
<Sidebar
storiesConfigured
menu={menu}
stories={stories}
storyId={storyId}
refId={refId}
refs={{}}
/>
);
export const Loading = () => (
<Sidebar
storiesConfigured={false}
menu={menu}
stories={{}}
storyId={storyId}
refId={refId}
refs={{}}
/>
);
export const Empty = () => (
<Sidebar storiesConfigured menu={menu} stories={{}} storyId={storyId} refId={refId} refs={{}} />
);
export const WithRefs = () => (
<Sidebar
storiesConfigured
menu={menu}
stories={stories}
storyId={storyId}
refId={refId}
refs={refs}
/>
);
export const LoadingWithRefs = () => (
<Sidebar
storiesConfigured={false}
menu={menu}
stories={stories}
storyId={storyId}
refId={refId}
refs={refs}
/>
);