-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
412 lines (386 loc) · 10.6 KB
/
index.js
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
import React from 'react';
import PropTypes from 'prop-types';
import eventNames from './eventNames';
import loadSdk from './loadSdk';
class Dailymotion extends React.Component {
constructor(props) {
super(props);
this.refContainer = (container) => {
this.container = container;
};
}
componentDidMount() {
this.createPlayer();
}
componentDidUpdate(prevProps) {
// eslint-disable-next-line react/destructuring-assignment
const changes = Object.keys(this.props).filter((name) => this.props[name] !== prevProps[name]);
this.updateProps(changes);
}
/**
* @private
*/
getPlayerParameters() {
/* eslint-disable react/destructuring-assignment */
return {
autoplay: this.props.autoplay,
controls: this.props.controls,
'endscreen-enable': this.props.showEndScreen,
id: this.props.id,
mute: this.props.mute,
origin: this.props.origin,
quality: this.props.quality,
'queue-autoplay-neext': this.props.autoplayQueue,
'queue-enable': this.props.showQueue,
'sharing-enable': this.props.sharing,
start: this.props.start,
'subtitles-default': this.props.subtitles,
syndication: this.props.syndication,
'ui-highlight': this.props.uiHighlightColor,
'ui-logo': this.props.uiShowLogo,
'ui-start-screen-info': this.props.uiShowStartScreenInfo,
'ui-theme': this.props.uiTheme,
};
/* eslint-enable react/destructuring-assignment */
}
/**
* @private
*/
getInitialOptions() {
/* eslint-disable react/destructuring-assignment */
return {
video: this.props.video,
width: this.props.width,
height: this.props.height,
params: this.getPlayerParameters(),
events: {},
};
/* eslint-enable react/destructuring-assignment */
}
/**
* @private
*/
updateProps(propNames) {
this.player.then((player) => {
propNames.forEach((name) => {
// eslint-disable-next-line react/destructuring-assignment
const value = this.props[name];
switch (name) {
case 'mute':
player.setMuted(value);
break;
case 'quality':
player.setQuality(value);
break;
case 'subtitles':
player.setSubtitle(value);
break;
case 'volume':
player.setVolume(value);
break;
case 'paused':
if (value && !player.paused) {
player.pause();
} else if (!value && player.paused) {
player.play();
}
break;
case 'id':
case 'className':
case 'width':
case 'height':
// The Dailymotion Player object is also the player iframe.
player[name] = value; // eslint-disable-line no-param-reassign
break;
case 'video':
if (value) {
player.load(value, this.getPlayerParameters());
} else {
// This is just about the closest thing to an `unload()` the
// Dailymotion SDK has, as far as I can tell…
player.pause();
}
break;
default:
// Nothing
}
});
});
}
/**
* @private
*/
createPlayer() {
const { volume } = this.props;
this.player = loadSdk().then((DM) => {
const player = DM.player(this.container, this.getInitialOptions());
Object.keys(eventNames).forEach((dmName) => {
const reactName = eventNames[dmName];
player.addEventListener(dmName, (event) => {
// eslint-disable-next-line react/destructuring-assignment
const handler = this.props[reactName];
if (handler) {
handler(event);
}
});
});
return new Promise((resolve) => {
player.addEventListener('apiready', () => {
resolve(player);
});
});
});
if (typeof volume === 'number') {
this.updateProps(['volume']);
}
}
render() {
const { id, className } = this.props;
return (
<div
id={id}
className={className}
ref={this.refContainer}
/>
);
}
}
Dailymotion.propTypes = {
/**
* A string representing a video ID – of the form xID (e.g. xwr14q) for
* public-accessible videos or kID (e.g. kABCD1234) for private-accessible
* videos.
*/
video: PropTypes.string,
/**
* DOM ID for the player element.
*/
id: PropTypes.string,
/**
* CSS className for the player element.
*/
className: PropTypes.string,
/**
* Width of the player element.
*/
width: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string,
]),
/**
* Height of the player element.
*/
height: PropTypes.oneOfType([
PropTypes.number,
PropTypes.string,
]),
/**
* Pause the video.
*/
paused: PropTypes.bool, // eslint-disable-line react/no-unused-prop-types
// Player parameters
/**
* Starts the playback of the video automatically after the player loads.
*/
autoplay: PropTypes.bool,
/**
* Whether to display the player controls or not. This parameter only
* removes the control bar, but keeps the startscreen and the endscreen
* (useful on mobile devices where the video tag needs a direct user
* interaction to start the playback).
*/
controls: PropTypes.bool,
/**
* Whether to enable the end screen or not.
*/
showEndScreen: PropTypes.bool,
/**
* Whether to mute the video or not.
*/
mute: PropTypes.bool,
/**
* The domain of the page hosting the Dailymotion player. You might want to
* specify origin for extra security.
*/
origin: PropTypes.string,
/**
* Specifies the _suggested_ playback quality for the video.
*/
quality: PropTypes.oneOf(['auto', '240', '380', '480', '720', '1080', '1440', '2160']),
/**
* Whether to show the Up Next queue.
*/
showQueue: PropTypes.bool,
/**
* Whether to play automatically the next item in the queue.
*/
autoplayQueue: PropTypes.bool,
/**
* Whether to display the sharing button or not.
*/
sharing: PropTypes.bool,
/**
* Specifies the time (in seconds) from which the video should start
* playing.
*/
start: PropTypes.number,
/**
* Specifies the selected subtitles language.
*/
subtitles: PropTypes.string,
/**
* Passes your syndication key to the player.
*/
syndication: PropTypes.string,
/**
* Change the default highlight colour used in the controls (hex value).
* See [the player customisation section](https://developer.dailymotion.com/player#player-customisation)
* in the Dailymotion docs for
* more on how this option is actually used.
*/
uiHighlightColor: PropTypes.string,
/**
* Whether to display the Dailymotion logo or not.
*/
uiShowLogo: PropTypes.bool,
/**
* Whether to show video information (title and owner) on the start screen.
*/
uiShowStartScreenInfo: PropTypes.bool,
/**
* Choose the default base colour theme. See [the player customisation
* section](https://developer.dailymotion.com/player#player-customisation)
* in the Dailymotion docs for more on how this option is actually used.
*/
uiTheme: PropTypes.oneOf(['light', 'dark']),
// Player properties (not parameters, can only be set using methods)
/**
* Sets the player's volume to the specified level, a number between 0 and
* 1.
*/
volume: PropTypes.number,
// Events
/* eslint-disable react/no-unused-prop-types */
/**
* Sent when the player reaches the end of an Ad media resource.
*/
onAdEnd: PropTypes.func,
/**
* Sent when an Ad playback pauses.
*/
onAdPause: PropTypes.func,
/**
* Sent when an Ad playback starts.
*/
onAdPlay: PropTypes.func,
/**
* Sent when the player starts to play an Ad media resource.
*/
onAdStart: PropTypes.func,
/**
* Sent on each Ad's time update.
*/
onAdTimeUpdate: PropTypes.func,
/**
* Sent when the player is ready to accept API commands.
*/
onApiReady: PropTypes.func,
/**
* Sent when the duration of the video become available or change during
* playback.
*/
onDurationChange: PropTypes.func,
/**
* Sent when playback has stopped at the end of the media resources set
* (ads + content).
*/
onEnd: PropTypes.func,
/**
* Sent when the player triggers an error.
*/
onError: PropTypes.func,
/**
* Sent when the player enters or exits fullscreen.
*/
onFullscreenChange: PropTypes.func,
/**
* Sent when video's metadata are available.
*/
onLoadedMetadata: PropTypes.func,
/**
* Sent when playback pauses after the pause method returns.
*/
onPause: PropTypes.func,
/**
* Sent when playback starts after the `play` method returns.
*/
onPlay: PropTypes.func,
/**
* Sent when the content media resource playback has started.
*/
onPlaying: PropTypes.func,
/**
* Sent when the browser is fetching the media data.
*/
onProgress: PropTypes.func,
/**
* Sent when qualities are available – see `qualities` for accepted values.
*/
onQualitiesAvailable: PropTypes.func,
/**
* Sent when the current quality changes.
*/
onQualityChange: PropTypes.func,
/**
* Sent when the player has completed a seeking operation.
*/
onSeeked: PropTypes.func,
/**
* Sent when the player is starting to seek to another position in the video.
*/
onSeeking: PropTypes.func,
/**
* Sent when the current subtitle changes.
*/
onSubtitleChange: PropTypes.func,
/**
* Sent when subtitles are available.
*/
onSubtitlesAvailable: PropTypes.func,
/**
* Sent the first time the player attempts to start the playback, either
* because of a user interaction, an autoplay parameter, or an API call
* (e.g play(), load(), etc.).
*/
onStart: PropTypes.func,
/**
* Sent when the playback position changes as part of normal playback or
* because of some other condition.
*/
onTimeUpdate: PropTypes.func,
/**
* Sent when the player starts to play the content media resource.
*/
onVideoStart: PropTypes.func,
/**
* Sent when the player reaches the end of the content media resource.
*/
onVideoEnd: PropTypes.func,
/**
* Sent when the player volume or mute state has changed.
*/
onVolumeChange: PropTypes.func,
/**
* Sent when the player has to stop video playback for further buffering of
* content.
*/
onWaiting: PropTypes.func,
/* eslint-enable react/no-unused-prop-types */
};
Dailymotion.defaultProps = {
uiTheme: 'dark',
quality: 'auto',
showQueue: false,
autoplayQueue: false,
};
export default Dailymotion;