X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fheader%2Fheader.component.ts;h=cce76b0d1272c82eb72ae8349b9835d1ea4c693b;hb=482fa503e545e00252e25eee7b3e0f7d421cf9d4;hp=88cd652e276070432ee9d91d62aefd01d8a1c986;hpb=a5f8b0b49f09e4399a8176d5cd06cc80c61b07d8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/header/header.component.ts b/client/src/app/header/header.component.ts index 88cd652e2..cce76b0d1 100644 --- a/client/src/app/header/header.component.ts +++ b/client/src/app/header/header.component.ts @@ -1,9 +1,4 @@ -import { filter, first, map, tap } from 'rxjs/operators' -import { Component, OnInit } from '@angular/core' -import { NavigationEnd, Router } from '@angular/router' -import { getParameterByName } from '../shared/misc/utils' -import { AuthService } from '@app/core' -import { of } from 'rxjs' +import { Component } from '@angular/core' @Component({ selector: 'my-header', @@ -11,40 +6,4 @@ import { of } from 'rxjs' styleUrls: [ './header.component.scss' ] }) -export class HeaderComponent implements OnInit { - searchValue = '' - - constructor ( - private router: Router, - private auth: AuthService - ) {} - - ngOnInit () { - this.router.events - .pipe( - filter(e => e instanceof NavigationEnd), - map(() => getParameterByName('search', window.location.href)) - ) - .subscribe(searchQuery => this.searchValue = searchQuery || '') - } - - doSearch () { - const queryParams: any = { - search: this.searchValue - } - - const o = this.auth.isLoggedIn() - ? this.loadUserLanguages(queryParams) - : of(true) - - o.subscribe(() => this.router.navigate([ '/search' ], { queryParams })) - } - - private loadUserLanguages (queryParams: any) { - return this.auth.userInformationLoaded - .pipe( - first(), - tap(() => Object.assign(queryParams, { languageOneOf: this.auth.getUser().videoLanguages })) - ) - } -} +export class HeaderComponent {}