+ vscode night owl theme

This commit is contained in:
committer
2024-05-15 07:15:59 -05:00
parent e2c14487aa
commit d18120752c
51 changed files with 19760 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import { Component, OnInit, OnDestroy } from '@angular/core'
import { Person, SearchService } from '../shared'
import { ActivatedRoute } from '@angular/router'
import { Subscription } from 'rxjs'
@Component({
selector: 'app-search',
templateUrl: './search.component.html',
styleUrls: ['./search.component.css']
})
export class SearchComponent implements OnInit, OnDestroy {
query: string
searchResults: Array<Person>
sub: Subscription
constructor(
private searchService: SearchService,
private route: ActivatedRoute
) {}
ngOnInit() {
this.sub = this.route.params.subscribe(params => {
if (params['term']) {
this.query = decodeURIComponent(params['term'])
this.search()
}
})
}
search(): void {
this.searchService.search(this.query).subscribe(
(data: any) => {
this.searchResults = data
},
error => console.log(error)
)
}
ngOnDestroy() {
if (this.sub) {
this.sub.unsubscribe()
}
}
}