]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/header/header.component.ts
Add ability for uploaders to schedule video update
[github/Chocobozzz/PeerTube.git] / client / src / app / header / header.component.ts
CommitLineData
db400f44 1import { filter, map } from 'rxjs/operators'
f3aaa9a9 2import { Component, OnInit } from '@angular/core'
db400f44 3import { NavigationEnd, Router } from '@angular/router'
f3aaa9a9
C
4import { getParameterByName } from '../shared/misc/utils'
5
6@Component({
7 selector: 'my-header',
8 templateUrl: './header.component.html',
9 styleUrls: [ './header.component.scss' ]
10})
11
12export class HeaderComponent implements OnInit {
13 searchValue = ''
14
15 constructor (private router: Router) {}
16
17 ngOnInit () {
66dc5907 18 this.router.events
db400f44
C
19 .pipe(
20 filter(e => e instanceof NavigationEnd),
21 map(() => getParameterByName('search', window.location.href)),
22 filter(searchQuery => !!searchQuery)
23 )
66dc5907 24 .subscribe(searchQuery => this.searchValue = searchQuery)
f3aaa9a9
C
25 }
26
27 doSearch () {
f3aaa9a9
C
28 this.router.navigate([ '/videos', 'search' ], {
29 queryParams: { search: this.searchValue }
30 })
31 }
32}