2019-08-30 00:24:03 +08:00
|
|
|
import { LabelledControl, LabelledControlOptions, LabelPosition } from "./LabelledControl";
|
|
|
|
import { disposable_listener, el, Icon } from "./dom";
|
|
|
|
import "./Select.css";
|
|
|
|
import { is_any_property, Property } from "../observable/property/Property";
|
|
|
|
import { Button } from "./Button";
|
|
|
|
import { WritableProperty } from "../observable/property/WritableProperty";
|
|
|
|
import { WidgetProperty } from "../observable/property/WidgetProperty";
|
2019-08-30 06:06:32 +08:00
|
|
|
import { Menu } from "./Menu";
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
export type SelectOptions<T> = LabelledControlOptions & {
|
|
|
|
selected: T | Property<T>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export class Select<T> extends LabelledControl {
|
|
|
|
readonly preferred_label_position: LabelPosition;
|
|
|
|
|
|
|
|
readonly selected: WritableProperty<T | undefined>;
|
|
|
|
|
|
|
|
private readonly to_label: (element: T) => string;
|
|
|
|
private readonly button: Button;
|
2019-08-30 06:06:32 +08:00
|
|
|
private readonly menu: Menu<T>;
|
2019-08-30 00:24:03 +08:00
|
|
|
private readonly _selected: WidgetProperty<T | undefined>;
|
|
|
|
private just_opened: boolean;
|
|
|
|
|
|
|
|
constructor(
|
2019-08-30 06:06:32 +08:00
|
|
|
items: T[] | Property<T[]>,
|
2019-08-30 00:24:03 +08:00
|
|
|
to_label: (element: T) => string,
|
|
|
|
options?: SelectOptions<T>,
|
|
|
|
) {
|
|
|
|
const button = new Button("", {
|
|
|
|
icon_right: Icon.TriangleDown,
|
|
|
|
});
|
2019-08-30 06:06:32 +08:00
|
|
|
const menu = new Menu<T>(items, to_label);
|
2019-08-30 00:24:03 +08:00
|
|
|
|
2019-08-30 06:06:32 +08:00
|
|
|
super(el.div({ class: "core_Select" }, button.element, menu.element), options);
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
this.preferred_label_position = "left";
|
|
|
|
|
|
|
|
this.to_label = to_label;
|
|
|
|
this.button = this.disposable(button);
|
2019-08-30 06:06:32 +08:00
|
|
|
this.menu = this.disposable(menu);
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
this._selected = new WidgetProperty<T | undefined>(this, undefined, this.set_selected);
|
|
|
|
this.selected = this._selected;
|
|
|
|
|
|
|
|
this.just_opened = false;
|
|
|
|
|
|
|
|
this.disposables(
|
2019-08-30 06:06:32 +08:00
|
|
|
disposable_listener(button.element, "mousedown", e => this.button_mousedown(e)),
|
2019-08-30 00:24:03 +08:00
|
|
|
|
|
|
|
button.mouseup.observe(() => this.button_mouseup()),
|
|
|
|
|
2019-08-30 06:06:32 +08:00
|
|
|
this.menu.selected.observe(({ value }) =>
|
|
|
|
this._selected.set_val(value, { silent: false }),
|
|
|
|
),
|
2019-08-30 00:24:03 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
if (options) {
|
|
|
|
if (is_any_property(options.selected)) {
|
|
|
|
this.selected.bind_to(options.selected);
|
|
|
|
} else if (options.selected) {
|
|
|
|
this.selected.val = options.selected;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected set_enabled(enabled: boolean): void {
|
|
|
|
super.set_enabled(enabled);
|
|
|
|
this.button.enabled.val = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected set_selected(selected?: T): void {
|
|
|
|
this.button.text.val = selected ? this.to_label(selected) : "";
|
2019-08-30 06:06:32 +08:00
|
|
|
this.menu.selected.val = selected;
|
2019-08-30 00:24:03 +08:00
|
|
|
}
|
|
|
|
|
2019-08-30 06:06:32 +08:00
|
|
|
private button_mousedown(e: Event): void {
|
|
|
|
e.stopPropagation();
|
|
|
|
this.just_opened = !this.menu.visible.val;
|
|
|
|
this.menu.visible.val = true;
|
2019-08-30 00:24:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private button_mouseup(): void {
|
|
|
|
if (!this.just_opened) {
|
2019-08-30 06:06:32 +08:00
|
|
|
this.menu.visible.val = false;
|
2019-08-30 00:24:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
this.just_opened = false;
|
|
|
|
}
|
|
|
|
}
|