PeerTube/client/src/app/+admin/follows/follows.component.ts

63 lines
1.4 KiB
TypeScript
Raw Normal View History

2017-11-28 17:11:07 +01:00
import { AfterViewInit, Component, OnInit, ViewChild } from '@angular/core'
import { NavigationEnd, Router } from '@angular/router'
2018-06-05 16:31:52 +02:00
import { I18n } from '@ngx-translate/i18n-polyfill'
import { NgbTabset } from '@ng-bootstrap/ng-bootstrap'
@Component({
templateUrl: './follows.component.html',
styleUrls: [ './follows.component.scss' ]
})
2017-11-28 17:11:07 +01:00
export class FollowsComponent implements OnInit, AfterViewInit {
@ViewChild('followsMenuTabs') followsMenuTabs: NgbTabset
2018-06-05 16:31:52 +02:00
links: { path: string, title: string }[] = []
constructor (
private i18n: I18n,
private router: Router
) {
this.links = [
{
path: 'following-list',
title: this.i18n('Following')
},
{
path: 'following-add',
title: this.i18n('Follow')
},
{
path: 'followers-list',
title: this.i18n('Followers')
}
]
}
2017-11-28 17:11:07 +01:00
ngOnInit () {
this.router.events.subscribe(
event => {
if (event instanceof NavigationEnd) {
this.updateActiveTab()
}
}
)
}
ngAfterViewInit () {
// Avoid issue with change detector
setTimeout(() => this.updateActiveTab())
}
private updateActiveTab () {
const url = window.location.pathname
for (let i = 0; i < this.links.length; i++) {
const path = this.links[i].path
if (url.endsWith(path) === true) {
this.followsMenuTabs.select(path)
return
}
}
}
}