X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fsearch%2Fsearch.component.ts;h=075994dd3e5d5239f76c70544b84c6b209b87783;hb=a18b96335ce585f0242416e3d1336d820ea50180;hp=c4a4b1fdebf7a472916c81bc22f1c86e10e8cd27;hpb=88108880bbdba473cfe36ecbebc1c3c4f972e102;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index c4a4b1fde..075994dd3 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts @@ -1,7 +1,7 @@ import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { AuthService, Notifier, ServerService } from '@app/core' -import { forkJoin, Subscription } from 'rxjs' +import { AuthService, Notifier } from '@app/core' +import { forkJoin, of, 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' @@ -10,6 +10,7 @@ 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' +import { HooksService } from '@app/core/plugins/hooks.service' @Component({ selector: 'my-search', @@ -42,9 +43,13 @@ export class SearchComponent implements OnInit, OnDestroy { private notifier: Notifier, private searchService: SearchService, private authService: AuthService, - private serverService: ServerService + private hooks: HooksService ) { } + get user () { + return this.authService.getUser() + } + ngOnInit () { this.subActivatedRoute = this.route.queryParams.subscribe( queryParams => { @@ -70,16 +75,14 @@ export class SearchComponent implements OnInit, OnDestroy { err => this.notifier.error(err.text) ) + + this.hooks.runAction('action:search.init', 'search') } ngOnDestroy () { if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe() } - isVideoBlur (video: Video) { - return video.isVideoNSFWForUser(this.authService.getUser(), this.serverService.getConfig()) - } - isVideoChannel (d: VideoChannel | Video): d is VideoChannel { return d instanceof VideoChannel } @@ -94,18 +97,18 @@ export class SearchComponent implements OnInit, OnDestroy { search () { forkJoin([ - this.searchService.searchVideos(this.currentSearch, this.pagination, this.advancedSearch), - this.searchService.searchVideoChannels(this.currentSearch, immutableAssign(this.pagination, { itemsPerPage: this.channelsPerPage })) + this.getVideosObs(), + this.getVideoChannelObs() ]) .subscribe( ([ videosResult, videoChannelsResult ]) => { this.results = this.results .concat(videoChannelsResult.data) - .concat(videosResult.videos) - this.pagination.totalItems = videosResult.totalVideos + videoChannelsResult.total + .concat(videosResult.data) + this.pagination.totalItems = videosResult.total + videoChannelsResult.total // Focus on channels if there are no enough videos - if (this.firstSearch === true && videosResult.videos.length < this.pagination.itemsPerPage) { + if (this.firstSearch === true && videosResult.data.length < this.pagination.itemsPerPage) { this.resetPagination() this.firstSearch = false @@ -118,7 +121,6 @@ export class SearchComponent implements OnInit, OnDestroy { err => this.notifier.error(err.message) ) - } onNearOfBottom () { @@ -139,6 +141,11 @@ export class SearchComponent implements OnInit, OnDestroy { return this.advancedSearch.size() } + // Add VideoChannel for typings, but the template already checks "video" argument is a video + removeVideoFromArray (video: Video | VideoChannel) { + this.results = this.results.filter(r => !this.isVideo(r) || r.id !== video.id) + } + private resetPagination () { this.pagination.currentPage = 1 this.pagination.totalItems = null @@ -160,4 +167,37 @@ export class SearchComponent implements OnInit, OnDestroy { queryParams: Object.assign({}, this.advancedSearch.toUrlObject(), { search }) }) } + + private getVideosObs () { + const params = { + search: this.currentSearch, + componentPagination: this.pagination, + advancedSearch: this.advancedSearch + } + + return this.hooks.wrapObsFun( + this.searchService.searchVideos.bind(this.searchService), + params, + 'search', + 'filter:api.search.videos.list.params', + 'filter:api.search.videos.list.result' + ) + } + + private getVideoChannelObs () { + if (!this.currentSearch) return of({ data: [], total: 0 }) + + const params = { + search: this.currentSearch, + componentPagination: immutableAssign(this.pagination, { itemsPerPage: this.channelsPerPage }) + } + + return this.hooks.wrapObsFun( + this.searchService.searchVideoChannels.bind(this.searchService), + params, + 'search', + 'filter:api.search.video-channels.list.params', + 'filter:api.search.video-channels.list.result' + ) + } }