blob: 7dcb86442ee683dce9239b5d27c0112d283da427 (
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
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import SuggestionStore from '../../stores/suggestion_store.jsx';
import * as Emoticons from '../../utils/emoticons.jsx';
const MAX_EMOTICON_SUGGESTIONS = 40;
class EmoticonSuggestion extends React.Component {
render() {
const text = this.props.term;
const name = this.props.item;
let className = 'emoticon-suggestion';
if (this.props.isSelection) {
className += ' suggestion--selected';
}
return (
<div
className={className}
onClick={this.props.onClick}
>
<div className='pull-left'>
<img
alt={text}
className='emoticon-suggestion__image'
src={Emoticons.getImagePathForEmoticon(name)}
title={text}
/>
</div>
<div className='pull-left'>
{text}
</div>
</div>
);
}
}
EmoticonSuggestion.propTypes = {
item: React.PropTypes.string.isRequired,
term: React.PropTypes.string.isRequired,
isSelection: React.PropTypes.bool,
onClick: React.PropTypes.func
};
export default class EmoticonProvider {
handlePretextChanged(suggestionId, pretext) {
const captured = (/(?:^|\s)(:([a-zA-Z0-9_+\-]*))$/g).exec(pretext);
if (captured) {
const text = captured[1];
const partialName = captured[2];
const terms = [];
const names = [];
for (const emoticon of Emoticons.emoticonMap.keys()) {
if (emoticon.indexOf(partialName) !== -1) {
terms.push(':' + emoticon + ':');
names.push(emoticon);
if (terms.length >= MAX_EMOTICON_SUGGESTIONS) {
break;
}
}
}
if (terms.length > 0) {
SuggestionStore.setMatchedPretext(suggestionId, text);
SuggestionStore.addSuggestions(suggestionId, terms, names, EmoticonSuggestion);
}
}
}
}
|