From 0cfa00fc43eaf98db8b2461a2d07687b6591cd6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 26 Nov 2021 17:14:30 +0100 Subject: Remove default ComponentVEvent redraw. --- static/components/vevent-block.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'static/components/vevent-block.ts') diff --git a/static/components/vevent-block.ts b/static/components/vevent-block.ts index a4aaba24..de9cf748 100644 --- a/static/components/vevent-block.ts +++ b/static/components/vevent-block.ts @@ -23,7 +23,24 @@ class ComponentBlock extends ComponentVEvent { } redraw(data: VEvent) { - super.redraw(data); + let body = (this.template.content.cloneNode(true) as DocumentFragment).firstElementChild!; + + for (let el of body.querySelectorAll('[data-property]')) { + if (!(el instanceof HTMLElement)) continue; + let p = el.dataset.property!; + let d, fmt; + if ((d = data.getProperty(p))) { + if ((fmt = el.dataset.fmt)) { + el.textContent = d.format(fmt); + } else { + el.textContent = d; + } + } + } + + this.replaceChildren(body); + + /* -------------------------------------------------- */ let p; if ((p = data.getProperty('dtstart'))) { -- cgit v1.2.3