| /* |
| * Licensed to the Apache Software Foundation (ASF) under one or more |
| * contributor license agreements. See the NOTICE file distributed with |
| * this work for additional information regarding copyright ownership. |
| * The ASF licenses this file to You under the Apache License, Version 2.0 |
| * (the "License"); you may not use this file except in compliance with |
| * the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| import {AfterContentInit, Component, ContentChildren, QueryList} from '@angular/core'; |
| import {TabComponent} from './tab.component'; |
| |
| @Component({ |
| selector: 'app-tabs', |
| template: ` |
| <ul class="nav nav-tabs"> |
| <li *ngFor="let tab of tabs" (click)="selectTab(tab)" [class.active]="tab.active"> |
| <a>{{tab.title}}</a> |
| </li> |
| </ul> |
| |
| ` |
| }) |
| export class TabsComponent implements AfterContentInit { |
| |
| @ContentChildren(TabComponent) tabs: QueryList<TabComponent>; |
| |
| // contentChildren are set |
| ngAfterContentInit() { |
| // get all active tabs |
| let activeTabs = this.tabs.filter((tab) => tab.active); |
| |
| // if there is no active tab set, activate the first |
| if (activeTabs.length === 0) { |
| this.selectTab(this.tabs.first); |
| } |
| } |
| |
| selectTab(tab: TabComponent) { |
| // deactivate all tabs |
| this.tabs.toArray().forEach(t => t.active = false); |
| |
| // activate the tab the user has clicked on. |
| tab.active = true; |
| } |
| |
| } |