X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fsearch%2Fsearch.component.ts;h=075994dd3e5d5239f76c70544b84c6b209b87783;hb=be27ef3b4682c5639039474c39ee0d234d16f482;hp=691e57619543eea0ea62592cf44d189b904eb9e9;hpb=7663e55a2cc46a413bceee2787d48902b15ae642;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index 691e57619..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 } from '@app/core' -import { forkJoin, Subscription } from 'rxjs' +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' @@ -11,7 +11,6 @@ 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' -import { PluginService } from '@app/core/plugins/plugin.service' @Component({ selector: 'my-search', @@ -44,8 +43,7 @@ export class SearchComponent implements OnInit, OnDestroy { private notifier: Notifier, private searchService: SearchService, private authService: AuthService, - private hooks: HooksService, - private pluginService: PluginService + private hooks: HooksService ) { } get user () { @@ -53,8 +51,6 @@ export class SearchComponent implements OnInit, OnDestroy { } ngOnInit () { - this.pluginService.loadPluginsByScope('search') - this.subActivatedRoute = this.route.queryParams.subscribe( queryParams => { const querySearch = queryParams['search'] @@ -80,7 +76,7 @@ export class SearchComponent implements OnInit, OnDestroy { err => this.notifier.error(err.text) ) - this.hooks.runAction('action:search.init') + this.hooks.runAction('action:search.init', 'search') } ngOnDestroy () { @@ -145,7 +141,8 @@ export class SearchComponent implements OnInit, OnDestroy { return this.advancedSearch.size() } - removeVideoFromArray (video: Video) { + // 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) } @@ -188,6 +185,8 @@ export class SearchComponent implements OnInit, OnDestroy { } private getVideoChannelObs () { + if (!this.currentSearch) return of({ data: [], total: 0 }) + const params = { search: this.currentSearch, componentPagination: immutableAssign(this.pagination, { itemsPerPage: this.channelsPerPage })