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-07 05:08:36 +08:00
|
|
|
import { Value, Document, Event } from 'slate';
|
2018-04-23 08:13:18 +08:00
|
|
|
|
|
|
|
import Html from 'slate-html-serializer';
|
2018-05-06 06:25:04 +08:00
|
|
|
import { Markdown as Md } from 'slate-md-serializer';
|
2018-04-23 08:13:18 +08:00
|
|
|
import Plain from 'slate-plain-serializer';
|
|
|
|
|
|
|
|
// 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';
|
2016-09-05 20:08:53 +08:00
|
|
|
import escape from 'lodash/escape';
|
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
|
|
|
|
2017-07-14 00:37:43 +08:00
|
|
|
import {asciiRegexp, shortnameToUnicode, emojioneList, asciiList, mapUnicodeToShort} 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$');
|
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
|
|
|
|
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
|
|
|
|
|
|
|
// called with current plaintext content (as a string) whenever it changes
|
2017-12-26 09:03:18 +08:00
|
|
|
onContentChanged: PropTypes.func,
|
2016-12-01 01:16:33 +08:00
|
|
|
|
2017-12-26 09:03:18 +08:00
|
|
|
onInputStateChanged: PropTypes.func,
|
2016-12-01 01:16:33 +08:00
|
|
|
};
|
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
/*
|
2017-08-08 20:36:43 +08:00
|
|
|
static getKeyBinding(ev: SyntheticKeyboardEvent): string {
|
|
|
|
// Restrict a subset of key bindings to ONLY having ctrl/meta* pressed and
|
|
|
|
// importantly NOT having alt, shift, meta/ctrl* pressed. draft-js does not
|
|
|
|
// handle this in `getDefaultKeyBinding` so we do it ourselves here.
|
|
|
|
//
|
|
|
|
// * if macOS, read second option
|
|
|
|
const ctrlCmdCommand = {
|
|
|
|
// C-m => Toggles between rich text and markdown modes
|
|
|
|
[KeyCode.KEY_M]: 'toggle-mode',
|
|
|
|
[KeyCode.KEY_B]: 'bold',
|
|
|
|
[KeyCode.KEY_I]: 'italic',
|
|
|
|
[KeyCode.KEY_U]: 'underline',
|
|
|
|
[KeyCode.KEY_J]: 'code',
|
|
|
|
[KeyCode.KEY_O]: 'split-block',
|
|
|
|
}[ev.keyCode];
|
|
|
|
|
|
|
|
if (ctrlCmdCommand) {
|
2018-04-23 08:13:18 +08:00
|
|
|
if (!isOnlyCtrlOrCmdKeyEvent(ev)) {
|
2017-08-08 20:36:43 +08:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return ctrlCmdCommand;
|
2017-06-27 22:17:57 +08:00
|
|
|
}
|
|
|
|
|
2017-08-08 20:36:43 +08:00
|
|
|
// Handle keys such as return, left and right arrows etc.
|
|
|
|
return getDefaultKeyBinding(ev);
|
2016-07-08 15:24:28 +08:00
|
|
|
}
|
|
|
|
|
2016-09-13 18:11:52 +08:00
|
|
|
static getBlockStyle(block: ContentBlock): ?string {
|
|
|
|
if (block.getType() === 'strikethrough') {
|
|
|
|
return 'mx_Markdown_STRIKETHROUGH';
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2018-05-08 08:54:06 +08:00
|
|
|
*/
|
2016-09-13 18:11:52 +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);
|
|
|
|
|
2017-10-29 15:43:52 +08:00
|
|
|
const isRichtextEnabled = SettingsStore.getValue('MessageComposerInput.isRichTextEnabled');
|
2016-06-15 02:43:34 +08:00
|
|
|
|
2017-08-10 02:00:38 +08:00
|
|
|
Analytics.setRichtextMode(isRichtextEnabled);
|
|
|
|
|
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
|
2016-09-05 20:08:53 +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(
|
|
|
|
isRichtextEnabled,
|
|
|
|
MessageComposerStore.getContentState(this.props.room.roomId),
|
|
|
|
),
|
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();
|
2016-06-11 18:22:08 +08:00
|
|
|
}
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
2017-11-06 23:11:42 +08:00
|
|
|
findPillEntities(contentState: ContentState, contentBlock: ContentBlock, callback) {
|
2017-07-13 20:26:13 +08:00
|
|
|
contentBlock.findEntityRanges(
|
|
|
|
(character) => {
|
|
|
|
const entityKey = character.getEntity();
|
|
|
|
return (
|
|
|
|
entityKey !== null &&
|
2017-11-06 23:11:42 +08:00
|
|
|
(
|
|
|
|
contentState.getEntity(entityKey).getType() === 'LINK' ||
|
2017-11-07 01:15:09 +08:00
|
|
|
contentState.getEntity(entityKey).getType() === ENTITY_TYPES.AT_ROOM_PILL
|
2017-11-06 23:11:42 +08:00
|
|
|
)
|
2017-07-13 20:26:13 +08:00
|
|
|
);
|
|
|
|
}, callback,
|
|
|
|
);
|
|
|
|
}
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
2017-08-03 18:29:26 +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-04-23 08:13:18 +08:00
|
|
|
createEditorState(richText: boolean, value: ?Value): Value {
|
|
|
|
/*
|
2017-07-13 20:26:13 +08:00
|
|
|
const decorators = richText ? RichText.getScopedRTDecorators(this.props) :
|
|
|
|
RichText.getScopedMDDecorators(this.props);
|
2017-10-29 15:43:52 +08:00
|
|
|
const shouldShowPillAvatar = !SettingsStore.getValue("Pill.shouldHidePillAvatar");
|
2017-07-13 20:26:13 +08:00
|
|
|
decorators.push({
|
2017-11-06 23:11:42 +08:00
|
|
|
strategy: this.findPillEntities.bind(this),
|
2017-07-25 18:43:12 +08:00
|
|
|
component: (entityProps) => {
|
2017-07-21 20:41:23 +08:00
|
|
|
const Pill = sdk.getComponent('elements.Pill');
|
2017-11-06 23:11:42 +08:00
|
|
|
const type = entityProps.contentState.getEntity(entityProps.entityKey).getType();
|
2017-08-03 19:02:29 +08:00
|
|
|
const {url} = entityProps.contentState.getEntity(entityProps.entityKey).getData();
|
2017-11-07 01:15:09 +08:00
|
|
|
if (type === ENTITY_TYPES.AT_ROOM_PILL) {
|
2017-11-06 23:11:42 +08:00
|
|
|
return <Pill
|
|
|
|
type={Pill.TYPE_AT_ROOM_MENTION}
|
|
|
|
room={this.props.room}
|
|
|
|
offsetKey={entityProps.offsetKey}
|
|
|
|
shouldShowPillAvatar={shouldShowPillAvatar}
|
|
|
|
/>;
|
|
|
|
} else if (Pill.isPillUrl(url)) {
|
2017-08-08 18:13:29 +08:00
|
|
|
return <Pill
|
|
|
|
url={url}
|
|
|
|
room={this.props.room}
|
|
|
|
offsetKey={entityProps.offsetKey}
|
|
|
|
shouldShowPillAvatar={shouldShowPillAvatar}
|
|
|
|
/>;
|
2017-07-15 00:04:28 +08:00
|
|
|
}
|
|
|
|
|
2017-07-13 20:26:13 +08:00
|
|
|
return (
|
2017-07-25 18:43:12 +08:00
|
|
|
<a href={url} data-offset-key={entityProps.offsetKey}>
|
2017-10-12 00:56:17 +08:00
|
|
|
{ entityProps.children }
|
2017-07-13 20:47:08 +08:00
|
|
|
</a>
|
2017-07-13 20:26:13 +08:00
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const compositeDecorator = new CompositeDecorator(decorators);
|
2016-06-15 02:43:34 +08:00
|
|
|
let editorState = null;
|
2016-06-12 05:51:18 +08:00
|
|
|
if (contentState) {
|
2016-06-15 02:43:34 +08:00
|
|
|
editorState = EditorState.createWithContent(contentState, compositeDecorator);
|
2016-06-12 05:51:18 +08:00
|
|
|
} else {
|
2016-06-15 02:43:34 +08:00
|
|
|
editorState = EditorState.createEmpty(compositeDecorator);
|
2016-06-12 05:51:18 +08:00
|
|
|
}
|
2016-06-15 02:43:34 +08:00
|
|
|
|
|
|
|
return EditorState.moveFocusToEnd(editorState);
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
2018-05-06 22:27:27 +08:00
|
|
|
if (value instanceof Value) {
|
|
|
|
return value;
|
2018-05-06 07:18:11 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-05-06 08:18:26 +08:00
|
|
|
// ...or create a new one.
|
2018-05-06 22:27:27 +08:00
|
|
|
return Plain.deserialize('')
|
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
|
|
|
|
2016-09-05 20:08:53 +08:00
|
|
|
componentWillUpdate(nextProps, nextState) {
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
2016-09-05 20:08:53 +08:00
|
|
|
// this is dirty, but moving all this state to MessageComposer is dirtier
|
|
|
|
if (this.props.onInputStateChanged && nextState !== this.state) {
|
|
|
|
const state = this.getSelectionInfo(nextState.editorState);
|
|
|
|
state.isRichtextEnabled = nextState.isRichtextEnabled;
|
|
|
|
this.props.onInputStateChanged(state);
|
|
|
|
}
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
2016-09-05 20:08:53 +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-04-23 08:13:18 +08:00
|
|
|
/*
|
2017-07-21 01:02:54 +08:00
|
|
|
case 'insert_mention': {
|
2017-07-20 23:46:53 +08:00
|
|
|
// Pretend that we've autocompleted this user because keeping two code
|
|
|
|
// paths for inserting a user pill is not fun
|
2017-07-20 22:46:36 +08:00
|
|
|
const selection = this.state.editorState.getSelection();
|
2017-07-20 23:46:53 +08:00
|
|
|
const member = this.props.room.getMember(payload.user_id);
|
2017-08-09 17:40:06 +08:00
|
|
|
const completion = member ?
|
|
|
|
member.rawDisplayName.replace(' (IRC)', '') : payload.user_id;
|
2017-07-20 23:46:53 +08:00
|
|
|
this.setDisplayedCompletion({
|
|
|
|
completion,
|
2017-07-20 22:46:36 +08:00
|
|
|
selection,
|
2017-12-13 07:33:40 +08:00
|
|
|
href: makeUserPermalink(payload.user_id),
|
2017-07-20 23:46:53 +08:00
|
|
|
suffix: selection.getStartOffset() === 0 ? ': ' : ' ',
|
|
|
|
});
|
2016-09-05 20:08:53 +08:00
|
|
|
}
|
2016-12-01 01:16:33 +08:00
|
|
|
break;
|
2017-12-13 07:29:43 +08:00
|
|
|
|
|
|
|
case 'quote': { // old quoting, whilst rich quoting is in labs
|
|
|
|
/// XXX: Not doing rich-text quoting from formatted-body because draft-js
|
|
|
|
/// has regressed such that when links are quoted, errors are thrown. See
|
|
|
|
/// https://github.com/vector-im/riot-web/issues/4756.
|
|
|
|
const body = escape(payload.text);
|
|
|
|
if (body) {
|
|
|
|
let content = RichText.htmlToContentState(`<blockquote>${body}</blockquote>`);
|
|
|
|
if (!this.state.isRichtextEnabled) {
|
|
|
|
content = ContentState.createFromText(RichText.stateToMarkdown(content));
|
|
|
|
}
|
|
|
|
|
|
|
|
const blockMap = content.getBlockMap();
|
|
|
|
let startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
|
|
|
|
contentState = Modifier.splitBlock(contentState, startSelection);
|
|
|
|
startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
|
|
|
|
contentState = Modifier.replaceWithFragment(contentState,
|
|
|
|
startSelection,
|
|
|
|
blockMap);
|
|
|
|
startSelection = SelectionState.createEmpty(contentState.getFirstBlock().getKey());
|
|
|
|
if (this.state.isRichtextEnabled) {
|
|
|
|
contentState = Modifier.setBlockType(contentState, startSelection, 'blockquote');
|
|
|
|
}
|
|
|
|
let editorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
|
|
|
|
editorState = EditorState.moveSelectionToEnd(editorState);
|
|
|
|
this.onEditorContentChanged(editorState);
|
|
|
|
editor.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
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-08 08:54:06 +08:00
|
|
|
onChange = (change: Change) => {
|
2018-05-06 08:18:26 +08:00
|
|
|
/*
|
2016-07-08 15:24:28 +08:00
|
|
|
editorState = RichText.attachImmutableEntitiesToEmoji(editorState);
|
2016-09-13 18:11:52 +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);
|
|
|
|
}
|
|
|
|
|
2017-07-14 00:37:43 +08:00
|
|
|
// Automatic replacement of plaintext emoji to Unicode emoji
|
2017-10-29 15:43:52 +08:00
|
|
|
if (SettingsStore.getValue('MessageComposerInput.autoReplaceEmoji')) {
|
2017-07-14 00:37:43 +08:00
|
|
|
// The first matched group includes just the matched plaintext emoji
|
|
|
|
const emojiMatch = REGEX_EMOJI_WHITESPACE.exec(text.slice(0, currentStartOffset));
|
2017-11-16 21:19:36 +08:00
|
|
|
if (emojiMatch) {
|
2017-07-14 00:37:43 +08:00
|
|
|
// plaintext -> hex unicode
|
|
|
|
const emojiUc = asciiList[emojiMatch[1]];
|
|
|
|
// hex unicode -> shortname -> actual unicode
|
|
|
|
const unicodeEmoji = shortnameToUnicode(EMOJI_UNICODE_TO_SHORTNAME[emojiUc]);
|
|
|
|
const newContentState = Modifier.replaceText(
|
|
|
|
editorState.getCurrentContent(),
|
|
|
|
currentSelection.merge({
|
2017-08-01 21:26:30 +08:00
|
|
|
anchorOffset: currentStartOffset - emojiMatch[1].length - 1,
|
2017-07-14 00:37:43 +08:00
|
|
|
focusOffset: currentStartOffset,
|
|
|
|
}),
|
|
|
|
unicodeEmoji,
|
|
|
|
);
|
|
|
|
editorState = EditorState.push(
|
|
|
|
editorState,
|
|
|
|
newContentState,
|
|
|
|
'insert-characters',
|
|
|
|
);
|
|
|
|
editorState = EditorState.forceSelection(editorState, newContentState.getSelectionAfter());
|
|
|
|
}
|
|
|
|
}
|
2018-05-06 08:18:26 +08:00
|
|
|
*/
|
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-06 22:27:27 +08:00
|
|
|
editorState: change.value,
|
2016-12-30 22:12:36 +08:00
|
|
|
originalEditorState: null,
|
|
|
|
});
|
|
|
|
};
|
2016-06-10 02:23:09 +08:00
|
|
|
|
2016-12-30 22:12:36 +08:00
|
|
|
/**
|
|
|
|
* We're overriding setState here because it's the most convenient way to monitor changes to the editorState.
|
|
|
|
* Doing it using a separate function that calls setState is a possibility (and was the old approach), but that
|
|
|
|
* approach requires a callback and an extra setState whenever trying to set multiple state properties.
|
|
|
|
*
|
|
|
|
* @param state
|
|
|
|
* @param callback
|
|
|
|
*/
|
|
|
|
setState(state, callback) {
|
2018-05-06 08:18:26 +08:00
|
|
|
/*
|
2016-12-30 22:12:36 +08:00
|
|
|
if (state.editorState != null) {
|
2017-02-10 04:36:06 +08:00
|
|
|
state.editorState = RichText.attachImmutableEntitiesToEmoji(
|
|
|
|
state.editorState);
|
2016-06-17 07:28:09 +08:00
|
|
|
|
2017-08-10 00:36:35 +08:00
|
|
|
// Hide the autocomplete if the cursor location changes but the plaintext
|
|
|
|
// content stays the same. We don't hide if the pt has changed because the
|
|
|
|
// autocomplete will probably have different completions to show.
|
|
|
|
if (
|
|
|
|
!state.editorState.getSelection().equals(
|
2017-10-12 00:56:17 +08:00
|
|
|
this.state.editorState.getSelection(),
|
2017-08-10 00:36:35 +08:00
|
|
|
)
|
|
|
|
&& state.editorState.getCurrentContent().getPlainText() ===
|
|
|
|
this.state.editorState.getCurrentContent().getPlainText()
|
|
|
|
) {
|
|
|
|
this.autocomplete.hide();
|
|
|
|
}
|
|
|
|
|
2016-12-30 22:12:36 +08:00
|
|
|
if (state.editorState.getCurrentContent().hasText()) {
|
|
|
|
this.onTypingActivity();
|
|
|
|
} else {
|
|
|
|
this.onFinishedTyping();
|
|
|
|
}
|
2016-09-04 23:33:40 +08:00
|
|
|
|
2017-07-05 17:24:55 +08:00
|
|
|
// Record the editor state for this room so that it can be retrieved after
|
|
|
|
// switching to another room and back
|
|
|
|
dis.dispatch({
|
2018-04-23 08:13:18 +08:00
|
|
|
action: 'editor_state',
|
2017-07-05 17:24:55 +08:00
|
|
|
room_id: this.props.room.roomId,
|
2018-04-23 08:13:18 +08:00
|
|
|
editor_state: state.editorState.getCurrentContent(),
|
2017-07-05 17:24:55 +08:00
|
|
|
});
|
|
|
|
|
2016-12-30 22:12:36 +08:00
|
|
|
if (!state.hasOwnProperty('originalEditorState')) {
|
|
|
|
state.originalEditorState = null;
|
|
|
|
}
|
2016-06-17 07:28:09 +08:00
|
|
|
}
|
2018-05-06 08:18:26 +08:00
|
|
|
*/
|
2017-02-10 04:36:06 +08:00
|
|
|
super.setState(state, () => {
|
2016-12-30 22:12:36 +08:00
|
|
|
if (callback != null) {
|
2017-02-10 04:36:06 +08:00
|
|
|
callback();
|
2016-12-30 22:12:36 +08:00
|
|
|
}
|
2018-05-06 08:18:26 +08:00
|
|
|
/*
|
2017-07-25 22:22:10 +08:00
|
|
|
const textContent = this.state.editorState.getCurrentContent().getPlainText();
|
|
|
|
const selection = RichText.selectionStateToTextOffsets(
|
|
|
|
this.state.editorState.getSelection(),
|
|
|
|
this.state.editorState.getCurrentContent().getBlocksAsArray());
|
2016-12-30 22:12:36 +08:00
|
|
|
if (this.props.onContentChanged) {
|
|
|
|
this.props.onContentChanged(textContent, selection);
|
|
|
|
}
|
2017-07-25 22:22:10 +08:00
|
|
|
|
|
|
|
// Scroll to the bottom of the editor if the cursor is on the last line of the
|
|
|
|
// composer. For some reason the editor won't scroll automatically if we paste
|
|
|
|
// blocks of text in or insert newlines.
|
|
|
|
if (textContent.slice(selection.start).indexOf("\n") === -1) {
|
2018-01-03 08:50:03 +08:00
|
|
|
let editorRoot = this.refs.editor.refs.editor.parentNode.parentNode;
|
|
|
|
editorRoot.scrollTop = editorRoot.scrollHeight;
|
2017-07-25 22:22:10 +08:00
|
|
|
}
|
2018-05-06 08:18:26 +08:00
|
|
|
*/
|
2016-12-30 22:12:36 +08:00
|
|
|
});
|
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
|
2016-06-12 00:54:09 +08:00
|
|
|
enableRichtext(enabled: boolean) {
|
2017-03-10 23:04:31 +08:00
|
|
|
if (enabled === this.state.isRichtextEnabled) return;
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
// FIXME: this conversion should be handled in the store, surely
|
|
|
|
// i.e. "convert my current composer value into Rich or MD, as ComposerHistoryManager already does"
|
|
|
|
|
|
|
|
let value = null;
|
2016-06-12 05:51:18 +08:00
|
|
|
if (enabled) {
|
2018-04-23 08:13:18 +08:00
|
|
|
// const md = new Markdown(this.state.editorState.getCurrentContent().getPlainText());
|
|
|
|
// contentState = RichText.htmlToContentState(md.toHTML());
|
|
|
|
|
2018-05-07 05:08:36 +08:00
|
|
|
value = Md.deserialize(Plain.serialize(this.state.editorState));
|
2016-06-12 00:54:09 +08:00
|
|
|
} else {
|
2018-04-23 08:13:18 +08:00
|
|
|
// let markdown = RichText.stateToMarkdown(this.state.editorState.getCurrentContent());
|
|
|
|
// value = ContentState.createFromText(markdown);
|
|
|
|
|
2018-05-07 05:08:36 +08:00
|
|
|
value = Plain.deserialize(Md.serialize(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-04-23 08:13:18 +08:00
|
|
|
editorState: this.createEditorState(enabled, value),
|
2016-12-30 22:12:36 +08:00
|
|
|
isRichtextEnabled: enabled,
|
2016-09-13 19:16:20 +08:00
|
|
|
});
|
2017-11-04 13:19:45 +08:00
|
|
|
SettingsStore.setValue("MessageComposerInput.isRichTextEnabled", null, SettingLevel.ACCOUNT, enabled);
|
2016-06-12 00:54:09 +08:00
|
|
|
}
|
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-08 08:54:06 +08:00
|
|
|
switch (ev.keyCode) {
|
|
|
|
case KeyCode.ENTER:
|
|
|
|
return this.handleReturn(ev);
|
|
|
|
case KeyCode.UP:
|
|
|
|
return this.onVerticalArrow(ev, true);
|
|
|
|
case KeyCode.DOWN:
|
|
|
|
return this.onVerticalArrow(ev, false);
|
|
|
|
default:
|
|
|
|
// don't intercept it
|
|
|
|
return;
|
2018-05-07 05:08:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 01:16:33 +08:00
|
|
|
handleKeyCommand = (command: string): boolean => {
|
2016-07-08 15:24:28 +08:00
|
|
|
if (command === 'toggle-mode') {
|
2016-06-12 00:54:09 +08:00
|
|
|
this.enableRichtext(!this.state.isRichtextEnabled);
|
2016-06-11 18:22:08 +08:00
|
|
|
return true;
|
|
|
|
}
|
2018-05-08 08:54:06 +08:00
|
|
|
/*
|
2016-06-12 00:54:09 +08:00
|
|
|
let newState: ?EditorState = null;
|
|
|
|
|
|
|
|
// Draft handles rich text mode commands by default but we need to do it ourselves for Markdown.
|
2016-09-08 01:22:14 +08:00
|
|
|
if (this.state.isRichtextEnabled) {
|
|
|
|
// These are block types, not handled by RichUtils by default.
|
|
|
|
const blockCommands = ['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item'];
|
2017-07-19 00:52:04 +08:00
|
|
|
const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState);
|
2017-07-28 21:46:57 +08:00
|
|
|
|
|
|
|
const shouldToggleBlockFormat = (
|
|
|
|
command === 'backspace' ||
|
|
|
|
command === 'split-block'
|
|
|
|
) && currentBlockType !== 'unstyled';
|
|
|
|
|
2016-09-08 01:22:14 +08:00
|
|
|
if (blockCommands.includes(command)) {
|
2017-07-19 00:52:04 +08:00
|
|
|
newState = RichUtils.toggleBlockType(this.state.editorState, command);
|
2016-09-08 01:22:14 +08:00
|
|
|
} else if (command === 'strike') {
|
|
|
|
// this is the only inline style not handled by Draft by default
|
2017-07-19 00:52:04 +08:00
|
|
|
newState = RichUtils.toggleInlineStyle(this.state.editorState, 'STRIKETHROUGH');
|
2017-07-28 21:46:57 +08:00
|
|
|
} else if (shouldToggleBlockFormat) {
|
2017-07-19 00:52:04 +08:00
|
|
|
const currentStartOffset = this.state.editorState.getSelection().getStartOffset();
|
2017-08-08 00:16:42 +08:00
|
|
|
const currentEndOffset = this.state.editorState.getSelection().getEndOffset();
|
|
|
|
if (currentStartOffset === 0 && currentEndOffset === 0) {
|
2017-07-19 00:52:04 +08:00
|
|
|
// Toggle current block type (setting it to 'unstyled')
|
|
|
|
newState = RichUtils.toggleBlockType(this.state.editorState, currentBlockType);
|
|
|
|
}
|
2016-09-08 01:22:14 +08:00
|
|
|
}
|
|
|
|
} else {
|
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)
|
|
|
|
'code': (text) => treatInlineCodeAsBlock ? textMdCodeBlock(text) : `\`${text}\``,
|
|
|
|
'code-block': 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,
|
2017-07-19 22:00:25 +08:00
|
|
|
'code': treatInlineCodeAsBlock ? -5 : -1,
|
2017-07-03 22:23:24 +08:00
|
|
|
'code-block': -5,
|
|
|
|
'blockquote': -2,
|
|
|
|
}[command];
|
|
|
|
|
|
|
|
// Returns a function that collapses a selectionState to its end and moves it by offset
|
|
|
|
const collapseAndOffsetSelection = (selectionState, offset) => {
|
|
|
|
const key = selectionState.getEndKey();
|
|
|
|
return new SelectionState({
|
|
|
|
anchorKey: key, anchorOffset: offset,
|
|
|
|
focusKey: key, focusOffset: offset,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-07-08 15:24:28 +08:00
|
|
|
if (modifyFn) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-20 22:22:27 +08:00
|
|
|
if (newState == null) {
|
2016-06-12 00:54:09 +08:00
|
|
|
newState = RichUtils.handleKeyCommand(this.state.editorState, command);
|
2017-01-20 22:22:27 +08:00
|
|
|
}
|
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-04-23 08:13:18 +08:00
|
|
|
*/
|
2016-05-27 12:45:55 +08:00
|
|
|
return false;
|
2017-12-10 20:50:41 +08:00
|
|
|
};
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
|
|
|
onTextPasted = (text: string, html?: string) => {
|
2017-06-28 00:10:28 +08:00
|
|
|
const currentSelection = this.state.editorState.getSelection();
|
|
|
|
const currentContent = this.state.editorState.getCurrentContent();
|
|
|
|
|
|
|
|
let contentState = null;
|
2017-07-06 18:52:02 +08:00
|
|
|
if (html && this.state.isRichtextEnabled) {
|
2017-06-28 00:10:28 +08:00
|
|
|
contentState = Modifier.replaceWithFragment(
|
|
|
|
currentContent,
|
|
|
|
currentSelection,
|
|
|
|
RichText.htmlToContentState(html).getBlockMap(),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
contentState = Modifier.replaceText(currentContent, currentSelection, text);
|
|
|
|
}
|
|
|
|
|
|
|
|
let newEditorState = EditorState.push(this.state.editorState, contentState, 'insert-characters');
|
|
|
|
|
|
|
|
newEditorState = EditorState.forceSelection(newEditorState, contentState.getSelectionAfter());
|
|
|
|
this.onEditorContentChanged(newEditorState);
|
|
|
|
return true;
|
2018-04-23 08:13:18 +08:00
|
|
|
};
|
|
|
|
*/
|
|
|
|
handleReturn = (ev) => {
|
2016-07-04 00:45:13 +08:00
|
|
|
if (ev.shiftKey) {
|
2018-05-08 08:54:06 +08:00
|
|
|
return;
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
2018-05-08 08:54:06 +08:00
|
|
|
/*
|
2017-03-07 07:09:38 +08:00
|
|
|
const currentBlockType = RichUtils.getCurrentBlockType(this.state.editorState);
|
2017-11-16 21:19:36 +08:00
|
|
|
if (
|
2017-07-14 01:42:37 +08:00
|
|
|
['code-block', 'blockquote', 'unordered-list-item', 'ordered-list-item']
|
|
|
|
.includes(currentBlockType)
|
|
|
|
) {
|
|
|
|
// By returning false, we allow the default draft-js key binding to occur,
|
|
|
|
// which in this case invokes "split-block". This creates a new block of the
|
|
|
|
// same type, allowing the user to delete it with backspace.
|
2017-07-19 00:52:04 +08:00
|
|
|
// See handleKeyCommand (when command === 'backspace')
|
2017-03-07 07:09:38 +08:00
|
|
|
return false;
|
2016-07-04 00:45:13 +08:00
|
|
|
}
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
|
|
|
const contentState = this.state.editorState;
|
2016-09-24 01:50:25 +08:00
|
|
|
|
2018-05-07 05:08:36 +08:00
|
|
|
let contentText = Plain.serialize(contentState);
|
2018-04-23 08:13:18 +08:00
|
|
|
let contentHTML;
|
2016-06-11 18:22:08 +08:00
|
|
|
|
2018-05-08 08:54:06 +08:00
|
|
|
if (contentText === '') return true;
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
2017-07-27 22:18:06 +08:00
|
|
|
// Strip MD user (tab-completed) mentions to preserve plaintext mention behaviour.
|
|
|
|
// We have to do this now as opposed to after calculating the contentText for MD
|
|
|
|
// mode because entity positions may not be maintained when using
|
|
|
|
// md.toPlaintext().
|
|
|
|
// Unfortunately this means we lose mentions in history when in MD mode. This
|
|
|
|
// would be fixed if history was stored as contentState.
|
|
|
|
contentText = this.removeMDLinks(contentState, ['@']);
|
|
|
|
|
|
|
|
// Some commands (/join) require pills to be replaced with their text content
|
|
|
|
const commandText = this.removeMDLinks(contentState, ['#']);
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
|
|
|
const commandText = contentText;
|
2017-07-27 22:18:06 +08:00
|
|
|
const cmd = SlashCommands.processInput(this.props.room.roomId, commandText);
|
2016-06-12 02:41:27 +08:00
|
|
|
if (cmd) {
|
|
|
|
if (!cmd.error) {
|
2018-04-23 08:13:18 +08:00
|
|
|
this.historyManager.save(contentState, 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(),
|
2016-06-12 02:41:27 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
if (cmd.promise) {
|
2017-02-10 04:03:06 +08:00
|
|
|
cmd.promise.then(function() {
|
2016-06-12 02:41:27 +08:00
|
|
|
console.log("Command success.");
|
2017-02-10 04:03:06 +08:00
|
|
|
}, function(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
|
|
|
|
2016-09-05 20:08:53 +08:00
|
|
|
if (this.state.isRichtextEnabled) {
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
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-06-30 01:08:57 +08:00
|
|
|
const blocks = contentState.getBlocksAsArray();
|
|
|
|
if (blocks.some((block) => block.getType() !== 'unstyled')) {
|
|
|
|
shouldSendHTML = true;
|
|
|
|
} else {
|
|
|
|
const characterLists = blocks.map((block) => block.getCharacterList());
|
|
|
|
// For each block of characters, determine if any inline styles are applied
|
|
|
|
// and if yes, send HTML
|
|
|
|
characterLists.forEach((characters) => {
|
|
|
|
const numberOfStylesForCharacters = characters.map(
|
|
|
|
(character) => character.getStyle().toArray().length,
|
|
|
|
).toArray();
|
|
|
|
// If any character has more than 0 inline styles applied, send HTML
|
|
|
|
if (numberOfStylesForCharacters.some((styles) => styles > 0)) {
|
|
|
|
shouldSendHTML = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-07-13 20:27:49 +08:00
|
|
|
if (!shouldSendHTML) {
|
2017-07-13 20:41:17 +08:00
|
|
|
const hasLink = blocks.some((block) => {
|
2017-07-13 20:27:49 +08:00
|
|
|
return block.getCharacterList().filter((c) => {
|
2017-07-13 20:41:17 +08:00
|
|
|
const entityKey = c.getEntity();
|
2017-08-03 18:29:26 +08:00
|
|
|
return entityKey && contentState.getEntity(entityKey).getType() === 'LINK';
|
2017-07-13 20:27:49 +08:00
|
|
|
}).size > 0;
|
|
|
|
});
|
2017-07-13 20:41:17 +08:00
|
|
|
shouldSendHTML = hasLink;
|
2017-07-13 20:27:49 +08:00
|
|
|
}
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
2018-05-07 05:08:36 +08:00
|
|
|
let shouldSendHTML = true;
|
2017-06-30 01:08:57 +08:00
|
|
|
if (shouldSendHTML) {
|
|
|
|
contentHTML = HtmlUtils.processHtmlForSending(
|
2018-05-07 05:08:36 +08:00
|
|
|
RichText.editorStateToHTML(contentState),
|
2017-06-30 01:08:57 +08:00
|
|
|
);
|
|
|
|
}
|
2016-06-11 18:22:08 +08:00
|
|
|
} else {
|
2017-07-28 01:07:41 +08:00
|
|
|
// Use the original contentState because `contentText` has had mentions
|
|
|
|
// stripped and these need to end up in contentHTML.
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
2017-07-28 01:07:41 +08:00
|
|
|
// Replace all Entities of type `LINK` with markdown link equivalents.
|
|
|
|
// TODO: move this into `Markdown` and do the same conversion in the other
|
|
|
|
// two places (toggling from MD->RT mode and loading MD history into RT mode)
|
|
|
|
// but this can only be done when history includes Entities.
|
|
|
|
const pt = contentState.getBlocksAsArray().map((block) => {
|
|
|
|
let blockText = block.getText();
|
|
|
|
let offset = 0;
|
2017-11-06 23:11:42 +08:00
|
|
|
this.findPillEntities(contentState, block, (start, end) => {
|
2017-08-03 18:29:26 +08:00
|
|
|
const entity = contentState.getEntity(block.getEntityAt(start));
|
2017-07-28 01:07:41 +08:00
|
|
|
if (entity.getType() !== 'LINK') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const text = blockText.slice(offset + start, offset + end);
|
|
|
|
const url = entity.getData().url;
|
|
|
|
const mdLink = `[${text}](${url})`;
|
|
|
|
blockText = blockText.slice(0, offset + start) + mdLink + blockText.slice(offset + end);
|
|
|
|
offset += mdLink.length - text.length;
|
|
|
|
});
|
|
|
|
return blockText;
|
|
|
|
}).join('\n');
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
2018-05-07 05:08:36 +08:00
|
|
|
const md = new Markdown(contentText);
|
2017-12-10 20:50:41 +08:00
|
|
|
// if contains no HTML and we're not quoting (needing HTML)
|
2018-03-10 07:37:42 +08:00
|
|
|
if (md.isPlainText() && !mustSendHTML) {
|
2017-01-19 02:29:11 +08:00
|
|
|
contentText = md.toPlaintext();
|
2016-12-03 02:58:35 +08:00
|
|
|
} else {
|
2018-05-07 05:08:36 +08:00
|
|
|
contentText = md.toPlaintext();
|
2017-01-19 18:55:36 +08:00
|
|
|
contentHTML = md.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(
|
|
|
|
contentState,
|
2018-04-23 08:13:18 +08:00
|
|
|
this.state.isRichtextEnabled ? 'rich' : 'markdown',
|
2017-07-21 01:01:39 +08:00
|
|
|
);
|
2017-03-10 23:04:31 +08:00
|
|
|
|
2017-07-03 22:47:03 +08:00
|
|
|
if (contentText.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
|
|
|
}
|
|
|
|
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2018-03-10 07:37:42 +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-03-04 20:39:34 +08:00
|
|
|
// Part of Replies fallback support - prepend the text we're sending with the text we're replying to
|
|
|
|
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();
|
|
|
|
|
|
|
|
let navigateHistory = false;
|
|
|
|
if (up) {
|
|
|
|
let scrollCorrection = editorNode.scrollTop;
|
|
|
|
if (cursorRect.top - editorRect.top + scrollCorrection == 0) {
|
|
|
|
navigateHistory = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let scrollCorrection =
|
|
|
|
editorNode.scrollHeight - editorNode.clientHeight - editorNode.scrollTop;
|
|
|
|
if (cursorRect.bottom - editorRect.bottom + scrollCorrection == 0) {
|
|
|
|
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-08 08:54:06 +08:00
|
|
|
let editorState = this.historyManager.getItem(delta, this.state.isRichtextEnabled ? 'rich' : 'markdown');
|
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);
|
|
|
|
// XXX: should we be calling this.onChange(change) now?
|
|
|
|
// we skip it for now given we know we're about to setState anyway
|
|
|
|
editorState = change.value;
|
2017-06-29 22:07:06 +08:00
|
|
|
|
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 => {
|
2018-05-06 07:18:11 +08:00
|
|
|
/*
|
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 is a workaround from https://github.com/facebook/draft-js/issues/458
|
|
|
|
// Due to the way we swap editorStates, Draft does not rerender at times
|
|
|
|
editorState = EditorState.forceSelection(editorState,
|
|
|
|
editorState.getSelection());
|
|
|
|
this.setState({editorState});
|
2016-09-13 18:11:52 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-20 23:46:53 +08:00
|
|
|
const {range = null, completion = '', href = null, suffix = ''} = displayedCompletion;
|
2017-08-03 18:18:56 +08:00
|
|
|
let contentState = activeEditorState.getCurrentContent();
|
2017-07-20 23:46:53 +08:00
|
|
|
|
2017-07-17 22:53:29 +08:00
|
|
|
let entityKey;
|
2017-07-20 22:09:59 +08:00
|
|
|
if (href) {
|
2017-08-03 18:18:56 +08:00
|
|
|
contentState = contentState.createEntity('LINK', 'IMMUTABLE', {
|
2017-07-24 21:41:13 +08:00
|
|
|
url: href,
|
|
|
|
isCompletion: true,
|
|
|
|
});
|
2017-08-03 18:18:56 +08:00
|
|
|
entityKey = contentState.getLastCreatedEntityKey();
|
2017-11-06 23:11:42 +08:00
|
|
|
} else if (completion === '@room') {
|
2017-11-07 01:15:09 +08:00
|
|
|
contentState = contentState.createEntity(ENTITY_TYPES.AT_ROOM_PILL, 'IMMUTABLE', {
|
2017-11-06 23:11:42 +08:00
|
|
|
isCompletion: true,
|
|
|
|
});
|
|
|
|
entityKey = contentState.getLastCreatedEntityKey();
|
2017-07-17 22:53:29 +08:00
|
|
|
}
|
2016-09-13 18:11:52 +08:00
|
|
|
|
2017-07-20 23:46:53 +08:00
|
|
|
let selection;
|
|
|
|
if (range) {
|
|
|
|
selection = RichText.textOffsetsToSelectionState(
|
2017-08-03 18:18:56 +08:00
|
|
|
range, contentState.getBlocksAsArray(),
|
2017-07-20 23:46:53 +08:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
selection = activeEditorState.getSelection();
|
|
|
|
}
|
|
|
|
|
2017-08-03 18:18:56 +08:00
|
|
|
contentState = Modifier.replaceText(contentState, selection, completion, null, entityKey);
|
2016-07-04 00:45:13 +08:00
|
|
|
|
2017-07-20 18:45:25 +08:00
|
|
|
// Move the selection to the end of the block
|
|
|
|
const afterSelection = contentState.getSelectionAfter();
|
|
|
|
if (suffix) {
|
|
|
|
contentState = Modifier.replaceText(contentState, afterSelection, suffix);
|
|
|
|
}
|
|
|
|
|
2016-09-13 18:11:52 +08:00
|
|
|
let editorState = EditorState.push(activeEditorState, contentState, 'insert-characters');
|
2016-07-08 15:24:28 +08:00
|
|
|
editorState = EditorState.forceSelection(editorState, contentState.getSelectionAfter());
|
2016-12-30 22:12:36 +08:00
|
|
|
this.setState({editorState, originalEditorState: activeEditorState});
|
2016-07-04 00:45:13 +08:00
|
|
|
|
|
|
|
// for some reason, doing this right away does not update the editor :(
|
2017-02-10 06:10:57 +08:00
|
|
|
// setTimeout(() => this.refs.editor.focus(), 50);
|
2018-05-06 07:18:11 +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-04-23 08:13:18 +08:00
|
|
|
onFormatButtonClicked = (name: "bold" | "italic" | "strike" | "code" | "underline" | "quote" | "bullet" | "numbullet", e) => {
|
2016-09-08 05:16:56 +08:00
|
|
|
e.preventDefault(); // don't steal focus from the editor!
|
2018-04-23 08:13:18 +08:00
|
|
|
/*
|
2016-09-08 01:22:14 +08:00
|
|
|
const command = {
|
2016-12-01 01:16:33 +08:00
|
|
|
code: 'code-block',
|
|
|
|
quote: 'blockquote',
|
|
|
|
bullet: 'unordered-list-item',
|
|
|
|
numbullet: 'ordered-list-item',
|
|
|
|
}[name] || name;
|
2016-09-08 01:22:14 +08:00
|
|
|
this.handleKeyCommand(command);
|
2018-04-23 08:13:18 +08:00
|
|
|
*/
|
|
|
|
};
|
2016-09-04 23:33:40 +08:00
|
|
|
|
|
|
|
/* returns inline style and block type of current SelectionState so MessageComposer can render formatting
|
2016-12-01 01:16:33 +08:00
|
|
|
buttons. */
|
2018-05-06 07:18:11 +08:00
|
|
|
getSelectionInfo(editorState: Value) {
|
2018-05-06 06:38:14 +08:00
|
|
|
return {};
|
2018-05-06 06:25:04 +08:00
|
|
|
/*
|
2016-09-04 23:33:40 +08:00
|
|
|
const styleName = {
|
2017-09-23 03:43:27 +08:00
|
|
|
BOLD: _td('bold'),
|
|
|
|
ITALIC: _td('italic'),
|
|
|
|
STRIKETHROUGH: _td('strike'),
|
|
|
|
UNDERLINE: _td('underline'),
|
2016-09-04 23:33:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const originalStyle = editorState.getCurrentInlineStyle().toArray();
|
|
|
|
const style = originalStyle
|
2017-02-10 04:03:06 +08:00
|
|
|
.map((style) => styleName[style] || null)
|
|
|
|
.filter((styleName) => !!styleName);
|
2016-09-04 23:33:40 +08:00
|
|
|
|
|
|
|
const blockName = {
|
2017-09-23 03:43:27 +08:00
|
|
|
'code-block': _td('code'),
|
|
|
|
'blockquote': _td('quote'),
|
|
|
|
'unordered-list-item': _td('bullet'),
|
|
|
|
'ordered-list-item': _td('numbullet'),
|
2016-09-04 23:33:40 +08:00
|
|
|
};
|
|
|
|
const originalBlockType = editorState.getCurrentContent()
|
|
|
|
.getBlockForKey(editorState.getSelection().getStartKey())
|
|
|
|
.getType();
|
|
|
|
const blockType = blockName[originalBlockType] || null;
|
|
|
|
|
|
|
|
return {
|
|
|
|
style,
|
|
|
|
blockType,
|
|
|
|
};
|
2018-05-06 06:25:04 +08:00
|
|
|
*/
|
2016-09-04 23:33:40 +08:00
|
|
|
}
|
|
|
|
|
2017-07-27 22:18:06 +08:00
|
|
|
getAutocompleteQuery(contentState: ContentState) {
|
2018-05-06 07:18:11 +08:00
|
|
|
return '';
|
2018-05-06 06:25:04 +08:00
|
|
|
|
2017-07-27 22:18:06 +08:00
|
|
|
// Don't send markdown links to the autocompleter
|
2018-05-06 06:25:04 +08:00
|
|
|
// return this.removeMDLinks(contentState, ['@', '#']);
|
2017-07-27 22:18:06 +08:00
|
|
|
}
|
|
|
|
|
2018-05-06 06:25:04 +08:00
|
|
|
/*
|
2017-07-27 22:18:06 +08:00
|
|
|
removeMDLinks(contentState: ContentState, prefixes: string[]) {
|
|
|
|
const plaintext = contentState.getPlainText();
|
|
|
|
if (!plaintext) return '';
|
|
|
|
return plaintext.replace(REGEX_MATRIXTO_MARKDOWN_GLOBAL,
|
|
|
|
(markdownLink, text, resource, prefix, offset) => {
|
|
|
|
if (!prefixes.includes(prefix)) return markdownLink;
|
|
|
|
// Calculate the offset relative to the current block that the offset is in
|
|
|
|
let sum = 0;
|
|
|
|
const blocks = contentState.getBlocksAsArray();
|
|
|
|
let block;
|
|
|
|
for (let i = 0; i < blocks.length; i++) {
|
|
|
|
block = blocks[i];
|
|
|
|
sum += block.getLength();
|
|
|
|
if (sum > offset) {
|
|
|
|
sum -= block.getLength();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
offset -= sum;
|
|
|
|
|
|
|
|
const entityKey = block.getEntityAt(offset);
|
2017-08-03 18:29:26 +08:00
|
|
|
const entity = entityKey ? contentState.getEntity(entityKey) : null;
|
2017-07-27 22:18:06 +08:00
|
|
|
if (entity && entity.getData().isCompletion) {
|
|
|
|
// This is a completed mention, so do not insert MD link, just text
|
|
|
|
return text;
|
|
|
|
} else {
|
|
|
|
// This is either a MD link that was typed into the composer or another
|
|
|
|
// type of pill (e.g. room pill)
|
|
|
|
return markdownLink;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-05-06 06:25:04 +08:00
|
|
|
*/
|
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
|
|
|
|
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
|
|
|
|
2018-05-06 07:18:11 +08:00
|
|
|
let hidePlaceholder = false;
|
|
|
|
// FIXME: in case we need to implement manual placeholdering
|
|
|
|
|
2016-09-04 23:33:40 +08:00
|
|
|
const className = classNames('mx_MessageComposer_input', {
|
2016-12-01 01:16:33 +08:00
|
|
|
mx_MessageComposer_input_empty: hidePlaceholder,
|
2017-07-06 01:14:22 +08:00
|
|
|
mx_MessageComposer_input_error: this.state.someCompletions === false,
|
2016-09-04 23:33:40 +08:00
|
|
|
});
|
|
|
|
|
2018-05-06 07:18:11 +08:00
|
|
|
const content = null;
|
|
|
|
const selection = {
|
|
|
|
start: 0,
|
|
|
|
end: 0,
|
|
|
|
};
|
|
|
|
|
2018-05-06 06:25:04 +08:00
|
|
|
// const content = activeEditorState.getCurrentContent();
|
|
|
|
// const selection = RichText.selectionStateToTextOffsets(activeEditorState.getSelection(),
|
|
|
|
// activeEditorState.getCurrentContent().getBlocksAsArray());
|
2016-09-13 18:11:52 +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}
|
2017-07-27 22:18:06 +08:00
|
|
|
query={this.getAutocompleteQuery(content)}
|
2017-11-03 01:51:08 +08:00
|
|
|
selection={selection}
|
|
|
|
/>
|
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}
|
2017-10-12 00:56:17 +08:00
|
|
|
title={this.state.isRichtextEnabled ? _t("Markdown is disabled") : _t("Markdown is enabled")}
|
2016-09-13 18:11:52 +08:00
|
|
|
src={`img/button-md-${!this.state.isRichtextEnabled}.png`} />
|
|
|
|
<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-06 08:18:26 +08:00
|
|
|
/*
|
2016-09-13 18:11:52 +08:00
|
|
|
blockStyleFn={MessageComposerInput.getBlockStyle}
|
|
|
|
keyBindingFn={MessageComposerInput.getKeyBinding}
|
|
|
|
handleKeyCommand={this.handleKeyCommand}
|
|
|
|
handleReturn={this.handleReturn}
|
2017-06-28 00:10:28 +08:00
|
|
|
handlePastedText={this.onTextPasted}
|
2017-05-17 08:41:42 +08:00
|
|
|
handlePastedFiles={this.props.onFilesPasted}
|
2016-09-13 18:11:52 +08:00
|
|
|
stripPastedStyles={!this.state.isRichtextEnabled}
|
|
|
|
onTab={this.onTab}
|
|
|
|
onUpArrow={this.onUpArrow}
|
|
|
|
onDownArrow={this.onDownArrow}
|
|
|
|
onEscape={this.onEscape}
|
2018-05-06 06:25:04 +08:00
|
|
|
spellCheck={true}
|
|
|
|
*/
|
|
|
|
/>
|
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
|
|
|
}
|
2016-05-27 12:45:55 +08:00
|
|
|
|
2016-05-28 14:28:22 +08:00
|
|
|
MessageComposerInput.propTypes = {
|
2016-05-27 12:45:55 +08:00
|
|
|
// 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-05-27 12:45:55 +08:00
|
|
|
|
|
|
|
// js-sdk Room object
|
2017-12-26 09:03:18 +08:00
|
|
|
room: PropTypes.object.isRequired,
|
2016-06-17 07:28:09 +08:00
|
|
|
|
|
|
|
// called with current plaintext content (as a string) whenever it changes
|
2017-12-26 09:03:18 +08:00
|
|
|
onContentChanged: PropTypes.func,
|
2016-06-21 21:03:39 +08:00
|
|
|
|
2017-12-26 09:03:18 +08:00
|
|
|
onFilesPasted: PropTypes.func,
|
2017-01-08 09:20:59 +08:00
|
|
|
|
2017-12-26 09:03:18 +08:00
|
|
|
onInputStateChanged: PropTypes.func,
|
2016-05-27 12:45:55 +08:00
|
|
|
};
|