summaryrefslogtreecommitdiffstats
path: root/web/react/components/channel_notifications.jsx
blob: 38bc91682565e279a7ae4fa152044b902041f36d (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var SettingItemMin = require('./setting_item_min.jsx');
var SettingItemMax = require('./setting_item_max.jsx');

var utils = require('../utils/utils.jsx');
var client = require('../utils/client.jsx');
var UserStore = require('../stores/user_store.jsx');
var ChannelStore = require('../stores/channel_store.jsx');

module.exports = React.createClass({
    componentDidMount: function() {
        ChannelStore.addChangeListener(this._onChange);

        var self = this;
        $(this.refs.modal.getDOMNode()).on('show.bs.modal', function(e) {
            var button = e.relatedTarget;
            var channel_id = button.getAttribute('data-channelid');

            var notifyLevel = ChannelStore.getMember(channel_id).notify_level;
            var quietMode = false;
            if (notifyLevel === "quiet") quietMode = true;
            self.setState({ notify_level: notifyLevel, quiet_mode: quietMode, title: button.getAttribute('data-title'), channel_id: channel_id });
        });
    },
    componentWillUnmount: function() {
        ChannelStore.removeChangeListener(this._onChange);
    },
    _onChange: function() {
        if (!this.state.channel_id) return;
        var notifyLevel = ChannelStore.getMember(this.state.channel_id).notify_level;
        var quietMode = false;
        if (notifyLevel === "quiet") quietMode = true;

        var newState = this.state;
        newState.notify_level = notifyLevel;
        newState.quiet_mode = quietMode;

        if (!utils.areStatesEqual(this.state, newState)) {
            this.setState(newState);
        }
    },
    updateSection: function(section) {
        this.setState({ activeSection: section });
    },
    getInitialState: function() {
        return { notify_level: "", title: "", channel_id: "", activeSection: "" };
    },
    handleUpdate: function() {
        var channel_id = this.state.channel_id;
        var notify_level = this.state.quiet_mode ? "quiet" : this.state.notify_level;

        var data = {};
        data["channel_id"] = channel_id;
        data["user_id"] = UserStore.getCurrentId();
        data["notify_level"] = notify_level;

        if (!data["notify_level"] || data["notify_level"].length === 0) return;

        client.updateNotifyLevel(data,
            function(data) {
                var member = ChannelStore.getMember(channel_id);
                member.notify_level = notify_level;
                ChannelStore.setChannelMember(member);
                this.updateSection("");
            }.bind(this),
            function(err) {
                this.setState({ server_error: err.message });
            }.bind(this)
        );
    },
    handleRadioClick: function(notifyLevel) {
        this.setState({ notify_level: notifyLevel, quiet_mode: false });
        this.refs.modal.getDOMNode().focus();
    },
    handleQuietToggle: function(quietMode) {
        this.setState({ notify_level: "none", quiet_mode: quietMode });
        this.refs.modal.getDOMNode().focus();
    },
    render: function() {
        var server_error = this.state.server_error ? <div className='form-group has-error'><label className='control-label'>{ this.state.server_error }</label></div> : null;

        var self = this;

        var desktopSection;
        if (this.state.activeSection === 'desktop') {
            var notifyActive = [false, false, false];
            if (this.state.notify_level === "mention") {
                notifyActive[1] = true;
            } else if (this.state.notify_level === "all") {
                notifyActive[0] = true;
            } else {
                notifyActive[2] = true;
            }

            var inputs = [];

            inputs.push(
                <div>
                    <div className="radio">
                        <label>
                            <input type="radio" checked={notifyActive[0]} onClick={function(){self.handleRadioClick("all")}}>For all activity</input>
                        </label>
                        <br/>
                    </div>
                    <div className="radio">
                        <label>
                            <input type="radio" checked={notifyActive[1]} onClick={function(){self.handleRadioClick("mention")}}>Only for mentions</input>
                        </label>
                        <br/>
                    </div>
                    <div className="radio">
                        <label>
                            <input type="radio" checked={notifyActive[2]} onClick={function(){self.handleRadioClick("none")}}>Never</input>
                        </label>
                    </div>
                </div>
            );

            desktopSection = (
                <SettingItemMax
                    title="Send desktop notifications"
                    inputs={inputs}
                    submit={this.handleUpdate}
                    server_error={server_error}
                    updateSection={function(e){self.updateSection("");self._onChange();e.preventDefault();}}
                />
            );
        } else {
            var describe = "";
            if (this.state.notify_level === "mention") {
                describe = "Only for mentions";
            } else if (this.state.notify_level === "all") {
                describe = "For all activity";
            } else {
                describe = "Never";
            }

            desktopSection = (
                <SettingItemMin
                    title="Send desktop notifications"
                    describe={describe}
                    updateSection={function(e){self.updateSection("desktop");e.preventDefault();}}
                />
            );
        }

        var quietSection;
        if (this.state.activeSection === 'quiet') {
            var quietActive = ["",""];
            if (this.state.quiet_mode) {
                quietActive[0] = "active";
            } else {
                quietActive[1] = "active";
            }

            var inputs = [];

            inputs.push(
                <div>
                    <div className="btn-group" data-toggle="buttons-radio">
                        <button className={"btn btn-default "+quietActive[0]} onClick={function(){self.handleQuietToggle(true)}}>On</button>
                        <button className={"btn btn-default "+quietActive[1]} onClick={function(){self.handleQuietToggle(false)}}>Off</button>
                    </div>
                </div>
            );

            inputs.push(
                <div>
                    <br/>
                    Enabling quiet mode will turn off desktop notifications and only mark the channel as unread if you have been mentioned.
                </div>
            );

            quietSection = (
                <SettingItemMax
                    title="Quiet mode"
                    inputs={inputs}
                    submit={this.handleUpdate}
                    server_error={server_error}
                    updateSection={function(e){self.updateSection("");self._onChange();e.preventDefault();}}
                />
            );
        } else {
            var describe = "";
            if (this.state.quiet_mode) {
                describe = "On";
            } else {
                describe = "Off";
            }

            quietSection = (
                <SettingItemMin
                    title="Quiet mode"
                    describe={describe}
                    updateSection={function(e){self.updateSection("quiet");e.preventDefault();}}
                />
            );
        }

        var self = this;
        return (
            <div className="modal fade" id="channel_notifications" ref="modal" tabIndex="-1" role="dialog" aria-hidden="true">
                <div className="modal-dialog settings-modal">
                    <div className="modal-content">
                        <div className="modal-header">
                            <button type="button" className="close" data-dismiss="modal">
                                <span aria-hidden="true">&times;</span>
                                <span className="sr-only">Close</span>
                            </button>
                            <h4 className="modal-title">{"Notification Preferences for " + this.state.title}</h4>
                        </div>
                        <div className="modal-body">
                            <div className="settings-table">
                            <div className="settings-content">
                                <div ref="wrapper" className="user-settings">
                                    <br/>
                                    <div className="divider-dark first"/>
                                    {desktopSection}
                                    <div className="divider-light"/>
                                    {quietSection}
                                    <div className="divider-dark"/>
                                </div>
                            </div>
                            </div>
                            { server_error }
                        </div>
                    </div>
                </div>
            </div>
        );
    }
});