expect MessageBody here with parts property

and do some cleanup
This commit is contained in:
Bruno Windels 2021-05-17 11:29:00 +02:00
parent 054c51b82f
commit fa64fcce2d

View file

@ -29,19 +29,19 @@ export class TextMessageView extends TemplateView {
} }
const formatFunction = { const formatFunction = {
text: (m) => text(m.text), text: textPart => text(textPart.text),
link: (m) => tag.a({ href: m.url, target: "_blank", rel: "noopener" }, [text(m.text)]), link: linkPart => tag.a({ href: linkPart.url, target: "_blank", rel: "noopener" }, [linkPart.text]),
newline: () => tag.br() newline: () => tag.br()
}; };
class BodyView extends StaticView { class BodyView extends StaticView {
render(t, value) { render(t, messageBody) {
const children = []; const container = t.span();
for (const m of value) { for (const part of messageBody.parts) {
const f = formatFunction[m.type]; const f = formatFunction[part.type];
const element = f(m); const element = f(part);
children.push(element); container.appendChild(element);
} }
return t.span(children); return container;
} }
} }