2016-03-24 19:25:41 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-11-03 02:01:28 +08:00
|
|
|
Copyright 2017 New Vector Ltd
|
2016-03-24 19:25:41 +08:00
|
|
|
|
|
|
|
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-06-11 18:22:08 +08:00
|
|
|
import React from 'react';
|
2018-05-08 08:54:06 +08:00
|
|
|
import ReactDOM from 'react-dom';
|
2017-12-26 09:03:18 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2016-07-08 15:24:28 +08:00
|
|
|
import type SyntheticKeyboardEvent from 'react/lib/SyntheticKeyboardEvent';
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
import { Editor } from 'slate-react';
|
2018-05-20 05:05:31 +08:00
|
|
|
import { getEventTransfer } from 'slate-react';
|
2018-05-21 10:48:59 +08:00
|
|
|
import { Value, Document, Event, Block, Inline, Text, Range, Node } from 'slate';
|
2018-04-23 08:13:18 +08:00
|
|
|
|
|
|
|
import Html from 'slate-html-serializer';
|
2018-05-17 09:13:17 +08:00
|
|
|
import Md from 'slate-md-serializer';
|
2018-04-23 08:13:18 +08:00
|
|
|
import Plain from 'slate-plain-serializer';
|
2018-05-13 03:04:58 +08:00
|
|
|
import PlainWithPillsSerializer from "../../../autocomplete/PlainWithPillsSerializer";
|
2018-04-23 08:13:18 +08:00
|
|
|
|
|
|
|
// import {Editor, EditorState, RichUtils, CompositeDecorator, Modifier,
|
|
|
|
// getDefaultKeyBinding, KeyBindingUtil, ContentState, ContentBlock, SelectionState,
|
|
|
|
// Entity} from 'draft-js';
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2016-09-04 23:33:40 +08:00
|
|
|
import classNames from 'classnames';
|
2017-07-12 20:58:14 +08:00
|
|
|
import Promise from 'bluebird';
|
2016-05-27 12:45:55 +08:00
|
|
|
|
2016-07-08 15:24:28 +08:00
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import type {MatrixClient} from 'matrix-js-sdk/lib/matrix';
|
|
|
|
import SlashCommands from '../../../SlashCommands';
|
2017-12-01 18:44:00 +08:00
|
|
|
import { KeyCode, isOnlyCtrlOrCmdKeyEvent } from '../../../Keyboard';
|
2016-07-08 15:24:28 +08:00
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import sdk from '../../../index';
|
2017-09-23 03:43:27 +08:00
|
|
|
import { _t, _td } from '../../../languageHandler';
|
2017-08-10 01:39:06 +08:00
|
|
|
import Analytics from '../../../Analytics';
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-07-08 15:24:28 +08:00
|
|
|
import dis from '../../../dispatcher';
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-06-12 00:54:09 +08:00
|
|
|
import * as RichText from '../../../RichText';
|
2016-09-16 23:02:08 +08:00
|
|
|
import * as HtmlUtils from '../../../HtmlUtils';
|
2016-09-13 18:11:52 +08:00
|
|
|
import Autocomplete from './Autocomplete';
|
|
|
|
import {Completion} from "../../../autocomplete/Autocompleter";
|
2016-09-24 01:50:25 +08:00
|
|
|
import Markdown from '../../../Markdown';
|
2017-03-10 23:04:31 +08:00
|
|
|
import ComposerHistoryManager from '../../../ComposerHistoryManager';
|
2017-07-05 17:24:55 +08:00
|
|
|
import MessageComposerStore from '../../../stores/MessageComposerStore';
|
|
|
|
|
2017-07-21 23:38:31 +08:00
|
|
|
import {MATRIXTO_URL_PATTERN, MATRIXTO_MD_LINK_PATTERN} from '../../../linkify-matrix';
|
2017-07-15 00:04:28 +08:00
|
|
|
const REGEX_MATRIXTO = new RegExp(MATRIXTO_URL_PATTERN);
|
2017-07-21 23:38:31 +08:00
|
|
|
const REGEX_MATRIXTO_MARKDOWN_GLOBAL = new RegExp(MATRIXTO_MD_LINK_PATTERN, 'g');
|
2017-07-15 00:04:28 +08:00
|
|
|
|
2018-05-14 10:02:12 +08:00
|
|
|
import {asciiRegexp, unicodeRegexp, shortnameToUnicode, emojioneList, asciiList, mapUnicodeToShort, toShort} from 'emojione';
|
2017-11-04 13:19:45 +08:00
|
|
|
import SettingsStore, {SettingLevel} from "../../../settings/SettingsStore";
|
2018-02-10 19:19:43 +08:00
|
|
|
import {makeUserPermalink} from "../../../matrix-to";
|
2018-02-10 20:38:25 +08:00
|
|
|
import ReplyPreview from "./ReplyPreview";
|
2017-12-10 20:50:41 +08:00
|
|
|
import RoomViewStore from '../../../stores/RoomViewStore';
|
2018-03-04 20:39:34 +08:00
|
|
|
import ReplyThread from "../elements/ReplyThread";
|
2018-02-10 19:19:43 +08:00
|
|
|
import {ContentHelpers} from 'matrix-js-sdk';
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2017-07-14 00:37:43 +08:00
|
|
|
const EMOJI_SHORTNAMES = Object.keys(emojioneList);
|
|
|
|
const EMOJI_UNICODE_TO_SHORTNAME = mapUnicodeToShort();
|
2017-08-01 21:26:30 +08:00
|
|
|
const REGEX_EMOJI_WHITESPACE = new RegExp('(?:^|\\s)(' + asciiRegexp + ')\\s$');
|
2018-05-14 10:02:12 +08:00
|
|
|
const EMOJI_REGEX = new RegExp(unicodeRegexp, 'g');
|
2017-07-14 00:37:43 +08:00
|
|
|
|
2016-06-11 18:22:08 +08:00
|
|
|
const TYPING_USER_TIMEOUT = 10000, TYPING_SERVER_TIMEOUT = 30000;
|
|
|
|
|
2017-11-07 01:15:09 +08:00
|
|
|
const ENTITY_TYPES = {
|
2017-11-07 06:01:23 +08:00
|
|
|
AT_ROOM_PILL: 'ATROOMPILL',
|
2017-11-07 01:15:09 +08:00
|
|
|
};
|
2017-11-06 23:11:42 +08:00
|
|
|
|
2018-05-20 08:07:25 +08:00
|
|
|
// the Slate node type to default to for unstyled text
|
2018-05-20 03:38:07 +08:00
|
|
|
const DEFAULT_NODE = 'paragraph';
|
|
|
|
|
2018-05-20 06:33:07 +08:00
|
|
|
// map HTML elements through to our Slate schema node types
|
|
|
|
// used for the HTML deserializer.
|
2018-05-20 07:17:11 +08:00
|
|
|
// (The names here are chosen to match the MD serializer's schema for convenience)
|
2018-05-20 06:33:07 +08:00
|
|
|
const BLOCK_TAGS = {
|
|
|
|
p: 'paragraph',
|
|
|
|
blockquote: 'block-quote',
|
|
|
|
ul: 'bulleted-list',
|
2018-05-20 07:17:11 +08:00
|
|
|
h1: 'heading1',
|
|
|
|
h2: 'heading2',
|
|
|
|
h3: 'heading3',
|
|
|
|
h4: 'heading4',
|
|
|
|
h5: 'heading5',
|
|
|
|
h6: 'heading6',
|
2018-05-20 06:33:07 +08:00
|
|
|
li: 'list-item',
|
|
|
|
ol: 'numbered-list',
|
2018-05-23 21:12:08 +08:00
|
|
|
pre: 'code',
|
2018-05-20 06:33:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const MARK_TAGS = {
|
|
|
|
strong: 'bold',
|
|
|
|
b: 'bold', // deprecated
|
|
|
|
em: 'italic',
|
|
|
|
i: 'italic', // deprecated
|
2018-05-24 03:12:13 +08:00
|
|
|
code: 'code',
|
2018-05-20 07:17:11 +08:00
|
|
|
u: 'underlined',
|
|
|
|
del: 'deleted',
|
|
|
|
strike: 'deleted', // deprecated
|
|
|
|
s: 'deleted', // deprecated
|
2018-05-20 06:33:07 +08:00
|
|
|
};
|
2018-05-14 10:02:12 +08:00
|
|
|
|
2017-07-13 01:03:13 +08:00
|
|
|
function onSendMessageFailed(err, room) {
|
|
|
|
// XXX: temporary logging to try to diagnose
|
|
|
|
// https://github.com/vector-im/riot-web/issues/3148
|
|
|
|
console.log('MessageComposer got send failure: ' + err.name + '('+err+')');
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'message_send_failed',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-24 19:25:41 +08:00
|
|
|
/*
|
|
|
|
* The textInput part of the MessageComposer
|
|
|
|
*/
|
2016-05-28 14:28:22 +08:00
|
|
|
export default class MessageComposerInput extends React.Component {
|
2016-12-01 01:16:33 +08:00
|
|
|
static propTypes = {
|
|
|
|
// a callback which is called when the height of the composer is
|
|
|
|
// changed due to a change in content.
|
2017-12-26 09:03:18 +08:00
|
|
|
onResize: PropTypes.func,
|
2016-12-01 01:16:33 +08:00
|
|
|
|
|
|
|
// js-sdk Room object
|
2017-12-26 09:03:18 +08:00
|
|
|
room: PropTypes.object.isRequired,
|
2016-12-01 01:16:33 +08:00
|
|
|
|
2018-05-14 05:43:20 +08:00
|
|
|
onFilesPasted: PropTypes.func,
|
|
|
|
|
2017-12-26 09:03:18 +08:00
|
|
|
onInputStateChanged: PropTypes.func,
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
|
|
|
|
2016-07-08 15:24:28 +08:00
|
|
|
client: MatrixClient;
|
2016-09-13 18:11:52 +08:00
|
|
|
autocomplete: Autocomplete;
|
2017-03-10 23:04:31 +08:00
|
|
|
historyManager: ComposerHistoryManager;
|
2016-07-08 15:24:28 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
const isRichTextEnabled = SettingsStore.getValue('MessageComposerInput.isRichTextEnabled');
|
2016-06-15 02:43:34 +08:00
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
Analytics.setRichtextMode(isRichTextEnabled);
|
2017-08-10 02:00:38 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
this.state = {
|
2016-09-13 18:11:52 +08:00
|
|
|
// whether we're in rich text or markdown mode
|
2018-05-20 23:30:39 +08:00
|
|
|
isRichTextEnabled,
|
2016-09-13 18:11:52 +08:00
|
|
|
|
|
|
|
// the currently displayed editor state (note: this is always what is modified on input)
|
2017-07-05 18:49:34 +08:00
|
|
|
editorState: this.createEditorState(
|
2018-05-20 23:30:39 +08:00
|
|
|
isRichTextEnabled,
|
2018-05-13 03:04:58 +08:00
|
|
|
MessageComposerStore.getEditorState(this.props.room.roomId),
|
2017-07-05 18:49:34 +08:00
|
|
|
),
|
2016-09-13 18:11:52 +08:00
|
|
|
|
|
|
|
// the original editor state, before we started tabbing through completions
|
|
|
|
originalEditorState: null,
|
2017-06-30 00:02:19 +08:00
|
|
|
|
|
|
|
// the virtual state "above" the history stack, the message currently being composed that
|
|
|
|
// we want to persist whilst browsing history
|
|
|
|
currentlyComposedEditorState: null,
|
2017-07-06 01:14:22 +08:00
|
|
|
|
|
|
|
// whether there were any completions
|
|
|
|
someCompletions: null,
|
2016-05-27 12:45:55 +08:00
|
|
|
};
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2016-06-12 02:41:27 +08:00
|
|
|
this.client = MatrixClientPeg.get();
|
2018-05-13 03:04:58 +08:00
|
|
|
|
|
|
|
this.plainWithMdPills = new PlainWithPillsSerializer({ pillFormat: 'md' });
|
|
|
|
this.plainWithIdPills = new PlainWithPillsSerializer({ pillFormat: 'id' });
|
|
|
|
this.plainWithPlainPills = new PlainWithPillsSerializer({ pillFormat: 'plain' });
|
2018-05-20 10:17:51 +08:00
|
|
|
|
|
|
|
this.md = new Md({
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
serialize: (obj, children) => {
|
2018-05-23 09:15:34 +08:00
|
|
|
if (obj.object === 'inline') {
|
2018-05-20 21:33:14 +08:00
|
|
|
switch (obj.type) {
|
|
|
|
case 'pill':
|
|
|
|
return `[${ obj.data.get('completion') }](${ obj.data.get('href') })`;
|
|
|
|
case 'emoji':
|
|
|
|
return obj.data.get('emojiUnicode');
|
|
|
|
}
|
2018-05-20 10:17:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
this.html = new Html({
|
2018-05-20 03:28:38 +08:00
|
|
|
rules: [
|
|
|
|
{
|
2018-05-20 06:33:07 +08:00
|
|
|
deserialize: (el, next) => {
|
|
|
|
const tag = el.tagName.toLowerCase();
|
|
|
|
let type = BLOCK_TAGS[tag];
|
|
|
|
if (type) {
|
|
|
|
return {
|
|
|
|
object: 'block',
|
|
|
|
type: type,
|
|
|
|
nodes: next(el.childNodes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type = MARK_TAGS[tag];
|
|
|
|
if (type) {
|
|
|
|
return {
|
|
|
|
object: 'mark',
|
|
|
|
type: type,
|
|
|
|
nodes: next(el.childNodes),
|
|
|
|
}
|
|
|
|
}
|
2018-05-20 07:49:29 +08:00
|
|
|
// special case links
|
|
|
|
if (tag === 'a') {
|
|
|
|
const href = el.getAttribute('href');
|
2018-05-20 09:53:32 +08:00
|
|
|
let m;
|
|
|
|
if (href) {
|
|
|
|
m = href.match(MATRIXTO_URL_PATTERN);
|
|
|
|
}
|
2018-05-20 07:49:29 +08:00
|
|
|
if (m) {
|
|
|
|
return {
|
|
|
|
object: 'inline',
|
|
|
|
type: 'pill',
|
2018-05-20 09:53:32 +08:00
|
|
|
data: {
|
2018-05-20 07:49:29 +08:00
|
|
|
href,
|
|
|
|
completion: el.innerText,
|
|
|
|
completionId: m[1],
|
|
|
|
},
|
|
|
|
isVoid: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return {
|
|
|
|
object: 'inline',
|
|
|
|
type: 'link',
|
|
|
|
data: { href },
|
|
|
|
nodes: next(el.childNodes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-20 06:33:07 +08:00
|
|
|
},
|
2018-05-20 03:28:38 +08:00
|
|
|
serialize: (obj, children) => {
|
2018-05-20 09:53:32 +08:00
|
|
|
if (obj.object === 'block') {
|
2018-05-20 03:28:38 +08:00
|
|
|
return this.renderNode({
|
|
|
|
node: obj,
|
2018-05-20 03:38:07 +08:00
|
|
|
children: children,
|
2018-05-20 03:28:38 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
else if (obj.object === 'mark') {
|
|
|
|
return this.renderMark({
|
|
|
|
mark: obj,
|
2018-05-20 03:38:07 +08:00
|
|
|
children: children,
|
2018-05-20 03:28:38 +08:00
|
|
|
});
|
|
|
|
}
|
2018-05-20 09:53:32 +08:00
|
|
|
else if (obj.object === 'inline') {
|
|
|
|
// special case links, pills and emoji otherwise we
|
|
|
|
// end up with React components getting rendered out(!)
|
|
|
|
switch (obj.type) {
|
|
|
|
case 'pill':
|
|
|
|
return <a href={ obj.data.get('href') }>{ obj.data.get('completion') }</a>;
|
|
|
|
case 'link':
|
|
|
|
return <a href={ obj.data.get('href') }>{ children }</a>;
|
|
|
|
case 'emoji':
|
|
|
|
// XXX: apparently you can't return plain strings from serializer rules
|
|
|
|
// until https://github.com/ianstormtaylor/slate/pull/1854 is merged.
|
|
|
|
// So instead we temporarily wrap emoji from RTE in an arbitrary tag
|
|
|
|
// (<b/>). <span/> would be nicer, but in practice it causes CSS issues.
|
|
|
|
return <b>{ obj.data.get('emojiUnicode') }</b>;
|
|
|
|
}
|
|
|
|
return this.renderNode({
|
|
|
|
node: obj,
|
|
|
|
children: children,
|
|
|
|
});
|
|
|
|
}
|
2018-05-20 03:28:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
2018-05-13 07:40:54 +08:00
|
|
|
|
2018-05-13 10:16:55 +08:00
|
|
|
this.suppressAutoComplete = false;
|
2018-05-13 07:40:54 +08:00
|
|
|
this.direction = '';
|
2016-06-11 18:22:08 +08:00
|
|
|
}
|
|
|
|
|
2016-09-13 18:11:52 +08:00
|
|
|
/*
|
2018-04-23 08:13:18 +08:00
|
|
|
* "Does the right thing" to create an Editor value, based on:
|
2016-06-11 18:22:08 +08:00
|
|
|
* - whether we've got rich text mode enabled
|
|
|
|
* - contentState was passed in
|
|
|
|
*/
|
2018-05-17 09:13:17 +08:00
|
|
|
createEditorState(richText: boolean, editorState: ?Value): Value {
|
|
|
|
if (editorState instanceof Value) {
|
|
|
|
return editorState;
|
2018-05-06 07:18:11 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-05-06 08:18:26 +08:00
|
|
|
// ...or create a new one.
|
2018-05-20 08:07:25 +08:00
|
|
|
return Plain.deserialize('', { defaultBlock: DEFAULT_NODE });
|
2018-05-06 07:18:11 +08:00
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
componentDidMount() {
|
2016-03-24 19:25:41 +08:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2017-03-10 23:04:31 +08:00
|
|
|
this.historyManager = new ComposerHistoryManager(this.props.room.roomId);
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
componentWillUnmount() {
|
2016-03-24 19:25:41 +08:00
|
|
|
dis.unregister(this.dispatcherRef);
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2017-02-10 04:03:06 +08:00
|
|
|
onAction = (payload) => {
|
|
|
|
const editor = this.refs.editor;
|
2018-05-06 07:18:11 +08:00
|
|
|
let editorState = this.state.editorState;
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2016-03-24 19:25:41 +08:00
|
|
|
switch (payload.action) {
|
2018-02-20 07:41:07 +08:00
|
|
|
case 'reply_to_event':
|
2016-03-24 19:25:41 +08:00
|
|
|
case 'focus_composer':
|
2016-05-27 12:45:55 +08:00
|
|
|
editor.focus();
|
2016-03-24 19:25:41 +08:00
|
|
|
break;
|
2018-05-14 05:41:39 +08:00
|
|
|
case 'insert_mention':
|
|
|
|
{
|
|
|
|
// Pretend that we've autocompleted this user because keeping two code
|
|
|
|
// paths for inserting a user pill is not fun
|
|
|
|
const selection = this.getSelectionRange(this.state.editorState);
|
|
|
|
const member = this.props.room.getMember(payload.user_id);
|
|
|
|
const completion = member ?
|
|
|
|
member.rawDisplayName.replace(' (IRC)', '') : payload.user_id;
|
|
|
|
this.setDisplayedCompletion({
|
|
|
|
completion,
|
|
|
|
completionId: payload.user_id,
|
|
|
|
selection,
|
|
|
|
href: makeUserPermalink(payload.user_id),
|
|
|
|
suffix: (selection.beginning && selection.start === 0) ? ': ' : ' ',
|
|
|
|
});
|
|
|
|
}
|
2016-12-01 01:16:33 +08:00
|
|
|
break;
|
2018-05-21 10:48:59 +08:00
|
|
|
case 'quote': {
|
|
|
|
const html = HtmlUtils.bodyToHtml(payload.event.getContent(), null, {
|
|
|
|
returnString: true,
|
|
|
|
emojiOne: false,
|
|
|
|
});
|
|
|
|
const fragment = this.html.deserialize(html);
|
|
|
|
// FIXME: do we want to put in a permalink to the original quote here?
|
|
|
|
// If so, what should be the format, and how do we differentiate it from replies?
|
|
|
|
|
|
|
|
const quote = Block.create('block-quote');
|
|
|
|
if (this.state.isRichTextEnabled) {
|
|
|
|
let change = editorState.change();
|
|
|
|
if (editorState.anchorText.text === '' && editorState.anchorBlock.nodes.size === 1) {
|
|
|
|
// replace the current block rather than split the block
|
|
|
|
change = change.replaceNodeByKey(editorState.anchorBlock.key, quote);
|
2017-12-13 07:29:43 +08:00
|
|
|
}
|
2018-05-21 10:48:59 +08:00
|
|
|
else {
|
|
|
|
// insert it into the middle of the block (splitting it)
|
|
|
|
change = change.insertBlock(quote);
|
2017-12-13 07:29:43 +08:00
|
|
|
}
|
2018-05-21 10:48:59 +08:00
|
|
|
change = change.insertFragmentByKey(quote.key, 0, fragment.document)
|
|
|
|
.focus();
|
|
|
|
this.onChange(change);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let fragmentChange = fragment.change();
|
|
|
|
fragmentChange.moveToRangeOf(fragment.document)
|
|
|
|
.wrapBlock(quote);
|
2018-05-23 09:09:30 +08:00
|
|
|
//.setBlocks('block-quote');
|
2018-05-21 10:48:59 +08:00
|
|
|
|
|
|
|
// FIXME: handle pills and use commonmark rather than md-serialize
|
|
|
|
const md = this.md.serialize(fragmentChange.value);
|
|
|
|
let change = editorState.change()
|
|
|
|
.insertText(md + '\n\n')
|
|
|
|
.focus();
|
|
|
|
this.onChange(change);
|
2017-12-13 07:29:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2016-03-24 19:25:41 +08:00
|
|
|
}
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
onTypingActivity() {
|
2016-03-24 19:25:41 +08:00
|
|
|
this.isTyping = true;
|
|
|
|
if (!this.userTypingTimer) {
|
|
|
|
this.sendTyping(true);
|
|
|
|
}
|
|
|
|
this.startUserTypingTimer();
|
|
|
|
this.startServerTypingTimer();
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
onFinishedTyping() {
|
2016-03-24 19:25:41 +08:00
|
|
|
this.isTyping = false;
|
|
|
|
this.sendTyping(false);
|
|
|
|
this.stopUserTypingTimer();
|
|
|
|
this.stopServerTypingTimer();
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
startUserTypingTimer() {
|
2016-03-24 19:25:41 +08:00
|
|
|
this.stopUserTypingTimer();
|
2017-02-10 04:03:06 +08:00
|
|
|
const self = this;
|
|
|
|
this.userTypingTimer = setTimeout(function() {
|
2016-03-24 19:25:41 +08:00
|
|
|
self.isTyping = false;
|
|
|
|
self.sendTyping(self.isTyping);
|
|
|
|
self.userTypingTimer = null;
|
|
|
|
}, TYPING_USER_TIMEOUT);
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
stopUserTypingTimer() {
|
2016-03-24 19:25:41 +08:00
|
|
|
if (this.userTypingTimer) {
|
|
|
|
clearTimeout(this.userTypingTimer);
|
|
|
|
this.userTypingTimer = null;
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
startServerTypingTimer() {
|
2016-03-24 19:25:41 +08:00
|
|
|
if (!this.serverTypingTimer) {
|
2017-02-10 04:03:06 +08:00
|
|
|
const self = this;
|
|
|
|
this.serverTypingTimer = setTimeout(function() {
|
2016-03-24 19:25:41 +08:00
|
|
|
if (self.isTyping) {
|
|
|
|
self.sendTyping(self.isTyping);
|
|
|
|
self.startServerTypingTimer();
|
|
|
|
}
|
|
|
|
}, TYPING_SERVER_TIMEOUT / 2);
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
stopServerTypingTimer() {
|
2016-03-24 19:25:41 +08:00
|
|
|
if (this.serverTypingTimer) {
|
2018-04-23 08:13:18 +08:00
|
|
|
clearTimeout(this.serverTypingTimer);
|
2016-03-24 19:25:41 +08:00
|
|
|
this.serverTypingTimer = null;
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
sendTyping(isTyping) {
|
2017-10-29 15:43:52 +08:00
|
|
|
if (SettingsStore.getValue('dontSendTypingNotifications')) return;
|
2016-03-24 19:25:41 +08:00
|
|
|
MatrixClientPeg.get().sendTyping(
|
|
|
|
this.props.room.roomId,
|
2017-02-10 04:03:06 +08:00
|
|
|
this.isTyping, TYPING_SERVER_TIMEOUT,
|
2016-03-24 19:25:41 +08:00
|
|
|
).done();
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
2016-03-24 19:25:41 +08:00
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
refreshTyping() {
|
2016-03-24 19:25:41 +08:00
|
|
|
if (this.typingTimeout) {
|
|
|
|
clearTimeout(this.typingTimeout);
|
|
|
|
this.typingTimeout = null;
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
}
|
|
|
|
|
2018-05-15 08:16:06 +08:00
|
|
|
onChange = (change: Change, originalEditorState: value) => {
|
2018-05-13 07:40:54 +08:00
|
|
|
|
|
|
|
let editorState = change.value;
|
|
|
|
|
|
|
|
if (this.direction !== '') {
|
|
|
|
const focusedNode = editorState.focusInline || editorState.focusText;
|
|
|
|
if (focusedNode.isVoid) {
|
2018-05-14 10:02:12 +08:00
|
|
|
if (editorState.isCollapsed) {
|
|
|
|
change = change[`collapseToEndOf${ this.direction }Text`]();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const block = this.direction === 'Previous' ? editorState.previousText : editorState.nextText;
|
|
|
|
if (block) {
|
|
|
|
change = change.moveFocusToEndOf(block)
|
|
|
|
}
|
|
|
|
}
|
2018-05-13 07:40:54 +08:00
|
|
|
editorState = change.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-14 10:02:12 +08:00
|
|
|
if (!editorState.document.isEmpty) {
|
2018-05-14 06:34:00 +08:00
|
|
|
this.onTypingActivity();
|
|
|
|
} else {
|
|
|
|
this.onFinishedTyping();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
// XXX: what was this ever doing?
|
|
|
|
if (!state.hasOwnProperty('originalEditorState')) {
|
|
|
|
state.originalEditorState = null;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2018-05-23 07:52:00 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-14 10:02:12 +08:00
|
|
|
// emojioneify any emoji
|
|
|
|
|
|
|
|
// XXX: is getTextsAsArray a private API?
|
|
|
|
editorState.document.getTextsAsArray().forEach(node => {
|
|
|
|
if (node.text !== '' && HtmlUtils.containsEmoji(node.text)) {
|
|
|
|
let match;
|
|
|
|
while ((match = EMOJI_REGEX.exec(node.text)) !== null) {
|
|
|
|
const range = Range.create({
|
|
|
|
anchorKey: node.key,
|
|
|
|
anchorOffset: match.index,
|
|
|
|
focusKey: node.key,
|
|
|
|
focusOffset: match.index + match[0].length,
|
|
|
|
});
|
|
|
|
const inline = Inline.create({
|
|
|
|
type: 'emoji',
|
|
|
|
data: { emojiUnicode: match[0] },
|
|
|
|
isVoid: true,
|
|
|
|
});
|
|
|
|
change = change.insertInlineAtRange(range, inline);
|
|
|
|
editorState = change.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-09-13 18:11:52 +08:00
|
|
|
|
2018-05-23 07:41:46 +08:00
|
|
|
// work around weird bug where inserting emoji via the macOS
|
|
|
|
// emoji picker can leave the selection stuck in the emoji's
|
|
|
|
// child text. This seems to happen due to selection getting
|
|
|
|
// moved in the normalisation phase after calculating these changes
|
2018-05-23 09:09:30 +08:00
|
|
|
if (editorState.anchorKey &&
|
|
|
|
editorState.document.getParent(editorState.anchorKey).type === 'emoji')
|
|
|
|
{
|
2018-05-23 07:41:46 +08:00
|
|
|
change = change.collapseToStartOfNextText();
|
|
|
|
editorState = change.value;
|
|
|
|
}
|
|
|
|
|
2018-05-17 09:13:17 +08:00
|
|
|
/*
|
2017-07-13 20:28:51 +08:00
|
|
|
const currentBlock = editorState.getSelection().getStartKey();
|
|
|
|
const currentSelection = editorState.getSelection();
|
|
|
|
const currentStartOffset = editorState.getSelection().getStartOffset();
|
|
|
|
|
|
|
|
const block = editorState.getCurrentContent().getBlockForKey(currentBlock);
|
|
|
|
const text = block.getText();
|
|
|
|
|
|
|
|
const entityBeforeCurrentOffset = block.getEntityAt(currentStartOffset - 1);
|
|
|
|
const entityAtCurrentOffset = block.getEntityAt(currentStartOffset);
|
|
|
|
|
|
|
|
// If the cursor is on the boundary between an entity and a non-entity and the
|
|
|
|
// text before the cursor has whitespace at the end, set the entity state of the
|
|
|
|
// character before the cursor (the whitespace) to null. This allows the user to
|
|
|
|
// stop editing the link.
|
|
|
|
if (entityBeforeCurrentOffset && !entityAtCurrentOffset &&
|
|
|
|
/\s$/.test(text.slice(0, currentStartOffset))) {
|
|
|
|
editorState = RichUtils.toggleLink(
|
|
|
|
editorState,
|
|
|
|
currentSelection.merge({
|
|
|
|
anchorOffset: currentStartOffset - 1,
|
|
|
|
focusOffset: currentStartOffset,
|
|
|
|
}),
|
|
|
|
null,
|
|
|
|
);
|
|
|
|
// Reset selection
|
|
|
|
editorState = EditorState.forceSelection(editorState, currentSelection);
|
|
|
|
}
|
2018-05-14 06:34:00 +08:00
|
|
|
*/
|
|
|
|
|
2018-05-21 10:48:59 +08:00
|
|
|
if (this.props.onInputStateChanged && editorState.blocks.size > 0) {
|
2018-05-21 05:39:40 +08:00
|
|
|
let blockType = editorState.blocks.first().type;
|
2018-05-21 06:34:06 +08:00
|
|
|
// console.log("onInputStateChanged; current block type is " + blockType + " and marks are " + editorState.activeMarks);
|
2018-05-21 05:39:40 +08:00
|
|
|
|
|
|
|
if (blockType === 'list-item') {
|
|
|
|
const parent = editorState.document.getParent(editorState.blocks.first().key);
|
|
|
|
if (parent.type === 'numbered-list') {
|
|
|
|
blockType = 'numbered-list';
|
|
|
|
}
|
|
|
|
else if (parent.type === 'bulleted-list') {
|
|
|
|
blockType = 'bulleted-list';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const inputState = {
|
|
|
|
marks: editorState.activeMarks,
|
|
|
|
isRichTextEnabled: this.state.isRichTextEnabled,
|
|
|
|
blockType
|
|
|
|
};
|
|
|
|
this.props.onInputStateChanged(inputState);
|
|
|
|
}
|
|
|
|
|
2018-05-14 06:34:00 +08:00
|
|
|
// Record the editor state for this room so that it can be retrieved after
|
|
|
|
// switching to another room and back
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'editor_state',
|
|
|
|
room_id: this.props.room.roomId,
|
|
|
|
editor_state: editorState,
|
|
|
|
});
|
|
|
|
|
2016-12-30 22:12:36 +08:00
|
|
|
/* Since a modification was made, set originalEditorState to null, since newState is now our original */
|
2016-09-13 18:11:52 +08:00
|
|
|
this.setState({
|
2018-05-13 07:40:54 +08:00
|
|
|
editorState,
|
2018-05-15 08:16:06 +08:00
|
|
|
originalEditorState: originalEditorState || null
|
2016-12-30 22:12:36 +08:00
|
|
|
});
|
|
|
|
};
|
2016-06-10 02:23:09 +08:00
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
mdToRichEditorState(editorState: Value): Value {
|
|
|
|
// for consistency when roundtripping, we could use slate-md-serializer rather than
|
|
|
|
// commonmark, but then we would lose pills as the MD deserialiser doesn't know about
|
|
|
|
// them and doesn't have any extensibility hooks.
|
|
|
|
//
|
|
|
|
// The code looks like this:
|
|
|
|
//
|
|
|
|
// const markdown = this.plainWithMdPills.serialize(editorState);
|
|
|
|
//
|
|
|
|
// // weirdly, the Md serializer can't deserialize '' to a valid Value...
|
|
|
|
// if (markdown !== '') {
|
|
|
|
// editorState = this.md.deserialize(markdown);
|
|
|
|
// }
|
|
|
|
// else {
|
|
|
|
// editorState = Plain.deserialize('', { defaultBlock: DEFAULT_NODE });
|
|
|
|
// }
|
|
|
|
|
|
|
|
// so, instead, we use commonmark proper (which is arguably more logical to the user
|
|
|
|
// anyway, as they'll expect the RTE view to match what they'll see in the timeline,
|
|
|
|
// but the HTML->MD conversion is anyone's guess).
|
|
|
|
|
|
|
|
const textWithMdPills = this.plainWithMdPills.serialize(editorState);
|
|
|
|
const markdown = new Markdown(textWithMdPills);
|
|
|
|
// HTML deserialize has custom rules to turn matrix.to links into pill objects.
|
|
|
|
return this.html.deserialize(markdown.toHTML());
|
|
|
|
}
|
2017-03-10 23:04:31 +08:00
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
richToMdEditorState(editorState: Value): Value {
|
|
|
|
// FIXME: this conversion loses pills (turning them into pure MD links).
|
|
|
|
// We need to add a pill-aware deserialize method
|
|
|
|
// to PlainWithPillsSerializer which recognises pills in raw MD and turns them into pills.
|
|
|
|
return Plain.deserialize(
|
|
|
|
// FIXME: we compile the MD out of the RTE state using slate-md-serializer
|
|
|
|
// which doesn't roundtrip symmetrically with commonmark, which we use for
|
|
|
|
// compiling MD out of the MD editor state above.
|
|
|
|
this.md.serialize(editorState),
|
|
|
|
{ defaultBlock: DEFAULT_NODE }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
enableRichtext(enabled: boolean) {
|
|
|
|
if (enabled === this.state.isRichTextEnabled) return;
|
2018-04-23 08:13:18 +08:00
|
|
|
|
2018-05-17 09:13:17 +08:00
|
|
|
let editorState = null;
|
2016-06-12 05:51:18 +08:00
|
|
|
if (enabled) {
|
2018-05-20 23:30:39 +08:00
|
|
|
editorState = this.mdToRichEditorState(this.state.editorState);
|
2016-06-12 00:54:09 +08:00
|
|
|
} else {
|
2018-05-20 23:30:39 +08:00
|
|
|
editorState = this.richToMdEditorState(this.state.editorState);
|
2016-06-12 00:54:09 +08:00
|
|
|
}
|
2016-06-12 05:13:57 +08:00
|
|
|
|
2017-08-10 01:39:06 +08:00
|
|
|
Analytics.setRichtextMode(enabled);
|
|
|
|
|
2016-12-30 22:12:36 +08:00
|
|
|
this.setState({
|
2018-05-17 09:13:17 +08:00
|
|
|
editorState: this.createEditorState(enabled, editorState),
|
2018-05-20 23:30:39 +08:00
|
|
|
isRichTextEnabled: enabled,
|
2018-05-20 09:53:32 +08:00
|
|
|
}, ()=>{
|
|
|
|
this.refs.editor.focus();
|
2016-09-13 19:16:20 +08:00
|
|
|
});
|
2018-05-20 07:17:11 +08:00
|
|
|
|
2017-11-04 13:19:45 +08:00
|
|
|
SettingsStore.setValue("MessageComposerInput.isRichTextEnabled", null, SettingLevel.ACCOUNT, enabled);
|
2018-05-17 09:13:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the current selection has a mark with `type` in it.
|
|
|
|
*
|
|
|
|
* @param {String} type
|
|
|
|
* @return {Boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
hasMark = type => {
|
|
|
|
const { editorState } = this.state
|
|
|
|
return editorState.activeMarks.some(mark => mark.type == type)
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the any of the currently selected blocks are of `type`.
|
|
|
|
*
|
|
|
|
* @param {String} type
|
|
|
|
* @return {Boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
hasBlock = type => {
|
|
|
|
const { editorState } = this.state
|
|
|
|
return editorState.blocks.some(node => node.type == type)
|
|
|
|
};
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2018-05-07 05:08:36 +08:00
|
|
|
onKeyDown = (ev: Event, change: Change, editor: Editor) => {
|
2018-05-13 07:40:54 +08:00
|
|
|
|
2018-05-13 10:16:55 +08:00
|
|
|
this.suppressAutoComplete = false;
|
|
|
|
|
2018-05-13 07:40:54 +08:00
|
|
|
// skip void nodes - see
|
|
|
|
// https://github.com/ianstormtaylor/slate/issues/762#issuecomment-304855095
|
|
|
|
if (ev.keyCode === KeyCode.LEFT) {
|
|
|
|
this.direction = 'Previous';
|
|
|
|
}
|
|
|
|
else if (ev.keyCode === KeyCode.RIGHT) {
|
|
|
|
this.direction = 'Next';
|
|
|
|
} else {
|
|
|
|
this.direction = '';
|
|
|
|
}
|
|
|
|
|
2018-05-17 09:13:17 +08:00
|
|
|
if (isOnlyCtrlOrCmdKeyEvent(ev)) {
|
|
|
|
const ctrlCmdCommand = {
|
|
|
|
// C-m => Toggles between rich text and markdown modes
|
|
|
|
[KeyCode.KEY_M]: 'toggle-mode',
|
|
|
|
[KeyCode.KEY_B]: 'bold',
|
|
|
|
[KeyCode.KEY_I]: 'italic',
|
2018-05-20 07:17:11 +08:00
|
|
|
[KeyCode.KEY_U]: 'underlined',
|
2018-05-23 21:12:08 +08:00
|
|
|
[KeyCode.KEY_J]: 'inline-code',
|
2018-05-17 09:13:17 +08:00
|
|
|
}[ev.keyCode];
|
|
|
|
|
|
|
|
if (ctrlCmdCommand) {
|
|
|
|
return this.handleKeyCommand(ctrlCmdCommand);
|
|
|
|
}
|
2018-05-26 09:11:20 +08:00
|
|
|
return;
|
2018-05-17 09:13:17 +08:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
switch (ev.keyCode) {
|
|
|
|
case KeyCode.ENTER:
|
2018-05-20 04:36:22 +08:00
|
|
|
return this.handleReturn(ev, change);
|
2018-05-20 03:38:07 +08:00
|
|
|
case KeyCode.BACKSPACE:
|
2018-05-20 04:36:22 +08:00
|
|
|
return this.onBackspace(ev, change);
|
2018-05-08 08:54:06 +08:00
|
|
|
case KeyCode.UP:
|
|
|
|
return this.onVerticalArrow(ev, true);
|
|
|
|
case KeyCode.DOWN:
|
|
|
|
return this.onVerticalArrow(ev, false);
|
2018-05-12 08:10:38 +08:00
|
|
|
case KeyCode.TAB:
|
|
|
|
return this.onTab(ev);
|
|
|
|
case KeyCode.ESCAPE:
|
|
|
|
return this.onEscape(ev);
|
2018-05-08 08:54:06 +08:00
|
|
|
default:
|
|
|
|
// don't intercept it
|
|
|
|
return;
|
2018-05-07 05:08:36 +08:00
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
};
|
2018-05-07 05:08:36 +08:00
|
|
|
|
2018-05-20 04:36:22 +08:00
|
|
|
onBackspace = (ev: Event, change: Change): Change => {
|
2018-05-26 09:11:20 +08:00
|
|
|
if (ev.ctrlKey || ev.metaKey || ev.altKey || ev.ctrlKey || ev.shiftKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
if (this.state.isRichTextEnabled) {
|
2018-05-20 03:38:07 +08:00
|
|
|
// let backspace exit lists
|
|
|
|
const isList = this.hasBlock('list-item');
|
2018-05-20 04:14:39 +08:00
|
|
|
const { editorState } = this.state;
|
2018-05-20 04:36:22 +08:00
|
|
|
|
2018-05-20 04:14:39 +08:00
|
|
|
if (isList && editorState.anchorOffset == 0) {
|
2018-05-20 03:38:07 +08:00
|
|
|
change
|
|
|
|
.setBlocks(DEFAULT_NODE)
|
|
|
|
.unwrapBlock('bulleted-list')
|
|
|
|
.unwrapBlock('numbered-list');
|
2018-05-20 04:36:22 +08:00
|
|
|
return change;
|
|
|
|
}
|
2018-05-21 10:48:59 +08:00
|
|
|
else if (editorState.anchorOffset == 0 && editorState.isCollapsed) {
|
|
|
|
// turn blocks back into paragraphs
|
|
|
|
if ((this.hasBlock('block-quote') ||
|
|
|
|
this.hasBlock('heading1') ||
|
|
|
|
this.hasBlock('heading2') ||
|
|
|
|
this.hasBlock('heading3') ||
|
|
|
|
this.hasBlock('heading4') ||
|
|
|
|
this.hasBlock('heading5') ||
|
|
|
|
this.hasBlock('heading6') ||
|
2018-05-23 21:12:08 +08:00
|
|
|
this.hasBlock('code')))
|
2018-05-21 10:48:59 +08:00
|
|
|
{
|
|
|
|
return change.setBlocks(DEFAULT_NODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove paragraphs entirely if they're nested
|
|
|
|
const parent = editorState.document.getParent(editorState.anchorBlock.key);
|
|
|
|
if (editorState.anchorOffset == 0 &&
|
|
|
|
this.hasBlock('paragraph') &&
|
|
|
|
parent.nodes.size == 1 &&
|
|
|
|
parent.object !== 'document')
|
|
|
|
{
|
|
|
|
return change.replaceNodeByKey(editorState.anchorBlock.key, editorState.anchorText)
|
|
|
|
.collapseToEndOf(parent)
|
|
|
|
.focus();
|
|
|
|
}
|
2018-05-20 03:38:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2016-12-01 01:16:33 +08:00
|
|
|
handleKeyCommand = (command: string): boolean => {
|
2016-07-08 15:24:28 +08:00
|
|
|
if (command === 'toggle-mode') {
|
2018-05-20 23:30:39 +08:00
|
|
|
this.enableRichtext(!this.state.isRichTextEnabled);
|
2016-06-11 18:22:08 +08:00
|
|
|
return true;
|
|
|
|
}
|
2018-05-17 07:01:23 +08:00
|
|
|
|
|
|
|
let newState: ?Value = null;
|
2016-06-12 00:54:09 +08:00
|
|
|
|
|
|
|
// Draft handles rich text mode commands by default but we need to do it ourselves for Markdown.
|
2018-05-20 23:30:39 +08:00
|
|
|
if (this.state.isRichTextEnabled) {
|
2018-05-17 09:13:17 +08:00
|
|
|
const type = command;
|
|
|
|
const { editorState } = this.state;
|
|
|
|
const change = editorState.change();
|
|
|
|
const { document } = editorState;
|
|
|
|
switch (type) {
|
|
|
|
// list-blocks:
|
|
|
|
case 'bulleted-list':
|
|
|
|
case 'numbered-list': {
|
|
|
|
// Handle the extra wrapping required for list buttons.
|
|
|
|
const isList = this.hasBlock('list-item');
|
|
|
|
const isType = editorState.blocks.some(block => {
|
|
|
|
return !!document.getClosest(block.key, parent => parent.type == type);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isList && isType) {
|
|
|
|
change
|
|
|
|
.setBlocks(DEFAULT_NODE)
|
|
|
|
.unwrapBlock('bulleted-list')
|
|
|
|
.unwrapBlock('numbered-list');
|
|
|
|
} else if (isList) {
|
|
|
|
change
|
|
|
|
.unwrapBlock(
|
|
|
|
type == 'bulleted-list' ? 'numbered-list' : 'bulleted-list'
|
|
|
|
)
|
|
|
|
.wrapBlock(type);
|
|
|
|
} else {
|
|
|
|
change.setBlocks('list-item').wrapBlock(type);
|
|
|
|
}
|
2017-07-19 00:52:04 +08:00
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
// simple blocks
|
|
|
|
case 'paragraph':
|
|
|
|
case 'block-quote':
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading1':
|
|
|
|
case 'heading2':
|
|
|
|
case 'heading3':
|
|
|
|
case 'heading4':
|
|
|
|
case 'heading5':
|
|
|
|
case 'heading6':
|
2018-05-17 09:13:17 +08:00
|
|
|
case 'list-item':
|
2018-05-23 21:12:08 +08:00
|
|
|
case 'code': {
|
2018-05-17 09:13:17 +08:00
|
|
|
const isActive = this.hasBlock(type);
|
|
|
|
const isList = this.hasBlock('list-item');
|
|
|
|
|
|
|
|
if (isList) {
|
|
|
|
change
|
|
|
|
.setBlocks(isActive ? DEFAULT_NODE : type)
|
|
|
|
.unwrapBlock('bulleted-list')
|
|
|
|
.unwrapBlock('numbered-list');
|
|
|
|
} else {
|
|
|
|
change.setBlocks(isActive ? DEFAULT_NODE : type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// marks:
|
|
|
|
case 'bold':
|
|
|
|
case 'italic':
|
2018-05-23 21:12:08 +08:00
|
|
|
case 'inline-code':
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'underlined':
|
|
|
|
case 'deleted': {
|
2018-05-24 03:12:13 +08:00
|
|
|
change.toggleMark(type === 'inline-code' ? 'code' : type);
|
2018-05-17 09:13:17 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
console.warn(`ignoring unrecognised RTE command ${type}`);
|
|
|
|
return false;
|
2016-09-08 01:22:14 +08:00
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
|
|
|
|
this.onChange(change);
|
|
|
|
|
|
|
|
return true;
|
2016-09-08 01:22:14 +08:00
|
|
|
} else {
|
2018-05-17 09:13:17 +08:00
|
|
|
/*
|
2017-07-19 22:00:25 +08:00
|
|
|
const contentState = this.state.editorState.getCurrentContent();
|
|
|
|
const multipleLinesSelected = RichText.hasMultiLineSelection(this.state.editorState);
|
|
|
|
|
|
|
|
const selectionState = this.state.editorState.getSelection();
|
|
|
|
const start = selectionState.getStartOffset();
|
|
|
|
const end = selectionState.getEndOffset();
|
|
|
|
|
|
|
|
// If multiple lines are selected or nothing is selected, insert a code block
|
|
|
|
// instead of applying inline code formatting. This is an attempt to mimic what
|
|
|
|
// happens in non-MD mode.
|
|
|
|
const treatInlineCodeAsBlock = multipleLinesSelected || start === end;
|
|
|
|
const textMdCodeBlock = (text) => `\`\`\`\n${text}\n\`\`\`\n`;
|
2017-02-10 04:03:06 +08:00
|
|
|
const modifyFn = {
|
|
|
|
'bold': (text) => `**${text}**`,
|
|
|
|
'italic': (text) => `*${text}*`,
|
2017-07-06 20:49:13 +08:00
|
|
|
'underline': (text) => `<u>${text}</u>`,
|
2017-06-24 01:19:06 +08:00
|
|
|
'strike': (text) => `<del>${text}</del>`,
|
2017-07-19 22:00:25 +08:00
|
|
|
// ("code" is triggered by ctrl+j by draft-js by default)
|
2018-05-24 03:12:13 +08:00
|
|
|
'code': (text) => treatInlineCodeAsBlock ? textMdCodeBlock(text) : `\`${text}\``,
|
2018-05-23 21:12:08 +08:00
|
|
|
'code': textMdCodeBlock,
|
2017-07-03 22:23:24 +08:00
|
|
|
'blockquote': (text) => text.split('\n').map((line) => `> ${line}\n`).join('') + '\n',
|
2017-03-07 06:45:28 +08:00
|
|
|
'unordered-list-item': (text) => text.split('\n').map((line) => `\n- ${line}`).join(''),
|
|
|
|
'ordered-list-item': (text) => text.split('\n').map((line, i) => `\n${i + 1}. ${line}`).join(''),
|
2016-06-12 00:54:09 +08:00
|
|
|
}[command];
|
|
|
|
|
2017-07-03 22:23:24 +08:00
|
|
|
const selectionAfterOffset = {
|
|
|
|
'bold': -2,
|
|
|
|
'italic': -1,
|
2017-07-06 20:49:13 +08:00
|
|
|
'underline': -4,
|
2017-07-03 22:23:24 +08:00
|
|
|
'strike': -6,
|
2018-05-24 03:12:13 +08:00
|
|
|
'code': treatInlineCodeAsBlock ? -5 : -1,
|
2018-05-23 21:12:08 +08:00
|
|
|
'code': -5,
|
2017-07-03 22:23:24 +08:00
|
|
|
'blockquote': -2,
|
|
|
|
}[command];
|
|
|
|
|
2018-05-17 07:01:23 +08:00
|
|
|
// Returns a function that collapses a selection to its end and moves it by offset
|
|
|
|
const collapseAndOffsetSelection = (selection, offset) => {
|
|
|
|
const key = selection.endKey();
|
|
|
|
return new Range({
|
2017-07-03 22:23:24 +08:00
|
|
|
anchorKey: key, anchorOffset: offset,
|
|
|
|
focusKey: key, focusOffset: offset,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-07-08 15:24:28 +08:00
|
|
|
if (modifyFn) {
|
2018-05-17 07:01:23 +08:00
|
|
|
|
2017-07-03 22:23:24 +08:00
|
|
|
const previousSelection = this.state.editorState.getSelection();
|
|
|
|
const newContentState = RichText.modifyText(contentState, previousSelection, modifyFn);
|
2016-06-12 00:54:09 +08:00
|
|
|
newState = EditorState.push(
|
|
|
|
this.state.editorState,
|
2017-07-03 22:23:24 +08:00
|
|
|
newContentState,
|
2017-02-10 04:03:06 +08:00
|
|
|
'insert-characters',
|
2016-06-12 00:54:09 +08:00
|
|
|
);
|
2017-07-03 22:23:24 +08:00
|
|
|
|
|
|
|
let newSelection = newContentState.getSelectionAfter();
|
|
|
|
// If the selection range is 0, move the cursor inside the formatted body
|
|
|
|
if (previousSelection.getStartOffset() === previousSelection.getEndOffset() &&
|
|
|
|
previousSelection.getStartKey() === previousSelection.getEndKey() &&
|
|
|
|
selectionAfterOffset !== undefined
|
|
|
|
) {
|
|
|
|
const selectedBlock = newContentState.getBlockForKey(previousSelection.getAnchorKey());
|
|
|
|
const blockLength = selectedBlock.getText().length;
|
|
|
|
const newOffset = blockLength + selectionAfterOffset;
|
|
|
|
newSelection = collapseAndOffsetSelection(newSelection, newOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
newState = EditorState.forceSelection(newState, newSelection);
|
2016-06-12 00:54:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newState != null) {
|
2016-12-30 22:12:36 +08:00
|
|
|
this.setState({editorState: newState});
|
2016-05-27 12:45:55 +08:00
|
|
|
return true;
|
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
*/
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
return false;
|
2017-12-10 20:50:41 +08:00
|
|
|
};
|
2018-05-20 05:05:31 +08:00
|
|
|
|
|
|
|
onPaste = (event: Event, change: Change, editor: Editor): Change => {
|
|
|
|
const transfer = getEventTransfer(event);
|
|
|
|
|
|
|
|
if (transfer.type === "files") {
|
|
|
|
return this.props.onFilesPasted(transfer.files);
|
|
|
|
}
|
2018-05-20 06:33:07 +08:00
|
|
|
else if (transfer.type === "html") {
|
2018-05-20 09:53:32 +08:00
|
|
|
// FIXME: https://github.com/ianstormtaylor/slate/issues/1497 means
|
|
|
|
// that we will silently discard nested blocks (e.g. nested lists) :(
|
2018-05-20 06:33:07 +08:00
|
|
|
const fragment = this.html.deserialize(transfer.html);
|
2018-05-20 23:30:39 +08:00
|
|
|
if (this.state.isRichTextEnabled) {
|
2018-05-20 06:33:07 +08:00
|
|
|
return change.insertFragment(fragment.document);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return change.insertText(this.md.serialize(fragment));
|
|
|
|
}
|
2018-05-20 05:05:31 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-20 04:36:22 +08:00
|
|
|
handleReturn = (ev, change) => {
|
2016-07-04 00:45:13 +08:00
|
|
|
if (ev.shiftKey) {
|
2018-05-20 04:36:22 +08:00
|
|
|
return change.insertText('\n');
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
|
|
|
|
if (this.state.editorState.blocks.some(
|
2018-05-23 21:12:08 +08:00
|
|
|
block => ['code', 'block-quote', 'list-item'].includes(block.type)
|
2018-05-17 09:13:17 +08:00
|
|
|
)) {
|
|
|
|
// allow the user to terminate blocks by hitting return rather than sending a msg
|
|
|
|
return;
|
2016-07-04 00:45:13 +08:00
|
|
|
}
|
2018-05-17 09:13:17 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
const editorState = this.state.editorState;
|
2016-09-24 01:50:25 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
let contentText;
|
2018-04-23 08:13:18 +08:00
|
|
|
let contentHTML;
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
// only look for commands if the first block contains simple unformatted text
|
|
|
|
// i.e. no pills or rich-text formatting.
|
|
|
|
let cmd, commandText;
|
|
|
|
const firstChild = editorState.document.nodes.get(0);
|
|
|
|
const firstGrandChild = firstChild && firstChild.nodes.get(0);
|
|
|
|
if (firstChild && firstGrandChild &&
|
|
|
|
firstChild.object === 'block' && firstGrandChild.object === 'text' &&
|
2018-05-13 10:29:56 +08:00
|
|
|
firstGrandChild.text[0] === '/')
|
2018-05-13 03:04:58 +08:00
|
|
|
{
|
|
|
|
commandText = this.plainWithIdPills.serialize(editorState);
|
|
|
|
cmd = SlashCommands.processInput(this.props.room.roomId, commandText);
|
|
|
|
}
|
2018-05-08 08:54:06 +08:00
|
|
|
|
2016-06-12 02:41:27 +08:00
|
|
|
if (cmd) {
|
|
|
|
if (!cmd.error) {
|
2018-05-20 23:30:39 +08:00
|
|
|
this.historyManager.save(editorState, this.state.isRichTextEnabled ? 'rich' : 'markdown');
|
2016-06-12 02:41:27 +08:00
|
|
|
this.setState({
|
2017-02-10 04:03:06 +08:00
|
|
|
editorState: this.createEditorState(),
|
2018-05-23 08:36:21 +08:00
|
|
|
}, ()=>{
|
|
|
|
this.refs.editor.focus();
|
2016-06-12 02:41:27 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
if (cmd.promise) {
|
2018-05-13 10:26:22 +08:00
|
|
|
cmd.promise.then(()=>{
|
2016-06-12 02:41:27 +08:00
|
|
|
console.log("Command success.");
|
2018-05-13 10:26:22 +08:00
|
|
|
}, (err)=>{
|
2016-06-12 02:41:27 +08:00
|
|
|
console.error("Command failure: %s", err);
|
2017-02-10 04:03:06 +08:00
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2017-08-10 20:49:11 +08:00
|
|
|
Modal.createTrackedDialog('Server error', '', ErrorDialog, {
|
2017-05-23 22:16:31 +08:00
|
|
|
title: _t("Server error"),
|
2017-06-01 22:44:56 +08:00
|
|
|
description: ((err && err.message) ? err.message : _t("Server unavailable, overloaded, or something else went wrong.")),
|
2016-06-12 02:41:27 +08:00
|
|
|
});
|
|
|
|
});
|
2017-02-10 04:03:06 +08:00
|
|
|
} else if (cmd.error) {
|
2016-06-12 02:41:27 +08:00
|
|
|
console.error(cmd.error);
|
2017-02-10 04:03:06 +08:00
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2017-08-10 22:21:01 +08:00
|
|
|
// TODO possibly track which command they ran (not its Arguments) here
|
|
|
|
Modal.createTrackedDialog('Command error', '', ErrorDialog, {
|
2017-05-23 22:16:31 +08:00
|
|
|
title: _t("Command error"),
|
2017-02-10 04:03:06 +08:00
|
|
|
description: cmd.error,
|
2016-06-12 02:41:27 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-10 07:37:42 +08:00
|
|
|
const replyingToEv = RoomViewStore.getQuotingEvent();
|
|
|
|
const mustSendHTML = Boolean(replyingToEv);
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
if (this.state.isRichTextEnabled) {
|
2017-06-30 01:08:57 +08:00
|
|
|
// We should only send HTML if any block is styled or contains inline style
|
|
|
|
let shouldSendHTML = false;
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2018-03-10 07:37:42 +08:00
|
|
|
if (mustSendHTML) shouldSendHTML = true;
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2017-07-13 20:27:49 +08:00
|
|
|
if (!shouldSendHTML) {
|
2018-05-20 03:28:38 +08:00
|
|
|
shouldSendHTML = !!editorState.document.findDescendant(node => {
|
|
|
|
// N.B. node.getMarks() might be private?
|
2018-05-21 10:48:59 +08:00
|
|
|
return ((node.object === 'block' && node.type !== 'paragraph') ||
|
2018-05-20 03:28:38 +08:00
|
|
|
(node.object === 'inline') ||
|
|
|
|
(node.object === 'text' && node.getMarks().size > 0));
|
2017-07-13 20:27:49 +08:00
|
|
|
});
|
|
|
|
}
|
2018-05-20 03:28:38 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
contentText = this.plainWithPlainPills.serialize(editorState);
|
|
|
|
if (contentText === '') return true;
|
|
|
|
|
2017-06-30 01:08:57 +08:00
|
|
|
if (shouldSendHTML) {
|
2018-05-20 08:07:25 +08:00
|
|
|
// FIXME: should we strip out the surrounding <p></p>?
|
2018-05-20 03:28:38 +08:00
|
|
|
contentHTML = this.html.serialize(editorState); // HtmlUtils.processHtmlForSending();
|
2017-06-30 01:08:57 +08:00
|
|
|
}
|
2016-06-11 18:22:08 +08:00
|
|
|
} else {
|
2018-05-13 03:04:58 +08:00
|
|
|
const sourceWithPills = this.plainWithMdPills.serialize(editorState);
|
|
|
|
if (sourceWithPills === '') return true;
|
2018-05-12 23:21:36 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
const mdWithPills = new Markdown(sourceWithPills);
|
2017-07-28 01:07:41 +08:00
|
|
|
|
2017-12-10 20:50:41 +08:00
|
|
|
// if contains no HTML and we're not quoting (needing HTML)
|
2018-05-13 03:04:58 +08:00
|
|
|
if (mdWithPills.isPlainText() && !mustSendHTML) {
|
|
|
|
// N.B. toPlainText is only usable here because we know that the MD
|
|
|
|
// didn't contain any formatting in the first place...
|
|
|
|
contentText = mdWithPills.toPlaintext();
|
2016-12-03 02:58:35 +08:00
|
|
|
} else {
|
2018-05-13 03:04:58 +08:00
|
|
|
// to avoid ugliness clients which can't parse HTML we don't send pills
|
|
|
|
// in the plaintext body.
|
|
|
|
contentText = this.plainWithPlainPills.serialize(editorState);
|
|
|
|
contentHTML = mdWithPills.toHTML();
|
2016-09-24 01:50:25 +08:00
|
|
|
}
|
2016-06-11 18:22:08 +08:00
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
|
2018-02-10 19:19:43 +08:00
|
|
|
let sendHtmlFn = ContentHelpers.makeHtmlMessage;
|
|
|
|
let sendTextFn = ContentHelpers.makeTextMessage;
|
2016-06-12 02:41:27 +08:00
|
|
|
|
2017-07-21 01:01:39 +08:00
|
|
|
this.historyManager.save(
|
2018-05-13 03:04:58 +08:00
|
|
|
editorState,
|
2018-05-20 23:30:39 +08:00
|
|
|
this.state.isRichTextEnabled ? 'rich' : 'markdown',
|
2017-07-21 01:01:39 +08:00
|
|
|
);
|
2017-03-10 23:04:31 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
if (commandText && commandText.startsWith('/me')) {
|
2018-03-04 20:39:34 +08:00
|
|
|
if (replyingToEv) {
|
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
|
|
Modal.createTrackedDialog('Emote Reply Fail', '', ErrorDialog, {
|
|
|
|
title: _t("Unable to reply"),
|
|
|
|
description: _t("At this time it is not possible to reply with an emote."),
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-03 22:47:03 +08:00
|
|
|
contentText = contentText.substring(4);
|
|
|
|
// bit of a hack, but the alternative would be quite complicated
|
|
|
|
if (contentHTML) contentHTML = contentHTML.replace(/\/me ?/, '');
|
2018-02-10 19:19:43 +08:00
|
|
|
sendHtmlFn = ContentHelpers.makeHtmlEmote;
|
|
|
|
sendTextFn = ContentHelpers.makeEmoteMessage;
|
2017-07-03 22:47:03 +08:00
|
|
|
}
|
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
let content = contentHTML ?
|
|
|
|
sendHtmlFn(contentText, contentHTML) :
|
|
|
|
sendTextFn(contentText);
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2018-03-04 20:39:34 +08:00
|
|
|
if (replyingToEv) {
|
2018-04-27 18:47:18 +08:00
|
|
|
const replyContent = ReplyThread.makeReplyMixIn(replyingToEv);
|
2018-03-04 20:39:34 +08:00
|
|
|
content = Object.assign(replyContent, content);
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
// Part of Replies fallback support - prepend the text we're sending
|
|
|
|
// with the text we're replying to
|
2018-03-04 20:39:34 +08:00
|
|
|
const nestedReply = ReplyThread.getNestedReplyText(replyingToEv);
|
|
|
|
if (nestedReply) {
|
|
|
|
if (content.formatted_body) {
|
|
|
|
content.formatted_body = nestedReply.html + content.formatted_body;
|
|
|
|
}
|
|
|
|
content.body = nestedReply.body + content.body;
|
|
|
|
}
|
2018-04-07 19:18:53 +08:00
|
|
|
|
|
|
|
// Clear reply_to_event as we put the message into the queue
|
|
|
|
// if the send fails, retry will handle resending.
|
2017-12-10 20:50:41 +08:00
|
|
|
dis.dispatch({
|
2018-04-07 19:18:53 +08:00
|
|
|
action: 'reply_to_event',
|
2017-12-10 20:50:41 +08:00
|
|
|
event: null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-05-02 01:14:35 +08:00
|
|
|
this.client.sendMessage(this.props.room.roomId, content).then((res) => {
|
2016-06-11 18:22:08 +08:00
|
|
|
dis.dispatch({
|
2016-09-16 23:02:08 +08:00
|
|
|
action: 'message_sent',
|
2016-06-11 18:22:08 +08:00
|
|
|
});
|
2018-05-02 01:14:35 +08:00
|
|
|
}).catch((e) => {
|
|
|
|
onSendMessageFailed(e, this.props.room);
|
|
|
|
});
|
2016-05-27 12:45:55 +08:00
|
|
|
|
|
|
|
this.setState({
|
2016-09-16 23:02:08 +08:00
|
|
|
editorState: this.createEditorState(),
|
2018-05-07 05:08:36 +08:00
|
|
|
}, ()=>{ this.refs.editor.focus() });
|
2016-05-27 12:45:55 +08:00
|
|
|
|
|
|
|
return true;
|
2018-04-23 08:13:18 +08:00
|
|
|
};
|
2016-05-27 12:45:55 +08:00
|
|
|
|
2017-06-29 22:07:06 +08:00
|
|
|
onVerticalArrow = (e, up) => {
|
2017-07-05 17:24:55 +08:00
|
|
|
if (e.ctrlKey || e.shiftKey || e.altKey || e.metaKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-29 22:07:06 +08:00
|
|
|
// Select history only if we are not currently auto-completing
|
|
|
|
if (this.autocomplete.state.completionList.length === 0) {
|
2017-06-30 21:27:26 +08:00
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
// determine whether our cursor is at the top or bottom of the multiline
|
|
|
|
// input box by just looking at the position of the plain old DOM selection.
|
|
|
|
const selection = window.getSelection();
|
|
|
|
const range = selection.getRangeAt(0);
|
|
|
|
const cursorRect = range.getBoundingClientRect();
|
|
|
|
|
|
|
|
const editorNode = ReactDOM.findDOMNode(this.refs.editor);
|
|
|
|
const editorRect = editorNode.getBoundingClientRect();
|
|
|
|
|
2018-05-13 07:54:01 +08:00
|
|
|
// heuristic to handle tall emoji, pills, etc pushing the cursor away from the top
|
|
|
|
// or bottom of the page.
|
|
|
|
// XXX: is this going to break on large inline images or top-to-bottom scripts?
|
2018-05-21 10:48:59 +08:00
|
|
|
const EDGE_THRESHOLD = 15;
|
2018-05-13 07:54:01 +08:00
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
let navigateHistory = false;
|
|
|
|
if (up) {
|
2018-05-12 08:10:38 +08:00
|
|
|
const scrollCorrection = editorNode.scrollTop;
|
|
|
|
const distanceFromTop = cursorRect.top - editorRect.top + scrollCorrection;
|
2018-05-21 10:48:59 +08:00
|
|
|
console.log(`Cursor distance from editor top is ${distanceFromTop}`);
|
2018-05-13 07:54:01 +08:00
|
|
|
if (distanceFromTop < EDGE_THRESHOLD) {
|
2018-05-08 08:54:06 +08:00
|
|
|
navigateHistory = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2018-05-12 08:10:38 +08:00
|
|
|
const scrollCorrection =
|
2018-05-08 08:54:06 +08:00
|
|
|
editorNode.scrollHeight - editorNode.clientHeight - editorNode.scrollTop;
|
2018-05-14 04:17:43 +08:00
|
|
|
const distanceFromBottom = editorRect.bottom - cursorRect.bottom + scrollCorrection;
|
2018-05-21 10:48:59 +08:00
|
|
|
console.log(`Cursor distance from editor bottom is ${distanceFromBottom}`);
|
2018-05-13 07:54:01 +08:00
|
|
|
if (distanceFromBottom < EDGE_THRESHOLD) {
|
2018-05-08 08:54:06 +08:00
|
|
|
navigateHistory = true;
|
|
|
|
}
|
2017-06-30 21:27:26 +08:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
if (!navigateHistory) return;
|
2017-06-30 21:27:26 +08:00
|
|
|
|
|
|
|
const selected = this.selectHistory(up);
|
|
|
|
if (selected) {
|
|
|
|
// We're selecting history, so prevent the key event from doing anything else
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2017-06-29 22:07:06 +08:00
|
|
|
} else {
|
2017-06-30 21:27:26 +08:00
|
|
|
this.moveAutocompleteSelection(up);
|
2017-08-14 22:16:13 +08:00
|
|
|
e.preventDefault();
|
2017-06-29 22:07:06 +08:00
|
|
|
}
|
2017-06-28 22:20:16 +08:00
|
|
|
};
|
|
|
|
|
2017-06-29 22:07:06 +08:00
|
|
|
selectHistory = async (up) => {
|
|
|
|
const delta = up ? -1 : 1;
|
|
|
|
|
2017-06-30 00:02:19 +08:00
|
|
|
// True if we are not currently selecting history, but composing a message
|
|
|
|
if (this.historyManager.currentIndex === this.historyManager.history.length) {
|
|
|
|
// We can't go any further - there isn't any more history, so nop.
|
|
|
|
if (!up) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
currentlyComposedEditorState: this.state.editorState,
|
|
|
|
});
|
|
|
|
} else if (this.historyManager.currentIndex + delta === this.historyManager.history.length) {
|
|
|
|
// True when we return to the message being composed currently
|
|
|
|
this.setState({
|
|
|
|
editorState: this.state.currentlyComposedEditorState,
|
|
|
|
});
|
|
|
|
this.historyManager.currentIndex = this.historyManager.history.length;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
let editorState;
|
|
|
|
const historyItem = this.historyManager.getItem(delta);
|
|
|
|
if (historyItem) {
|
|
|
|
if (historyItem.format === 'rich' && !this.state.isRichTextEnabled) {
|
|
|
|
editorState = this.richToMdEditorState(historyItem.value);
|
|
|
|
}
|
|
|
|
else if (historyItem.format === 'markdown' && this.state.isRichTextEnabled) {
|
|
|
|
editorState = this.mdToRichEditorState(historyItem.value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
editorState = historyItem.value;
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 22:07:06 +08:00
|
|
|
|
|
|
|
// Move selection to the end of the selected history
|
2018-05-08 08:54:06 +08:00
|
|
|
const change = editorState.change().collapseToEndOf(editorState.document);
|
2018-05-14 10:02:12 +08:00
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
// XXX: should we be calling this.onChange(change) now?
|
2018-05-14 10:02:12 +08:00
|
|
|
// Answer: yes, if we want it to do any of the fixups on stuff like emoji.
|
|
|
|
// however, this should already have been done and persisted in the history,
|
|
|
|
// so shouldn't be necessary.
|
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
editorState = change.value;
|
2017-06-29 22:07:06 +08:00
|
|
|
|
2018-05-13 10:16:55 +08:00
|
|
|
this.suppressAutoComplete = true;
|
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
this.setState({ editorState }, ()=>{
|
|
|
|
this.refs.editor.focus();
|
|
|
|
});
|
2017-06-29 22:07:06 +08:00
|
|
|
return true;
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-09-13 18:11:52 +08:00
|
|
|
|
2017-02-10 04:03:06 +08:00
|
|
|
onTab = async (e) => {
|
2017-07-06 01:14:22 +08:00
|
|
|
this.setState({
|
|
|
|
someCompletions: null,
|
|
|
|
});
|
2017-06-29 22:07:06 +08:00
|
|
|
e.preventDefault();
|
2017-02-10 04:36:06 +08:00
|
|
|
if (this.autocomplete.state.completionList.length === 0) {
|
2017-06-29 22:07:06 +08:00
|
|
|
// Force completions to show for the text currently entered
|
2017-07-06 01:14:22 +08:00
|
|
|
const completionCount = await this.autocomplete.forceComplete();
|
|
|
|
this.setState({
|
|
|
|
someCompletions: completionCount > 0,
|
|
|
|
});
|
2017-06-29 22:07:06 +08:00
|
|
|
// Select the first item by moving "down"
|
|
|
|
await this.moveAutocompleteSelection(false);
|
2017-02-10 04:36:06 +08:00
|
|
|
} else {
|
2017-06-29 22:07:06 +08:00
|
|
|
await this.moveAutocompleteSelection(e.shiftKey);
|
2016-06-21 21:03:39 +08:00
|
|
|
}
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-06-21 21:03:39 +08:00
|
|
|
|
2017-06-29 22:07:06 +08:00
|
|
|
moveAutocompleteSelection = (up) => {
|
2017-08-23 23:22:14 +08:00
|
|
|
up ? this.autocomplete.onUpArrow() : this.autocomplete.onDownArrow();
|
2017-06-29 22:07:06 +08:00
|
|
|
};
|
|
|
|
|
2017-02-10 06:10:57 +08:00
|
|
|
onEscape = async (e) => {
|
2016-09-13 18:11:52 +08:00
|
|
|
e.preventDefault();
|
|
|
|
if (this.autocomplete) {
|
|
|
|
this.autocomplete.onEscape(e);
|
2016-06-21 21:03:39 +08:00
|
|
|
}
|
2017-02-10 06:10:57 +08:00
|
|
|
await this.setDisplayedCompletion(null); // restore originalEditorState
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-06-21 21:03:39 +08:00
|
|
|
|
2016-09-13 18:11:52 +08:00
|
|
|
/* If passed null, restores the original editor content from state.originalEditorState.
|
|
|
|
* If passed a non-null displayedCompletion, modifies state.originalEditorState to compute new state.editorState.
|
|
|
|
*/
|
2016-12-01 01:16:33 +08:00
|
|
|
setDisplayedCompletion = async (displayedCompletion: ?Completion): boolean => {
|
2016-09-13 18:11:52 +08:00
|
|
|
const activeEditorState = this.state.originalEditorState || this.state.editorState;
|
|
|
|
|
|
|
|
if (displayedCompletion == null) {
|
|
|
|
if (this.state.originalEditorState) {
|
2017-02-10 06:10:57 +08:00
|
|
|
let editorState = this.state.originalEditorState;
|
|
|
|
this.setState({editorState});
|
2016-09-13 18:11:52 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-13 03:04:58 +08:00
|
|
|
const {
|
|
|
|
range = null,
|
|
|
|
completion = '',
|
|
|
|
completionId = '',
|
|
|
|
href = null,
|
|
|
|
suffix = ''
|
|
|
|
} = displayedCompletion;
|
2017-07-20 23:46:53 +08:00
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
let inline;
|
2017-07-20 22:09:59 +08:00
|
|
|
if (href) {
|
2018-05-12 08:10:38 +08:00
|
|
|
inline = Inline.create({
|
|
|
|
type: 'pill',
|
2018-05-20 07:49:29 +08:00
|
|
|
data: { completion, completionId, href },
|
2018-05-13 07:40:54 +08:00
|
|
|
// we can't put text in here otherwise the editor tries to select it
|
|
|
|
isVoid: true,
|
2017-07-24 21:41:13 +08:00
|
|
|
});
|
2017-11-06 23:11:42 +08:00
|
|
|
} else if (completion === '@room') {
|
2018-05-12 08:10:38 +08:00
|
|
|
inline = Inline.create({
|
|
|
|
type: 'pill',
|
2018-05-13 07:40:54 +08:00
|
|
|
data: { completion, completionId },
|
|
|
|
// we can't put text in here otherwise the editor tries to select it
|
|
|
|
isVoid: true,
|
|
|
|
});
|
2017-07-17 22:53:29 +08:00
|
|
|
}
|
2016-09-13 18:11:52 +08:00
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
let editorState = activeEditorState;
|
|
|
|
|
|
|
|
if (range) {
|
2018-05-13 10:16:55 +08:00
|
|
|
const change = editorState.change()
|
|
|
|
.collapseToAnchor()
|
2018-05-21 19:28:08 +08:00
|
|
|
.moveOffsetsTo(range.start, range.end)
|
|
|
|
.focus();
|
2018-05-12 08:10:38 +08:00
|
|
|
editorState = change.value;
|
|
|
|
}
|
|
|
|
|
2018-05-14 10:02:12 +08:00
|
|
|
let change;
|
|
|
|
if (inline) {
|
|
|
|
change = editorState.change()
|
|
|
|
.insertInlineAtRange(editorState.selection, inline)
|
2018-05-21 19:28:08 +08:00
|
|
|
.insertText(suffix)
|
|
|
|
.focus();
|
2018-05-14 10:02:12 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
change = editorState.change()
|
|
|
|
.insertTextAtRange(editorState.selection, completion)
|
2018-05-21 19:28:08 +08:00
|
|
|
.insertText(suffix)
|
|
|
|
.focus();
|
2018-05-14 10:02:12 +08:00
|
|
|
}
|
2018-05-12 08:10:38 +08:00
|
|
|
editorState = change.value;
|
|
|
|
|
2018-05-15 08:16:06 +08:00
|
|
|
this.onChange(change, activeEditorState);
|
2018-05-12 08:10:38 +08:00
|
|
|
|
2016-09-13 18:11:52 +08:00
|
|
|
return true;
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-07-04 00:45:13 +08:00
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
renderNode = props => {
|
|
|
|
const { attributes, children, node, isSelected } = props;
|
|
|
|
|
|
|
|
switch (node.type) {
|
2018-05-17 09:13:17 +08:00
|
|
|
case 'paragraph':
|
|
|
|
return <p {...attributes}>{children}</p>;
|
|
|
|
case 'block-quote':
|
|
|
|
return <blockquote {...attributes}>{children}</blockquote>;
|
|
|
|
case 'bulleted-list':
|
|
|
|
return <ul {...attributes}>{children}</ul>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading1':
|
2018-05-17 09:13:17 +08:00
|
|
|
return <h1 {...attributes}>{children}</h1>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading2':
|
2018-05-17 09:13:17 +08:00
|
|
|
return <h2 {...attributes}>{children}</h2>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading3':
|
2018-05-17 09:13:17 +08:00
|
|
|
return <h3 {...attributes}>{children}</h3>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading4':
|
2018-05-20 06:34:30 +08:00
|
|
|
return <h4 {...attributes}>{children}</h4>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading5':
|
2018-05-20 06:34:30 +08:00
|
|
|
return <h5 {...attributes}>{children}</h5>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'heading6':
|
2018-05-20 06:34:30 +08:00
|
|
|
return <h6 {...attributes}>{children}</h6>;
|
2018-05-17 09:13:17 +08:00
|
|
|
case 'list-item':
|
|
|
|
return <li {...attributes}>{children}</li>;
|
|
|
|
case 'numbered-list':
|
|
|
|
return <ol {...attributes}>{children}</ol>;
|
2018-05-23 21:12:08 +08:00
|
|
|
case 'code':
|
2018-05-26 07:37:21 +08:00
|
|
|
return <pre {...attributes}>{children}</pre>;
|
2018-05-20 09:53:32 +08:00
|
|
|
case 'link':
|
2018-05-20 07:49:29 +08:00
|
|
|
return <a {...attributes} href={ node.data.get('href') }>{children}</a>;
|
2018-05-12 08:10:38 +08:00
|
|
|
case 'pill': {
|
2018-05-14 10:02:12 +08:00
|
|
|
const { data } = node;
|
2018-05-20 07:49:29 +08:00
|
|
|
const url = data.get('href');
|
2018-05-13 07:40:54 +08:00
|
|
|
const completion = data.get('completion');
|
2018-05-12 08:10:38 +08:00
|
|
|
|
|
|
|
const shouldShowPillAvatar = !SettingsStore.getValue("Pill.shouldHidePillAvatar");
|
|
|
|
const Pill = sdk.getComponent('elements.Pill');
|
|
|
|
|
2018-05-13 07:40:54 +08:00
|
|
|
if (completion === '@room') {
|
2018-05-12 08:10:38 +08:00
|
|
|
return <Pill
|
|
|
|
type={Pill.TYPE_AT_ROOM_MENTION}
|
|
|
|
room={this.props.room}
|
|
|
|
shouldShowPillAvatar={shouldShowPillAvatar}
|
2018-05-14 10:02:12 +08:00
|
|
|
isSelected={isSelected}
|
2018-05-12 08:10:38 +08:00
|
|
|
/>;
|
|
|
|
}
|
|
|
|
else if (Pill.isPillUrl(url)) {
|
|
|
|
return <Pill
|
|
|
|
url={url}
|
|
|
|
room={this.props.room}
|
|
|
|
shouldShowPillAvatar={shouldShowPillAvatar}
|
2018-05-14 10:02:12 +08:00
|
|
|
isSelected={isSelected}
|
2018-05-12 08:10:38 +08:00
|
|
|
/>;
|
|
|
|
}
|
|
|
|
else {
|
2018-05-14 10:02:12 +08:00
|
|
|
const { text } = node;
|
2018-05-12 08:10:38 +08:00
|
|
|
return <a href={url} {...props.attributes}>
|
|
|
|
{ text }
|
|
|
|
</a>;
|
|
|
|
}
|
|
|
|
}
|
2018-05-14 10:02:12 +08:00
|
|
|
case 'emoji': {
|
|
|
|
const { data } = node;
|
|
|
|
const emojiUnicode = data.get('emojiUnicode');
|
|
|
|
const uri = RichText.unicodeToEmojiUri(emojiUnicode);
|
|
|
|
const shortname = toShort(emojiUnicode);
|
|
|
|
const className = classNames('mx_emojione', {
|
|
|
|
mx_emojione_selected: isSelected
|
|
|
|
});
|
|
|
|
return <img className={ className } src={ uri } title={ shortname } alt={ emojiUnicode }/>;
|
|
|
|
}
|
2018-05-12 08:10:38 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-17 09:13:17 +08:00
|
|
|
renderMark = props => {
|
|
|
|
const { children, mark, attributes } = props;
|
|
|
|
switch (mark.type) {
|
|
|
|
case 'bold':
|
2018-05-20 03:28:38 +08:00
|
|
|
return <strong {...attributes}>{children}</strong>;
|
2018-05-17 09:13:17 +08:00
|
|
|
case 'italic':
|
2018-05-20 03:28:38 +08:00
|
|
|
return <em {...attributes}>{children}</em>;
|
2018-05-24 03:12:13 +08:00
|
|
|
case 'code':
|
2018-05-20 03:28:38 +08:00
|
|
|
return <code {...attributes}>{children}</code>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'underlined':
|
2018-05-20 03:28:38 +08:00
|
|
|
return <u {...attributes}>{children}</u>;
|
2018-05-20 07:17:11 +08:00
|
|
|
case 'deleted':
|
2018-05-20 03:28:38 +08:00
|
|
|
return <del {...attributes}>{children}</del>;
|
2018-05-17 09:13:17 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-21 05:39:40 +08:00
|
|
|
onFormatButtonClicked = (name, e) => {
|
2018-05-21 05:48:40 +08:00
|
|
|
e.preventDefault(); // don't steal focus from the editor!
|
2018-05-21 05:39:40 +08:00
|
|
|
|
|
|
|
// XXX: horrible evil hack to ensure the editor is focused so the act
|
|
|
|
// of focusing it doesn't then cancel the format button being pressed
|
|
|
|
if (document.activeElement && document.activeElement.className !== 'mx_MessageComposer_editor') {
|
|
|
|
this.refs.editor.focus();
|
|
|
|
setTimeout(()=>{
|
|
|
|
this.handleKeyCommand(name);
|
|
|
|
}, 500); // can't find any callback to hook this to. onFocus and onChange and willComponentUpdate fire too early.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.handleKeyCommand(name);
|
2018-04-23 08:13:18 +08:00
|
|
|
};
|
2016-09-04 23:33:40 +08:00
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
getAutocompleteQuery(editorState: Value) {
|
|
|
|
// We can just return the current block where the selection begins, which
|
|
|
|
// should be enough to capture any autocompletion input, given autocompletion
|
|
|
|
// providers only search for the first match which intersects with the current selection.
|
|
|
|
// This avoids us having to serialize the whole thing to plaintext and convert
|
|
|
|
// selection offsets in & out of the plaintext domain.
|
2018-05-13 10:16:55 +08:00
|
|
|
|
2018-05-20 03:28:38 +08:00
|
|
|
if (editorState.selection.anchorKey) {
|
|
|
|
return editorState.document.getDescendant(editorState.selection.anchorKey).text;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return '';
|
|
|
|
}
|
2017-07-27 22:18:06 +08:00
|
|
|
}
|
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
getSelectionRange(editorState: Value) {
|
2018-05-13 10:16:55 +08:00
|
|
|
let beginning = false;
|
|
|
|
const query = this.getAutocompleteQuery(editorState);
|
|
|
|
const firstChild = editorState.document.nodes.get(0);
|
|
|
|
const firstGrandChild = firstChild && firstChild.nodes.get(0);
|
|
|
|
beginning = (firstChild && firstGrandChild &&
|
|
|
|
firstChild.object === 'block' && firstGrandChild.object === 'text' &&
|
|
|
|
editorState.selection.anchorKey === firstGrandChild.key);
|
|
|
|
|
2018-05-12 08:10:38 +08:00
|
|
|
// return a character range suitable for handing to an autocomplete provider.
|
|
|
|
// the range is relative to the anchor of the current editor selection.
|
|
|
|
// if the selection spans multiple blocks, then we collapse it for the calculation.
|
|
|
|
const range = {
|
2018-05-13 10:16:55 +08:00
|
|
|
beginning, // whether the selection is in the first block of the editor or not
|
2018-05-12 08:10:38 +08:00
|
|
|
start: editorState.selection.anchorOffset,
|
2018-05-17 09:13:17 +08:00
|
|
|
end: (editorState.selection.anchorKey == editorState.selection.focusKey) ?
|
2018-05-12 08:10:38 +08:00
|
|
|
editorState.selection.focusOffset : editorState.selection.anchorOffset,
|
|
|
|
}
|
|
|
|
if (range.start > range.end) {
|
|
|
|
const tmp = range.start;
|
|
|
|
range.start = range.end;
|
|
|
|
range.end = tmp;
|
|
|
|
}
|
|
|
|
return range;
|
|
|
|
}
|
|
|
|
|
2017-02-10 04:03:06 +08:00
|
|
|
onMarkdownToggleClicked = (e) => {
|
2016-09-08 05:16:56 +08:00
|
|
|
e.preventDefault(); // don't steal focus from the editor!
|
|
|
|
this.handleKeyCommand('toggle-mode');
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
2016-09-08 01:22:14 +08:00
|
|
|
|
2018-05-23 08:36:21 +08:00
|
|
|
onBlur = (e) => {
|
|
|
|
this.selection = this.state.editorState.selection;
|
|
|
|
};
|
|
|
|
|
|
|
|
onFocus = (e) => {
|
|
|
|
if (this.selection) {
|
|
|
|
const change = this.state.editorState.change().select(this.selection);
|
|
|
|
this.onChange(change);
|
|
|
|
delete this.selection;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-27 12:45:55 +08:00
|
|
|
render() {
|
2016-09-13 18:11:52 +08:00
|
|
|
const activeEditorState = this.state.originalEditorState || this.state.editorState;
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2016-09-04 23:33:40 +08:00
|
|
|
const className = classNames('mx_MessageComposer_input', {
|
2017-07-06 01:14:22 +08:00
|
|
|
mx_MessageComposer_input_error: this.state.someCompletions === false,
|
2016-09-04 23:33:40 +08:00
|
|
|
});
|
|
|
|
|
2016-03-24 19:25:41 +08:00
|
|
|
return (
|
2016-09-13 18:11:52 +08:00
|
|
|
<div className="mx_MessageComposer_input_wrapper">
|
|
|
|
<div className="mx_MessageComposer_autocomplete_wrapper">
|
2018-02-10 20:38:25 +08:00
|
|
|
{ SettingsStore.isFeatureEnabled("feature_rich_quoting") && <ReplyPreview /> }
|
2016-09-13 18:11:52 +08:00
|
|
|
<Autocomplete
|
|
|
|
ref={(e) => this.autocomplete = e}
|
2017-11-03 01:51:08 +08:00
|
|
|
room={this.props.room}
|
2016-09-13 18:11:52 +08:00
|
|
|
onConfirm={this.setDisplayedCompletion}
|
2017-08-23 23:22:14 +08:00
|
|
|
onSelectionChange={this.setDisplayedCompletion}
|
2018-05-13 10:16:55 +08:00
|
|
|
query={ this.suppressAutoComplete ? '' : this.getAutocompleteQuery(activeEditorState) }
|
2018-05-12 08:10:38 +08:00
|
|
|
selection={this.getSelectionRange(activeEditorState)}
|
2017-11-03 01:51:08 +08:00
|
|
|
/>
|
2016-09-13 18:11:52 +08:00
|
|
|
</div>
|
|
|
|
<div className={className}>
|
2017-01-21 05:00:22 +08:00
|
|
|
<img className="mx_MessageComposer_input_markdownIndicator mx_filterFlipColor"
|
2016-09-13 18:11:52 +08:00
|
|
|
onMouseDown={this.onMarkdownToggleClicked}
|
2018-05-20 23:30:39 +08:00
|
|
|
title={this.state.isRichTextEnabled ? _t("Markdown is disabled") : _t("Markdown is enabled")}
|
|
|
|
src={`img/button-md-${!this.state.isRichTextEnabled}.png`} />
|
2016-09-13 18:11:52 +08:00
|
|
|
<Editor ref="editor"
|
2017-06-03 23:52:45 +08:00
|
|
|
dir="auto"
|
2018-05-06 08:18:26 +08:00
|
|
|
className="mx_MessageComposer_editor"
|
2017-02-21 23:33:44 +08:00
|
|
|
placeholder={this.props.placeholder}
|
2018-05-06 07:18:11 +08:00
|
|
|
value={this.state.editorState}
|
2018-05-08 08:54:06 +08:00
|
|
|
onChange={this.onChange}
|
2018-05-07 05:08:36 +08:00
|
|
|
onKeyDown={this.onKeyDown}
|
2018-05-20 05:05:31 +08:00
|
|
|
onPaste={this.onPaste}
|
2018-05-23 08:36:21 +08:00
|
|
|
onBlur={this.onBlur}
|
|
|
|
onFocus={this.onFocus}
|
2018-05-12 08:10:38 +08:00
|
|
|
renderNode={this.renderNode}
|
2018-05-17 09:13:17 +08:00
|
|
|
renderMark={this.renderMark}
|
2018-05-12 08:10:38 +08:00
|
|
|
spellCheck={true}
|
2018-05-06 06:25:04 +08:00
|
|
|
/>
|
2016-09-13 18:11:52 +08:00
|
|
|
</div>
|
2016-03-24 19:25:41 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-01-20 22:22:27 +08:00
|
|
|
}
|