summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/src/components/comment-form.tsx7
-rw-r--r--ui/src/components/post-form.tsx7
-rw-r--r--ui/src/utils.ts2
3 files changed, 11 insertions, 5 deletions
diff --git a/ui/src/components/comment-form.tsx b/ui/src/components/comment-form.tsx
index 6898ebc7..5239eb2c 100644
--- a/ui/src/components/comment-form.tsx
+++ b/ui/src/components/comment-form.tsx
@@ -230,11 +230,14 @@ export class CommentForm extends Component<CommentFormProps, CommentFormState> {
}
setupEmojiPicker() {
- emojiPicker.on('emoji', emoji => {
+ emojiPicker.on('emoji', twemojiHtmlStr => {
if (this.state.commentForm.content == null) {
this.state.commentForm.content = '';
}
- let shortName = `:${emojiShortName[emoji]}:`;
+ var el = document.createElement('div');
+ el.innerHTML = twemojiHtmlStr;
+ let nativeUnicode = (el.childNodes[0] as HTMLElement).getAttribute('alt');
+ let shortName = `:${emojiShortName[nativeUnicode]}:`;
this.state.commentForm.content += shortName;
this.setState(this.state);
});
diff --git a/ui/src/components/post-form.tsx b/ui/src/components/post-form.tsx
index a65ead46..912d8e58 100644
--- a/ui/src/components/post-form.tsx
+++ b/ui/src/components/post-form.tsx
@@ -383,11 +383,14 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
}
setupEmojiPicker() {
- emojiPicker.on('emoji', emoji => {
+ emojiPicker.on('emoji', twemojiHtmlStr => {
if (this.state.postForm.body == null) {
this.state.postForm.body = '';
}
- let shortName = `:${emojiShortName[emoji]}:`;
+ var el = document.createElement('div');
+ el.innerHTML = twemojiHtmlStr;
+ let nativeUnicode = (el.childNodes[0] as HTMLElement).getAttribute('alt');
+ let shortName = `:${emojiShortName[nativeUnicode]}:`;
this.state.postForm.body += shortName;
this.setState(this.state);
});
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index fd23bf9e..21a7fef8 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -91,7 +91,7 @@ export const themes = [
export const emojiPicker = new EmojiButton({
// Use the emojiShortName from native
- // style: 'twemoji',
+ style: 'twemoji',
theme: 'dark',
position: 'auto-start',
// TODO i18n