about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/notifications/components/pill_bar_button.jsx
blob: 2f0b48ef9898390b10eb4472db5fce4c97aad96d (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
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import classNames from 'classnames';

export default class PillBarButton extends React.PureComponent {

  static propTypes = {
    prefix: PropTypes.string,
    settings: ImmutablePropTypes.map.isRequired,
    settingPath: PropTypes.array.isRequired,
    label: PropTypes.node.isRequired,
    onChange: PropTypes.func.isRequired,
    disabled: PropTypes.bool,
  };

  onChange = () => {
    const { settings, settingPath } = this.props;
    this.props.onChange(settingPath, !settings.getIn(settingPath));
  };

  render () {
    const { prefix, settings, settingPath, label, disabled } = this.props;
    const id = ['setting-pillbar-button', prefix, ...settingPath].filter(Boolean).join('-');
    const active = settings.getIn(settingPath);

    return (
      <button
        key={id}
        id={id}
        className={classNames('pillbar-button', { active })}
        disabled={disabled}
        onClick={this.onChange}
        aria-pressed={active}
      >
        {label}
      </button>
    );
  }

}