2018-05-06 23:08:36 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 - 2017 OpenMarket Ltd
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Copyright 2018 New Vector 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 18:45:13 +02:00
|
|
|
import React from 'react';
|
2018-05-06 23:08:36 +02:00
|
|
|
|
2017-01-20 15:22:27 +01:00
|
|
|
import * as sdk from './index';
|
2016-07-02 21:41:34 +02:00
|
|
|
import * as emojione from 'emojione';
|
2018-05-06 23:08:36 +02:00
|
|
|
|
|
|
|
import { SelectionRange } from "./autocomplete/Autocompleter";
|
2016-05-27 06:45:55 +02:00
|
|
|
|
2017-03-10 16:04:31 +01:00
|
|
|
|
2018-05-14 04:02:12 +02:00
|
|
|
export function unicodeToEmojiUri(str) {
|
2016-07-08 09:24:28 +02:00
|
|
|
let replaceWith, unicode, alt;
|
|
|
|
if ((!emojione.unicodeAlt) || (emojione.sprites)) {
|
|
|
|
// if we are using the shortname as the alt tag then we need a reversed array to map unicode code point to shortnames
|
2017-10-11 18:56:17 +02:00
|
|
|
const mappedUnicode = emojione.mapUnicodeToShort();
|
2016-07-08 09:24:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace(emojione.regUnicode, function(unicodeChar) {
|
|
|
|
if ( (typeof unicodeChar === 'undefined') || (unicodeChar === '') || (!(unicodeChar in emojione.jsEscapeMap)) ) {
|
|
|
|
// if the unicodeChar doesnt exist just return the entire match
|
|
|
|
return unicodeChar;
|
|
|
|
} else {
|
2017-10-11 08:39:46 +02:00
|
|
|
// Remove variant selector VS16 (explicitly emoji) as it is unnecessary and leads to an incorrect URL below
|
2017-11-16 14:19:36 +01:00
|
|
|
if (unicodeChar.length == 2 && unicodeChar[1] == '\ufe0f') {
|
2017-10-11 08:39:46 +02:00
|
|
|
unicodeChar = unicodeChar[0];
|
|
|
|
}
|
|
|
|
|
2016-07-08 09:24:28 +02:00
|
|
|
// get the unicode codepoint from the actual char
|
|
|
|
unicode = emojione.jsEscapeMap[unicodeChar];
|
2017-10-11 08:39:46 +02:00
|
|
|
|
2016-07-08 09:24:28 +02:00
|
|
|
return emojione.imagePathSVG+unicode+'.svg'+emojione.cacheBustParam;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|