summaryrefslogtreecommitdiffstats
path: root/web/react/components/mention_list.jsx
blob: 9dd80ebd5e41a0287496d181e2efab2e9646b6f2 (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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var UserStore = require('../stores/user_store.jsx');
var PostStore = require('../stores/post_store.jsx');
var AppDispatcher = require('../dispatcher/app_dispatcher.jsx');
var Mention = require('./mention.jsx');

var Constants = require('../utils/constants.jsx');
var ActionTypes = Constants.ActionTypes;

var MAX_HEIGHT_LIST = 292;
var MAX_ITEMS_IN_LIST = 25;
var ITEM_HEIGHT = 36;

module.exports = React.createClass({
    displayName: "MentionList",
    componentDidMount: function() {
        PostStore.addMentionDataChangeListener(this._onChange);
        var self = this;

        $('body').on('keydown.mentionlist', '#'+this.props.id,
            function(e) {
                if (!self.isEmpty() && self.state.mentionText != '-1' && (e.which === 13 || e.which === 9)) {
                    e.stopPropagation();
                    e.preventDefault();
                    self.addCurrentMention();
                }
                else if (!self.isEmpty() && self.state.mentionText != '-1' && (e.which === 38 || e.which === 40)) {
                    e.stopPropagation();
                    e.preventDefault();

                    if (!self.getSelection(self.state.selectedMention)) {
                        //self.setState({ selectedMention: 0, selectedUsername: self.refs.mention0.props.username });
                        //self.refs['mention' + self.state.selectedMention].deselect();
                        var tempSelectedMention = -1
                        while (self.getSelection(++tempSelectedMention)) {
                            if (self.state.selectedUsername === self.refs['mention' + tempSelectedMention].props.username) {
                                this.refs['mention' + tempSelectedMention].select();
                                this.setState({ selectedMention: tempSelectedMention });
                                break;
                            }
                        }
                    }
                    else {
                        self.refs['mention' + self.state.selectedMention].deselect();
                        if (e.which === 38) {    
                            if (self.getSelection(self.state.selectedMention - 1))
                                self.setState({ selectedMention: self.state.selectedMention - 1, selectedUsername: self.refs['mention' + (self.state.selectedMention - 1)].props.username });
                            else {
                                var tempSelectedMention = -1;
                                while (self.getSelection(++tempSelectedMention))
                                    ;
                                self.setState({ selectedMention: tempSelectedMention - 1, selectedUsername: self.refs['mention' + (tempSelectedMention - 1)].props.username });
                            }
                        }
                        else {
                            if (self.getSelection(self.state.selectedMention + 1))
                                self.setState({ selectedMention: self.state.selectedMention + 1, selectedUsername: self.refs['mention' + (self.state.selectedMention + 1)].props.username });
                            else
                                self.setState({ selectedMention: 0, selectedUsername: self.refs.mention0.props.username });
                        }
                    }
                    self.refs['mention' + self.state.selectedMention].select();

                    //self.checkIfInView($('#'+self.props.id));
                    //self.checkIfInView($('#'+self.refs['mention' + self.state.selectedMention].props.id));
                }
            }
        );
        $(document).click(function(e) {
            if (!($('#'+self.props.id).is(e.target) || $('#'+self.props.id).has(e.target).length ||
                ('mentionlist' in self.refs && $(self.refs['mentionlist'].getDOMNode()).has(e.target).length))) {
                self.setState({mentionText: "-1"})
            }
        });
    },
    componentWillUnmount: function() {
        PostStore.removeMentionDataChangeListener(this._onChange);
        $('body').off('keydown.mentionlist', '#'+this.props.id);
    },
    componentWillUpdate: function() {
        if (this.state.mentionText != "-1" && this.getSelection(this.state.selectedMention)) {
            this.refs['mention' + this.state.selectedMention].deselect();
        }
    },
    componentDidUpdate: function() {
        /*if (this.state.mentionText != "-1" && !this.getSelection(this.state.selectedMention)) {
        }*/
        if (this.state.mentionText != "-1" /*&& this.getSelection(this.state.selectedMention)*/) {
            if (this.state.selectedUsername !== "" && (!this.getSelection(this.state.selectedMention) || this.state.selectedUsername !== this.refs['mention' + this.state.selectedMention].props.username)) {
                var tempSelectedMention = -1;
                var foundMatch = false;
                while (this.getSelection(++tempSelectedMention)) {
                    if (this.state.selectedUsername === this.refs['mention' + tempSelectedMention].props.username) {
                        this.refs['mention' + tempSelectedMention].select();
                        this.setState({ selectedMention: tempSelectedMention });
                        foundMatch = true;
                        break;
                    }
                }
                if (!foundMatch) {
                    this.refs.mention0.select();
                    this.setState({ selectedMention: 0, selectedUsername: this.refs.mention0.props.username });
                }
            }
            else {
                this.refs['mention' + this.state.selectedMention].select();
            }
        }
    },
    _onChange: function(id, mentionText, excludeList) {
        if (id !== this.props.id) return;

        var newState = this.state;
        if (mentionText != null) newState.mentionText = mentionText;
        if (excludeList != null) newState.excludeUsers = excludeList;
        this.setState(newState);
    },
    handleClick: function(name) {
        AppDispatcher.handleViewAction({
            type: ActionTypes.RECIEVED_ADD_MENTION,
            id: this.props.id,
            username: name
        });

        this.setState({ mentionText: '-1' });
    },
    handleMouseEnter: function(listId) {
        if (this.getSelection(this.state.selectedMention)) {
            this.refs['mention' + this.state.selectedMention].deselect();
        }
        this.setState({ selectedMention: listId, selectedUsername: this.refs['mention' + listId].props.username });
        this.refs['mention' + listId].select();
    },
    getSelection: function(listId) {
        var mention = this.refs['mention' + listId];
        if (!mention) 
            return false;
        else
            return true;
    },
    addCurrentMention: function() {
        if (!this.refs['mention' + this.state.selectedMention]) this.addFirstMention();
        this.refs['mention' + this.state.selectedMention].handleClick();
    },
    addFirstMention: function() {
        if (!this.refs.mention0) return;
        this.refs.mention0.handleClick();
    },
    isEmpty: function() {
        return (!this.refs.mention0);
    },
    checkIfInView: function(element) {
        var offset = element.offset().top - $(window).scrollTop(); //$(this.props.id) ??
        if(offset > window.innerHeight){
            // Not in view so scroll to it
            $('body').animate({scrollTop: offset}, 1000); //$(this.props.id) ??
            return false;
        }
       return true;
    },
    alreadyMentioned: function(username) {
        var excludeUsers = this.state.excludeUsers;
        for (var i = 0; i < excludeUsers.length; i++) {
            if (excludeUsers[i] === username) {
                return true;
            }
        }
        return false;
    },
    getInitialState: function() {
        return { excludeUsers: [], mentionText: "-1", selectedMention: 0, selectedUsername: "" };
    },
    render: function() {
        var mentionText = this.state.mentionText;
        if (mentionText === '-1') return null;

        var profiles = UserStore.getActiveOnlyProfiles();
        var users = [];
        for (var id in profiles) {
            users.push(profiles[id]);
        }

        var all = {};
        all.username = "all";
        all.full_name = "";
        all.secondary_text = "Notifies everyone in the team";
        users.push(all);

        var channel = {};
        channel.username = "channel";
        channel.full_name = "";
        channel.secondary_text = "Notifies everyone in the channel";
        users.push(channel);

        users.sort(function(a,b) {
            if (a.username < b.username) return -1;
            if (a.username > b.username) return 1;
            return 0;
        });
        var mentions = {};
        var index = 0;

        for (var i = 0; i < users.length && index < MAX_ITEMS_IN_LIST; i++) {
            if (this.alreadyMentioned(users[i].username)) continue;

            var firstName = "", lastName = "";
            if (users[i].full_name.length > 0) {
                var splitName = users[i].full_name.split(' ');
                firstName = splitName[0].toLowerCase();
                lastName = splitName.length > 1 ? splitName[splitName.length-1].toLowerCase() : "";
                users[i].secondary_text = users[i].full_name;
            }

            if (firstName.lastIndexOf(mentionText,0) === 0
                    || lastName.lastIndexOf(mentionText,0) === 0 || users[i].username.lastIndexOf(mentionText,0) === 0) {
                mentions[index] = (
                    <Mention
                        ref={'mention' + index}
                        username={users[i].username}
                        secondary_text={users[i].secondary_text}
                        id={users[i].id}
                        listId={index}
                        isFocus={this.state.selectedMention === index ? true : false}
                        handleMouseEnter={this.handleMouseEnter}
                        handleClick={this.handleClick} />
                );
                index++;
            }
        }

        var numMentions = Object.keys(mentions).length;

        if (numMentions < 1) return null;

        var $mention_tab = $('#'+this.props.id);
        var maxHeight = Math.min(MAX_HEIGHT_LIST, $mention_tab.offset().top - 10);
        var style = {
            height: Math.min(maxHeight, (numMentions*ITEM_HEIGHT) + 4),
            width:  $mention_tab.parent().width(),
            bottom: $(window).height() - $mention_tab.offset().top,
            left:   $mention_tab.offset().left
        };

        return (
            <div className="mentions--top" style={style}>
                <div ref="mentionlist" className="mentions-box">
                    { mentions }
                </div>
            </div>
        );
    }
});