forked from MapComplete/MapComplete
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
|
import BaseUIElement from "../BaseUIElement"
|
|
import { VariableUiElement } from "../Base/VariableUIElement"
|
|
|
|
/**
|
|
* The 'Toggle' is a UIElement showing either one of two elements, depending on the state.
|
|
* It can be used to implement e.g. checkboxes or collapsible elements
|
|
*/
|
|
export default class Toggle extends VariableUiElement {
|
|
public readonly isEnabled: Store<boolean>
|
|
|
|
constructor(
|
|
showEnabled: string | BaseUIElement,
|
|
showDisabled: string | BaseUIElement,
|
|
isEnabled: Store<boolean>
|
|
) {
|
|
super(isEnabled?.map((isEnabled) => (isEnabled ? showEnabled : showDisabled)))
|
|
this.isEnabled = isEnabled
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Same as `Toggle`, but will swap on click
|
|
*/
|
|
export class ClickableToggle extends Toggle {
|
|
public declare readonly isEnabled: UIEventSource<boolean>
|
|
|
|
constructor(
|
|
showEnabled: string | BaseUIElement,
|
|
showDisabled: string | BaseUIElement,
|
|
isEnabled: UIEventSource<boolean> = new UIEventSource<boolean>(false)
|
|
) {
|
|
super(showEnabled, showDisabled, isEnabled)
|
|
this.isEnabled = isEnabled
|
|
}
|
|
}
|