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

156 lines
3.6 KiB
TypeScript
Raw Normal View History

2021-03-06 17:07:06 +00:00
import * as interfaces from './interfaces';
2022-01-31 13:07:15 +00:00
import {
DeesElement,
TemplateResult,
property,
customElement,
html,
css,
cssManager,
} from '@designestate/dees-element';
2021-03-05 16:01:54 +00:00
import * as domtools from '@designestate/dees-domtools';
@customElement('deap-maincontent')
export class DeapMaincontent extends DeesElement {
public static demo = () => html`<deap-maincontent></deap-maincontent>`;
// INSTANCE
@property()
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;
background: #222222;
}
.maincontainer {
position: absolute;
height: 100%;
right: 0px;
top: 0px;
width: 100%;
}
.topbar {
position: absolute;
width: 100%;
height: 120px;
background: #101010;
user-select: none;
}
.topbar .heading {
padding: 30px 50px 25px 50px;
font-family: Roboto Mono;
font-size: 25px;
}
.topbar .tabsContainer {
display: grid;
margin-left: 50px;
}
.topbar .tabsContainer .tab {
color: #a0a0a0;
white-space: nowrap;
margin-right: 20px;
cursor: pointer;
transition: color 0.1s;
}
.topbar .tabsContainer .tab:hover {
color: #ffffff;
}
.topbar .tabsContainer .tab.selectedTab {
color: #e0e0e0;
}
.topbar .tabIndicator {
position: absolute;
left: 50px;
bottom: 0px;
height: 4px;
width: 50px;
background: #484848;
transition: all 0.1s;
}
.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="heading">lossless.com</div>
<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})`
);
2021-03-05 16:01:54 +00:00
const tabIndicator: HTMLElement = this.shadowRoot.querySelector('.tabIndicator');
tabIndicator.style.width = selectedTabElement.clientWidth + 'px';
tabIndicator.style.left = selectedTabElement.offsetLeft + 'px';
}
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
}