/* 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 Markdown from '../Markdown'; export function mdSerialize(model) { return model.parts.reduce((html, part) => { switch (part.type) { case "newline": return html + "\n"; case "plain": case "command": case "pill-candidate": case "at-room-pill": return html + part.text; case "room-pill": case "user-pill": return html + `[${part.text}](https://matrix.to/#/${part.resourceId})`; } }, ""); } export function htmlSerializeIfNeeded(model, {forceHTML = false} = {}) { const md = mdSerialize(model); const parser = new Markdown(md); if (!parser.isPlainText() || forceHTML) { return parser.toHTML(); } } export function textSerialize(model) { return model.parts.reduce((text, part) => { switch (part.type) { case "newline": return text + "\n"; case "plain": case "command": case "pill-candidate": case "at-room-pill": return text + part.text; case "room-pill": case "user-pill": return text + `${part.resourceId}`; } }, ""); } export function containsEmote(model) { const firstPart = model.parts[0]; // part type will be "plain" while editing, // and "command" while composing a message. return firstPart && (firstPart.type === "plain" || firstPart.type === "command") && firstPart.text.startsWith("/me "); } export function stripEmoteCommand(model) { // trim "/me " model = model.clone(); model.removeText({index: 0, offset: 0}, 4); return model; }