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';
|
|
|
|
import {getCaretOffset, setCaretPosition} from '../../../editor/caret';
|
2019-05-07 18:31:37 +03:00
|
|
|
import parseEvent from '../../../editor/parse-event';
|
2019-05-09 16:00:48 +03:00
|
|
|
import Autocomplete from '../rooms/Autocomplete';
|
|
|
|
// import AutocompleteModel from '../../../editor/autocomplete';
|
|
|
|
import {PartCreator} from '../../../editor/parts';
|
2019-05-08 15:31:43 +03:00
|
|
|
import {renderModel, rerenderModel} from '../../../editor/render';
|
2019-05-06 18:41:15 +03:00
|
|
|
import {MatrixEvent, MatrixClient} from 'matrix-js-sdk';
|
|
|
|
|
|
|
|
export default class MessageEditor extends React.Component {
|
|
|
|
static propTypes = {
|
|
|
|
// the latest event in this chain of replies
|
|
|
|
event: PropTypes.instanceOf(MatrixEvent).isRequired,
|
|
|
|
// onHeightChanged: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
matrixClient: PropTypes.instanceOf(MatrixClient).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
2019-05-09 16:00:48 +03:00
|
|
|
const partCreator = new PartCreator(
|
|
|
|
() => this._autocompleteRef,
|
|
|
|
query => this.setState({query}),
|
|
|
|
);
|
2019-05-09 16:58:32 +03:00
|
|
|
this.model = new EditorModel(
|
|
|
|
parseEvent(this.props.event),
|
|
|
|
partCreator,
|
|
|
|
this._updateEditorState,
|
|
|
|
);
|
2019-05-09 16:00:48 +03:00
|
|
|
const room = this.context.matrixClient.getRoom(this.props.event.getRoomId());
|
|
|
|
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) => {
|
|
|
|
const shouldRerender = false; //event.inputType === "insertFromDrop" || event.inputType === "insertFromPaste";
|
2019-05-08 15:31:43 +03:00
|
|
|
if (shouldRerender) {
|
|
|
|
rerenderModel(this._editorRef, this.model);
|
|
|
|
} else {
|
|
|
|
renderModel(this._editorRef, this.model);
|
|
|
|
}
|
2019-05-09 16:58:32 +03:00
|
|
|
if (caret) {
|
2019-05-09 17:55:35 +03:00
|
|
|
try {
|
|
|
|
setCaretPosition(this._editorRef, caret);
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2019-05-09 16:58:32 +03:00
|
|
|
}
|
2019-05-09 17:55:35 +03:00
|
|
|
console.log("_updateEditorState", this.state.autoComplete, this.model.autoComplete);
|
2019-05-09 16:00:48 +03:00
|
|
|
this.setState({autoComplete: this.model.autoComplete});
|
2019-05-09 16:58:32 +03:00
|
|
|
const modelOutput = this._editorRef.parentElement.querySelector(".model");
|
|
|
|
modelOutput.textContent = JSON.stringify(this.model.serializeParts(), undefined, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onInput = (event) => {
|
|
|
|
const caretOffset = getCaretOffset(this._editorRef);
|
|
|
|
this.model.update(this._editorRef.textContent, event.inputType, caretOffset);
|
2019-05-09 16:00:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onKeyDown = (event) => {
|
|
|
|
if (event.metaKey || event.altKey || event.shiftKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.model.autoComplete) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
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();
|
2019-05-06 18:41:15 +03:00
|
|
|
}
|
|
|
|
|
2019-05-08 15:31:43 +03:00
|
|
|
_onCancelClicked = () => {
|
2019-05-06 18:41:15 +03:00
|
|
|
dis.dispatch({action: "edit_event", event: null});
|
|
|
|
}
|
|
|
|
|
2019-05-08 15:31:43 +03:00
|
|
|
_collectEditorRef = (ref) => {
|
|
|
|
this._editorRef = ref;
|
|
|
|
}
|
|
|
|
|
2019-05-09 16:00:48 +03:00
|
|
|
_collectAutocompleteRef = (ref) => {
|
|
|
|
this._autocompleteRef = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
_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-08 15:31:43 +03:00
|
|
|
}
|
|
|
|
|
2019-05-06 18:41:15 +03:00
|
|
|
render() {
|
2019-05-08 15:31:43 +03:00
|
|
|
// const parts = this.state.parts.map((p, i) => {
|
|
|
|
// const key = `${i}-${p.type}`;
|
|
|
|
// switch (p.type) {
|
|
|
|
// case "plain": return p.text;
|
|
|
|
// case "room-pill": return (<span key={key} className="room-pill">{p.text}</span>);
|
|
|
|
// case "user-pill": return (<span key={key} className="user-pill">{p.text}</span>);
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// const modelOutput = JSON.stringify(this.state.parts, undefined, 2);
|
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
|
|
|
|
ref={this._collectAutocompleteRef}
|
|
|
|
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');
|
|
|
|
return <div className="mx_MessageEditor">
|
2019-05-09 16:00:48 +03:00
|
|
|
{ autoComplete }
|
2019-05-08 15:31:43 +03:00
|
|
|
<div
|
|
|
|
className="editor"
|
|
|
|
contentEditable="true"
|
|
|
|
tabIndex="1"
|
|
|
|
// suppressContentEditableWarning={true}
|
|
|
|
onInput={this._onInput}
|
2019-05-09 16:00:48 +03:00
|
|
|
onKeyDown={this._onKeyDown}
|
2019-05-08 15:31:43 +03:00
|
|
|
ref={this._collectEditorRef}
|
|
|
|
>
|
2019-05-06 18:41:15 +03:00
|
|
|
</div>
|
|
|
|
<div className="buttons">
|
|
|
|
<AccessibleButton onClick={this._onCancelClicked}>{_t("Cancel")}</AccessibleButton>
|
|
|
|
</div>
|
2019-05-08 15:31:43 +03:00
|
|
|
<code className="model"></code>
|
2019-05-06 18:41:15 +03:00
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|