-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Grid): migrate stories from CSF2 to CSF3
- Loading branch information
1 parent
1fe5c90
commit 428e41f
Showing
1 changed file
with
61 additions
and
86 deletions.
There are no files selected for viewing
147 changes: 61 additions & 86 deletions
147
packages/orbit-components/src/utils/Grid/Grid.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,75 @@ | ||
import * as React from "react"; | ||
import type { Meta, StoryObj } from "@storybook/react"; | ||
|
||
import { SPACINGS_AFTER } from "../../common/consts"; | ||
|
||
import Grid from "."; | ||
|
||
export default { | ||
title: "Grid", | ||
}; | ||
type GridPropsAndCustomArgs = React.ComponentProps<typeof Grid> & { divsCount: number }; | ||
|
||
export const Playground = ({ | ||
inline, | ||
maxWidth, | ||
width, | ||
columns, | ||
rows, | ||
gap, | ||
columnGap, | ||
rowGap, | ||
as, | ||
dataTest, | ||
divsCount, | ||
mediumMobile, | ||
largeMobile, | ||
tablet, | ||
desktop, | ||
largeDesktop, | ||
spaceAfter, | ||
}) => { | ||
return ( | ||
<Grid | ||
inline={inline} | ||
spaceAfter={spaceAfter} | ||
maxWidth={maxWidth} | ||
width={width} | ||
columns={columns} | ||
rows={rows} | ||
gap={gap} | ||
columnGap={columnGap} | ||
rowGap={rowGap} | ||
as={as} | ||
dataTest={dataTest} | ||
mediumMobile={mediumMobile} | ||
largeMobile={largeMobile} | ||
tablet={tablet} | ||
desktop={desktop} | ||
largeDesktop={largeDesktop} | ||
> | ||
{Array(...Array(divsCount)).map((_, key) => ( | ||
// eslint-disable-next-line | ||
<div key={key} style={{ background: "rgba(0, 169, 145, 0.2)" }} /> | ||
))} | ||
</Grid> | ||
); | ||
}; | ||
const meta: Meta<GridPropsAndCustomArgs> = { | ||
title: "Grid", | ||
component: Grid, | ||
|
||
Playground.args = { | ||
inline: false, | ||
maxWidth: "1440px", | ||
width: "100%", | ||
columns: "", | ||
rows: "repeat(8, 40px)", | ||
gap: "", | ||
columnGap: "", | ||
rowGap: "10px", | ||
as: "div", | ||
dataTest: "test", | ||
divsCount: 8, | ||
mediumMobile: { | ||
rowGap: "0", | ||
}, | ||
largeMobile: { | ||
columns: "repeat(4, 1fr)", | ||
rows: "repeat(2, 40px)", | ||
gap: "20px", | ||
}, | ||
tablet: { | ||
columnGap: "40px", | ||
}, | ||
desktop: { | ||
columns: "repeat(2, minmax(100px, 1fr))", | ||
rows: "repeat(4, 40px)", | ||
gap: "40px", | ||
args: { | ||
divsCount: 8, | ||
className: "", | ||
as: "div", | ||
width: "100%", | ||
columns: "", | ||
rows: "repeat(8, 40px)", | ||
columnGap: "", | ||
rowGap: "10px", | ||
gap: "", | ||
maxWidth: "1440px", | ||
inline: false, | ||
spaceAfter: SPACINGS_AFTER.NORMAL, | ||
mediumMobile: { | ||
rowGap: "0", | ||
}, | ||
largeMobile: { | ||
columns: "repeat(4, 1fr)", | ||
rows: "repeat(2, 40px)", | ||
gap: "20px", | ||
}, | ||
tablet: { | ||
columnGap: "40px", | ||
}, | ||
desktop: { | ||
columns: "repeat(2, minmax(100px, 1fr))", | ||
rows: "repeat(4, 40px)", | ||
gap: "40px", | ||
}, | ||
largeDesktop: { | ||
columns: "repeat(8, minmax(10px, 1fr))", | ||
rows: "40px", | ||
}, | ||
}, | ||
largeDesktop: { | ||
columns: "repeat(8, minmax(10px, 1fr))", | ||
rows: "40px", | ||
|
||
argTypes: { | ||
spaceAfter: { | ||
name: "spaceAfter", | ||
options: Object.values(SPACINGS_AFTER), | ||
control: { | ||
type: "select", | ||
}, | ||
}, | ||
}, | ||
spaceAfter: SPACINGS_AFTER.NORMAL, | ||
}; | ||
|
||
Playground.argTypes = { | ||
spaceAfter: { | ||
name: "spaceAfter", | ||
options: Object.values(SPACINGS_AFTER), | ||
control: { | ||
type: "select", | ||
}, | ||
export default meta; | ||
type Story = StoryObj<GridPropsAndCustomArgs>; | ||
|
||
export const Playground: Story = { | ||
render: ({ divsCount, ...args }) => ( | ||
<Grid {...args}> | ||
{Array.from({ length: divsCount }, (_, idx) => ( | ||
<div key={idx} style={{ background: "rgba(0, 169, 145, 0.2)" }} /> | ||
))} | ||
</Grid> | ||
), | ||
|
||
parameters: { | ||
info: "You can try all possible configurations of this component. Visit Orbit.Kiwi for more detailed guidelines.", | ||
}, | ||
}; |