Add tabs common component

This commit is contained in:
Roman Gotsiy 2015-10-22 20:52:03 +03:00
parent e46eca92b6
commit c265e724e2
2 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,20 @@
ul {
display: block;
margin: 0;
padding: 10px 0px 0 0;
}
li {
list-style: none;
margin: 0;
display: inline-block;
padding: 5px 15px;
background-color: #8F1B1B;
border-left: 1px solid #771D1D;
border-bottom: 2px solid transparent;
cursor: pointer;
}
li.active {
border-bottom: 2px solid red;
}

View File

@ -0,0 +1,61 @@
'use strict';
import {Component, View, CORE_DIRECTIVES} from 'angular2/angular2';
@Component({
selector: 'tabs'
})
@View({
template: `
<ul>
<li *ng-for="#tab of tabs" [ng-class]="{active: tab.active}" (click)="selectTab(tab)">{{tab.tabTitle}}</li>
</ul>
<ng-content></ng-content>
`,
directives: [CORE_DIRECTIVES],
styleUrls: ['./lib/common-components/Tabs/tabs.css']
})
export class Tabs {
constructor() {
this.tabs = [];
}
selectTab(tab) {
this.tabs.forEach((tab) => {
tab.active = false;
});
tab.active = true;
}
addTab(tab: Tab) {
if (this.tabs.length === 0) {
tab.active = true;
}
this.tabs.push(tab);
}
}
@Component({
selector: 'tab',
inputs: ['tabTitle: tab-title']
})
@View({
template: `
<div class="tab-wrap" [hidden]="!active">
<ng-content></ng-content>
</div>
`,
styles: [`
.tab-wrap {
padding: 5px;
background-color: #771D1D;
}
`]
})
export class Tab {
constructor(tabs) {
tabs.addTab(this);
}
}
Tab.parameters = [ [ Tabs ] ];