aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/toggle/index.tsx
blob: dc426b3a189ad03117152464aac2b93d699ab999 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
import classnames from 'classnames';
import type { Property } from 'csstype';
import { noop } from 'lodash';
import { Component, type InputHTMLAttributes, type ReactElement } from 'react';
import withStyles, { type WithStylesProps } from 'react-jss';
import type { Theme } from '../../../themes';
// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
import Error from '../error';
import Label from '../label';
import type { IFormField } from '../typings/generic';
import Wrapper from '../wrapper';

const buttonTransition: string = window?.matchMedia(
  '(prefers-reduced-motion: no-preference)',
)
  ? 'all .5s'
  : 'none';

const styles = (theme: Theme) => ({
  toggle: {
    background: theme.toggleBackground,
    borderRadius: theme.borderRadius,
    height: theme.toggleHeight,
    position: 'relative' as Property.Position,
    width: theme.toggleWidth,
  },
  button: {
    background: theme.toggleButton,
    borderRadius: '100%',
    boxShadow: '0 1px 4px rgba(0, 0, 0, .3)',
    width: theme.toggleHeight - 2,
    height: theme.toggleHeight - 2,
    left: 1,
    top: 1,
    position: 'absolute' as Property.Position,
    transition: buttonTransition,
  },
  buttonActive: {
    background: theme.toggleButtonActive,
    left: theme.toggleWidth - theme.toggleHeight + 1,
  },
  input: {
    visibility: 'hidden' as any,
  },
  disabled: {
    opacity: theme.inputDisabledOpacity,
  },
  toggleLabel: {
    display: 'flex',
    alignItems: 'center',

    '& > span': {
      order: 1,
      marginLeft: 15,
    },
  },
});

interface IProps
  extends InputHTMLAttributes<HTMLInputElement>,
    IFormField,
    WithStylesProps<typeof styles> {
  className?: string;
}

class Toggle extends Component<IProps> {
  render(): ReactElement {
    const {
      classes,
      className,
      id = '',
      name = '',
      label = '',
      error = '',
      checked = false,
      showLabel = true,
      disabled = false,
      onChange = noop,
    } = this.props;

    return (
      <Wrapper className={className} identifier="franz-toggle">
        <Label
          title={label}
          showLabel={showLabel}
          htmlFor={id}
          className={classes.toggleLabel}
        >
          <div
            className={classnames({
              [`${classes.toggle}`]: true,
              [`${classes.disabled}`]: disabled,
            })}
          >
            <div
              className={classnames({
                [`${classes.button}`]: true,
                [`${classes.buttonActive}`]: checked,
              })}
            />
            <input
              type="checkbox"
              id={id}
              name={name}
              checked={checked}
              className={classes.input}
              onChange={onChange}
              disabled={disabled}
            />
          </div>
        </Label>
        {error ? <Error message={error as string} /> : null}
      </Wrapper>
    );
  }
}

export default withStyles(styles, { injectTheme: true })(Toggle);