/* Copyright 2019 New Vector Ltd Copyright 2019 The Matrix.org Foundation C.I.C. 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 * as sdk from '../../../index'; import {_t, _td} from '../../../languageHandler'; import PropTypes from 'prop-types'; import dis from '../../../dispatcher/dispatcher'; import EditorModel from '../../../editor/model'; import {getCaretOffsetAndText} from '../../../editor/dom'; import {htmlSerializeIfNeeded, textSerialize, containsEmote, stripEmoteCommand} from '../../../editor/serialize'; import {findEditableEvent} from '../../../utils/EventUtils'; import {parseEvent} from '../../../editor/deserialize'; import {CommandPartCreator} from '../../../editor/parts'; import EditorStateTransfer from '../../../utils/EditorStateTransfer'; import classNames from 'classnames'; import {EventStatus} from 'matrix-js-sdk/src/models/event'; import BasicMessageComposer from "./BasicMessageComposer"; import MatrixClientContext from "../../../contexts/MatrixClientContext"; import {CommandCategories, getCommand} from '../../../SlashCommands'; import {Action} from "../../../dispatcher/actions"; import CountlyAnalytics from "../../../CountlyAnalytics"; import {getKeyBindingsManager, MessageComposerAction} from '../../../KeyBindingsManager'; import {replaceableComponent} from "../../../utils/replaceableComponent"; import SendHistoryManager from '../../../SendHistoryManager'; import Modal from '../../../Modal'; function _isReply(mxEvent) { const relatesTo = mxEvent.getContent()["m.relates_to"]; const isReply = !!(relatesTo && relatesTo["m.in_reply_to"]); return isReply; } function getHtmlReplyFallback(mxEvent) { const html = mxEvent.getContent().formatted_body; if (!html) { return ""; } const rootNode = new DOMParser().parseFromString(html, "text/html").body; const mxReply = rootNode.querySelector("mx-reply"); return (mxReply && mxReply.outerHTML) || ""; } function getTextReplyFallback(mxEvent) { const body = mxEvent.getContent().body; const lines = body.split("\n").map(l => l.trim()); if (lines.length > 2 && lines[0].startsWith("> ") && lines[1].length === 0) { return `${lines[0]}\n\n`; } return ""; } function createEditContent(model, editedEvent) { const isEmote = containsEmote(model); if (isEmote) { model = stripEmoteCommand(model); } const isReply = _isReply(editedEvent); let plainPrefix = ""; let htmlPrefix = ""; if (isReply) { plainPrefix = getTextReplyFallback(editedEvent); htmlPrefix = getHtmlReplyFallback(editedEvent); } const body = textSerialize(model); const newContent = { "msgtype": isEmote ? "m.emote" : "m.text", "body": body, }; const contentBody = { msgtype: newContent.msgtype, body: `${plainPrefix} * ${body}`, }; const formattedBody = htmlSerializeIfNeeded(model, {forceHTML: isReply}); if (formattedBody) { newContent.format = "org.matrix.custom.html"; newContent.formatted_body = formattedBody; contentBody.format = newContent.format; contentBody.formatted_body = `${htmlPrefix} * ${formattedBody}`; } return Object.assign({ "m.new_content": newContent, "m.relates_to": { "rel_type": "m.replace", "event_id": editedEvent.getId(), }, }, contentBody); } @replaceableComponent("views.rooms.EditMessageComposer") export default class EditMessageComposer extends React.Component { static propTypes = { // the message event being edited editState: PropTypes.instanceOf(EditorStateTransfer).isRequired, }; static contextType = MatrixClientContext; constructor(props, context) { super(props, context); this.model = null; this._editorRef = null; this.state = { saveDisabled: true, }; this._createEditorModel(); window.addEventListener("beforeunload", this._saveStoredEditorState); } _setEditorRef = ref => { this._editorRef = ref; }; _getRoom() { return this.context.getRoom(this.props.editState.getEvent().getRoomId()); } _onKeyDown = (event) => { // ignore any keypress while doing IME compositions if (this._editorRef.isComposing(event)) { return; } const action = getKeyBindingsManager().getMessageComposerAction(event); switch (action) { case MessageComposerAction.Send: this._sendEdit(); event.preventDefault(); break; case MessageComposerAction.CancelEditing: this._cancelEdit(); break; case MessageComposerAction.EditPrevMessage: { if (this._editorRef.isModified() || !this._editorRef.isCaretAtStart()) { return; } const previousEvent = findEditableEvent(this._getRoom(), false, this.props.editState.getEvent().getId()); if (previousEvent) { dis.dispatch({action: 'edit_event', event: previousEvent}); event.preventDefault(); } break; } case MessageComposerAction.EditNextMessage: { if (this._editorRef.isModified() || !this._editorRef.isCaretAtEnd()) { return; } const nextEvent = findEditableEvent(this._getRoom(), true, this.props.editState.getEvent().getId()); if (nextEvent) { dis.dispatch({action: 'edit_event', event: nextEvent}); } else { dis.dispatch({action: 'edit_event', event: null}); dis.fire(Action.FocusComposer); } event.preventDefault(); break; } } } get _editorRoomKey() { return `mx_edit_room_${this._getRoom().roomId}`; } get _editorStateKey() { return `mx_edit_state_${this.props.editState.getEvent().getId()}`; } _cancelEdit = () => { this._clearStoredEditorState(); dis.dispatch({action: "edit_event", event: null}); dis.fire(Action.FocusComposer); } get _shouldSaveStoredEditorState() { return localStorage.getItem(this._editorRoomKey) !== null; } _restoreStoredEditorState(partCreator) { const json = localStorage.getItem(this._editorStateKey); if (json) { try { const {parts: serializedParts} = JSON.parse(json); const parts = serializedParts.map(p => partCreator.deserializePart(p)); return parts; } catch (e) { console.error("Error parsing editing state: ", e); } } } _clearStoredEditorState() { localStorage.removeItem(this._editorRoomKey); localStorage.removeItem(this._editorStateKey); } _clearPreviousEdit() { if (localStorage.getItem(this._editorRoomKey)) { localStorage.removeItem(`mx_edit_state_${localStorage.getItem(this._editorRoomKey)}`); } } _saveStoredEditorState() { const item = SendHistoryManager.createItem(this.model); this._clearPreviousEdit(); localStorage.setItem(this._editorRoomKey, this.props.editState.getEvent().getId()); localStorage.setItem(this._editorStateKey, JSON.stringify(item)); } _isSlashCommand() { const parts = this.model.parts; const firstPart = parts[0]; if (firstPart) { if (firstPart.type === "command" && firstPart.text.startsWith("/") && !firstPart.text.startsWith("//")) { return true; } if (firstPart.text.startsWith("/") && !firstPart.text.startsWith("//") && (firstPart.type === "plain" || firstPart.type === "pill-candidate")) { return true; } } return false; } _isContentModified(newContent) { // if nothing has changed then bail const oldContent = this.props.editState.getEvent().getContent(); if (!this._editorRef.isModified() || (oldContent["msgtype"] === newContent["msgtype"] && oldContent["body"] === newContent["body"] && oldContent["format"] === newContent["format"] && oldContent["formatted_body"] === newContent["formatted_body"])) { return false; } return true; } _getSlashCommand() { const commandText = this.model.parts.reduce((text, part) => { // use mxid to textify user pills in a command if (part.type === "user-pill") { return text + part.resourceId; } return text + part.text; }, ""); const {cmd, args} = getCommand(commandText); return [cmd, args, commandText]; } async _runSlashCommand(cmd, args, roomId) { const result = cmd.run(roomId, args); let messageContent; let error = result.error; if (result.promise) { try { if (cmd.category === CommandCategories.messages) { messageContent = await result.promise; } else { await result.promise; } } catch (err) { error = err; } } if (error) { console.error("Command failure: %s", error); const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); // assume the error is a server error when the command is async const isServerError = !!result.promise; const title = isServerError ? _td("Server error") : _td("Command error"); let errText; if (typeof error === 'string') { errText = error; } else if (error.message) { errText = error.message; } else { errText = _t("Server unavailable, overloaded, or something else went wrong."); } Modal.createTrackedDialog(title, '', ErrorDialog, { title: _t(title), description: errText, }); } else { console.log("Command success."); if (messageContent) return messageContent; } } _sendEdit = async () => { const startTime = CountlyAnalytics.getTimestamp(); const editedEvent = this.props.editState.getEvent(); const editContent = createEditContent(this.model, editedEvent); const newContent = editContent["m.new_content"]; let shouldSend = true; // If content is modified then send an updated event into the room if (this._isContentModified(newContent)) { const roomId = editedEvent.getRoomId(); if (!containsEmote(this.model) && this._isSlashCommand()) { const [cmd, args, commandText] = this._getSlashCommand(); if (cmd) { if (cmd.category === CommandCategories.messages) { editContent["m.new_content"] = await this._runSlashCommand(cmd, args, roomId); } else { this._runSlashCommand(cmd, args, roomId); shouldSend = false; } } else { // ask the user if their unknown command should be sent as a message const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog"); const {finished} = Modal.createTrackedDialog("Unknown command", "", QuestionDialog, { title: _t("Unknown Command"), description:
{ _t("Unrecognised command: %(commandText)s", {commandText}) }
{ _t("You can use /help
to list available commands. " +
"Did you mean to send this as a message?", {}, {
code: t => { t }
,
}) }
{ _t("Hint: Begin your message with //
to start it with a slash.", {}, {
code: t => { t }
,
}) }