diff options
author | kontrollanten <6680299+kontrollanten@users.noreply.github.com> | 2022-07-08 10:50:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 10:50:10 +0200 |
commit | f8b4a71d428703811fa74dd811ef715c7d7afff6 (patch) | |
tree | 2c07b193d79e9ead8d7d98980964e9af671a76cc /client/src/app/+my-library | |
parent | edd7b1256b8b1352fb9c67e79231b0ab24b8dd40 (diff) | |
download | PeerTube-f8b4a71d428703811fa74dd811ef715c7d7afff6.tar.gz PeerTube-f8b4a71d428703811fa74dd811ef715c7d7afff6.tar.zst PeerTube-f8b4a71d428703811fa74dd811ef715c7d7afff6.zip |
hooks filter:api.my-lib.playlist-elems.get.* (#5098)
* hooks filter:api.my-lib.playlist-elems.get.*
closes #4776
* Introduce my-library plugin scope
Co-authored-by: Chocobozzz <me@florianbigard.com>
Diffstat (limited to 'client/src/app/+my-library')
-rw-r--r-- | client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts b/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts index 8fba423c3..c9739b6cc 100644 --- a/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts +++ b/client/src/app/+my-library/my-video-playlists/my-video-playlist-elements.component.ts | |||
@@ -2,7 +2,7 @@ import { Subject, Subscription } from 'rxjs' | |||
2 | import { CdkDragDrop } from '@angular/cdk/drag-drop' | 2 | import { CdkDragDrop } from '@angular/cdk/drag-drop' |
3 | import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' | 3 | import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' |
4 | import { ActivatedRoute, Router } from '@angular/router' | 4 | import { ActivatedRoute, Router } from '@angular/router' |
5 | import { ComponentPagination, ConfirmService, Notifier, ScreenService } from '@app/core' | 5 | import { ComponentPagination, ConfirmService, HooksService, Notifier, ScreenService } from '@app/core' |
6 | import { DropdownAction } from '@app/shared/shared-main' | 6 | import { DropdownAction } from '@app/shared/shared-main' |
7 | import { VideoShareComponent } from '@app/shared/shared-share-modal' | 7 | import { VideoShareComponent } from '@app/shared/shared-share-modal' |
8 | import { VideoPlaylist, VideoPlaylistElement, VideoPlaylistService } from '@app/shared/shared-video-playlist' | 8 | import { VideoPlaylist, VideoPlaylistElement, VideoPlaylistService } from '@app/shared/shared-video-playlist' |
@@ -32,6 +32,7 @@ export class MyVideoPlaylistElementsComponent implements OnInit, OnDestroy { | |||
32 | private paramsSub: Subscription | 32 | private paramsSub: Subscription |
33 | 33 | ||
34 | constructor ( | 34 | constructor ( |
35 | private hooks: HooksService, | ||
35 | private notifier: Notifier, | 36 | private notifier: Notifier, |
36 | private router: Router, | 37 | private router: Router, |
37 | private confirmService: ConfirmService, | 38 | private confirmService: ConfirmService, |
@@ -155,7 +156,13 @@ export class MyVideoPlaylistElementsComponent implements OnInit, OnDestroy { | |||
155 | } | 156 | } |
156 | 157 | ||
157 | private loadElements () { | 158 | private loadElements () { |
158 | this.videoPlaylistService.getPlaylistVideos({ videoPlaylistId: this.videoPlaylistId, componentPagination: this.pagination }) | 159 | this.hooks.wrapObsFun( |
160 | this.videoPlaylistService.getPlaylistVideos.bind(this.videoPlaylistService), | ||
161 | { videoPlaylistId: this.videoPlaylistId, componentPagination: this.pagination }, | ||
162 | 'my-library', | ||
163 | 'filter:api.my-library.video-playlist-elements.list.params', | ||
164 | 'filter:api.my-library.video-playlist-elements.list.result' | ||
165 | ) | ||
159 | .subscribe(({ total, data }) => { | 166 | .subscribe(({ total, data }) => { |
160 | this.playlistElements = this.playlistElements.concat(data) | 167 | this.playlistElements = this.playlistElements.concat(data) |
161 | this.pagination.totalItems = total | 168 | this.pagination.totalItems = total |