import { LitElement, html, customElement, property, CSSResult, TemplateResult, css } from "lit-element"; import { ifDefined } from "lit-html/directives/if-defined"; import PFTabs from "@patternfly/patternfly/components/Tabs/tabs.css"; import PFGlobal from "@patternfly/patternfly/patternfly-base.css"; import AKGlobal from "../authentik.css"; import { CURRENT_CLASS } from "../constants"; import { t } from "@lingui/macro"; @customElement("ak-tabs") export class Tabs extends LitElement { @property() currentPage?: string; @property({type: Boolean}) vertical = false; static get styles(): CSSResult[] { return [PFGlobal, PFTabs, AKGlobal, css` ::slotted(*) { flex-grow: 2; } :host([vertical]) { display: flex; } :host([vertical]) .pf-c-tabs__list { height: 100%; } `]; } observer: MutationObserver; constructor() { super(); this.observer = new MutationObserver(() => { this.requestUpdate(); }); } connectedCallback(): void { super.connectedCallback(); this.observer.observe(this, { attributes: true, childList: true, subtree: true }); } disconnectedCallback(): void { this.observer.disconnect(); super.disconnectedCallback(); } renderTab(page: Element): TemplateResult { const slot = page.attributes.getNamedItem("slot")?.value; return html`
  • `; } render(): TemplateResult { const pages = Array.from(this.querySelectorAll("[slot^='page-']")); if (!this.currentPage) { if (pages.length < 1) { return html`

    ${t`no tabs defined`}

    `; } this.currentPage = pages[0].attributes.getNamedItem("slot")?.value; } return html`
    `; } }