163 lines
3.9 KiB
TypeScript
163 lines
3.9 KiB
TypeScript
import * as interfaces from './interfaces/index.js';
|
|
|
|
import {
|
|
DeesElement,
|
|
TemplateResult,
|
|
property,
|
|
customElement,
|
|
html,
|
|
css,
|
|
cssManager,
|
|
} from '@design.estate/dees-element';
|
|
|
|
import * as domtools from '@design.estate/dees-domtools';
|
|
|
|
@customElement('lele-appui-maincontent')
|
|
export class DeapMaincontent extends DeesElement {
|
|
public static demo = () => html`<lele-appui-maincontent></lele-appui-maincontent>`;
|
|
|
|
// INSTANCE
|
|
@property()
|
|
public tabs: interfaces.ITab[] = [
|
|
{ key: 'option 1', action: () => {} },
|
|
{ key: 'a very long option', action: () => {} },
|
|
{ key: 'reminder: set your tabs', action: () => {} },
|
|
{ key: 'option 4', action: () => {} },
|
|
];
|
|
|
|
@property()
|
|
public selectedTab = null;
|
|
|
|
public static styles = [
|
|
cssManager.defaultStyles,
|
|
css`
|
|
:host {
|
|
color: #fff;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
background: #161616;
|
|
}
|
|
.maincontainer {
|
|
position: absolute;
|
|
height: 100%;
|
|
right: 0px;
|
|
top: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
.topbar {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 80px;
|
|
background: #000000;
|
|
user-select: none;
|
|
}
|
|
|
|
.topbar .heading {
|
|
padding: 8px 24px 8px 24px;
|
|
font-family: 'Hubot Sans', sans-serif;
|
|
font-weight: 600;
|
|
line-height: 24px;
|
|
font-size: 16px;
|
|
height: 40px;
|
|
}
|
|
|
|
.topbar .tabsContainer {
|
|
display: grid;
|
|
margin-left: 24px;
|
|
}
|
|
|
|
.topbar .tabsContainer .tab {
|
|
color: #a0a0a0;
|
|
white-space: nowrap;
|
|
margin-right: 16px;
|
|
margin-top: 8px;
|
|
cursor: pointer;
|
|
transition: color 0.1s;
|
|
}
|
|
|
|
.topbar .tabsContainer .tab:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.topbar .tabsContainer .tab.selectedTab {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.topbar .tabIndicator {
|
|
position: absolute;
|
|
left: 40px;
|
|
bottom: 0px;
|
|
height: 4px;
|
|
width: 40px;
|
|
background: #161616;
|
|
transition: all 0.1s;
|
|
border-top-left-radius: 8px;
|
|
border-top-right-radius: 8px;
|
|
border-top: 1px solid #e4002b;
|
|
}
|
|
|
|
.mainicon {
|
|
}
|
|
`,
|
|
];
|
|
|
|
public render(): TemplateResult {
|
|
return html`
|
|
<style>
|
|
.topbar .tabsContainer {
|
|
grid-template-columns: repeat(${this.tabs.length}, min-content);
|
|
}
|
|
</style>
|
|
<div class="maincontainer">
|
|
<div class="topbar">
|
|
<div class="heading">lossless.com</div>
|
|
<div class="tabsContainer">
|
|
${this.tabs.map((tabArg) => {
|
|
return html`
|
|
<div
|
|
class="tab ${tabArg === this.selectedTab ? 'selectedTab' : null}"
|
|
@click="${() => {
|
|
this.selectedTab = tabArg;
|
|
this.updateTabIndicator();
|
|
tabArg.action();
|
|
}}"
|
|
>
|
|
${tabArg.key}
|
|
</div>
|
|
`;
|
|
})}
|
|
</div>
|
|
<div class="tabIndicator"></div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
/**
|
|
* updates the indicator
|
|
*/
|
|
private updateTabIndicator() {
|
|
let selectedTab = this.selectedTab;
|
|
const tabIndex = this.tabs.indexOf(selectedTab);
|
|
const selectedTabElement: HTMLElement = this.shadowRoot.querySelector(
|
|
`.tabsContainer .tab:nth-child(${tabIndex + 1})`
|
|
);
|
|
const tabIndicator: HTMLElement = this.shadowRoot.querySelector('.tabIndicator');
|
|
tabIndicator.style.width = selectedTabElement.clientWidth + 'px';
|
|
tabIndicator.style.left = selectedTabElement.offsetLeft + 'px';
|
|
}
|
|
|
|
private updateTab(tabArg: interfaces.ITab) {
|
|
this.selectedTab = tabArg;
|
|
this.updateTabIndicator();
|
|
this.selectedTab.action();
|
|
}
|
|
|
|
firstUpdated() {
|
|
this.updateTab(this.tabs[0]);
|
|
}
|
|
}
|