X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fplugins%2Fclient-hook.model.ts;h=f8ca32771507519fcf1ab035997b77ba579c40d5;hb=3c47fa3bc0e3f2362bb17976057287a7e9aba46b;hp=07ea7eb969f78c69bf3c5a522586c767b8f9cb46;hpb=5f85f8aa1c7a732a44a873de5f8f7aa41953a8f8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts index 07ea7eb96..f8ca32771 100644 --- a/shared/models/plugins/client-hook.model.ts +++ b/shared/models/plugins/client-hook.model.ts @@ -1,4 +1,5 @@ // Data from API hooks: {hookType}:api.{location}.{elementType}.{actionType}.{target} +// Data in internal functions: {hookType}:{location}.{elementType}.{actionType}.{target} export const clientFilterHookObject = { // Filter params/result of the function that fetch videos of the trending page @@ -38,7 +39,18 @@ export const clientFilterHookObject = { 'filter:api.search.videos.list.result': true, // Filter params/result of the function that fetch video-channels according to the user search 'filter:api.search.video-channels.list.params': true, - 'filter:api.search.video-channels.list.result': true + 'filter:api.search.video-channels.list.result': true, + + // Filter form + 'filter:api.signup.registration.create.params': true, + + // Filter the options to create our player + '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 @@ -53,12 +65,50 @@ 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, // Fired every time Angular URL changes - 'action:router.navigation-end': true + 'action:router.navigation-end': true, + + // Fired when the registration page is being initialized + 'action:signup.register.init': true, + + // Fired when the video upload page is being initalized + 'action:video-upload.init': true, + // Fired when the video import by URL page is being initalized + 'action:video-url-import.init': true, + // Fired when the video import by torrent/magnet URI page is being initalized + 'action:video-torrent-import.init': true, + // Fired when the "Go Live" page is being initalized + 'action:go-live.init': true, + + // Fired when the user explicitely logged in/logged out + 'action:auth-user.logged-in': true, + 'action:auth-user.logged-out': true, + // Fired when the application loaded user information (using tokens from the local storage or after a successful login) + 'action:auth-user.information-loaded': true, + + // Fired when the modal to download a video/caption is shown + 'action:modal.video-download.shown': 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