about summary refs log tree commit diff
path: root/app/javascript/glitch/components/column/notif_cleaning_widget/notification_purge_buttons.js
blob: e41572256f57c67d812cb5be1dd70d4c9f671fcd (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
/**
 * Buttons widget for controlling the notification clearing mode.
 * In idle state, the cleaning mode button is shown. When the mode is active,
 * a Confirm and Abort buttons are shown in its place.
 */


//  Package imports  //
import React from 'react';
import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';

//  Mastodon imports  //

//  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

const messages = defineMessages({
  enter : { id: 'notification_purge.start', defaultMessage: 'Enter notification cleaning mode' },
  accept : { id: 'notification_purge.confirm', defaultMessage: 'Dismiss selected notifications' },
  abort : { id: 'notification_purge.abort', defaultMessage: 'Leave cleaning mode' },
});

@injectIntl
export default class NotificationPurgeButtons extends ImmutablePureComponent {

  static propTypes = {
    // Nukes all marked notifications
    onDeleteMarkedNotifications : PropTypes.func.isRequired,
    // Enables or disables the mode
    // and also clears the marked status of all notifications
    onEnterCleaningMode : PropTypes.func.isRequired,
    // Active state, changed via onStateChange()
    active: PropTypes.bool.isRequired,
    // i18n
    intl: PropTypes.object.isRequired,
  };

  onEnterBtnClick = () => {
    this.props.onEnterCleaningMode(true);
  }

  onAcceptBtnClick = () => {
    this.props.onDeleteMarkedNotifications();
  }

  onAbortBtnClick = () => {
    this.props.onEnterCleaningMode(false);
  }

  render () {
    const { intl, active } = this.props;

    const msgEnter = intl.formatMessage(messages.enter);
    const msgAccept = intl.formatMessage(messages.accept);
    const msgAbort = intl.formatMessage(messages.abort);

    let enterButton, acceptButton, abortButton;

    if (active) {
      acceptButton = (
        <button
          className='active'
          aria-label={msgAccept}
          title={msgAccept}
          onClick={this.onAcceptBtnClick}
        >
          <i className='fa fa-check' />
        </button>
      );
      abortButton = (
        <button
          className='active'
          aria-label={msgAbort}
          title={msgAbort}
          onClick={this.onAbortBtnClick}
        >
          <i className='fa fa-times' />
        </button>
      );
    } else {
      enterButton = (
        <button
          aria-label={msgEnter}
          title={msgEnter}
          onClick={this.onEnterBtnClick}
        >
          <i className='fa fa-eraser' />
        </button>
      );
    }

    return (
      <div className='column-header__notif-cleaning-buttons'>
        {acceptButton}{abortButton}{enterButton}
      </div>
    );
  }

}