about summary refs log tree commit diff
path: root/app/javascript/glitch/components/compose/advanced_options.js
blob: 17fc1d801d5bc7ba2bfaffb38e6b7e1d443ed958 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//  Package imports  //
import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes';
import Toggle from 'react-toggle';
import { injectIntl, defineMessages } from 'react-intl';

//  Mastodon imports  //
import IconButton from '../../../mastodon/components/icon_button';

const messages = defineMessages({
  local_only_short: { id: 'advanced-options.local-only.short', defaultMessage: 'Local-only' },
  local_only_long: { id: 'advanced-options.local-only.long', defaultMessage: 'Do not post to other instances' },
  advanced_options_icon_title: { id: 'advanced_options.icon_title', defaultMessage: 'Advanced options' },
});

const iconStyle = {
  height: null,
  lineHeight: '27px',
};

class AdvancedOptionToggle extends React.PureComponent {

  static propTypes = {
    onChange: PropTypes.func.isRequired,
    active: PropTypes.bool.isRequired,
    name: PropTypes.string.isRequired,
    shortText: PropTypes.string.isRequired,
    longText: PropTypes.string.isRequired,
  }

  onToggle = () => {
    this.props.onChange(this.props.name);
  }

  render() {
    const { active, shortText, longText } = this.props;
    return (
      <div role='button' tabIndex='0' className='advanced-options-dropdown__option' onClick={this.onToggle}>
        <div className='advanced-options-dropdown__option__toggle'>
          <Toggle checked={active} onChange={this.onToggle} />
        </div>
        <div className='advanced-options-dropdown__option__content'>
          <strong>{shortText}</strong>
          {longText}
        </div>
      </div>
    );
  }

}

@injectIntl
export default class ComposeAdvancedOptions extends React.PureComponent {

  static propTypes = {
    values: ImmutablePropTypes.contains({
      do_not_federate: PropTypes.bool.isRequired,
    }).isRequired,
    onChange: PropTypes.func.isRequired,
    intl: PropTypes.object.isRequired,
  };

  onToggleDropdown = () => {
    this.setState({ open: !this.state.open });
  };

  onGlobalClick = (e) => {
    if (e.target !== this.node && !this.node.contains(e.target) && this.state.open) {
      this.setState({ open: false });
    }
  }

  componentDidMount () {
    window.addEventListener('click', this.onGlobalClick);
    window.addEventListener('touchstart', this.onGlobalClick);
  }

  componentWillUnmount () {
    window.removeEventListener('click', this.onGlobalClick);
    window.removeEventListener('touchstart', this.onGlobalClick);
  }

  state = {
    open: false,
  };

  handleClick = (e) => {
    const option = e.currentTarget.getAttribute('data-index');
    e.preventDefault();
    this.props.onChange(option);
  }

  setRef = (c) => {
    this.node = c;
  }

  render () {
    const { open } = this.state;
    const { intl, values } = this.props;

    const options = [
      { icon: 'wifi', shortText: messages.local_only_short, longText: messages.local_only_long, key: 'do_not_federate' },
    ];

    const anyEnabled = values.some((enabled) => enabled);
    const optionElems = options.map((option) => {
      return (
        <AdvancedOptionToggle
          onChange={this.props.onChange}
          active={values.get(option.key)}
          key={option.key}
          name={option.key}
          shortText={intl.formatMessage(option.shortText)}
          longText={intl.formatMessage(option.longText)}
        />
      );
    });

    return (<div ref={this.setRef} className={`advanced-options-dropdown ${open ?  'open' : ''} ${anyEnabled ? 'active' : ''} `}>
      <div className='advanced-options-dropdown__value'>
        <IconButton
          className='advanced-options-dropdown__value'
          title={intl.formatMessage(messages.advanced_options_icon_title)}
          icon='ellipsis-h' active={open || anyEnabled}
          size={18}
          style={iconStyle}
          onClick={this.onToggleDropdown}
        />
      </div>
      <div className='advanced-options-dropdown__dropdown'>
        {optionElems}
      </div>
    </div>);
  }

}