forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontexts.ts
More file actions
238 lines (198 loc) · 5.65 KB
/
Copy pathcontexts.ts
File metadata and controls
238 lines (198 loc) · 5.65 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
* Copyright (c) 2022 Snowplow Analytics Ltd, 2010 Anthon Pang
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import { TextTrack } from './types';
interface TimeRange {
start: number;
end: number;
}
export interface VideoElement {
/**
* A boolean value that is true if the video should enter or leave picture-in-picture mode automatically when changing tab and/or application
**/
autoPictureInPicture?: boolean | null;
/**
* The disablePictureInPicture property will hint the user agent to not suggest the picture-in-picture to users or to request it automatically
**/
disablePictureInPicture?: boolean | null;
/**
* 'poster' HTML attribute, which specifies an image to show while no video data is available
**/
poster?: string | null;
/**
* A value indicating the intrinsic height of the resource in CSS pixels, or 0 if no media is available yet
**/
videoHeight: number;
/**
* A value indicating the intrinsic width of the resource in CSS pixels, or 0 if no media is available yet
**/
videoWidth: number;
[key: string]: unknown;
}
export interface MediaElement {
/**
* If playback should automatically begin as soon as enough media is available to do so without interruption
**/
autoPlay: boolean;
/**
* An array of time ranges that have been buffered
**/
buffered: TimeRange[];
/**
* If the user agent should provide it's own set of controls
**/
controls: boolean;
/**
* CORS settings value of the media player
**/
crossOrigin?: string | null;
/**
* The absolute URL of the media resource
**/
currentSrc: string;
/**
* If audio is muted by default
**/
defaultMuted: boolean;
/**
* The default media playback rate of the player
**/
defaultPlaybackRate: number;
/**
* If the media element is allowed to have a remote playback UI
**/
disableRemotePlayback?: boolean | null;
/**
* An object of the latest error to occur, or null if no errors
**/
error?: object | null;
/**
* The media file format
**/
fileExtension: string;
/**
* If the video element is fullscreen
**/
fullscreen?: boolean | null;
/**
* If the media is a video element, or audio
**/
mediaType: 'AUDIO' | 'VIDEO';
/**
* The current state of the fetching of media over the network
**/
networkState: 'NETWORK_EMPTY' | 'NETWORK_IDLE' | 'NETWORK_LOADING' | 'NETWORK_NO_SOURCE';
/**
* If the video element is showing Picture-In-Picture
**/
pictureInPicture?: boolean | null;
/**
* An array of time ranges played
**/
played?: TimeRange[];
/**
* The HTML id of the element
**/
htmlId: string;
/**
* The 'preload' HTML attribute of the media
**/
preload: string;
/**
* The readiness of the media
**/
readyState: 'HAVE_NOTHING' | 'HAVE_METADATA' | 'HAVE_CURRENT_DATA' | 'HAVE_FUTURE_DATA' | 'HAVE_ENOUGH_DATA';
/**
* Seekable time range(s)
**/
seekable: TimeRange[];
/**
* If the media is in the process of seeking to a new position
**/
seeking: boolean;
/**
* The 'src' HTML attribute of the media element
**/
src: string;
/**
* An array of TextTrack objects on the media element
**/
textTracks?: TextTrack[];
[key: string]: unknown;
}
export interface MediaPlayerEvent {
/**
* The event fired by the media player
**/
type: string;
/**
* The custom media identifier given by the user
**/
mediaLabel?: string | null;
[key: string]: unknown;
}
export interface MediaPlayer {
/**
* The current playback time
**/
currentTime: number;
/**
* A double-precision floating-point value indicating the duration of the media in seconds
**/
duration?: number | null;
/**
* If playback of the media has ended
**/
ended: boolean;
/**
* If the video should restart after ending
**/
loop: boolean;
/**
* If the media element is muted
**/
muted: boolean;
/**
* If the media element is paused
**/
paused: boolean;
/**
* The percent of the way through the media
**/
percentProgress?: number | null;
/**
* Playback rate (1 is normal)
**/
playbackRate: number;
/**
* Volume level
**/
volume: number;
[key: string]: unknown;
}