import {UIElement} from "../UIElement"; import Translations from "../i18n/Translations"; import {UIEventSource} from "../../Logic/UIEventSource"; export class TabbedComponent extends UIElement { private headers: UIElement[] = []; private content: UIElement[] = []; constructor(elements: { header: UIElement | string, content: UIElement | string }[], openedTab: (UIEventSource | number) = 0) { super(typeof (openedTab) === "number" ? new UIEventSource(openedTab) : (openedTab ?? new UIEventSource(0))); const self = this; for (let i = 0; i < elements.length; i++) { let element = elements[i]; this.headers.push(Translations.W(element.header).onClick(() => self._source.setData(i))); const content = Translations.W(element.content) this.content.push(content); } } InnerRender(): string { let headerBar = ""; for (let i = 0; i < this.headers.length; i++) { let header = this.headers[i]; if (!this.content[i].IsEmpty()) { headerBar += `
` + header.Render() + "
" } } headerBar = "
" + headerBar + "
" const content = this.content[this._source.data]; return headerBar + "
" + (content?.Render() ?? "") + "
"; } }