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 {PlainPart} from '../../../editor/parts';
|
|
|
|
import {getCaretOffset, setCaretPosition} from '../../../editor/caret';
|
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,
|
|
|
|
// called when the ReplyThread contents has changed, including EventTiles thereof
|
|
|
|
// onHeightChanged: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
matrixClient: PropTypes.instanceOf(MatrixClient).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
2019-05-07 17:27:09 +03:00
|
|
|
const body = this.props.event.getContent().body;
|
|
|
|
this.model = new EditorModel();
|
|
|
|
this.model.update(body, undefined, {offset: body.length});
|
|
|
|
this.state = {
|
|
|
|
parts: this.model.serializeParts(),
|
|
|
|
};
|
2019-05-06 18:41:15 +03:00
|
|
|
this._onCancelClicked = this._onCancelClicked.bind(this);
|
2019-05-07 17:27:09 +03:00
|
|
|
this._onInput = this._onInput.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onInput(event) {
|
|
|
|
const editor = event.target;
|
|
|
|
const caretOffset = getCaretOffset(editor);
|
|
|
|
const caret = this.model.update(editor.textContent, event.inputType, caretOffset);
|
|
|
|
const parts = this.model.serializeParts();
|
|
|
|
this.setState({parts}, () => {
|
|
|
|
setCaretPosition(editor, caret);
|
|
|
|
});
|
2019-05-06 18:41:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_onCancelClicked() {
|
|
|
|
dis.dispatch({action: "edit_event", event: null});
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-05-07 17:27:09 +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-06 18:41:15 +03:00
|
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
return <div className="mx_MessageEditor">
|
2019-05-07 17:27:09 +03:00
|
|
|
<div className="editor" contentEditable="true" tabIndex="1" suppressContentEditableWarning={true} onInput={this._onInput}>
|
|
|
|
{parts}
|
2019-05-06 18:41:15 +03:00
|
|
|
</div>
|
|
|
|
<div className="buttons">
|
|
|
|
<AccessibleButton onClick={this._onCancelClicked}>{_t("Cancel")}</AccessibleButton>
|
|
|
|
</div>
|
2019-05-07 17:27:09 +03:00
|
|
|
<code className="model">{modelOutput}</code>
|
2019-05-06 18:41:15 +03:00
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
}
|