improve Range stories

This commit is contained in:
Jeppe Reinhold 2022-10-29 00:02:03 +02:00
parent 4d80188a53
commit 2faeb617ca
2 changed files with 90 additions and 32 deletions

View File

@ -7,7 +7,7 @@ export default {
title: 'Controls/Object',
component: ObjectControl,
tags: ['docsPage'],
// parameters: { controls: { include: ['value', 'min', 'max', 'step'] } },
parameters: { controls: { include: ['value'] } },
render: (args) => {
const [, updateArgs] = useArgs();
const { value, onChange } = args;

View File

@ -1,43 +1,101 @@
import React, { useState } from 'react';
import React from 'react';
import type { Meta, StoryObj } from '@storybook/react';
import { useArgs } from '@storybook/addons';
import { RangeControl } from './Range';
export default {
title: 'Controls/Range',
component: RangeControl,
tags: ['docsPage'],
parameters: { controls: { include: ['value', 'min', 'max', 'step'] } },
render: (args) => {
const [, updateArgs] = useArgs();
const { value, onChange } = args;
return (
<>
<RangeControl
{...args}
name="range"
onChange={(newValue) => {
updateArgs({ value: newValue });
onChange?.(newValue);
}}
/>
<pre>{JSON.stringify(value) || 'undefined'}</pre>
</>
);
},
} as Meta<typeof RangeControl>;
export const Undefined: StoryObj<typeof RangeControl> = {
args: {
value: undefined,
},
};
const Template = ({
initialValue,
step,
max,
}: {
initialValue?: number;
step?: number;
max?: number;
}) => {
const [value, setValue] = useState(initialValue);
return (
<>
<RangeControl
name="range"
value={value}
onChange={(newVal) => setValue(newVal)}
min={0}
max={max}
step={step}
/>
<pre>{JSON.stringify(value) || 'undefined'}</pre>
</>
);
export const Zero: StoryObj<typeof RangeControl> = {
args: {
value: 0,
},
};
export const WithMin: StoryObj<typeof RangeControl> = {
args: {
min: 5,
value: 20,
},
};
export const WithMax: StoryObj<typeof RangeControl> = {
args: {
max: 50,
value: 20,
},
};
export const WithBigMax: StoryObj<typeof RangeControl> = {
args: {
max: 10000000000,
value: 20,
},
};
export const WithMinAndMax: StoryObj<typeof RangeControl> = {
args: {
min: 10,
max: 50,
value: 20,
},
};
export const Basic = () => Template({ initialValue: 10, max: 20, step: 2 });
export const LessThanMin: StoryObj<typeof RangeControl> = {
args: {
min: 10,
value: 5,
},
};
export const Zero = () => Template({ initialValue: 0, max: 20, step: 2 });
export const MoreThanMax: StoryObj<typeof RangeControl> = {
args: {
max: 20,
value: 50,
},
};
export const Decimals = () =>
Template({ step: 0.000000000002, initialValue: 1989.123123123123, max: 2000 });
export const WithSteps: StoryObj<typeof RangeControl> = {
args: {
step: 5,
value: 50,
},
};
export const BigMaxValue = () => Template({ step: 1000, initialValue: 15, max: 10000000000 });
export const Undefined = () => Template({});
export const Decimals: StoryObj<typeof RangeControl> = {
args: {
step: 0.000000000002,
value: 989.123123123123,
max: 2000,
},
};
export const WithInfiniteMax: StoryObj<typeof RangeControl> = {
args: {
max: Infinity,
value: 50,
},
};