X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fsearch%2Fsearch.component.ts;h=f88df639109f91017885b806e929ad1993f85dad;hb=f37dc0dd14d9ce0b59c454c2c1b935fcbe9727e9;hp=be1cb3689d02c30db5579b6575eccb47f78e6bf2;hpb=57c36b277e68b764dd34cb2e449f6e2ca3d1e9b6;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index be1cb3689..f88df6391 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts @@ -1,13 +1,16 @@ import { Component, OnDestroy, OnInit } from '@angular/core' -import { ActivatedRoute } from '@angular/router' +import { ActivatedRoute, Router } from '@angular/router' import { RedirectService } from '@app/core' import { NotificationsService } from 'angular2-notifications' -import { Subscription } from 'rxjs' +import { forkJoin, Subscription } from 'rxjs' import { SearchService } from '@app/search/search.service' import { ComponentPagination } from '@app/shared/rest/component-pagination.model' import { I18n } from '@ngx-translate/i18n-polyfill' import { Video } from '../../../../shared' import { MetaService } from '@ngx-meta/core' +import { AdvancedSearch } from '@app/search/advanced-search.model' +import { VideoChannel } from '@app/shared/video-channel/video-channel.model' +import { immutableAssign } from '@app/shared/misc/utils' @Component({ selector: 'my-search', @@ -16,18 +19,26 @@ import { MetaService } from '@ngx-meta/core' }) export class SearchComponent implements OnInit, OnDestroy { videos: Video[] = [] + videoChannels: VideoChannel[] = [] + pagination: ComponentPagination = { currentPage: 1, - itemsPerPage: 10, // It's per object type (so 10 videos, 10 video channels etc) + itemsPerPage: 10, // Only for videos, use another variable for channels totalItems: null } + advancedSearch: AdvancedSearch = new AdvancedSearch() + isSearchFilterCollapsed = true + currentSearch: string private subActivatedRoute: Subscription - private currentSearch: string + private isInitialLoad = true + + private channelsPerPage = 2 constructor ( private i18n: I18n, private route: ActivatedRoute, + private router: Router, private metaService: MetaService, private redirectService: RedirectService, private notificationsService: NotificationsService, @@ -39,13 +50,25 @@ export class SearchComponent implements OnInit, OnDestroy { queryParams => { const querySearch = queryParams['search'] - if (!querySearch) return this.redirectService.redirectToHomepage() - if (querySearch === this.currentSearch) return + // New empty search + if (this.currentSearch && !querySearch) return this.redirectService.redirectToHomepage() + + // Search updated, reset filters + if (this.currentSearch !== querySearch) { + this.resetPagination() + this.advancedSearch.reset() + + this.currentSearch = querySearch + this.updateTitle() + } + + this.advancedSearch = new AdvancedSearch(queryParams) - this.currentSearch = querySearch - this.updateTitle() + // Don't hide filters if we have some of them AND the user just came on the webpage + this.isSearchFilterCollapsed = this.isInitialLoad === false || !this.advancedSearch.containsValues() + this.isInitialLoad = false - this.reload() + this.search() }, err => this.notificationsService.error('Error', err.text) @@ -57,17 +80,23 @@ export class SearchComponent implements OnInit, OnDestroy { } search () { - return this.searchService.searchVideos(this.currentSearch, this.pagination) + forkJoin([ + this.searchService.searchVideos(this.currentSearch, this.pagination, this.advancedSearch), + this.searchService.searchVideoChannels(this.currentSearch, immutableAssign(this.pagination, { itemsPerPage: this.channelsPerPage })) + ]) .subscribe( - ({ videos, totalVideos }) => { - this.videos = this.videos.concat(videos) - this.pagination.totalItems = totalVideos + ([ videosResult, videoChannelsResult ]) => { + this.videos = this.videos.concat(videosResult.videos) + this.pagination.totalItems = videosResult.totalVideos + + this.videoChannels = videoChannelsResult.data }, error => { this.notificationsService.error(this.i18n('Error'), error.message) } ) + } onNearOfBottom () { @@ -78,16 +107,27 @@ export class SearchComponent implements OnInit, OnDestroy { this.search() } - private reload () { + onFiltered () { + this.resetPagination() + + this.updateUrlFromAdvancedSearch() + } + + private resetPagination () { this.pagination.currentPage = 1 this.pagination.totalItems = null this.videos = [] - - this.search() } private updateTitle () { this.metaService.setTitle(this.i18n('Search') + ' ' + this.currentSearch) } + + private updateUrlFromAdvancedSearch () { + this.router.navigate([], { + relativeTo: this.route, + queryParams: Object.assign({}, this.advancedSearch.toUrlObject(), { search: this.currentSearch }) + }) + } }