about summary refs log tree commit diff
path: root/storybook/stories/autosuggest_textarea.story.js
blob: 65dfe965ca4a80337befc311a3662615c478b4ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React from 'react';
import { List } from 'immutable';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import AutosuggestTextarea from 'mastodon/components/autosuggest_textarea';

const props = {
  onChange: action('changed'),
  onPaste: action('pasted'),
  onSuggestionSelected: action('suggestionsSelected'),
  onSuggestionsClearRequested: action('suggestionsClearRequested'),
  onSuggestionsFetchRequested: action('suggestionsFetchRequested'),
  suggestions: List([]),
};

storiesOf('AutosuggestTextarea', module)
  .add('default state', () => <AutosuggestTextarea value='' {...props} />)
  .add('with text', () => <AutosuggestTextarea value='Hello' {...props} />);