]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/peertube-videojs-typings.ts
Add previous button
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / peertube-videojs-typings.ts
CommitLineData
5abc96fc
C
1import { Config, Level } from 'hls.js'
2import videojs from 'video.js'
4572c3d0 3import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models'
09209296 4import { P2pMediaLoaderPlugin } from './p2p-media-loader/p2p-media-loader-plugin'
da332417 5import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager'
5abc96fc
C
6import { PlayerMode } from './peertube-player-manager'
7import { PeerTubePlugin } from './peertube-plugin'
4572c3d0 8import { PlaylistPlugin } from './playlist/playlist-plugin'
5abc96fc
C
9import { EndCardOptions } from './upnext/end-card'
10import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin'
c6352f2c 11
f5fcd9f7 12declare module 'video.js' {
83fcadac 13
f5fcd9f7 14 export interface VideoJsPlayer {
83fcadac
C
15 srOptions_: HlsjsConfigHandlerOptions
16
f5fcd9f7
C
17 theaterEnabled: boolean
18
19 // FIXME: add it to upstream typings
20 posterImage: {
21 show (): void
22 hide (): void
23 }
24
25 handleTechSeeked_ (): void
26
27 // Plugins
28
c6352f2c 29 peertube (): PeerTubePlugin
83fcadac 30
2adfc7ea 31 webtorrent (): WebTorrentPlugin
83fcadac 32
09209296 33 p2pMediaLoader (): P2pMediaLoaderPlugin
c6352f2c 34
f5fcd9f7
C
35 contextmenuUI (options: any): any
36
37 bezels (): void
38
83fcadac 39 qualityLevels (): QualityLevels
c6352f2c 40
f5fcd9f7
C
41 textTracks (): TextTrackList & {
42 on: Function
1151f521 43 tracks_: (TextTrack & { id: string, label: string, src: string })[]
f5fcd9f7 44 }
83fcadac 45
abb3097e 46 dock (options: { title: string, description: string }): void
5abc96fc
C
47
48 upnext (options: Partial<EndCardOptions>): void
4572c3d0
C
49
50 playlist (): PlaylistPlugin
f5fcd9f7 51 }
c6352f2c
C
52}
53
83fcadac
C
54export interface VideoJSTechHLS extends videojs.Tech {
55 hlsProvider: any // FIXME: typings
56}
57
58export interface HlsjsConfigHandlerOptions {
59 hlsjsConfig?: Config & { cueHandler: any }// FIXME: typings
60 captionConfig?: any // FIXME: typings
61
62 levelLabelHandler?: (level: Level) => string
63}
64
65type QualityLevelRepresentation = {
66 id: number
67 height: number
68
69 label?: string
70 width?: number
71 bandwidth?: number
72 bitrate?: number
73
74 enabled?: Function
75 _enabled: boolean
76}
77
78type QualityLevels = QualityLevelRepresentation[] & {
79 selectedIndex: number
80 selectedIndex_: number
81
82 addQualityLevel (representation: QualityLevelRepresentation): void
83}
84
16f7022b
C
85type VideoJSCaption = {
86 label: string
87 language: string
88 src: string
89}
90
6e46de09
C
91type UserWatching = {
92 url: string,
93 authorizationHeader: string
94}
95
2adfc7ea 96type PeerTubePluginOptions = {
09209296
C
97 mode: PlayerMode
98
2adfc7ea 99 autoplay: boolean
c6352f2c
C
100 videoViewUrl: string
101 videoDuration: number
6e46de09
C
102
103 userWatching?: UserWatching
2adfc7ea
C
104 subtitle?: string
105
106 videoCaptions: VideoJSCaption[]
f0a39880
C
107
108 stopTime: number | string
2adfc7ea
C
109}
110
4572c3d0
C
111type PlaylistPluginOptions = {
112 elements: VideoPlaylistElement[]
113
114 playlist: VideoPlaylist
115
116 getCurrentPosition: () => number
117
118 onItemClicked: (element: VideoPlaylistElement) => void
119}
120
a950e4c8
C
121type NextPreviousVideoButtonOptions = {
122 type: 'next' | 'previous'
123 handler: Function
124 isDisabled: () => boolean
125}
126
2adfc7ea
C
127type WebtorrentPluginOptions = {
128 playerElement: HTMLVideoElement
129
130 autoplay: boolean
131 videoDuration: number
132
133 videoFiles: VideoFile[]
f0a39880
C
134
135 startTime: number | string
2adfc7ea
C
136}
137
138type P2PMediaLoaderPluginOptions = {
da332417 139 redundancyUrlManager: RedundancyUrlManager
2adfc7ea
C
140 type: string
141 src: string
f0a39880
C
142
143 startTime: number | string
2adfc7ea
C
144}
145
146type VideoJSPluginOptions = {
4572c3d0
C
147 playlist?: PlaylistPluginOptions
148
2adfc7ea
C
149 peertube: PeerTubePluginOptions
150
151 webtorrent?: WebtorrentPluginOptions
152
153 p2pMediaLoader?: P2PMediaLoaderPluginOptions
c6352f2c
C
154}
155
2adfc7ea
C
156type LoadedQualityData = {
157 qualitySwitchCallback: Function,
158 qualityData: {
159 video: {
160 id: number
161 label: string
162 selected: boolean
163 }[]
164 }
165}
166
167type ResolutionUpdateData = {
168 auto: boolean,
169 resolutionId: number
3b6f205c 170 id?: number
2adfc7ea
C
171}
172
173type AutoResolutionUpdateData = {
174 possible: boolean
175}
176
3b6f205c 177type PlayerNetworkInfo = {
09209296
C
178 http: {
179 downloadSpeed: number
180 uploadSpeed: number
181 downloaded: number
182 uploaded: number
183 }
184
3b6f205c
C
185 p2p: {
186 downloadSpeed: number
187 uploadSpeed: number
188 downloaded: number
189 uploaded: number
190 numPeers: number
191 }
192}
193
4572c3d0
C
194type PlaylistItemOptions = {
195 element: VideoPlaylistElement
196
197 onClicked: Function
198}
199
c6352f2c 200export {
3b6f205c 201 PlayerNetworkInfo,
4572c3d0 202 PlaylistItemOptions,
a950e4c8 203 NextPreviousVideoButtonOptions,
2adfc7ea
C
204 ResolutionUpdateData,
205 AutoResolutionUpdateData,
4572c3d0 206 PlaylistPluginOptions,
6e46de09 207 VideoJSCaption,
2adfc7ea
C
208 UserWatching,
209 PeerTubePluginOptions,
210 WebtorrentPluginOptions,
211 P2PMediaLoaderPluginOptions,
212 VideoJSPluginOptions,
83fcadac
C
213 LoadedQualityData,
214 QualityLevelRepresentation,
215 QualityLevels
c6352f2c 216}