]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/header/header.component.ts
Disable webtorrent support in client
[github/Chocobozzz/PeerTube.git] / client / src / app / header / header.component.ts
index f73d40947187c630606f28d13ab6185a39471c53..c6e942e0e5c2368c024f661c3786c42bfd64da93 100644 (file)
@@ -1,7 +1,9 @@
-import { filter, map } from 'rxjs/operators'
+import { filter, first, map, tap } from 'rxjs/operators'
 import { Component, OnInit } from '@angular/core'
-import { NavigationEnd, Router } from '@angular/router'
+import { ActivatedRoute, NavigationEnd, Params, Router } from '@angular/router'
 import { getParameterByName } from '../shared/misc/utils'
+import { AuthService } from '@app/core'
+import { of } from 'rxjs'
 
 @Component({
   selector: 'my-header',
@@ -12,7 +14,11 @@ import { getParameterByName } from '../shared/misc/utils'
 export class HeaderComponent implements OnInit {
   searchValue = ''
 
-  constructor (private router: Router) {}
+  constructor (
+    private router: Router,
+    private route: ActivatedRoute,
+    private auth: AuthService
+  ) {}
 
   ngOnInit () {
     this.router.events
@@ -24,8 +30,28 @@ export class HeaderComponent implements OnInit {
   }
 
   doSearch () {
-    this.router.navigate([ '/search' ], {
-      queryParams: { search: this.searchValue }
-    })
+    const queryParams: Params = {}
+
+    if (window.location.pathname === '/search' && this.route.snapshot.queryParams) {
+      Object.assign(queryParams, this.route.snapshot.queryParams)
+    }
+
+    Object.assign(queryParams, { search: this.searchValue })
+
+    const o = this.auth.isLoggedIn()
+      ? this.loadUserLanguagesIfNeeded(queryParams)
+      : of(true)
+
+    o.subscribe(() => this.router.navigate([ '/search' ], { queryParams }))
+  }
+
+  private loadUserLanguagesIfNeeded (queryParams: any) {
+    if (queryParams && queryParams.languageOneOf) return of(queryParams)
+
+    return this.auth.userInformationLoaded
+               .pipe(
+                 first(),
+                 tap(() => Object.assign(queryParams, { languageOneOf: this.auth.getUser().videoLanguages }))
+               )
   }
 }