2017-06-01 17:18:06 +03:00
|
|
|
/*
|
2017-06-01 19:29:40 +03:00
|
|
|
Copyright 2016 Aviral Dasgupta
|
2017-06-01 17:18:06 +03:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
|
|
|
|
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 19:45:13 +03:00
|
|
|
import React from 'react';
|
2017-05-25 13:39:08 +03:00
|
|
|
import { _t } from '../languageHandler';
|
2016-06-17 02:28:09 +03:00
|
|
|
import AutocompleteProvider from './AutocompleteProvider';
|
2016-07-03 19:45:13 +03:00
|
|
|
import {emojioneList, shortnameToImage, shortnameToUnicode} from 'emojione';
|
2016-12-01 09:36:57 +03:00
|
|
|
import FuzzyMatcher from './FuzzyMatcher';
|
2016-08-17 14:57:19 +03:00
|
|
|
import sdk from '../index';
|
|
|
|
import {PillCompletion} from './Components';
|
2016-09-13 13:11:52 +03:00
|
|
|
import type {SelectionRange, Completion} from './Autocompleter';
|
2016-06-17 02:28:09 +03:00
|
|
|
|
2017-06-28 13:35:14 +03:00
|
|
|
import EmojiData from '../stripped-emoji.json';
|
2017-06-27 22:13:48 +03:00
|
|
|
|
|
|
|
const LIMIT = 20;
|
|
|
|
const CATEGORY_ORDER = [
|
2017-06-28 13:19:16 +03:00
|
|
|
'people',
|
|
|
|
'food',
|
|
|
|
'objects',
|
|
|
|
'activity',
|
|
|
|
'nature',
|
|
|
|
'travel',
|
|
|
|
'flags',
|
|
|
|
'symbols',
|
|
|
|
'unicode9',
|
|
|
|
'modifier',
|
2017-06-27 22:13:48 +03:00
|
|
|
];
|
|
|
|
|
2016-06-17 02:28:09 +03:00
|
|
|
const EMOJI_REGEX = /:\w*:?/g;
|
2017-06-28 13:19:16 +03:00
|
|
|
const EMOJI_SHORTNAMES = Object.keys(EmojiData).map((key) => EmojiData[key]).sort(
|
2017-06-27 22:13:48 +03:00
|
|
|
(a, b) => {
|
|
|
|
if (a.category === b.category) {
|
2017-06-28 13:19:16 +03:00
|
|
|
return a.emoji_order - b.emoji_order;
|
2017-06-27 22:13:48 +03:00
|
|
|
}
|
|
|
|
return CATEGORY_ORDER.indexOf(a.category) - CATEGORY_ORDER.indexOf(b.category);
|
|
|
|
},
|
|
|
|
).map((a) => {
|
2017-02-10 21:05:13 +03:00
|
|
|
return {
|
2017-06-28 13:19:16 +03:00
|
|
|
name: a.name,
|
|
|
|
shortname: a.shortname,
|
2017-02-10 21:05:13 +03:00
|
|
|
};
|
|
|
|
});
|
2016-06-17 02:28:09 +03:00
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
let instance = null;
|
|
|
|
|
2016-06-17 02:28:09 +03:00
|
|
|
export default class EmojiProvider extends AutocompleteProvider {
|
|
|
|
constructor() {
|
2016-06-21 13:16:20 +03:00
|
|
|
super(EMOJI_REGEX);
|
2017-02-10 21:05:13 +03:00
|
|
|
this.matcher = new FuzzyMatcher(EMOJI_SHORTNAMES, {
|
2017-06-28 13:19:16 +03:00
|
|
|
keys: ['shortname', 'name'],
|
2017-02-10 21:05:13 +03:00
|
|
|
});
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|
|
|
|
|
2016-09-13 13:11:52 +03:00
|
|
|
async getCompletions(query: string, selection: SelectionRange) {
|
2016-08-17 14:57:19 +03:00
|
|
|
const EmojiText = sdk.getComponent('views.elements.EmojiText');
|
|
|
|
|
2016-06-17 02:28:09 +03:00
|
|
|
let completions = [];
|
2016-07-03 19:45:13 +03:00
|
|
|
let {command, range} = this.getCurrentCommand(query, selection);
|
|
|
|
if (command) {
|
2016-12-01 09:36:57 +03:00
|
|
|
completions = this.matcher.match(command[0]).map(result => {
|
2017-02-10 21:05:13 +03:00
|
|
|
const {shortname} = result;
|
2016-08-17 14:57:19 +03:00
|
|
|
const unicode = shortnameToUnicode(shortname);
|
2016-06-17 02:28:09 +03:00
|
|
|
return {
|
2016-08-17 14:57:19 +03:00
|
|
|
completion: unicode,
|
2016-06-17 02:28:09 +03:00
|
|
|
component: (
|
2016-08-17 14:57:19 +03:00
|
|
|
<PillCompletion title={shortname} initialComponent={<EmojiText style={{maxWidth: '1em'}}>{unicode}</EmojiText>} />
|
2016-07-03 19:45:13 +03:00
|
|
|
),
|
|
|
|
range,
|
2016-06-17 02:28:09 +03:00
|
|
|
};
|
2017-06-27 22:13:48 +03:00
|
|
|
}).slice(0, LIMIT);
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|
2016-09-13 13:11:52 +03:00
|
|
|
return completions;
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
getName() {
|
2017-05-23 17:16:31 +03:00
|
|
|
return '😃 ' + _t('Emoji');
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
|
|
|
|
static getInstance() {
|
2016-07-03 19:45:13 +03:00
|
|
|
if (instance == null)
|
2017-01-20 17:22:27 +03:00
|
|
|
{instance = new EmojiProvider();}
|
2016-06-20 11:22:55 +03:00
|
|
|
return instance;
|
|
|
|
}
|
2016-08-17 14:57:19 +03:00
|
|
|
|
|
|
|
renderCompletions(completions: [React.Component]): ?React.Component {
|
2016-08-22 22:06:31 +03:00
|
|
|
return <div className="mx_Autocomplete_Completion_container_pill">
|
|
|
|
{completions}
|
|
|
|
</div>;
|
2016-08-17 14:57:19 +03:00
|
|
|
}
|
2016-06-17 02:28:09 +03:00
|
|
|
}
|