2019-05-06 18:41:15 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import {_t} from '../../../languageHandler';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import dis from '../../../dispatcher';
|
2019-05-07 17:27:09 +03:00
|
|
|
import EditorModel from '../../../editor/model';
|
2019-05-13 18:42:00 +03:00
|
|
|
import {setCaretPosition} from '../../../editor/caret';
|
|
|
|
import {getCaretOffsetAndText} from '../../../editor/dom';
|
2019-05-14 12:37:57 +03:00
|
|
|
import {htmlSerialize, textSerialize, requiresHtml} from '../../../editor/serialize';
|
2019-05-14 12:53:42 +03:00
|
|
|
import {parseEvent} from '../../../editor/deserialize';
|
2019-05-09 16:00:48 +03:00
|
|
|
import Autocomplete from '../rooms/Autocomplete';
|
|
|
|
import {PartCreator} from '../../../editor/parts';
|
2019-05-14 12:37:57 +03:00
|
|
|
import {renderModel} from '../../../editor/render';
|
2019-05-06 18:41:15 +03:00
|
|
|
import {MatrixEvent, MatrixClient} from 'matrix-js-sdk';
|
2019-05-21 13:18:20 +03:00
|
|
|
import classNames from 'classnames';
|
2019-05-06 18:41:15 +03:00
|
|
|
|
|
|
|
export default class MessageEditor extends React.Component {
|
|
|
|
static propTypes = {
|
2019-05-15 11:46:08 +03:00
|
|
|
// the message event being edited
|
2019-05-06 18:41:15 +03:00
|
|
|
event: PropTypes.instanceOf(MatrixEvent).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
matrixClient: PropTypes.instanceOf(MatrixClient).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
2019-05-17 21:48:05 +03:00
|
|
|
const room = this.context.matrixClient.getRoom(this.props.event.getRoomId());
|
2019-05-09 16:00:48 +03:00
|
|
|
const partCreator = new PartCreator(
|
|
|
|
() => this._autocompleteRef,
|
|
|
|
query => this.setState({query}),
|
2019-05-17 21:48:05 +03:00
|
|
|
room,
|
2019-05-09 16:00:48 +03:00
|
|
|
);
|
2019-05-09 16:58:32 +03:00
|
|
|
this.model = new EditorModel(
|
2019-05-17 21:48:05 +03:00
|
|
|
parseEvent(this.props.event, room),
|
2019-05-09 16:58:32 +03:00
|
|
|
partCreator,
|
|
|
|
this._updateEditorState,
|
|
|
|
);
|
2019-05-09 16:00:48 +03:00
|
|
|
this.state = {
|
|
|
|
autoComplete: null,
|
|
|
|
room,
|
|
|
|
};
|
2019-05-08 15:31:43 +03:00
|
|
|
this._editorRef = null;
|
2019-05-09 16:00:48 +03:00
|
|
|
this._autocompleteRef = null;
|
2019-05-07 17:27:09 +03:00
|
|
|
}
|
|
|
|
|
2019-05-09 16:58:32 +03:00
|
|
|
_updateEditorState = (caret) => {
|
2019-05-13 18:42:00 +03:00
|
|
|
renderModel(this._editorRef, this.model);
|
2019-05-09 16:58:32 +03:00
|
|
|
if (caret) {
|
2019-05-09 17:55:35 +03:00
|
|
|
try {
|
2019-05-13 18:42:00 +03:00
|
|
|
setCaretPosition(this._editorRef, this.model, caret);
|
2019-05-09 17:55:35 +03:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2019-05-09 16:58:32 +03:00
|
|
|
}
|
2019-05-09 16:00:48 +03:00
|
|
|
this.setState({autoComplete: this.model.autoComplete});
|
2019-05-09 16:58:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onInput = (event) => {
|
2019-05-13 19:45:54 +03:00
|
|
|
const sel = document.getSelection();
|
|
|
|
const {caret, text} = getCaretOffsetAndText(this._editorRef, sel);
|
2019-05-13 18:42:00 +03:00
|
|
|
this.model.update(text, event.inputType, caret);
|
2019-05-09 16:00:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onKeyDown = (event) => {
|
2019-05-17 12:22:02 +03:00
|
|
|
// insert newline on Shift+Enter
|
|
|
|
if (event.shiftKey && event.key === "Enter") {
|
|
|
|
event.preventDefault(); // just in case the browser does support this
|
|
|
|
document.execCommand("insertHTML", undefined, "\n");
|
2019-05-09 16:00:48 +03:00
|
|
|
return;
|
|
|
|
}
|
2019-05-17 12:22:02 +03:00
|
|
|
// autocomplete or enter to send below shouldn't have any modifier keys pressed.
|
|
|
|
if (event.metaKey || event.altKey || event.shiftKey) {
|
2019-05-09 16:00:48 +03:00
|
|
|
return;
|
|
|
|
}
|
2019-05-17 12:22:02 +03:00
|
|
|
if (this.model.autoComplete) {
|
|
|
|
const autoComplete = this.model.autoComplete;
|
|
|
|
switch (event.key) {
|
|
|
|
case "Enter":
|
|
|
|
autoComplete.onEnter(event); break;
|
|
|
|
case "ArrowUp":
|
|
|
|
autoComplete.onUpArrow(event); break;
|
|
|
|
case "ArrowDown":
|
|
|
|
autoComplete.onDownArrow(event); break;
|
|
|
|
case "Tab":
|
|
|
|
autoComplete.onTab(event); break;
|
|
|
|
case "Escape":
|
|
|
|
autoComplete.onEscape(event); break;
|
|
|
|
default:
|
|
|
|
return; // don't preventDefault on anything else
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
} else if (event.key === "Enter") {
|
|
|
|
this._sendEdit();
|
|
|
|
event.preventDefault();
|
2019-05-17 17:35:14 +03:00
|
|
|
} else if (event.key === "Escape") {
|
|
|
|
this._cancelEdit();
|
2019-05-09 16:00:48 +03:00
|
|
|
}
|
2019-05-06 18:41:15 +03:00
|
|
|
}
|
|
|
|
|
2019-05-17 17:35:14 +03:00
|
|
|
_cancelEdit = () => {
|
2019-05-06 18:41:15 +03:00
|
|
|
dis.dispatch({action: "edit_event", event: null});
|
|
|
|
}
|
|
|
|
|
2019-05-17 12:22:02 +03:00
|
|
|
_sendEdit = () => {
|
2019-05-14 18:32:08 +03:00
|
|
|
const newContent = {
|
2019-05-14 12:37:57 +03:00
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": textSerialize(this.model),
|
2019-05-14 18:32:08 +03:00
|
|
|
};
|
2019-05-15 17:54:05 +03:00
|
|
|
const contentBody = {
|
|
|
|
msgtype: newContent.msgtype,
|
|
|
|
body: ` * ${newContent.body}`,
|
|
|
|
};
|
2019-05-14 18:32:08 +03:00
|
|
|
if (requiresHtml(this.model)) {
|
|
|
|
newContent.format = "org.matrix.custom.html";
|
|
|
|
newContent.formatted_body = htmlSerialize(this.model);
|
2019-05-15 17:54:05 +03:00
|
|
|
contentBody.format = newContent.format;
|
|
|
|
contentBody.formatted_body = ` * ${newContent.formatted_body}`;
|
2019-05-14 18:32:08 +03:00
|
|
|
}
|
|
|
|
const content = Object.assign({
|
|
|
|
"m.new_content": newContent,
|
2019-05-14 12:37:57 +03:00
|
|
|
"m.relates_to": {
|
|
|
|
"rel_type": "m.replace",
|
2019-05-15 13:49:43 +03:00
|
|
|
"event_id": this.props.event.getId(),
|
2019-05-14 12:37:57 +03:00
|
|
|
},
|
2019-05-15 17:54:05 +03:00
|
|
|
}, contentBody);
|
2019-05-14 12:37:57 +03:00
|
|
|
|
|
|
|
const roomId = this.props.event.getRoomId();
|
|
|
|
this.context.matrixClient.sendMessage(roomId, content);
|
|
|
|
|
|
|
|
dis.dispatch({action: "edit_event", event: null});
|
|
|
|
}
|
|
|
|
|
2019-05-09 16:00:48 +03:00
|
|
|
_onAutoCompleteConfirm = (completion) => {
|
|
|
|
this.model.autoComplete.onComponentConfirm(completion);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onAutoCompleteSelectionChange = (completion) => {
|
|
|
|
this.model.autoComplete.onComponentSelectionChange(completion);
|
|
|
|
}
|
|
|
|
|
2019-05-08 15:31:43 +03:00
|
|
|
componentDidMount() {
|
2019-05-09 16:58:32 +03:00
|
|
|
this._updateEditorState();
|
2019-05-16 20:39:20 +03:00
|
|
|
setCaretPosition(this._editorRef, this.model, this.model.getPositionAtEnd());
|
2019-05-15 19:17:35 +03:00
|
|
|
this._editorRef.focus();
|
2019-05-08 15:31:43 +03:00
|
|
|
}
|
|
|
|
|
2019-05-06 18:41:15 +03:00
|
|
|
render() {
|
2019-05-09 16:00:48 +03:00
|
|
|
let autoComplete;
|
|
|
|
if (this.state.autoComplete) {
|
|
|
|
const query = this.state.query;
|
|
|
|
const queryLen = query.length;
|
|
|
|
autoComplete = <div className="mx_MessageEditor_AutoCompleteWrapper">
|
|
|
|
<Autocomplete
|
2019-05-15 11:46:08 +03:00
|
|
|
ref={ref => this._autocompleteRef = ref}
|
2019-05-09 16:00:48 +03:00
|
|
|
query={query}
|
|
|
|
onConfirm={this._onAutoCompleteConfirm}
|
|
|
|
onSelectionChange={this._onAutoCompleteSelectionChange}
|
|
|
|
selection={{beginning: true, end: queryLen, start: queryLen}}
|
|
|
|
room={this.state.room}
|
|
|
|
/>
|
|
|
|
</div>;
|
|
|
|
}
|
2019-05-06 18:41:15 +03:00
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
2019-05-21 13:18:20 +03:00
|
|
|
return <div className={classNames("mx_MessageEditor", this.props.className)}>
|
2019-05-09 16:00:48 +03:00
|
|
|
{ autoComplete }
|
2019-05-08 15:31:43 +03:00
|
|
|
<div
|
2019-05-15 11:46:08 +03:00
|
|
|
className="mx_MessageEditor_editor"
|
2019-05-08 15:31:43 +03:00
|
|
|
contentEditable="true"
|
|
|
|
tabIndex="1"
|
|
|
|
onInput={this._onInput}
|
2019-05-09 16:00:48 +03:00
|
|
|
onKeyDown={this._onKeyDown}
|
2019-05-15 11:46:08 +03:00
|
|
|
ref={ref => this._editorRef = ref}
|
2019-05-14 12:37:57 +03:00
|
|
|
></div>
|
2019-05-15 11:46:08 +03:00
|
|
|
<div className="mx_MessageEditor_buttons">
|
2019-05-17 17:35:14 +03:00
|
|
|
<AccessibleButton kind="secondary" onClick={this._cancelEdit}>{_t("Cancel")}</AccessibleButton>
|
2019-05-17 12:22:02 +03:00
|
|
|
<AccessibleButton kind="primary" onClick={this._sendEdit}>{_t("Save")}</AccessibleButton>
|
2019-05-06 18:41:15 +03:00
|
|
|
</div>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|