diff options
author | usagi-f <usagi.f@gmail.com> | 2017-04-17 17:34:33 +0900 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-17 10:34:33 +0200 |
commit | b87a08e16004221f27996007c241bcc80470c33f (patch) | |
tree | 4aba1277472329b552651ea93f404236b68efaf0 /storybook | |
parent | be6cabb3159d55ded386d43096fe2fe58af657dc (diff) |
Add function color remaining text (#1980)
Diffstat (limited to 'storybook')
-rw-r--r-- | storybook/config.js | 1 | ||||
-rw-r--r-- | storybook/stories/character_counter.story.jsx | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/storybook/config.js b/storybook/config.js index 4a111a8b9..924eadf49 100644 --- a/storybook/config.js +++ b/storybook/config.js @@ -17,6 +17,7 @@ window.React = React; function loadStories () { require('./stories/loading_indicator.story.jsx'); require('./stories/button.story.jsx'); + require('./stories/character_counter.story.jsx'); require('./stories/autosuggest_textarea.story.jsx'); } diff --git a/storybook/stories/character_counter.story.jsx b/storybook/stories/character_counter.story.jsx new file mode 100644 index 000000000..931d8a037 --- /dev/null +++ b/storybook/stories/character_counter.story.jsx @@ -0,0 +1,20 @@ +import { storiesOf } from '@kadira/storybook'; +import CharacterCounter from '../../app/assets/javascripts/components/features/compose/components/character_counter'; + +storiesOf('CharacterCounter', module) + .add('no text', () => { + const text = ''; + return <CharacterCounter text={text} max="500" />; + }) + .add('a few strings text', () => { + const text = '0123456789'; + return <CharacterCounter text={text} max="500" />; + }) + .add('the same text', () => { + const text = '01234567890123456789'; + return <CharacterCounter text={text} max="20" />; + }) + .add('over text', () => { + const text = '01234567890123456789012345678901234567890123456789'; + return <CharacterCounter text={text} max="10" />; + }); |