Add action hook, comments loaded (#2539)

* Adding action hook for video watch comments loaded

* Adding requested changes for PR #2539
pull/2541/head
Chocobozzz 2020-03-05 13:14:26 +01:00 committed by GitHub
parent 52e3beb90d
commit 0840ca76a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,7 @@ export class VideoCommentsComponent implements OnInit, OnChanges, OnDestroy {
this.componentPagination.totalItems = res.total
this.onDataSubject.next(res.data)
this.hooks.runAction('action:video-watch.video-threads.loaded', 'video-watch', { data: this.componentPagination })
},
err => this.notifier.error(err.message)

View File

@ -65,6 +65,8 @@ export const clientActionHookObject = {
'action:video-watch.video.loaded': true,
// Fired when the player finished loading
'action:video-watch.player.loaded': true,
// Fired when the video watch page comments(threads) are loaded and load more comments on scroll
'action:video-watch.video-threads.loaded': true,
// Fired when the search page is being initialized
'action:search.init': true,