]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/plugins/client-hook.model.ts
Merge branch 'signup-hooks' into 'develop'
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / client-hook.model.ts
CommitLineData
7663e55a 1// Data from API hooks: {hookType}:api.{location}.{elementType}.{actionType}.{target}
93cae479 2
7663e55a 3export const clientFilterHookObject = {
5f189c9c 4 // Filter params/result of the function that fetch videos of the trending page
7663e55a
C
5 'filter:api.trending-videos.videos.list.params': true,
6 'filter:api.trending-videos.videos.list.result': true,
93cae479 7
c07eb946
JM
8 // Filter params/result of the function that fetch videos of the trending page
9 'filter:api.most-liked-videos.videos.list.params': true,
10 'filter:api.most-liked-videos.videos.list.result': true,
11
5f189c9c 12 // Filter params/result of the function that fetch videos of the local page
7663e55a
C
13 'filter:api.local-videos.videos.list.params': true,
14 'filter:api.local-videos.videos.list.result': true,
93cae479 15
5f189c9c 16 // Filter params/result of the function that fetch videos of the recently-added page
7663e55a
C
17 'filter:api.recently-added-videos.videos.list.params': true,
18 'filter:api.recently-added-videos.videos.list.result': true,
93cae479 19
5f189c9c 20 // Filter params/result of the function that fetch videos of the user subscription page
7663e55a
C
21 'filter:api.user-subscriptions-videos.videos.list.params': true,
22 'filter:api.user-subscriptions-videos.videos.list.result': true,
93cae479 23
5f189c9c 24 // Filter params/result of the function that fetch the video of the video-watch page
7663e55a
C
25 'filter:api.video-watch.video.get.params': true,
26 'filter:api.video-watch.video.get.result': true,
93cae479 27
5f189c9c 28 // Filter params/result of the function that fetch the threads of the video-watch page
7663e55a
C
29 'filter:api.video-watch.video-threads.list.params': true,
30 'filter:api.video-watch.video-threads.list.result': true,
93cae479 31
5f189c9c 32 // Filter params/result of the function that fetch the replies of a thread in the video-watch page
7663e55a
C
33 'filter:api.video-watch.video-thread-replies.list.params': true,
34 'filter:api.video-watch.video-thread-replies.list.result': true,
93cae479 35
5f189c9c 36 // Filter params/result of the function that fetch videos according to the user search
7663e55a
C
37 'filter:api.search.videos.list.params': true,
38 'filter:api.search.videos.list.result': true,
5f189c9c 39 // Filter params/result of the function that fetch video-channels according to the user search
7663e55a 40 'filter:api.search.video-channels.list.params': true,
ba7b7e57
RK
41 'filter:api.search.video-channels.list.result': true,
42
43 // Filter form
44 'filter:api.signup.registration.create.params': true
7663e55a
C
45}
46
47export type ClientFilterHookName = keyof typeof clientFilterHookObject
48
49export const clientActionHookObject = {
5f189c9c 50 // Fired when the application is being initialized
7663e55a 51 'action:application.init': true,
93cae479 52
5f189c9c 53 // Fired when the video watch page is being initialized
7663e55a 54 'action:video-watch.init': true,
5f189c9c 55 // Fired when the video watch page loaded the video
7663e55a 56 'action:video-watch.video.loaded': true,
5f85f8aa
RK
57 // Fired when the player finished loading
58 'action:video-watch.player.loaded': true,
7663e55a 59
5f189c9c 60 // Fired when the search page is being initialized
23bdacf8
C
61 'action:search.init': true,
62
63 // Fired every time Angular URL changes
ba7b7e57
RK
64 'action:router.navigation-end': true,
65
66 // Fired when the registration page is being initialized
67 'action:signup.register.init': true
7663e55a 68}
93cae479 69
7663e55a 70export type ClientActionHookName = keyof typeof clientActionHookObject
93cae479 71
7663e55a
C
72export const clientHookObject = Object.assign({}, clientFilterHookObject, clientActionHookObject)
73export type ClientHookName = keyof typeof clientHookObject
93cae479
C
74
75export interface ClientHook {
76 runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T>
77}