Files
ThreadNet-Web/src/autocomplete/EmojiProvider.js
T

139 lines
4.9 KiB
JavaScript
Raw Normal View History

2017-06-01 15:18:06 +01:00
/*
2017-06-01 17:29:40 +01:00
Copyright 2016 Aviral Dasgupta
2017-06-01 15:18:06 +01:00
Copyright 2017 Vector Creations Ltd
Copyright 2017, 2018 New Vector Ltd
2017-06-01 15:18:06 +01:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2016-07-03 22:15:13 +05:30
import React from 'react';
2017-05-25 11:39:08 +01:00
import { _t } from '../languageHandler';
import AutocompleteProvider from './AutocompleteProvider';
2018-08-13 19:15:42 +01:00
import QueryMatcher from './QueryMatcher';
import {PillCompletion} from './Components';
import type {Completion, SelectionRange} from './Autocompleter';
2017-07-19 16:54:58 +01:00
import _uniq from 'lodash/uniq';
import _sortBy from 'lodash/sortBy';
import SettingsStore from "../settings/SettingsStore";
2019-05-19 16:11:12 +01:00
import { shortcodeToUnicode } from '../HtmlUtils';
import EMOTICON_REGEX from 'emojibase-regex/emoticon';
import EmojiData from '../stripped-emoji.json';
const LIMIT = 20;
// Match for ascii-style ";-)" emoticons or ":wink:" shortcodes provided by emojibase
const EMOJI_REGEX = new RegExp('(' + EMOTICON_REGEX.source + '|:[+-\\w]*:?)$', 'g');
const EMOJI_SHORTNAMES = Object.keys(EmojiData).map((key) => EmojiData[key]).sort(
(a, b) => {
if (a.category === b.category) {
return a.emoji_order - b.emoji_order;
}
return a.category - b.category;
},
2017-07-19 16:54:58 +01:00
).map((a, index) => {
2017-02-10 23:35:13 +05:30
return {
name: a.name,
shortname: a.shortname,
2018-07-24 17:06:45 +01:00
aliases: a.aliases ? a.aliases.join(' ') : '',
2017-06-29 11:29:55 +01:00
aliases_ascii: a.aliases_ascii ? a.aliases_ascii.join(' ') : '',
2017-07-20 10:51:15 +01:00
// Include the index so that we can preserve the original order
2017-07-19 16:54:58 +01:00
_orderBy: index,
2017-02-10 23:35:13 +05:30
};
});
function score(query, space) {
const index = space.indexOf(query);
if (index === -1) {
return Infinity;
} else {
return index;
}
}
export default class EmojiProvider extends AutocompleteProvider {
constructor() {
super(EMOJI_REGEX);
2018-08-13 19:15:42 +01:00
this.matcher = new QueryMatcher(EMOJI_SHORTNAMES, {
2018-07-24 17:06:45 +01:00
keys: ['aliases_ascii', 'shortname', 'aliases'],
2017-06-29 11:29:55 +01:00
// For matching against ascii equivalents
shouldMatchWordsOnly: false,
2017-02-10 23:35:13 +05:30
});
2018-08-13 19:15:42 +01:00
this.nameMatcher = new QueryMatcher(EMOJI_SHORTNAMES, {
2017-07-19 16:54:58 +01:00
keys: ['name'],
// For removing punctuation
shouldMatchWordsOnly: true,
});
}
async getCompletions(query: string, selection: SelectionRange, force?: boolean): Array<Completion> {
2019-01-24 20:57:40 -07:00
if (!SettingsStore.getValue("MessageComposerInput.suggestEmoji")) {
2017-09-14 21:28:12 -06:00
return []; // don't give any suggestions if the user doesn't want them
}
let completions = [];
const {command, range} = this.getCurrentCommand(query, selection);
2016-07-03 22:15:13 +05:30
if (command) {
2019-05-19 21:00:14 +01:00
const matchedString = command[0];
2017-07-19 16:54:58 +01:00
completions = this.matcher.match(matchedString);
2017-07-19 16:54:58 +01:00
// Do second match with shouldMatchWordsOnly in order to match against 'name'
completions = completions.concat(this.nameMatcher.match(matchedString));
console.log("pre-sorted completions", completions);
const sorters = [];
// make sure that emoticons come first
sorters.push((c) => score(matchedString, c.aliases_ascii));
// then sort by score (Infinity if matchedString not in shortname)
sorters.push((c) => score(matchedString, c.shortname));
// If the matchedString is not empty, sort by length of shortname. Example:
// matchedString = ":bookmark"
// completions = [":bookmark:", ":bookmark_tabs:", ...]
if (matchedString.length > 1) {
sorters.push((c) => c.shortname.length);
}
// Finally, sort by original ordering
sorters.push((c) => c._orderBy);
completions = _sortBy(_uniq(completions), sorters);
2017-07-19 16:54:58 +01:00
completions = completions.map((result) => {
const { shortname } = result;
const unicode = shortcodeToUnicode(shortname);
return {
completion: unicode,
component: (
<PillCompletion title={shortname} initialComponent={<span style={{maxWidth: '1em'}}>{ unicode }</span>} />
2016-07-03 22:15:13 +05:30
),
range,
};
}).slice(0, LIMIT);
console.log("mapped completions", completions);
}
2016-09-13 15:41:52 +05:30
return completions;
}
getName() {
return '😃 ' + _t('Emoji');
}
renderCompletions(completions: [React.Component]): ?React.Component {
return <div className="mx_Autocomplete_Completion_container_pill">
2017-10-11 17:56:17 +01:00
{ completions }
2016-08-23 00:36:31 +05:30
</div>;
}
}