dees-appui-catalog/ts_web/elements/dees-appui-maincontent.ts

162 lines
4.0 KiB
TypeScript
Raw Permalink Normal View History

2022-05-02 11:43:55 +00:00
import * as interfaces from './interfaces/index.js';
2021-03-06 17:07:06 +00:00
2022-01-31 13:07:15 +00:00
import {
DeesElement,
2023-09-06 22:18:00 +00:00
type TemplateResult,
2022-01-31 13:07:15 +00:00
property,
customElement,
html,
css,
cssManager,
2023-09-06 16:43:33 +00:00
} from '@design.estate/dees-element';
2021-03-05 16:01:54 +00:00
2023-09-06 16:43:33 +00:00
import * as domtools from '@design.estate/dees-domtools';
2021-03-05 16:01:54 +00:00
2023-12-08 17:26:19 +00:00
@customElement('dees-appui-maincontent')
export class DeesAppuiMaincontent extends DeesElement {
public static demo = () => html`<dees-appui-maincontent></dees-appui-maincontent>`;
2021-03-05 16:01:54 +00:00
// INSTANCE
2024-01-01 19:45:50 +00:00
@property({
type: Array,
})
2021-03-06 18:59:00 +00:00
public tabs: interfaces.ITab[] = [
2022-01-31 13:07:15 +00:00
{ key: 'option 1', action: () => {} },
{ key: 'a very long option', action: () => {} },
{ key: 'reminder: set your tabs', action: () => {} },
{ key: 'option 4', action: () => {} },
2021-03-05 16:01:54 +00:00
];
@property()
public selectedTab = null;
2022-01-31 13:07:15 +00:00
public static styles = [
cssManager.defaultStyles,
css`
:host {
color: #fff;
display: block;
width: 100%;
height: 100%;
position: relative;
2023-09-06 16:43:33 +00:00
background: #161616;
2022-01-31 13:07:15 +00:00
}
.maincontainer {
position: absolute;
height: 100%;
right: 0px;
top: 0px;
width: 100%;
}
.topbar {
position: absolute;
width: 100%;
2023-09-06 16:43:33 +00:00
background: #000000;
2022-01-31 13:07:15 +00:00
user-select: none;
}
.topbar .tabsContainer {
2023-10-31 11:17:56 +00:00
padding-top: 20px;
2023-12-29 11:56:54 +00:00
padding-bottom: 0px;
2023-10-31 11:17:56 +00:00
position: relative;
z-index: 1;
2022-01-31 13:07:15 +00:00
display: grid;
2023-09-06 16:43:33 +00:00
margin-left: 24px;
2023-09-08 16:20:22 +00:00
font-size: 14px;
2022-01-31 13:07:15 +00:00
}
.topbar .tabsContainer .tab {
color: #a0a0a0;
white-space: nowrap;
2023-10-31 11:17:56 +00:00
margin-right: 30px;
2023-12-29 11:56:54 +00:00
padding-top: 4px;
padding-bottom: 12px;
2022-01-31 13:07:15 +00:00
transition: color 0.1s;
}
.topbar .tabsContainer .tab:hover {
color: #ffffff;
}
.topbar .tabsContainer .tab.selectedTab {
color: #e0e0e0;
}
.topbar .tabIndicator {
position: absolute;
2023-10-31 11:17:56 +00:00
z-index: 0;
2022-06-10 14:26:12 +00:00
left: 40px;
2022-01-31 13:07:15 +00:00
bottom: 0px;
2023-10-31 11:17:56 +00:00
height: 40px;
2022-06-10 14:26:12 +00:00
width: 40px;
2023-09-06 16:43:33 +00:00
background: #161616;
2022-01-31 13:07:15 +00:00
transition: all 0.1s;
2023-09-06 16:43:33 +00:00
border-top-left-radius: 8px;
border-top-right-radius: 8px;
2023-10-31 11:17:56 +00:00
border-top: 1px solid #444444;
2022-01-31 13:07:15 +00:00
}
.mainicon {
}
`,
];
2021-03-05 16:01:54 +00:00
public render(): TemplateResult {
return html`
<style>
.topbar .tabsContainer {
2022-01-31 13:07:15 +00:00
grid-template-columns: repeat(${this.tabs.length}, min-content);
2021-03-05 16:01:54 +00:00
}
</style>
<div class="maincontainer">
<div class="topbar">
<div class="tabsContainer">
2022-01-31 13:07:15 +00:00
${this.tabs.map((tabArg) => {
2021-03-05 16:01:54 +00:00
return html`
2022-01-31 13:07:15 +00:00
<div
class="tab ${tabArg === this.selectedTab ? 'selectedTab' : null}"
@click="${() => {
this.selectedTab = tabArg;
this.updateTabIndicator();
tabArg.action();
}}"
>
${tabArg.key}
</div>
2021-03-05 16:01:54 +00:00
`;
})}
</div>
<div class="tabIndicator"></div>
</div>
</div>
`;
}
/**
* updates the indicator
*/
2021-03-06 18:59:00 +00:00
private updateTabIndicator() {
2021-03-05 16:01:54 +00:00
let selectedTab = this.selectedTab;
const tabIndex = this.tabs.indexOf(selectedTab);
2022-01-31 13:07:15 +00:00
const selectedTabElement: HTMLElement = this.shadowRoot.querySelector(
`.tabsContainer .tab:nth-child(${tabIndex + 1})`
);
2023-10-31 11:17:56 +00:00
const tabsContainer: HTMLElement = this.shadowRoot.querySelector('.tabsContainer');
const marginLeft = parseInt(window.getComputedStyle(tabsContainer).getPropertyValue("margin-left"));
2021-03-05 16:01:54 +00:00
const tabIndicator: HTMLElement = this.shadowRoot.querySelector('.tabIndicator');
2023-10-31 11:17:56 +00:00
tabIndicator.style.width = selectedTabElement.clientWidth + 24 + 'px';
tabIndicator.style.left = selectedTabElement.offsetLeft + marginLeft - 12 + 'px';
2021-03-05 16:01:54 +00:00
}
2021-03-06 18:59:00 +00:00
private updateTab(tabArg: interfaces.ITab) {
this.selectedTab = tabArg;
this.updateTabIndicator();
this.selectedTab.action();
}
firstUpdated() {
this.updateTab(this.tabs[0]);
}
2022-01-31 13:07:15 +00:00
}