blob: 86ae9ab4222cf7d21e103f35121fdae8652a4054 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { Subject } from 'rxjs'
import { debounceTime, distinctUntilChanged } from 'rxjs/operators'
@Component({
selector: 'simple-search-input',
templateUrl: './simple-search-input.component.html',
styleUrls: [ './simple-search-input.component.scss' ]
})
export class SimpleSearchInputComponent implements OnInit {
@ViewChild('ref') input: ElementRef
@Input() name = 'search'
@Input() placeholder = $localize`Search`
@Output() searchChanged = new EventEmitter<string>()
value = ''
shown: boolean
private searchSubject = new Subject<string>()
constructor (
private router: Router,
private route: ActivatedRoute
) {}
ngOnInit () {
this.searchSubject
.pipe(
debounceTime(400),
distinctUntilChanged()
)
.subscribe(value => this.searchChanged.emit(value))
this.searchSubject.next(this.value)
}
showInput () {
this.shown = true
setTimeout(() => this.input.nativeElement.focus())
}
focusLost () {
if (this.value !== '') return
this.shown = false
}
searchChange () {
this.router.navigate(['./search'], { relativeTo: this.route })
this.searchSubject.next(this.value)
}
}
|