X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fsearch%2Fsearch.component.ts;h=911d5684371208d994cc42274901cae724fe2df1;hb=478796690075a8868bf39a33f3ead80cf0040f42;hp=09028fec5e0f75c8cdbc1835b0d367bdfe7c7081;hpb=0b18f4aa80df8868bf34605423c7a298dffbb2aa;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index 09028fec5..911d56843 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts @@ -1,14 +1,16 @@ import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { RedirectService } from '@app/core' +import { AuthService, 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' +import { Video } from '@app/shared/video/video.model' @Component({ selector: 'my-search', @@ -16,17 +18,22 @@ import { AdvancedSearch } from '@app/search/advanced-search.model' templateUrl: './search.component.html' }) export class SearchComponent implements OnInit, OnDestroy { - videos: Video[] = [] + results: (Video | 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 = false // set to false to show the search filters on first arrival + private firstSearch = true + + private channelsPerPage = 2 constructor ( private i18n: I18n, @@ -35,27 +42,31 @@ export class SearchComponent implements OnInit, OnDestroy { private metaService: MetaService, private redirectService: RedirectService, private notificationsService: NotificationsService, - private searchService: SearchService + private searchService: SearchService, + private authService: AuthService ) { } ngOnInit () { - this.advancedSearch = new AdvancedSearch(this.route.snapshot.queryParams) - if (this.advancedSearch.containsValues()) this.isSearchFilterCollapsed = false - this.subActivatedRoute = this.route.queryParams.subscribe( queryParams => { const querySearch = queryParams['search'] - if (!querySearch) return this.redirectService.redirectToHomepage() - if (querySearch === this.currentSearch) return - // Search updated, reset filters - if (this.currentSearch) this.advancedSearch.reset() + if (this.currentSearch !== querySearch) { + this.resetPagination() + this.advancedSearch.reset() + + this.currentSearch = querySearch || undefined + 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) @@ -66,18 +77,47 @@ export class SearchComponent implements OnInit, OnDestroy { if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe() } + isVideoChannel (d: VideoChannel | Video): d is VideoChannel { + return d instanceof VideoChannel + } + + isVideo (v: VideoChannel | Video): v is Video { + return v instanceof Video + } + + isUserLoggedIn () { + return this.authService.isLoggedIn() + } + search () { - return this.searchService.searchVideos(this.currentSearch, this.pagination, this.advancedSearch) + 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.results = this.results + .concat(videoChannelsResult.data) + .concat(videosResult.videos) + this.pagination.totalItems = videosResult.totalVideos + videoChannelsResult.total + + // Focus on channels if there are no enough videos + if (this.firstSearch === true && videosResult.videos.length < this.pagination.itemsPerPage) { + this.resetPagination() + this.firstSearch = false + + this.channelsPerPage = 10 + this.search() + } + + this.firstSearch = false }, error => { this.notificationsService.error(this.i18n('Error'), error.message) } ) + } onNearOfBottom () { @@ -89,20 +129,21 @@ export class SearchComponent implements OnInit, OnDestroy { } onFiltered () { + this.resetPagination() + this.updateUrlFromAdvancedSearch() - // Hide the filters - this.isSearchFilterCollapsed = true + } - this.reload() + numberOfFilters () { + return this.advancedSearch.size() } - private reload () { + private resetPagination () { this.pagination.currentPage = 1 this.pagination.totalItems = null + this.channelsPerPage = 2 - this.videos = [] - - this.search() + this.results = [] } private updateTitle () { @@ -110,9 +151,11 @@ export class SearchComponent implements OnInit, OnDestroy { } private updateUrlFromAdvancedSearch () { + const search = this.currentSearch || undefined + this.router.navigate([], { relativeTo: this.route, - queryParams: Object.assign({}, this.advancedSearch.toUrlObject(), { search: this.currentSearch }) + queryParams: Object.assign({}, this.advancedSearch.toUrlObject(), { search }) }) } }