]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/search/search.component.ts
Don't throw an error on empty search
[github/Chocobozzz/PeerTube.git] / client / src / app / search / search.component.ts
CommitLineData
57c36b27 1import { Component, OnDestroy, OnInit } from '@angular/core'
0b18f4aa 2import { ActivatedRoute, Router } from '@angular/router'
26fabbd6 3import { AuthService, RedirectService } from '@app/core'
57c36b27 4import { NotificationsService } from 'angular2-notifications'
f37dc0dd 5import { forkJoin, Subscription } from 'rxjs'
57c36b27
C
6import { SearchService } from '@app/search/search.service'
7import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
8import { I18n } from '@ngx-translate/i18n-polyfill'
57c36b27 9import { MetaService } from '@ngx-meta/core'
0b18f4aa 10import { AdvancedSearch } from '@app/search/advanced-search.model'
f37dc0dd
C
11import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
12import { immutableAssign } from '@app/shared/misc/utils'
26fabbd6 13import { Video } from '@app/shared/video/video.model'
57c36b27
C
14
15@Component({
16 selector: 'my-search',
17 styleUrls: [ './search.component.scss' ],
18 templateUrl: './search.component.html'
19})
20export class SearchComponent implements OnInit, OnDestroy {
26fabbd6 21 results: (Video | VideoChannel)[] = []
f37dc0dd 22
57c36b27
C
23 pagination: ComponentPagination = {
24 currentPage: 1,
f37dc0dd 25 itemsPerPage: 10, // Only for videos, use another variable for channels
57c36b27
C
26 totalItems: null
27 }
0b18f4aa
C
28 advancedSearch: AdvancedSearch = new AdvancedSearch()
29 isSearchFilterCollapsed = true
f37dc0dd 30 currentSearch: string
57c36b27
C
31
32 private subActivatedRoute: Subscription
c5d04b4f 33 private isInitialLoad = false // set to false to show the search filters on first arrival
b1ee8526 34 private firstSearch = true
57c36b27 35
f37dc0dd
C
36 private channelsPerPage = 2
37
57c36b27
C
38 constructor (
39 private i18n: I18n,
40 private route: ActivatedRoute,
0b18f4aa 41 private router: Router,
57c36b27
C
42 private metaService: MetaService,
43 private redirectService: RedirectService,
44 private notificationsService: NotificationsService,
26fabbd6
C
45 private searchService: SearchService,
46 private authService: AuthService
57c36b27
C
47 ) { }
48
49 ngOnInit () {
50 this.subActivatedRoute = this.route.queryParams.subscribe(
51 queryParams => {
52 const querySearch = queryParams['search']
53
0b18f4aa 54 // Search updated, reset filters
7afea880
C
55 if (this.currentSearch !== querySearch) {
56 this.resetPagination()
57 this.advancedSearch.reset()
58
47879669 59 this.currentSearch = querySearch || undefined
7afea880
C
60 this.updateTitle()
61 }
62
63 this.advancedSearch = new AdvancedSearch(queryParams)
0b18f4aa 64
7afea880
C
65 // Don't hide filters if we have some of them AND the user just came on the webpage
66 this.isSearchFilterCollapsed = this.isInitialLoad === false || !this.advancedSearch.containsValues()
67 this.isInitialLoad = false
57c36b27 68
7afea880 69 this.search()
57c36b27
C
70 },
71
72 err => this.notificationsService.error('Error', err.text)
73 )
74 }
75
76 ngOnDestroy () {
77 if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe()
78 }
79
26fabbd6
C
80 isVideoChannel (d: VideoChannel | Video): d is VideoChannel {
81 return d instanceof VideoChannel
82 }
83
84 isVideo (v: VideoChannel | Video): v is Video {
85 return v instanceof Video
86 }
87
88 isUserLoggedIn () {
89 return this.authService.isLoggedIn()
90 }
91
57c36b27 92 search () {
f37dc0dd
C
93 forkJoin([
94 this.searchService.searchVideos(this.currentSearch, this.pagination, this.advancedSearch),
95 this.searchService.searchVideoChannels(this.currentSearch, immutableAssign(this.pagination, { itemsPerPage: this.channelsPerPage }))
96 ])
57c36b27 97 .subscribe(
f37dc0dd 98 ([ videosResult, videoChannelsResult ]) => {
26fabbd6
C
99 this.results = this.results
100 .concat(videoChannelsResult.data)
101 .concat(videosResult.videos)
aa55a4da 102 this.pagination.totalItems = videosResult.totalVideos + videoChannelsResult.total
f37dc0dd 103
b1ee8526
C
104 // Focus on channels if there are no enough videos
105 if (this.firstSearch === true && videosResult.videos.length < this.pagination.itemsPerPage) {
aa55a4da 106 this.resetPagination()
b1ee8526 107 this.firstSearch = false
aa55a4da
C
108
109 this.channelsPerPage = 10
110 this.search()
111 }
b1ee8526
C
112
113 this.firstSearch = false
57c36b27
C
114 },
115
116 error => {
117 this.notificationsService.error(this.i18n('Error'), error.message)
118 }
119 )
f37dc0dd 120
57c36b27
C
121 }
122
123 onNearOfBottom () {
124 // Last page
125 if (this.pagination.totalItems <= (this.pagination.currentPage * this.pagination.itemsPerPage)) return
126
127 this.pagination.currentPage += 1
128 this.search()
129 }
130
0b18f4aa 131 onFiltered () {
7afea880 132 this.resetPagination()
0b18f4aa 133
7afea880 134 this.updateUrlFromAdvancedSearch()
0b18f4aa
C
135 }
136
c5d04b4f
RK
137 numberOfFilters () {
138 return this.advancedSearch.size()
139 }
140
7afea880 141 private resetPagination () {
57c36b27
C
142 this.pagination.currentPage = 1
143 this.pagination.totalItems = null
aa55a4da 144 this.channelsPerPage = 2
57c36b27 145
26fabbd6 146 this.results = []
57c36b27
C
147 }
148
149 private updateTitle () {
150 this.metaService.setTitle(this.i18n('Search') + ' ' + this.currentSearch)
151 }
0b18f4aa
C
152
153 private updateUrlFromAdvancedSearch () {
47879669 154 const search = this.currentSearch || undefined
c5d04b4f 155
0b18f4aa
C
156 this.router.navigate([], {
157 relativeTo: this.route,
c5d04b4f 158 queryParams: Object.assign({}, this.advancedSearch.toUrlObject(), { search })
0b18f4aa
C
159 })
160 }
57c36b27 161}