leftover things that got moved during directory org

This commit is contained in:
Bruno Windels 2019-06-16 10:54:37 +02:00
parent 1917a528c7
commit 590ed56d68

View file

@ -1,33 +0,0 @@
import {tag} from "./html.js";
export default class TimelineTile {
constructor(tileVM) {
this._tileVM = tileVM;
this._root = null;
}
root() {
return this._root;
}
mount() {
this._root = renderTile(this._tileVM);
return this._root;
}
unmount() {}
update(vm, paramName) {
}
}
function renderTile(tile) {
switch (tile.shape) {
case "message":
return tag.li(null, [tag.strong(null, tile.internalId+" "), tile.label]);
case "announcement":
return tag.li(null, [tag.strong(null, tile.internalId+" "), tile.label]);
default:
return tag.li(null, [tag.strong(null, tile.internalId+" "), "unknown tile shape: " + tile.shape]);
}
}