phantasmal-world/src/core/gui/ToolBar.ts

33 lines
979 B
TypeScript
Raw Normal View History

2019-08-20 04:56:40 +08:00
import { View } from "./View";
import { create_el } from "./dom";
import "./ToolBar.css";
import { LabelledControl } from "./LabelledControl";
2019-08-20 04:56:40 +08:00
export class ToolBar extends View {
readonly element = create_el("div", "core_ToolBar");
2019-08-22 00:17:00 +08:00
readonly height = 35;
2019-08-20 04:56:40 +08:00
constructor(...children: View[]) {
super();
this.element.style.height = `${this.height}px`;
for (const child of children) {
if (child instanceof LabelledControl) {
const group = create_el("div", "core_ToolBar_group");
if (child.preferred_label_position === "left") {
group.append(child.label.element, child.element);
} else {
group.append(child.element, child.label.element);
}
this.element.append(group);
} else {
this.element.append(child.element);
this.disposable(child);
}
2019-08-20 04:56:40 +08:00
}
}
}