blob: 42de2dd9292fa9beb306571da4c09d66f36f96be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import { Component, OnInit } from '@angular/core'
import { Router, NavigationEnd } from '@angular/router'
import { getParameterByName } from '../shared/misc/utils'
@Component({
selector: 'my-header',
templateUrl: './header.component.html',
styleUrls: [ './header.component.scss' ]
})
export class HeaderComponent implements OnInit {
searchValue = ''
constructor (private router: Router) {}
ngOnInit () {
this.router.events
.filter(e => e instanceof NavigationEnd)
.map(() => getParameterByName('search', window.location.href))
.filter(searchQuery => !!searchQuery)
.subscribe(searchQuery => this.searchValue = searchQuery)
}
doSearch () {
this.router.navigate([ '/videos', 'search' ], {
queryParams: { search: this.searchValue }
})
}
}
|