X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fplugins%2Fclient-hook.model.ts;h=7b7144676f2097a685372774d62efbed4392be95;hb=2498aaead1fb4f34c8c375ef9edff33456c4527a;hp=f0cdb8b1930392ae916333d18a2d7fa5dbfa3fb1;hpb=3d9a63d3d824e753e95292b5e1343e1ebf9eaf71;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts index f0cdb8b19..7b7144676 100644 --- a/shared/models/plugins/client-hook.model.ts +++ b/shared/models/plugins/client-hook.model.ts @@ -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,16 @@ 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 video edit page (upload, URL/torrent import, update) is being initialized + 'action:video-edit.init': true, + + // Fired when the login page is being initialized + 'action:login.init': true, // Fired when the search page is being initialized 'action:search.init': true, @@ -68,7 +83,13 @@ export const clientActionHookObject = { 'action:router.navigation-end': true, // Fired when the registration page is being initialized - 'action:signup.register.init': true + 'action:signup.register.init': true, + + // ####### Embed hooks ####### + // In embed scope, peertube helpers are not available + + // Fired when the embed loaded the player + 'action:embed.player.loaded': true } export type ClientActionHookName = keyof typeof clientActionHookObject