2021-03-01 09:32:25 +00:00
|
|
|
import { LitElement, html, customElement, property, CSSResult, TemplateResult, css } from "lit-element";
|
2020-12-02 14:44:40 +00:00
|
|
|
import { ifDefined } from "lit-html/directives/if-defined";
|
2021-03-17 16:11:39 +00:00
|
|
|
import PFTabs from "@patternfly/patternfly/components/Tabs/tabs.css";
|
|
|
|
import PFGlobal from "@patternfly/patternfly/patternfly-base.css";
|
2021-03-06 22:00:29 +00:00
|
|
|
import AKGlobal from "../authentik.css";
|
2020-11-26 22:31:56 +00:00
|
|
|
import { CURRENT_CLASS } from "../constants";
|
2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2020-11-08 21:43:46 +00:00
|
|
|
|
2020-12-05 21:08:42 +00:00
|
|
|
@customElement("ak-tabs")
|
2020-11-20 21:08:00 +00:00
|
|
|
export class Tabs extends LitElement {
|
2020-11-26 22:31:56 +00:00
|
|
|
@property()
|
|
|
|
currentPage?: string;
|
2020-11-08 21:43:46 +00:00
|
|
|
|
2021-03-03 08:28:12 +00:00
|
|
|
@property({type: Boolean})
|
|
|
|
vertical = false;
|
|
|
|
|
2020-12-01 16:27:19 +00:00
|
|
|
static get styles(): CSSResult[] {
|
2021-03-17 16:11:39 +00:00
|
|
|
return [PFGlobal, PFTabs, AKGlobal, css`
|
2021-03-01 09:32:25 +00:00
|
|
|
::slotted(*) {
|
2021-03-03 08:28:12 +00:00
|
|
|
flex-grow: 2;
|
|
|
|
}
|
|
|
|
:host([vertical]) {
|
|
|
|
display: flex;
|
2021-03-01 09:32:25 +00:00
|
|
|
}
|
2021-04-04 14:44:29 +00:00
|
|
|
:host([vertical]) .pf-c-tabs {
|
|
|
|
width: auto !important;
|
|
|
|
}
|
2021-03-06 22:00:29 +00:00
|
|
|
:host([vertical]) .pf-c-tabs__list {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2021-03-01 09:32:25 +00:00
|
|
|
`];
|
2020-11-08 21:43:46 +00:00
|
|
|
}
|
|
|
|
|
2021-03-17 23:58:50 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2020-12-01 16:27:19 +00:00
|
|
|
renderTab(page: Element): TemplateResult {
|
|
|
|
const slot = page.attributes.getNamedItem("slot")?.value;
|
|
|
|
return html` <li class="pf-c-tabs__item ${slot === this.currentPage ? CURRENT_CLASS : ""}">
|
|
|
|
<button class="pf-c-tabs__link" @click=${() => { this.currentPage = slot; }}>
|
|
|
|
<span class="pf-c-tabs__item-text">
|
2020-12-05 21:08:42 +00:00
|
|
|
${page.getAttribute("data-tab-title")}
|
2020-12-01 16:27:19 +00:00
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</li>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
render(): TemplateResult {
|
2021-01-16 22:04:08 +00:00
|
|
|
const pages = Array.from(this.querySelectorAll("[slot^='page-']"));
|
2020-11-26 22:31:56 +00:00
|
|
|
if (!this.currentPage) {
|
|
|
|
if (pages.length < 1) {
|
2021-04-03 17:26:43 +00:00
|
|
|
return html`<h1>${t`no tabs defined`}</h1>`;
|
2020-11-26 22:31:56 +00:00
|
|
|
}
|
|
|
|
this.currentPage = pages[0].attributes.getNamedItem("slot")?.value;
|
2020-11-08 21:43:46 +00:00
|
|
|
}
|
2021-03-03 08:28:12 +00:00
|
|
|
return html`<div class="pf-c-tabs ${this.vertical ? "pf-m-vertical pf-m-box" : ""}">
|
2020-11-26 22:31:56 +00:00
|
|
|
<ul class="pf-c-tabs__list">
|
2020-12-01 16:27:19 +00:00
|
|
|
${pages.map((page) => this.renderTab(page))}
|
2020-11-26 22:31:56 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2020-12-02 14:44:40 +00:00
|
|
|
<slot name="${ifDefined(this.currentPage)}"></slot>`;
|
2020-11-08 21:43:46 +00:00
|
|
|
}
|
|
|
|
}
|