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.ts | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) (limited to 'static/components/vevent.ts') diff --git a/static/components/vevent.ts b/static/components/vevent.ts index cf28045a..561051fa 100644 --- a/static/components/vevent.ts +++ b/static/components/vevent.ts @@ -8,7 +8,7 @@ import { VEvent } from '../vevent' Lacks an accompaning tag, and shouldn't be directly instanciated. */ -class ComponentVEvent extends HTMLElement { +abstract class ComponentVEvent extends HTMLElement { template: HTMLTemplateElement uid: string @@ -45,29 +45,6 @@ class ComponentVEvent extends HTMLElement { } } - redraw(data: VEvent) { - // update ourselves from template - - if (!this.template) { - throw "Something"; - } - - let body = (this.template.content.cloneNode(true) as DocumentFragment).firstElementChild!; - - for (let el of body.getElementsByClassName("bind")) { - 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); - } + abstract redraw(data: VEvent): void } -- cgit v1.2.3