mapcomplete/UI/SaveButton.ts
Pieter Vander Vennet 63b4fe0ee1 Merge latest master
2020-07-20 21:52:13 +02:00

25 lines
685 B
TypeScript

import {UIEventSource} from "./UIEventSource";
import {UIElement} from "./UIElement";
export class SaveButton extends UIElement {
private _value: UIEventSource<any>;
constructor(value: UIEventSource<any>) {
super(value);
if(value === undefined){
throw "No event source for savebutton, something is wrong"
}
this._value = value;
}
InnerRender(): string {
if (this._value.data === undefined ||
this._value.data === null
|| this._value.data === ""
) {
return "<span class='save-non-active'>Opslaan</span>"
}
return "<span class='save'>Save</span>";
}
}