aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/header/header.component.ts
blob: 9d2a837736060a314e7aa9886b44441fc3d4348a (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
30
31
32
import { filter, map } from 'rxjs/operators'
import { Component, OnInit } from '@angular/core'
import { NavigationEnd, Router } 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
        .pipe(
          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 }
    })
  }
}