Merge pull request #1654 from hmhealey/plt1421

PLT-1421 Changed ordering of emoticon suggestions
Этот коммит содержится в:
Joram Wilander
2015-12-08 11:51:52 -05:00
родитель e2fc28b1f3 47c51dbcf0
Коммит 17788fb47f

Просмотреть файл

@@ -51,23 +51,40 @@ export default class EmoticonProvider {
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) {
if (names.length >= MAX_EMOTICON_SUGGESTIONS) {
break;
}
}
}
// sort the emoticons so that emoticons starting with the entered text come first
names.sort((a, b) => {
const aPrefix = a.startsWith(partialName);
const bPrefix = b.startsWith(partialName);
if (aPrefix === bPrefix) {
return a.localeCompare(b);
} else if (aPrefix) {
return -1;
}
return 1;
});
const terms = names.map((name) => ':' + name + ':');
if (terms.length > 0) {
SuggestionStore.setMatchedPretext(suggestionId, text);
SuggestionStore.addSuggestions(suggestionId, terms, names, EmoticonSuggestion);
// force the selection to be cleared since the order of elements may have changed
SuggestionStore.clearSelection(suggestionId);
}
}
}