2019-05-22 16:16:32 +02:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-05-21 17:59:54 +02:00
|
|
|
import Markdown from '../Markdown';
|
|
|
|
|
|
|
|
export function mdSerialize(model) {
|
2019-05-14 11:37:16 +02:00
|
|
|
return model.parts.reduce((html, part) => {
|
|
|
|
switch (part.type) {
|
|
|
|
case "newline":
|
2019-05-21 17:59:54 +02:00
|
|
|
return html + "\n";
|
2019-05-14 11:37:16 +02:00
|
|
|
case "plain":
|
|
|
|
case "pill-candidate":
|
2019-06-14 18:24:36 +02:00
|
|
|
case "at-room-pill":
|
2019-05-14 11:37:16 +02:00
|
|
|
return html + part.text;
|
|
|
|
case "room-pill":
|
|
|
|
case "user-pill":
|
2019-05-21 17:59:54 +02:00
|
|
|
return html + `[${part.text}](https://matrix.to/#/${part.resourceId})`;
|
2019-05-14 11:37:16 +02:00
|
|
|
}
|
|
|
|
}, "");
|
|
|
|
}
|
|
|
|
|
2019-07-08 15:25:44 +02:00
|
|
|
export function htmlSerializeIfNeeded(model, forceHtml = false) {
|
2019-05-21 17:59:54 +02:00
|
|
|
const md = mdSerialize(model);
|
|
|
|
const parser = new Markdown(md);
|
2019-07-08 15:25:44 +02:00
|
|
|
if (!parser.isPlainText() || forceHtml) {
|
2019-05-21 17:59:54 +02:00
|
|
|
return parser.toHTML();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 11:37:16 +02:00
|
|
|
export function textSerialize(model) {
|
|
|
|
return model.parts.reduce((text, part) => {
|
|
|
|
switch (part.type) {
|
|
|
|
case "newline":
|
|
|
|
return text + "\n";
|
|
|
|
case "plain":
|
|
|
|
case "pill-candidate":
|
2019-06-14 18:24:36 +02:00
|
|
|
case "at-room-pill":
|
2019-05-14 11:37:16 +02:00
|
|
|
return text + part.text;
|
|
|
|
case "room-pill":
|
|
|
|
case "user-pill":
|
|
|
|
return text + `${part.resourceId}`;
|
|
|
|
}
|
|
|
|
}, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
export function requiresHtml(model) {
|
|
|
|
return model.parts.some(part => {
|
|
|
|
switch (part.type) {
|
|
|
|
case "room-pill":
|
|
|
|
case "user-pill":
|
|
|
|
return true;
|
2019-06-14 18:24:36 +02:00
|
|
|
default:
|
|
|
|
return false;
|
2019-05-14 11:37:16 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|