This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-15 18:38:57 +01:00
|
|
|
import emojione from 'emojione';
|
2017-01-05 07:23:02 +01:00
|
|
|
import detectVersion from 'mojibaka';
|
2016-11-15 18:38:57 +01:00
|
|
|
|
|
|
|
emojione.imageType = 'png';
|
|
|
|
emojione.sprites = false;
|
|
|
|
emojione.imagePathPNG = '/emoji/';
|
|
|
|
|
2017-01-05 07:23:02 +01:00
|
|
|
let emoji_version = detectVersion();
|
|
|
|
|
2016-11-15 18:38:57 +01:00
|
|
|
export default function emojify(text) {
|
2017-01-05 07:23:02 +01:00
|
|
|
// Browser too old to support native emoji
|
2017-01-05 07:47:51 +01:00
|
|
|
if (emoji_version < 9.0) {
|
2017-01-05 07:23:02 +01:00
|
|
|
return emojione.toImage(text);
|
|
|
|
// Convert short codes into native emoji
|
|
|
|
} else {
|
|
|
|
return emojione.shortnameToUnicode(text);
|
|
|
|
}
|
2016-11-15 18:38:57 +01:00
|
|
|
};
|