##// END OF EJS Templates
Added tag v1.0.0-rc7 for changeset 9e546fe36fdd
Added tag v1.0.0-rc7 for changeset 9e546fe36fdd

File last commit:

r14:9e546fe36fdd v1.0.0-rc7 default
r18:8419ebe3b63d default
Show More
BuildContextBase.ts
71 lines | 1.9 KiB | video/mp2t | TypeScriptLexer
/ src / main / ts / tsx / BuildContextBase.ts
import { isNull, mixin, argumentNotNull } from "@implab/core-amd/safe";
import { isPlainObject, isNode, isBuildContext, DojoNodePosition, BuildContext } from "./traits";
import dom = require("dojo/dom-construct");
export abstract class BuildContextBase implements BuildContext {
_attrs = {};
_children = new Array();
_created: boolean = false;
visitNext(v: any) {
if (isNull(v))
return;
if (isPlainObject(v)) {
if (this._created)
this._setAttrs(v);
else
mixin(this._attrs, v);
} else if (v instanceof Array) {
v.forEach(x => this._addChild(x));
} else {
if (this._created)
this._addChild(v);
else
this._children.push(v);
}
}
getChildDom(v: any) {
const tv = typeof v;
if (tv === "string" || tv === "number" || tv === "boolean" || v instanceof RegExp || v instanceof Date) {
return document.createTextNode(v.toString());
} else if (isNode(v)) {
return v;
} else if (isBuildContext(v)) {
return v.getDomElement();
} else {
throw new Error("Invalid parameter");
}
}
abstract _getDomElement(): HTMLElement;
ensureCreated() {
if (!this._created) {
this._create(this._attrs, this._children);
this._children = [];
this._attrs = {};
this._created = true;
}
}
getDomElement() {
this.ensureCreated();
return this._getDomElement();
}
placeAt(refNode: string | Node, position?: DojoNodePosition) {
dom.place(this.getDomElement(), refNode, position);
}
abstract _addChild(child: any): void;
abstract _setAttrs(attrs: object): void;
abstract _create(attrs: object, children: any[]): void;
}