static: add tabs component

This commit is contained in:
Jens Langhammer 2020-11-08 22:43:46 +01:00
parent a202679bfb
commit dc18730094
4 changed files with 65 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,55 @@
import { LitElement, html } from 'lit-element';
class Tabs extends LitElement {
_currentPage = "";
_firstPage = "";
get currentPage() {
return this._currentPage
}
set currentPage(value) {
try {
// Show active tab page
this.querySelector(`.pf-c-tab-content[tab-name='${value}']`).removeAttribute("hidden");
// Update active status on buttons
this.querySelector(`.pf-c-tabs__item[tab-name='${value}']`).classList.add("pf-m-current");
// Hide other tab pages
this.querySelectorAll(`.pf-c-tab-content:not([tab-name='${value}'])`).forEach((el) => {
el.setAttribute("hidden", "");
});
// Update active status on other buttons
this.querySelectorAll(`.pf-c-tabs__item:not([tab-name='${value}'])`).forEach((el) => {
el.classList.remove("pf-m-current");
});
// Update window hash
window.location.hash = value;
this._currentPage = value;
} catch (e) {
this.currentPage = this._firstPage;
}
}
createRenderRoot() {
return this;
}
firstUpdated() {
this._firstPage = this.querySelector(".pf-c-tab-content").getAttribute("tab-name");
if (window.location.hash) {
this.currentPage = window.location.hash;
} else {
this.currentPage = this._firstPage;
}
this.querySelectorAll(".pf-c-tabs__item > button").forEach((button) => {
button.addEventListener("click", (e) => {
let tabPage = button.parentElement.getAttribute("tab-name");
this.currentPage = tabPage;
})
});
}
}
customElements.define('pb-tabs', Tabs);

View file

@ -2,6 +2,7 @@ import './FetchFillSlot.js';
import './ActionButton.js'; import './ActionButton.js';
import './Messages.js'; import './Messages.js';
import './FlowShellCard.js'; import './FlowShellCard.js';
import './Tabs.js';
// Button Dropdowns // Button Dropdowns
document.querySelectorAll("button.pf-c-dropdown__toggle").forEach((b) => { document.querySelectorAll("button.pf-c-dropdown__toggle").forEach((b) => {