]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/plugins/client-hook.model.ts
Action hook: thread replies loaded (#2550)
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / client-hook.model.ts
index f0cdb8b1930392ae916333d18a2d7fa5dbfa3fb1..62f6070d796f51d35601e26c2aebfb408453b049 100644 (file)
@@ -45,7 +45,12 @@ export const clientFilterHookObject = {
   'filter:api.signup.registration.create.params': true,
 
   // Filter the options to create our player
-  'filter:internal.video-watch.player.build-options.result': true
+  'filter:internal.video-watch.player.build-options.params': true,
+  'filter:internal.video-watch.player.build-options.result': true,
+
+  // Filter our SVG icons content
+  'filter:internal.common.svg-icons.get-content.params': true,
+  'filter:internal.common.svg-icons.get-content.result': true
 }
 
 export type ClientFilterHookName = keyof typeof clientFilterHookObject
@@ -60,6 +65,10 @@ 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 a user click on 'View x replies' and they're loaded
+  'action:video-watch.video-thread-replies.loaded': true,
 
   // Fired when the search page is being initialized
   'action:search.init': true,