glitch-social/storybook/stories/character_counter.story.js

22 lines
725 B
JavaScript
Raw Normal View History

2017-05-13 14:55:56 +01:00
import React from 'react';
2017-06-04 15:26:07 +01:00
import { storiesOf } from '@storybook/react';
2017-05-13 14:55:56 +01:00
import CharacterCounter from 'mastodon/features/compose/components/character_counter';
storiesOf('CharacterCounter', module)
.add('no text', () => {
const text = '';
2017-05-13 14:55:56 +01:00
return <CharacterCounter text={text} max={500} />;
})
.add('a few strings text', () => {
const text = '0123456789';
2017-05-13 14:55:56 +01:00
return <CharacterCounter text={text} max={500} />;
})
.add('the same text', () => {
const text = '01234567890123456789';
2017-05-13 14:55:56 +01:00
return <CharacterCounter text={text} max={20} />;
})
.add('over text', () => {
const text = '01234567890123456789012345678901234567890123456789';
2017-05-13 14:55:56 +01:00
return <CharacterCounter text={text} max={10} />;
});