2019-08-20 04:56:40 +08:00
|
|
|
import { View } from "./View";
|
|
|
|
import { create_el } from "./dom";
|
|
|
|
import "./ToolBar.css";
|
2019-08-21 21:19:44 +08:00
|
|
|
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) {
|
2019-08-21 21:19:44 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|