2019-08-05 16:27:40 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2019-08-28 16:53:16 +03:00
|
|
|
|
|
|
|
import classNames from 'classnames';
|
2019-08-05 16:27:40 +03:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import EditorModel from '../../../editor/model';
|
|
|
|
import HistoryManager from '../../../editor/history';
|
2019-09-04 17:04:06 +03:00
|
|
|
import {setSelection} from '../../../editor/caret';
|
2019-09-04 13:37:27 +03:00
|
|
|
import {
|
2019-09-04 13:40:03 +03:00
|
|
|
formatRangeAsQuote,
|
2019-09-04 13:40:21 +03:00
|
|
|
formatRangeAsCode,
|
2019-09-04 13:37:27 +03:00
|
|
|
formatInline,
|
|
|
|
} from '../../../editor/operations';
|
2019-09-04 13:40:03 +03:00
|
|
|
import {getCaretOffsetAndText, getRangeForSelection} from '../../../editor/dom';
|
2019-08-05 16:27:40 +03:00
|
|
|
import Autocomplete from '../rooms/Autocomplete';
|
|
|
|
import {autoCompleteCreator} from '../../../editor/parts';
|
|
|
|
import {renderModel} from '../../../editor/render';
|
|
|
|
import {Room} from 'matrix-js-sdk';
|
2019-08-21 17:40:16 +03:00
|
|
|
import TypingStore from "../../../stores/TypingStore";
|
2019-08-26 17:10:26 +03:00
|
|
|
import EMOJIBASE from 'emojibase-data/en/compact.json';
|
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
|
|
import EMOTICON_REGEX from 'emojibase-regex/emoticon';
|
2019-09-05 13:10:45 +03:00
|
|
|
import sdk from '../../../index';
|
2019-08-26 17:10:26 +03:00
|
|
|
|
|
|
|
const REGEX_EMOTICON_WHITESPACE = new RegExp('(?:^|\\s)(' + EMOTICON_REGEX.source + ')\\s$');
|
2019-08-05 16:27:40 +03:00
|
|
|
|
|
|
|
const IS_MAC = navigator.platform.indexOf("Mac") !== -1;
|
|
|
|
|
2019-09-05 16:09:37 +03:00
|
|
|
function ctrlShortcutLabel(key) {
|
|
|
|
return (IS_MAC ? "⌘" : "Ctrl") + "+" + key;
|
|
|
|
}
|
|
|
|
|
2019-08-07 18:44:49 +03:00
|
|
|
function cloneSelection(selection) {
|
|
|
|
return {
|
|
|
|
anchorNode: selection.anchorNode,
|
|
|
|
anchorOffset: selection.anchorOffset,
|
|
|
|
focusNode: selection.focusNode,
|
|
|
|
focusOffset: selection.focusOffset,
|
|
|
|
isCollapsed: selection.isCollapsed,
|
|
|
|
rangeCount: selection.rangeCount,
|
|
|
|
type: selection.type,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectionEquals(a: Selection, b: Selection): boolean {
|
|
|
|
return a.anchorNode === b.anchorNode &&
|
|
|
|
a.anchorOffset === b.anchorOffset &&
|
|
|
|
a.focusNode === b.focusNode &&
|
|
|
|
a.focusOffset === b.focusOffset &&
|
|
|
|
a.isCollapsed === b.isCollapsed &&
|
|
|
|
a.rangeCount === b.rangeCount &&
|
|
|
|
a.type === b.type;
|
|
|
|
}
|
|
|
|
|
2019-08-05 16:27:40 +03:00
|
|
|
export default class BasicMessageEditor extends React.Component {
|
|
|
|
static propTypes = {
|
2019-08-21 18:42:09 +03:00
|
|
|
onChange: PropTypes.func,
|
2019-08-05 16:27:40 +03:00
|
|
|
model: PropTypes.instanceOf(EditorModel).isRequired,
|
|
|
|
room: PropTypes.instanceOf(Room).isRequired,
|
2019-08-07 15:07:48 +03:00
|
|
|
placeholder: PropTypes.string,
|
|
|
|
label: PropTypes.string, // the aria label
|
|
|
|
initialCaret: PropTypes.object, // See DocumentPosition in editor/model.js
|
2019-08-05 16:27:40 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
|
|
autoComplete: null,
|
|
|
|
};
|
|
|
|
this._editorRef = null;
|
|
|
|
this._autocompleteRef = null;
|
2019-09-03 17:02:37 +03:00
|
|
|
this._formatBarRef = null;
|
2019-08-05 16:27:40 +03:00
|
|
|
this._modifiedFlag = false;
|
2019-08-29 14:56:21 +03:00
|
|
|
this._isIMEComposing = false;
|
2019-09-03 17:02:37 +03:00
|
|
|
this._hasTextSelected = false;
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
2019-08-27 17:17:41 +03:00
|
|
|
_replaceEmoticon = (caretPosition, inputType, diff) => {
|
2019-08-26 17:10:26 +03:00
|
|
|
const {model} = this.props;
|
2019-08-27 17:17:41 +03:00
|
|
|
const range = model.startRange(caretPosition);
|
|
|
|
// expand range max 8 characters backwards from caretPosition,
|
2019-08-27 10:50:36 +03:00
|
|
|
// as a space to look for an emoticon
|
2019-08-26 17:10:26 +03:00
|
|
|
let n = 8;
|
|
|
|
range.expandBackwardsWhile((index, offset) => {
|
|
|
|
const part = model.parts[index];
|
|
|
|
n -= 1;
|
|
|
|
return n >= 0 && (part.type === "plain" || part.type === "pill-candidate");
|
|
|
|
});
|
|
|
|
const emoticonMatch = REGEX_EMOTICON_WHITESPACE.exec(range.text);
|
|
|
|
if (emoticonMatch) {
|
|
|
|
const query = emoticonMatch[1].toLowerCase().replace("-", "");
|
|
|
|
const data = EMOJIBASE.find(e => e.emoticon ? e.emoticon.toLowerCase() === query : false);
|
|
|
|
if (data) {
|
2019-08-27 17:17:41 +03:00
|
|
|
const {partCreator} = model;
|
2019-08-27 10:50:36 +03:00
|
|
|
const hasPrecedingSpace = emoticonMatch[0][0] === " ";
|
|
|
|
// we need the range to only comprise of the emoticon
|
|
|
|
// because we'll replace the whole range with an emoji,
|
|
|
|
// so move the start forward to the start of the emoticon.
|
|
|
|
// Take + 1 because index is reported without the possible preceding space.
|
|
|
|
range.moveStart(emoticonMatch.index + (hasPrecedingSpace ? 1 : 0));
|
|
|
|
// this returns the amount of added/removed characters during the replace
|
|
|
|
// so the caret position can be adjusted.
|
2019-08-27 17:17:41 +03:00
|
|
|
return range.replace([partCreator.plain(data.unicode + " ")]);
|
2019-08-26 17:10:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-04 17:04:06 +03:00
|
|
|
_updateEditorState = (selection, inputType, diff) => {
|
2019-08-05 16:27:40 +03:00
|
|
|
renderModel(this._editorRef, this.props.model);
|
2019-09-04 17:04:06 +03:00
|
|
|
if (selection) { // set the caret/selection
|
2019-08-05 16:27:40 +03:00
|
|
|
try {
|
2019-09-04 17:04:06 +03:00
|
|
|
setSelection(this._editorRef, this.props.model, selection);
|
2019-08-05 16:27:40 +03:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
|
|
|
}
|
2019-08-06 18:52:47 +03:00
|
|
|
if (this.props.placeholder) {
|
|
|
|
const {isEmpty} = this.props.model;
|
|
|
|
if (isEmpty) {
|
2019-08-29 14:56:21 +03:00
|
|
|
this._showPlaceholder();
|
2019-08-06 18:52:47 +03:00
|
|
|
} else {
|
2019-08-29 14:56:21 +03:00
|
|
|
this._hidePlaceholder();
|
2019-08-06 18:52:47 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
this.setState({autoComplete: this.props.model.autoComplete});
|
2019-09-04 17:04:06 +03:00
|
|
|
this.historyManager.tryPush(this.props.model, selection, inputType, diff);
|
2019-08-21 17:40:16 +03:00
|
|
|
TypingStore.sharedInstance().setSelfTyping(this.props.room.roomId, !this.props.model.isEmpty);
|
2019-08-21 18:42:09 +03:00
|
|
|
|
|
|
|
if (this.props.onChange) {
|
|
|
|
this.props.onChange();
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
2019-08-29 14:56:21 +03:00
|
|
|
_showPlaceholder() {
|
|
|
|
this._editorRef.style.setProperty("--placeholder", `'${this.props.placeholder}'`);
|
|
|
|
this._editorRef.classList.add("mx_BasicMessageComposer_inputEmpty");
|
|
|
|
}
|
|
|
|
|
|
|
|
_hidePlaceholder() {
|
|
|
|
this._editorRef.classList.remove("mx_BasicMessageComposer_inputEmpty");
|
|
|
|
this._editorRef.style.removeProperty("--placeholder");
|
|
|
|
}
|
|
|
|
|
|
|
|
_onCompositionStart = (event) => {
|
|
|
|
this._isIMEComposing = true;
|
|
|
|
// even if the model is empty, the composition text shouldn't be mixed with the placeholder
|
|
|
|
this._hidePlaceholder();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onCompositionEnd = (event) => {
|
|
|
|
this._isIMEComposing = false;
|
2019-08-30 12:25:17 +03:00
|
|
|
// some browsers (chromium) don't fire an input event after ending a composition
|
|
|
|
// so trigger a model update after the composition is done by calling the input handler
|
|
|
|
this._onInput({inputType: "insertCompositionText"});
|
2019-08-29 14:56:21 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 16:27:40 +03:00
|
|
|
_onInput = (event) => {
|
2019-08-29 14:56:21 +03:00
|
|
|
// ignore any input while doing IME compositions
|
|
|
|
if (this._isIMEComposing) {
|
|
|
|
return;
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
this._modifiedFlag = true;
|
|
|
|
const sel = document.getSelection();
|
|
|
|
const {caret, text} = getCaretOffsetAndText(this._editorRef, sel);
|
2019-08-07 18:44:49 +03:00
|
|
|
this._setLastCaret(caret, text, sel);
|
2019-08-05 16:27:40 +03:00
|
|
|
this.props.model.update(text, event.inputType, caret);
|
|
|
|
}
|
|
|
|
|
|
|
|
_insertText(textToInsert, inputType = "insertText") {
|
|
|
|
const sel = document.getSelection();
|
|
|
|
const {caret, text} = getCaretOffsetAndText(this._editorRef, sel);
|
|
|
|
const newText = text.substr(0, caret.offset) + textToInsert + text.substr(caret.offset);
|
|
|
|
caret.offset += textToInsert.length;
|
|
|
|
this.props.model.update(newText, inputType, caret);
|
2019-09-02 17:29:25 +03:00
|
|
|
this._modifiedFlag = true;
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
2019-08-07 18:44:49 +03:00
|
|
|
// this is used later to see if we need to recalculate the caret
|
|
|
|
// on selectionchange. If it is just a consequence of typing
|
|
|
|
// we don't need to. But if the user is navigating the caret without input
|
|
|
|
// we need to recalculate it, to be able to know where to insert content after
|
|
|
|
// losing focus
|
|
|
|
_setLastCaret(caret, text, selection) {
|
|
|
|
this._lastSelection = cloneSelection(selection);
|
|
|
|
this._lastCaret = caret;
|
|
|
|
this._lastTextLength = text.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
_refreshLastCaretIfNeeded() {
|
2019-08-27 17:17:41 +03:00
|
|
|
// XXX: needed when going up and down in editing messages ... not sure why yet
|
2019-08-07 18:44:49 +03:00
|
|
|
// because the editors should stop doing this when when blurred ...
|
|
|
|
// maybe it's on focus and the _editorRef isn't available yet or something.
|
|
|
|
if (!this._editorRef) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const selection = document.getSelection();
|
|
|
|
if (!this._lastSelection || !selectionEquals(this._lastSelection, selection)) {
|
|
|
|
this._lastSelection = cloneSelection(selection);
|
|
|
|
const {caret, text} = getCaretOffsetAndText(this._editorRef, selection);
|
|
|
|
this._lastCaret = caret;
|
|
|
|
this._lastTextLength = text.length;
|
|
|
|
}
|
|
|
|
return this._lastCaret;
|
|
|
|
}
|
|
|
|
|
2019-08-20 18:15:52 +03:00
|
|
|
clearUndoHistory() {
|
|
|
|
this.historyManager.clear();
|
|
|
|
}
|
|
|
|
|
2019-08-07 18:44:49 +03:00
|
|
|
getCaret() {
|
|
|
|
return this._lastCaret;
|
|
|
|
}
|
|
|
|
|
2019-08-20 18:18:46 +03:00
|
|
|
isSelectionCollapsed() {
|
|
|
|
return !this._lastSelection || this._lastSelection.isCollapsed;
|
|
|
|
}
|
|
|
|
|
2019-08-07 18:44:49 +03:00
|
|
|
isCaretAtStart() {
|
|
|
|
return this.getCaret().offset === 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
isCaretAtEnd() {
|
|
|
|
return this.getCaret().offset === this._lastTextLength;
|
|
|
|
}
|
|
|
|
|
2019-09-03 11:27:45 +03:00
|
|
|
_onBlur = () => {
|
2019-08-07 18:44:49 +03:00
|
|
|
document.removeEventListener("selectionchange", this._onSelectionChange);
|
|
|
|
}
|
|
|
|
|
2019-09-03 11:27:45 +03:00
|
|
|
_onFocus = () => {
|
2019-08-07 18:44:49 +03:00
|
|
|
document.addEventListener("selectionchange", this._onSelectionChange);
|
|
|
|
// force to recalculate
|
|
|
|
this._lastSelection = null;
|
|
|
|
this._refreshLastCaretIfNeeded();
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
2019-08-07 18:44:49 +03:00
|
|
|
_onSelectionChange = () => {
|
|
|
|
this._refreshLastCaretIfNeeded();
|
2019-09-03 17:02:37 +03:00
|
|
|
const selection = document.getSelection();
|
|
|
|
if (this._hasTextSelected && selection.isCollapsed) {
|
|
|
|
this._hasTextSelected = false;
|
|
|
|
if (this._formatBarRef) {
|
2019-09-05 13:10:45 +03:00
|
|
|
this._formatBarRef.hide();
|
2019-09-03 17:02:37 +03:00
|
|
|
}
|
|
|
|
} else if (!selection.isCollapsed) {
|
|
|
|
this._hasTextSelected = true;
|
|
|
|
if (this._formatBarRef) {
|
|
|
|
const selectionRect = selection.getRangeAt(0).getBoundingClientRect();
|
2019-09-05 13:10:45 +03:00
|
|
|
this._formatBarRef.showAt(selectionRect);
|
2019-09-03 17:02:37 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onKeyDown = (event) => {
|
|
|
|
const model = this.props.model;
|
|
|
|
const modKey = IS_MAC ? event.metaKey : event.ctrlKey;
|
|
|
|
let handled = false;
|
2019-09-05 16:07:12 +03:00
|
|
|
// format bold
|
|
|
|
if (modKey && event.key === "b") {
|
|
|
|
this._onFormatAction("bold");
|
|
|
|
handled = true;
|
|
|
|
// format italics
|
|
|
|
} else if (modKey && event.key === "i") {
|
|
|
|
this._onFormatAction("italics");
|
|
|
|
handled = true;
|
|
|
|
// format quote
|
|
|
|
} else if (modKey && event.key === ">") {
|
|
|
|
this._onFormatAction("quote");
|
|
|
|
handled = true;
|
2019-08-05 16:27:40 +03:00
|
|
|
// undo
|
2019-09-05 16:07:12 +03:00
|
|
|
} else if (modKey && event.key === "z") {
|
2019-08-05 16:27:40 +03:00
|
|
|
if (this.historyManager.canUndo()) {
|
|
|
|
const {parts, caret} = this.historyManager.undo(this.props.model);
|
|
|
|
// pass matching inputType so historyManager doesn't push echo
|
|
|
|
// when invoked from rerender callback.
|
|
|
|
model.reset(parts, caret, "historyUndo");
|
|
|
|
}
|
|
|
|
handled = true;
|
|
|
|
// redo
|
|
|
|
} else if (modKey && event.key === "y") {
|
|
|
|
if (this.historyManager.canRedo()) {
|
|
|
|
const {parts, caret} = this.historyManager.redo();
|
|
|
|
// pass matching inputType so historyManager doesn't push echo
|
|
|
|
// when invoked from rerender callback.
|
|
|
|
model.reset(parts, caret, "historyRedo");
|
|
|
|
}
|
|
|
|
handled = true;
|
|
|
|
// insert newline on Shift+Enter
|
2019-08-20 15:14:07 +03:00
|
|
|
} else if (event.key === "Enter" && (event.shiftKey || (IS_MAC && event.altKey))) {
|
2019-08-05 16:27:40 +03:00
|
|
|
this._insertText("\n");
|
|
|
|
handled = true;
|
|
|
|
// autocomplete or enter to send below shouldn't have any modifier keys pressed.
|
|
|
|
} else if (!(event.metaKey || event.altKey || event.shiftKey)) {
|
2019-09-02 12:25:29 +03:00
|
|
|
if (model.autoComplete && model.autoComplete.hasCompletions()) {
|
2019-08-05 16:27:40 +03:00
|
|
|
const autoComplete = model.autoComplete;
|
|
|
|
switch (event.key) {
|
|
|
|
case "ArrowUp":
|
2019-08-21 17:22:04 +03:00
|
|
|
autoComplete.onUpArrow(event);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2019-08-05 16:27:40 +03:00
|
|
|
case "ArrowDown":
|
2019-08-21 17:22:04 +03:00
|
|
|
autoComplete.onDownArrow(event);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2019-08-05 16:27:40 +03:00
|
|
|
case "Tab":
|
2019-08-21 17:22:04 +03:00
|
|
|
autoComplete.onTab(event);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2019-08-05 16:27:40 +03:00
|
|
|
case "Escape":
|
2019-08-21 17:22:04 +03:00
|
|
|
autoComplete.onEscape(event);
|
|
|
|
handled = true;
|
|
|
|
break;
|
2019-08-05 16:27:40 +03:00
|
|
|
default:
|
|
|
|
return; // don't preventDefault on anything else
|
|
|
|
}
|
2019-08-27 17:16:43 +03:00
|
|
|
} else if (event.key === "Tab") {
|
2019-08-28 16:53:16 +03:00
|
|
|
this._tabCompleteName();
|
2019-08-27 17:16:43 +03:00
|
|
|
handled = true;
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (handled) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-28 16:53:16 +03:00
|
|
|
async _tabCompleteName() {
|
|
|
|
try {
|
|
|
|
await new Promise(resolve => this.setState({showVisualBell: false}, resolve));
|
|
|
|
const {model} = this.props;
|
|
|
|
const caret = this.getCaret();
|
|
|
|
const position = model.positionForOffset(caret.offset, caret.atNodeEnd);
|
|
|
|
const range = model.startRange(position);
|
|
|
|
range.expandBackwardsWhile((index, offset, part) => {
|
2019-09-02 12:27:22 +03:00
|
|
|
return part.text[offset] !== " " && (
|
|
|
|
part.type === "plain" ||
|
|
|
|
part.type === "pill-candidate" ||
|
|
|
|
part.type === "command"
|
|
|
|
);
|
2019-08-28 16:53:16 +03:00
|
|
|
});
|
|
|
|
const {partCreator} = model;
|
|
|
|
// await for auto-complete to be open
|
|
|
|
await model.transform(() => {
|
|
|
|
const addedLen = range.replace([partCreator.pillCandidate(range.text)]);
|
|
|
|
return model.positionForOffset(caret.offset + addedLen, true);
|
|
|
|
});
|
|
|
|
await model.autoComplete.onTab();
|
|
|
|
if (!model.autoComplete.hasSelection()) {
|
|
|
|
this.setState({showVisualBell: true});
|
|
|
|
model.autoComplete.close();
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2019-08-27 17:16:43 +03:00
|
|
|
}
|
|
|
|
|
2019-08-29 17:19:05 +03:00
|
|
|
getEditableRootNode() {
|
|
|
|
return this._editorRef;
|
|
|
|
}
|
|
|
|
|
2019-08-05 16:27:40 +03:00
|
|
|
isModified() {
|
|
|
|
return this._modifiedFlag;
|
|
|
|
}
|
|
|
|
|
|
|
|
_onAutoCompleteConfirm = (completion) => {
|
|
|
|
this.props.model.autoComplete.onComponentConfirm(completion);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onAutoCompleteSelectionChange = (completion) => {
|
|
|
|
this.props.model.autoComplete.onComponentSelectionChange(completion);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this._editorRef.removeEventListener("input", this._onInput, true);
|
2019-08-29 14:56:21 +03:00
|
|
|
this._editorRef.removeEventListener("compositionstart", this._onCompositionStart, true);
|
|
|
|
this._editorRef.removeEventListener("compositionend", this._onCompositionEnd, true);
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
const model = this.props.model;
|
|
|
|
model.setUpdateCallback(this._updateEditorState);
|
2019-08-26 17:10:26 +03:00
|
|
|
if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
|
|
|
|
model.setTransformCallback(this._replaceEmoticon);
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
const partCreator = model.partCreator;
|
|
|
|
// TODO: does this allow us to get rid of EditorStateTransfer?
|
|
|
|
// not really, but we could not serialize the parts, and just change the autoCompleter
|
|
|
|
partCreator.setAutoCompleteCreator(autoCompleteCreator(
|
|
|
|
() => this._autocompleteRef,
|
2019-08-28 18:53:03 +03:00
|
|
|
query => new Promise(resolve => this.setState({query}, resolve)),
|
2019-08-05 16:27:40 +03:00
|
|
|
));
|
|
|
|
this.historyManager = new HistoryManager(partCreator);
|
|
|
|
// initial render of model
|
|
|
|
this._updateEditorState(this._getInitialCaretPosition());
|
|
|
|
// attach input listener by hand so React doesn't proxy the events,
|
|
|
|
// as the proxied event doesn't support inputType, which we need.
|
|
|
|
this._editorRef.addEventListener("input", this._onInput, true);
|
2019-08-29 14:56:21 +03:00
|
|
|
this._editorRef.addEventListener("compositionstart", this._onCompositionStart, true);
|
|
|
|
this._editorRef.addEventListener("compositionend", this._onCompositionEnd, true);
|
2019-08-05 16:27:40 +03:00
|
|
|
this._editorRef.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
_getInitialCaretPosition() {
|
|
|
|
let caretPosition;
|
|
|
|
if (this.props.initialCaret) {
|
|
|
|
// if restoring state from a previous editor,
|
|
|
|
// restore caret position from the state
|
|
|
|
const caret = this.props.initialCaret;
|
|
|
|
caretPosition = this.props.model.positionForOffset(caret.offset, caret.atNodeEnd);
|
|
|
|
} else {
|
|
|
|
// otherwise, set it at the end
|
|
|
|
caretPosition = this.props.model.getPositionAtEnd();
|
|
|
|
}
|
|
|
|
return caretPosition;
|
|
|
|
}
|
|
|
|
|
2019-09-05 13:10:45 +03:00
|
|
|
_onFormatAction = (action) => {
|
2019-09-04 13:40:03 +03:00
|
|
|
const range = getRangeForSelection(
|
|
|
|
this._editorRef,
|
|
|
|
this.props.model,
|
|
|
|
document.getSelection());
|
2019-09-05 13:10:45 +03:00
|
|
|
switch (action) {
|
|
|
|
case "bold":
|
|
|
|
formatInline(range, "**");
|
|
|
|
break;
|
|
|
|
case "italics":
|
|
|
|
formatInline(range, "*");
|
|
|
|
break;
|
|
|
|
case "strikethrough":
|
|
|
|
formatInline(range, "<del>", "</del>");
|
|
|
|
break;
|
|
|
|
case "code":
|
|
|
|
formatRangeAsCode(range);
|
|
|
|
break;
|
|
|
|
case "quote":
|
|
|
|
formatRangeAsQuote(range);
|
|
|
|
break;
|
|
|
|
}
|
2019-09-03 17:02:37 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 16:27:40 +03:00
|
|
|
render() {
|
|
|
|
let autoComplete;
|
|
|
|
if (this.state.autoComplete) {
|
|
|
|
const query = this.state.query;
|
|
|
|
const queryLen = query.length;
|
2019-08-06 17:31:21 +03:00
|
|
|
autoComplete = (<div className="mx_BasicMessageComposer_AutoCompleteWrapper">
|
2019-08-05 16:27:40 +03:00
|
|
|
<Autocomplete
|
|
|
|
ref={ref => this._autocompleteRef = ref}
|
|
|
|
query={query}
|
|
|
|
onConfirm={this._onAutoCompleteConfirm}
|
|
|
|
onSelectionChange={this._onAutoCompleteSelectionChange}
|
|
|
|
selection={{beginning: true, end: queryLen, start: queryLen}}
|
|
|
|
room={this.props.room}
|
|
|
|
/>
|
2019-08-06 17:31:21 +03:00
|
|
|
</div>);
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
2019-08-28 16:53:16 +03:00
|
|
|
const classes = classNames("mx_BasicMessageComposer", {
|
|
|
|
"mx_BasicMessageComposer_input_error": this.state.showVisualBell,
|
|
|
|
});
|
2019-09-05 13:10:45 +03:00
|
|
|
|
|
|
|
const MessageComposerFormatBar = sdk.getComponent('rooms.MessageComposerFormatBar');
|
2019-09-05 16:09:37 +03:00
|
|
|
const shortcuts = {
|
|
|
|
bold: ctrlShortcutLabel("B"),
|
|
|
|
italics: ctrlShortcutLabel("I"),
|
|
|
|
quote: ctrlShortcutLabel(">"),
|
|
|
|
};
|
2019-09-05 13:10:45 +03:00
|
|
|
|
2019-08-28 16:53:16 +03:00
|
|
|
return (<div className={classes}>
|
2019-08-06 17:31:21 +03:00
|
|
|
{ autoComplete }
|
2019-09-05 16:09:37 +03:00
|
|
|
<MessageComposerFormatBar ref={ref => this._formatBarRef = ref} onAction={this._onFormatAction} shortcuts={shortcuts} />
|
2019-08-06 17:31:21 +03:00
|
|
|
<div
|
|
|
|
className="mx_BasicMessageComposer_input"
|
|
|
|
contentEditable="true"
|
|
|
|
tabIndex="1"
|
2019-08-07 18:44:49 +03:00
|
|
|
onBlur={this._onBlur}
|
|
|
|
onFocus={this._onFocus}
|
2019-08-06 17:31:21 +03:00
|
|
|
onKeyDown={this._onKeyDown}
|
|
|
|
ref={ref => this._editorRef = ref}
|
2019-08-06 18:03:16 +03:00
|
|
|
aria-label={this.props.label}
|
2019-08-06 17:31:21 +03:00
|
|
|
></div>
|
|
|
|
</div>);
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|
2019-08-07 16:14:16 +03:00
|
|
|
|
|
|
|
focus() {
|
|
|
|
this._editorRef.focus();
|
|
|
|
}
|
2019-08-05 16:27:40 +03:00
|
|
|
}
|