aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/input.stories.tsx
blob: c92ebb36ac37c9bf07e5512c7c941b98e4cb9ee4 (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
import React from 'react';

import { Input } from '@meetfranz/forms';
import { v4 as uuid } from 'uuid';
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
    />
  ));