aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/input.stories.tsx
blob: 8895392666f1a8ba16767e0b9d4d5bbdaa3aa0bf (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import React from 'react';
import uuid from 'uuid/v4';

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

const defaultProps = () => {
  const id = uuid();
  return {
    label: 'Label',
    id: `test-${id}`,
    name: `test-${id}`,
    onChange: (e: React.ChangeEvent<HTMLInputElement>) => console.log('changed event', e),
  };
};

const defaultPasswordProps = () => {
  const id = uuid();
  return {
    label: 'Password',
    id: `test-${id}`,
    name: `test-${id}`,
    type: 'password',
    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."
    />
  ))
  .add('Type number with min & max', () => (
    <Input
      {...defaultProps()}
      type="number"
      min={1}
      max={10}
    />
  ));

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
    />
  ));