1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Data from API hooks: {hookType}:api.{location}.{elementType}.{actionType}.{target}
export const clientFilterHookObject = {
'filter:api.trending-videos.videos.list.params': true,
'filter:api.trending-videos.videos.list.result': true,
'filter:api.local-videos.videos.list.params': true,
'filter:api.local-videos.videos.list.result': true,
'filter:api.recently-added-videos.videos.list.params': true,
'filter:api.recently-added-videos.videos.list.result': true,
'filter:api.user-subscriptions-videos.videos.list.params': true,
'filter:api.user-subscriptions-videos.videos.list.result': true,
'filter:api.video-watch.video.get.params': true,
'filter:api.video-watch.video.get.result': true,
'filter:api.video-watch.video-threads.list.params': true,
'filter:api.video-watch.video-threads.list.result': true,
'filter:api.video-watch.video-thread-replies.list.params': true,
'filter:api.video-watch.video-thread-replies.list.result': true,
'filter:api.search.videos.list.params': true,
'filter:api.search.videos.list.result': true,
'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 = {
'action:application.init': true,
'action:video-watch.init': true,
'action:video-watch.video.loaded': true,
'action:search.init': true
}
export type ClientActionHookName = keyof typeof clientActionHookObject
export const clientHookObject = Object.assign({}, clientFilterHookObject, clientActionHookObject)
export type ClientHookName = keyof typeof clientHookObject
export interface ClientHook {
runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T>
}
|