aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/input.stories.tsx
blob: 9862ee479c73cfb04d1804e84cc1cbabaf092827 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import React from 'react';

import { Input } from '@meetfranz/forms';
import { storiesOf } from '../stores/stories';

const defaultProps = {
  label: 'Label',
  id: 'test1',
  name: 'test1',
  onChange: (e: React.ChangeEvent<HTMLInputElement>)  => console.log('changed event', e),
};

const defaultPasswordProps = {
  label: 'Password',
  type: 'password',
  id: 'test1',
  name: 'test1',
  onChange: (e: React.ChangeEvent<HTMLInputElement>)  => console.log('changed event', e),
};

storiesOf('Input')
  .add('Basic', () => (
    <Input
      {...defaultProps}
      placeholder="Placeholder text"
    />
  ))
  .add('Without Label', () => (
    <Input
      {...defaultProps}
      showLabel={false}
    />
  ))
  .add('Disabled', () => (
    <Input {...defaultProps} disabled />
  ))
  .add('With prefix', () => (
    <Input
      {...defaultProps}
      prefix="https://"
    />
  ))
  .add('With suffix', () => (
    <Input
      {...defaultProps}
      suffix=".meetfranz.com"
    />
  ))
  .add('With pre-suffix', () => (
    <Input
      {...defaultProps}
      prefix="https://"
      suffix=".meetfranz.com"
    />
  ))
  .add('With error', () => (
    <Input
      {...defaultProps}
      value="faulty input"
      error="This is a generic error message."
    />
  ));

storiesOf('Password')
  .add('Basic', () => (
    <Input
      {...defaultPasswordProps}
    />
  ))
  .add('Show password toggle', () => (
    <Input
      {...defaultPasswordProps}
      showPasswordToggle
    />
  ))
  .add('Score password', () => (
    <Input
      {...defaultPasswordProps}
      showPasswordToggle
      scorePassword
    />
  ))
  .add('Score password with error', () => (
    <Input
      {...defaultPasswordProps}
      error="Password is too short"
      showPasswordToggle
      scorePassword
    />
  ));