2019-07-22 10:31:47 -04:00
|
|
|
// Data from API hooks: {hookType}:api.{location}.{elementType}.{actionType}.{target}
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-22 10:31:47 -04:00
|
|
|
export const clientFilterHookObject = {
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch videos of the trending page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.trending-videos.videos.list.params': true,
|
|
|
|
'filter:api.trending-videos.videos.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch videos of the local page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.local-videos.videos.list.params': true,
|
|
|
|
'filter:api.local-videos.videos.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch videos of the recently-added page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.recently-added-videos.videos.list.params': true,
|
|
|
|
'filter:api.recently-added-videos.videos.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch videos of the user subscription page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.user-subscriptions-videos.videos.list.params': true,
|
|
|
|
'filter:api.user-subscriptions-videos.videos.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch the video of the video-watch page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.video-watch.video.get.params': true,
|
|
|
|
'filter:api.video-watch.video.get.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch the threads of the video-watch page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.video-watch.video-threads.list.params': true,
|
|
|
|
'filter:api.video-watch.video-threads.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch the replies of a thread in the video-watch page
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.video-watch.video-thread-replies.list.params': true,
|
|
|
|
'filter:api.video-watch.video-thread-replies.list.result': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch videos according to the user search
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.search.videos.list.params': true,
|
|
|
|
'filter:api.search.videos.list.result': true,
|
2019-07-24 04:21:22 -04:00
|
|
|
// Filter params/result of the function that fetch video-channels according to the user search
|
2019-07-22 10:31:47 -04:00
|
|
|
'filter:api.search.video-channels.list.params': true,
|
|
|
|
'filter:api.search.video-channels.list.result': true
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ClientFilterHookName = keyof typeof clientFilterHookObject
|
|
|
|
|
|
|
|
export const clientActionHookObject = {
|
2019-07-24 04:21:22 -04:00
|
|
|
// Fired when the application is being initialized
|
2019-07-22 10:31:47 -04:00
|
|
|
'action:application.init': true,
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Fired when the video watch page is being initialized
|
2019-07-22 10:31:47 -04:00
|
|
|
'action:video-watch.init': true,
|
2019-07-24 04:21:22 -04:00
|
|
|
// Fired when the video watch page loaded the video
|
2019-07-22 10:31:47 -04:00
|
|
|
'action:video-watch.video.loaded': true,
|
|
|
|
|
2019-07-24 04:21:22 -04:00
|
|
|
// Fired when the search page is being initialized
|
2019-07-25 13:02:54 -04:00
|
|
|
'action:search.init': true,
|
|
|
|
|
|
|
|
// Fired every time Angular URL changes
|
|
|
|
'action:router.navigation-end': true
|
2019-07-22 10:31:47 -04:00
|
|
|
}
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-22 10:31:47 -04:00
|
|
|
export type ClientActionHookName = keyof typeof clientActionHookObject
|
2019-07-22 09:40:13 -04:00
|
|
|
|
2019-07-22 10:31:47 -04:00
|
|
|
export const clientHookObject = Object.assign({}, clientFilterHookObject, clientActionHookObject)
|
|
|
|
export type ClientHookName = keyof typeof clientHookObject
|
2019-07-22 09:40:13 -04:00
|
|
|
|
|
|
|
export interface ClientHook {
|
|
|
|
runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T>
|
|
|
|
}
|