redoc/lib/shared/components/Tabs/tabs.ts

71 lines
1.6 KiB
TypeScript
Raw Normal View History

2015-10-22 20:52:03 +03:00
'use strict';
import { Component, EventEmitter, Input, Output, OnInit } from '@angular/core';
2016-05-18 16:59:54 +03:00
import { ChangeDetectorRef, ChangeDetectionStrategy } from '@angular/core';
2015-10-22 20:52:03 +03:00
@Component({
2016-02-03 17:47:20 +03:00
selector: 'tabs',
templateUrl: 'tabs.html',
styleUrls: ['tabs.css'],
2016-05-18 16:59:54 +03:00
changeDetection: ChangeDetectionStrategy.OnPush
2015-10-22 20:52:03 +03:00
})
export class Tabs implements OnInit {
@Input() selected: any;
@Output() change = new EventEmitter();
tabs: Tab[] = [];
constructor(private changeDetector:ChangeDetectorRef) {}
2015-10-22 20:52:03 +03:00
2016-02-03 17:47:20 +03:00
selectTab(tab, notify = true) {
if (tab.active) return;
2015-10-22 20:52:03 +03:00
this.tabs.forEach((tab) => {
tab.active = false;
});
tab.active = true;
2016-06-13 20:54:24 +03:00
if (notify) this.change.next(tab.tabTitle);
2016-02-03 17:47:20 +03:00
}
selectyByTitle(tabTitle, notify = false) {
let prevActive;
let newActive;
this.tabs.forEach((tab) => {
if (tab.active) prevActive = tab;
tab.active = false;
if (tab.tabTitle === tabTitle) {
newActive = tab;
}
});
if (newActive) {
newActive.active = true;
} else {
prevActive.active = true;
}
2016-06-13 20:54:24 +03:00
if (notify) this.change.next(tabTitle);
2016-05-18 16:59:54 +03:00
this.changeDetector.markForCheck();
2015-10-22 20:52:03 +03:00
}
2015-12-13 13:38:39 +03:00
addTab(tab) {
2015-10-22 20:52:03 +03:00
if (this.tabs.length === 0) {
tab.active = true;
}
this.tabs.push(tab);
}
2016-05-18 16:59:54 +03:00
ngOnInit() {
if (this.selected) this.selected.subscribe(title => this.selectyByTitle(title));
}
2015-10-22 20:52:03 +03:00
}
@Component({
selector: 'tab',
templateUrl: 'tab.html',
styleUrls: ['tab.css']
2015-10-22 20:52:03 +03:00
})
export class Tab {
@Input() active: boolean = false;
@Input() tabTitle: string;
@Input() tabStatus: string;
constructor(tabs: Tabs) {
2015-10-22 20:52:03 +03:00
tabs.addTab(this);
}
}