~cytrogen/masto-fe

ref: bc69d48652e431b06a1fff2c3fd0a67b54d23f81 masto-fe/app/javascript/flavours/glitch/features/compose/components/textarea_icons.jsx -rw-r--r-- 1.5 KiB
bc69d486 — Cytrogen Cherry-pick PR #104: Reduced motion accessibility a month ago
                                                                                
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
//  Package imports.
import PropTypes from "prop-types";

import { defineMessages, injectIntl } from "react-intl";

import ImmutablePropTypes from "react-immutable-proptypes";
import ImmutablePureComponent from "react-immutable-pure-component";

//  Components.
import { Icon } from "flavours/glitch/components/icon";
//  Messages.
const messages = defineMessages({
  localOnly: {
    defaultMessage: "This post is local-only",
    id: "advanced_options.local-only.tooltip",
  },
  threadedMode: {
    defaultMessage: "Threaded mode enabled",
    id: "advanced_options.threaded_mode.tooltip",
  },
});

//  We use an array of tuples here instead of an object because it
//  preserves order.
const iconMap = [
  ["do_not_federate", "home", messages.localOnly],
  ["threaded_mode", "comments", messages.threadedMode],
];

class TextareaIcons extends ImmutablePureComponent {

  static propTypes = {
    advancedOptions: ImmutablePropTypes.map,
    intl: PropTypes.object.isRequired,
  };

  render () {
    const { advancedOptions, intl } = this.props;
    return (
      <div className='compose-form__textarea-icons'>
        {advancedOptions ? iconMap.map(
          ([key, icon, message]) => advancedOptions.get(key) ? (
            <span
              className='textarea_icon'
              key={key}
              title={intl.formatMessage(message)}
            >
              <Icon
                fixedWidth
                id={icon}
              />
            </span>
          ) : null,
        ) : null}
      </div>
    );
  }

}

export default injectIntl(TextareaIcons);