improve Text stories

This commit is contained in:
Jeppe Reinhold 2022-10-29 00:12:44 +02:00
parent 2faeb617ca
commit d9b67ae7a8

View File

@ -1,23 +1,54 @@
import React, { useState } from 'react'; import React from 'react';
import type { Meta, StoryObj } from '@storybook/react';
import { useArgs } from '@storybook/addons';
import { TextControl } from './Text'; import { TextControl } from './Text';
export default { export default {
title: 'Controls/Text', title: 'Controls/Text',
component: TextControl, component: TextControl,
}; tags: ['docsPage'],
parameters: { controls: { include: ['value', 'maxLength'] } },
render: (args) => {
const [, updateArgs] = useArgs();
const { value, onChange } = args;
const Template = (initialValue?: string) => {
const [value, setValue] = useState(initialValue);
return ( return (
<> <>
<TextControl name="Text" value={value} onChange={(newVal) => setValue(newVal)} /> <TextControl
{...args}
name="text"
onChange={(newValue) => {
updateArgs({ value: newValue });
onChange?.(newValue);
}}
/>
<pre>{JSON.stringify(value) || 'undefined'}</pre> <pre>{JSON.stringify(value) || 'undefined'}</pre>
</> </>
); );
},
} as Meta<typeof TextControl>;
export const Basic: StoryObj<typeof TextControl> = {
args: {
value: 'Storybook says hi. 👋',
},
}; };
export const Basic = () => Template('Hello text'); export const Empty: StoryObj<typeof TextControl> = {
args: {
value: '',
},
};
export const Empty = () => Template(''); export const Undefined: StoryObj<typeof TextControl> = {
args: {
value: undefined,
},
};
export const Undefined = () => Template(undefined); export const WithMaxLength: StoryObj<typeof TextControl> = {
args: {
value: "You can't finish this sente",
maxLength: 28,
},
};