mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 00:41:44 +03:00
fix emojioneifying autoconverted emoji
This commit is contained in:
parent
cace5e8bfc
commit
e7a4ffaf45
1 changed files with 26 additions and 25 deletions
|
@ -482,6 +482,32 @@ export default class MessageComposerInput extends React.Component {
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if (editorState.startText !== null) {
|
||||||
|
const text = editorState.startText.text;
|
||||||
|
const currentStartOffset = editorState.startOffset;
|
||||||
|
|
||||||
|
// Automatic replacement of plaintext emoji to Unicode emoji
|
||||||
|
if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
|
||||||
|
// The first matched group includes just the matched plaintext emoji
|
||||||
|
const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset));
|
||||||
|
if (emojiMatch) {
|
||||||
|
// plaintext -> hex unicode
|
||||||
|
const emojiUc = asciiList[emojiMatch[1]];
|
||||||
|
// hex unicode -> shortname -> actual unicode
|
||||||
|
const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]);
|
||||||
|
|
||||||
|
const range = Range.create({
|
||||||
|
anchorKey: editorState.selection.startKey,
|
||||||
|
anchorOffset: currentStartOffset - emojiMatch[1].length - 1,
|
||||||
|
focusKey: editorState.selection.startKey,
|
||||||
|
focusOffset: currentStartOffset - 1,
|
||||||
|
});
|
||||||
|
change = change.insertTextAtRange(range, unicodeEmoji);
|
||||||
|
editorState = change.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// emojioneify any emoji
|
// emojioneify any emoji
|
||||||
|
|
||||||
// XXX: is getTextsAsArray a private API?
|
// XXX: is getTextsAsArray a private API?
|
||||||
|
@ -544,31 +570,6 @@ export default class MessageComposerInput extends React.Component {
|
||||||
editorState = EditorState.forceSelection(editorState, currentSelection);
|
editorState = EditorState.forceSelection(editorState, currentSelection);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
if (editorState.startText !== null) {
|
|
||||||
const text = editorState.startText.text;
|
|
||||||
const currentStartOffset = editorState.startOffset;
|
|
||||||
|
|
||||||
// Automatic replacement of plaintext emoji to Unicode emoji
|
|
||||||
if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
|
|
||||||
// The first matched group includes just the matched plaintext emoji
|
|
||||||
const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset));
|
|
||||||
if (emojiMatch) {
|
|
||||||
// plaintext -> hex unicode
|
|
||||||
const emojiUc = asciiList[emojiMatch[1]];
|
|
||||||
// hex unicode -> shortname -> actual unicode
|
|
||||||
const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]);
|
|
||||||
|
|
||||||
const range = Range.create({
|
|
||||||
anchorKey: editorState.selection.startKey,
|
|
||||||
anchorOffset: currentStartOffset - emojiMatch[1].length - 1,
|
|
||||||
focusKey: editorState.selection.startKey,
|
|
||||||
focusOffset: currentStartOffset,
|
|
||||||
});
|
|
||||||
change = change.insertTextAtRange(range, unicodeEmoji);
|
|
||||||
editorState = change.value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.props.onInputStateChanged && editorState.blocks.size > 0) {
|
if (this.props.onInputStateChanged && editorState.blocks.size > 0) {
|
||||||
let blockType = editorState.blocks.first().type;
|
let blockType = editorState.blocks.first().type;
|
||||||
|
|
Loading…
Reference in a new issue