mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:01:09 +08:00
improve Text stories
This commit is contained in:
parent
2faeb617ca
commit
d9b67ae7a8
@ -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,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user