-
Notifications
You must be signed in to change notification settings - Fork 92
/
index.js
697 lines (638 loc) · 16.8 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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
import React, { Component } from 'react';
import {
requireNativeComponent,
NativeModules,
Platform,
findNodeHandle,
} from 'react-native';
import PropTypes from 'prop-types';
import _ from 'lodash';
const RNJWPlayerManager =
Platform.OS === 'ios'
? NativeModules.RNJWPlayerViewManager
: NativeModules.RNJWPlayerModule;
let playerId = 0;
const RCT_RNJWPLAYER_REF = 'RNJWPlayerKey';
const RNJWPlayer = requireNativeComponent('RNJWPlayerView');
const JWPlayerStateIOS = {
JWPlayerStateUnknown: 0,
JWPlayerStateIdle: 1,
JWPlayerStateBuffering: 2,
JWPlayerStatePlaying: 3,
JWPlayerStatePaused: 4,
JWPlayerStateComplete: 5,
JWPlayerStateError: 6,
};
const JWPlayerStateAndroid = {
JWPlayerStateIdle: 0,
JWPlayerStateBuffering: 1,
JWPlayerStatePlaying: 2,
JWPlayerStatePaused: 3,
JWPlayerStateComplete: 4,
JWPlayerStateError: null,
};
export const JWPlayerAdEvents = {
/// This event is reported when the ad break has come to an end.
JWAdEventTypeAdBreakEnd: 0,
/// This event is reported when the ad break has begun.
JWAdEventTypeAdBreakStart: 1,
/// This event is reported when the user taps the ad.
JWAdEventTypeClicked: 2,
/// This event is reported when the ad is done playing.
JWAdEventTypeComplete: 3,
/// This event is used to report the ad impression, supplying additional detailed information about the ad.
JWAdEventTypeImpression: 4,
/// This event reports meta data information associated with the ad.
JWAdEventTypeMeta: 5,
/// The event is reported when the ad pauses.
JWAdEventTypePause: 6,
/// This event is reported when the ad begins playing, even in the middle of the stream after it was paused.
JWAdEventTypePlay: 7,
/// The event reports data about the ad request, when the ad is about to be loaded.
JWAdEventTypeRequest: 8,
/// This event reports the schedule of ads across the currently playing content.
JWAdEventTypeSchedule: 9,
/// This event is reported when the user skips the ad.
JWAdEventTypeSkipped: 10,
/// This event is reported when the ad begins.
JWAdEventTypeStarted: 11,
/// This event relays information about ad companions.
JWAdEventTypeCompanion: 12,
}
export const JWPlayerState =
Platform.OS === 'ios' ? JWPlayerStateIOS : JWPlayerStateAndroid;
export const JWPlayerAdClients = {
JWAdClientJWPlayer: 0,
JWAdClientGoogleIMA: 1,
JWAdClientGoogleIMADAI: 2,
JWAdClientUnknown: 3,
};
// Common PropTypes for imaSettings and adRules
const imaSettingsPropTypes = PropTypes.shape({
locale: PropTypes.string,
ppid: PropTypes.string,
maxRedirects: PropTypes.number,
sessionID: PropTypes.string,
debugMode: PropTypes.bool,
});
const adRulesPropTypes = PropTypes.shape({
startOn: PropTypes.number,
frequency: PropTypes.number,
timeBetweenAds: PropTypes.number,
startOnSeek: PropTypes.oneOf(['none', 'pre']),
});
const adSettingsPropTypes = PropTypes.shape({
allowsBackgroundPlayback: PropTypes.bool,
// Include other ad settings properties here
});
const adSchedulePropTypes = PropTypes.arrayOf(
PropTypes.shape({
tag: PropTypes.string,
offset: PropTypes.string,
})
);
// Define PropTypes for each ad client type
const vastAdvertisingPropTypes = {
adClient: PropTypes.oneOf(['vast']),
adSchedule: adSchedulePropTypes,
adVmap: PropTypes.string,
tag: PropTypes.string,
openBrowserOnAdClick: PropTypes.bool,
adRules: adRulesPropTypes,
adSettings: adSettingsPropTypes,
// Add other VAST-specific properties here
};
const imaAdvertisingPropTypes = {
adClient: PropTypes.oneOf(['ima']),
adSchedule: adSchedulePropTypes,
adVmap: PropTypes.string,
tag: PropTypes.string,
imaSettings: imaSettingsPropTypes,
adRules: adRulesPropTypes,
// companionAdSlots: PropTypes.arrayOf(
// PropTypes.shape({
// viewId: PropTypes.string,
// size: PropTypes.shape({
// width: PropTypes.number,
// height: PropTypes.number,
// }),
// })
// ),
// friendlyObstructions: PropTypes.arrayOf(
// PropTypes.shape({
// viewId: PropTypes.string,
// purpose: PropTypes.oneOf(['mediaControls', 'closeAd', 'notVisible', 'other']),
// reason: PropTypes.string,
// })
// ),
// Add other IMA-specific properties here
};
const imaDaiAdvertisingPropTypes = {
adClient: PropTypes.oneOf(['ima_dai']),
imaSettings: imaSettingsPropTypes,
googleDAIStream: PropTypes.shape({
videoID: PropTypes.string,
cmsID: PropTypes.string,
assetKey: PropTypes.string,
apiKey: PropTypes.string,
adTagParameters: PropTypes.object,
}),
// friendlyObstructions: PropTypes.arrayOf(
// PropTypes.shape({
// viewId: PropTypes.string,
// purpose: PropTypes.oneOf(['mediaControls', 'closeAd', 'notVisible', 'other']),
// reason: PropTypes.string,
// })
// ),
// Add other IMA DAI-specific properties here
};
const advertisingPropTypes = PropTypes.oneOfType([
PropTypes.shape(vastAdvertisingPropTypes),
PropTypes.shape(imaAdvertisingPropTypes),
PropTypes.shape(imaDaiAdvertisingPropTypes),
]);
export default class JWPlayer extends Component {
static propTypes = {
config: PropTypes.shape({
license: PropTypes.string.isRequired,
backgroundAudioEnabled: PropTypes.bool,
category: PropTypes.oneOf([
'Ambient',
'SoloAmbient',
'Playback',
'Record',
'PlayAndRecord',
'MultiRoute',
]),
categoryOptions: PropTypes.arrayOf(
PropTypes.oneOf([
'MixWithOthers',
'DuckOthers',
'AllowBluetooth',
'DefaultToSpeaker',
'InterruptSpokenAudioAndMix',
'AllowBluetoothA2DP',
'AllowAirPlay',
'OverrideMutedMicrophone',
])
),
mode: PropTypes.oneOf([
'Default',
'VoiceChat',
'VideoChat',
'GameChat',
'VideoRecording',
'Measurement',
'MoviePlayback',
'SpokenAudio',
'VoicePrompt',
]),
pipEnabled: PropTypes.bool,
viewOnly: PropTypes.bool,
autostart: PropTypes.bool,
controls: PropTypes.bool,
repeat: PropTypes.bool,
preload: PropTypes.oneOf(['auto', 'none']),
playlist: PropTypes.arrayOf(
PropTypes.shape({
file: PropTypes.string,
sources: PropTypes.arrayOf(
PropTypes.shape({
file: PropTypes.string,
label: PropTypes.string,
default: PropTypes.bool,
})
),
image: PropTypes.string,
title: PropTypes.string,
desc: PropTypes.string,
mediaId: PropTypes.string,
autostart: PropTypes.bool,
recommendations: PropTypes.string,
tracks: PropTypes.arrayOf(
PropTypes.shape({
file: PropTypes.string,
label: PropTypes.string,
})
),
adSchedule: PropTypes.arrayOf(
PropTypes.shape({
tag: PropTypes.string,
offset: PropTypes.string,
})
),
adVmap: PropTypes.string,
startTime: PropTypes.number,
})
),
advertising: advertisingPropTypes,
// controller only
interfaceBehavior: PropTypes.oneOf([
'normal',
'hidden',
'onscreen',
]),
styling: PropTypes.shape({
colors: PropTypes.shape({
buttons: PropTypes.string,
backgroundColor: PropTypes.string,
fontColor: PropTypes.string,
timeslider: PropTypes.shape({
thumb: PropTypes.string,
rail: PropTypes.string,
slider: PropTypes.string,
}),
font: PropTypes.shape({
name: PropTypes.string,
size: PropTypes.number,
}),
captionsStyle: PropTypes.shape({
font: PropTypes.shape({
name: PropTypes.string,
size: PropTypes.number,
}),
backgroundColor: PropTypes.string,
fontColor: PropTypes.string,
highlightColor: PropTypes.string,
edgeStyle: PropTypes.oneOf([
'none',
'dropshadow',
'raised',
'depressed',
'uniform',
]),
}),
menuStyle: PropTypes.shape({
font: PropTypes.shape({
name: PropTypes.string,
size: PropTypes.number,
}),
backgroundColor: PropTypes.string,
fontColor: PropTypes.string,
}),
}),
showTitle: PropTypes.bool,
showDesc: PropTypes.bool,
}),
nextUpStyle: PropTypes.shape({
offsetSeconds: PropTypes.number,
offsetPercentage: PropTypes.number,
}),
offlineMessage: PropTypes.string,
offlineImage: PropTypes.string,
forceFullScreenOnLandscape: PropTypes.bool,
forceLandscapeOnFullScreen: PropTypes.bool,
enableLockScreenControls: PropTypes.bool,
stretching: PropTypes.oneOf([
'uniform',
'exactFit',
'fill',
'none',
]),
processSpcUrl: PropTypes.string,
fairplayCertUrl: PropTypes.string,
contentUUID: PropTypes.string,
}),
onPlayerReady: PropTypes.func,
onPlaylist: PropTypes.func,
changePlaylist: PropTypes.func,
play: PropTypes.func,
pause: PropTypes.func,
setVolume: PropTypes.func,
toggleSpeed: PropTypes.func,
setSpeed: PropTypes.func,
setCurrentQuality: PropTypes.func,
currentQuality: PropTypes.func,
getQualityLevels: PropTypes.func,
setPlaylistIndex: PropTypes.func,
setControls: PropTypes.func,
setVisibility: PropTypes.func,
setLockScreenControls: PropTypes.func,
setFullscreen: PropTypes.func,
setUpCastController: PropTypes.func,
presentCastDialog: PropTypes.func,
connectedDevice: PropTypes.func,
availableDevices: PropTypes.func,
castState: PropTypes.func,
seekTo: PropTypes.func,
loadPlaylist: PropTypes.func,
onBeforePlay: PropTypes.func,
onBeforeComplete: PropTypes.func,
onPlay: PropTypes.func,
onPause: PropTypes.func,
onSetupPlayerError: PropTypes.func,
onPlayerError: PropTypes.func,
onPlayerWarning: PropTypes.func,
onPlayerAdError: PropTypes.func,
onPlayerAdWarning: PropTypes.func,
onAdEvent: PropTypes.func,
onAdTime: PropTypes.func,
onBuffer: PropTypes.func,
onTime: PropTypes.func,
onComplete: PropTypes.func,
onFullScreenRequested: PropTypes.func,
onFullScreen: PropTypes.func,
onFullScreenExitRequested: PropTypes.func,
onFullScreenExit: PropTypes.func,
onSeek: PropTypes.func,
onSeeked: PropTypes.func,
onRateChanged: PropTypes.func,
onPlaylistItem: PropTypes.func,
onControlBarVisible: PropTypes.func,
onPlaylistComplete: PropTypes.func,
getAudioTracks: PropTypes.func,
getCurrentAudioTrack: PropTypes.func,
setCurrentAudioTrack: PropTypes.func,
setCurrentCaptions: PropTypes.func,
onAudioTracks: PropTypes.func,
};
constructor(props) {
super(props);
this._playerId = playerId++;
this.ref_key = `${RCT_RNJWPLAYER_REF}-${this._playerId}`;
this.quite();
}
shouldComponentUpdate(nextProps, nextState) {
var { shouldComponentUpdate } = this.props;
if (shouldComponentUpdate) {
return shouldComponentUpdate(nextProps, nextState);
}
var { config, controls } = nextProps;
var thisConfig = this.props.config || {};
var result = !_.isEqualWith(
config,
thisConfig,
(value1, value2, key) => {
return key === 'startTime' ? true : undefined;
}
);
return result || controls !== this.props.controls;
}
componentWillUnmount() {
this.pause();
this.stop();
}
quite() {
if (RNJWPlayerManager && Platform.OS === 'ios')
RNJWPlayerManager.quite();
}
pause() {
if (RNJWPlayerManager)
RNJWPlayerManager.pause(this.getRNJWPlayerBridgeHandle());
}
changePlaylist(fileUrl) {
if (RNJWPlayerManager)
RNJWPlayerManager.changePlaylist(
this.getRNJWPlayerBridgeHandle(),
fileUrl
);
}
play() {
if (RNJWPlayerManager)
RNJWPlayerManager.play(this.getRNJWPlayerBridgeHandle());
}
stop() {
if (RNJWPlayerManager)
RNJWPlayerManager.stop(this.getRNJWPlayerBridgeHandle());
}
toggleSpeed() {
if (RNJWPlayerManager)
RNJWPlayerManager.toggleSpeed(this.getRNJWPlayerBridgeHandle());
}
setSpeed(speed) {
if (RNJWPlayerManager)
RNJWPlayerManager.setSpeed(this.getRNJWPlayerBridgeHandle(), speed);
}
setCurrentQuality(index) {
if (RNJWPlayerManager && Platform.OS === "android")
RNJWPlayerManager.setCurrentQuality(
this.getRNJWPlayerBridgeHandle(),
index
);
}
currentQuality() {
if (RNJWPlayerManager && Platform.OS === "android")
return RNJWPlayerManager.getCurrentQuality(
this.getRNJWPlayerBridgeHandle()
);
}
async getQualityLevels() {
if (RNJWPlayerManager && Platform.OS === "android") {
try {
var qualityLevels = await RNJWPlayerManager.getQualityLevels(
this.getRNJWPlayerBridgeHandle()
);
return qualityLevels;
} catch (e) {
console.error(e);
return null;
}
}
}
setPlaylistIndex(index) {
if (RNJWPlayerManager)
RNJWPlayerManager.setPlaylistIndex(
this.getRNJWPlayerBridgeHandle(),
index
);
}
setControls(show) {
if (RNJWPlayerManager)
RNJWPlayerManager.setControls(
this.getRNJWPlayerBridgeHandle(),
show
);
}
setVisibility(visibility, controls) {
if (RNJWPlayerManager && Platform.OS === 'ios')
RNJWPlayerManager.setVisibility(
this.getRNJWPlayerBridgeHandle(),
visibility,
controls
);
}
setLockScreenControls(show) {
if (RNJWPlayerManager && Platform.OS === 'ios')
RNJWPlayerManager.setLockScreenControls(
this.getRNJWPlayerBridgeHandle(),
show
);
}
seekTo(time) {
if (RNJWPlayerManager)
RNJWPlayerManager.seekTo(this.getRNJWPlayerBridgeHandle(), time);
}
loadPlaylist(playlistItems) {
if (RNJWPlayerManager)
RNJWPlayerManager.loadPlaylist(this.getRNJWPlayerBridgeHandle(), playlistItems);
}
setFullscreen(fullscreen) {
if (RNJWPlayerManager)
RNJWPlayerManager.setFullscreen(
this.getRNJWPlayerBridgeHandle(),
fullscreen
);
}
setVolume(value) {
if (RNJWPlayerManager) {
RNJWPlayerManager.setVolume(
this.getRNJWPlayerBridgeHandle(),
value
);
}
}
async time() {
if (RNJWPlayerManager) {
try {
var time = await RNJWPlayerManager.time(
this.getRNJWPlayerBridgeHandle()
);
return time;
} catch (e) {
console.error(e);
return null;
}
}
}
async position() {
if (RNJWPlayerManager) {
try {
var position = await RNJWPlayerManager.position(
this.getRNJWPlayerBridgeHandle()
);
return position;
} catch (e) {
console.error(e);
return null;
}
}
}
togglePIP() {
if (RNJWPlayerManager)
RNJWPlayerManager.togglePIP(this.getRNJWPlayerBridgeHandle());
}
setUpCastController() {
if (RNJWPlayerManager && Platform.OS === 'ios')
RNJWPlayerManager.setUpCastController(
this.getRNJWPlayerBridgeHandle()
);
}
presentCastDialog() {
if (RNJWPlayerManager && Platform.OS === 'ios')
RNJWPlayerManager.presentCastDialog(
this.getRNJWPlayerBridgeHandle()
);
}
async connectedDevice() {
if (RNJWPlayerManager && Platform.OS === 'ios') {
try {
var connectedDevice = await RNJWPlayerManager.connectedDevice(
this.getRNJWPlayerBridgeHandle()
);
return connectedDevice;
} catch (e) {
console.error(e);
return null;
}
}
}
async availableDevices() {
if (RNJWPlayerManager && Platform.OS === 'ios') {
try {
var availableDevices = await RNJWPlayerManager.availableDevices(
this.getRNJWPlayerBridgeHandle()
);
return availableDevices;
} catch (e) {
console.error(e);
return null;
}
}
}
async castState() {
if (RNJWPlayerManager && Platform.OS === 'ios') {
try {
var castState = await RNJWPlayerManager.castState(
this.getRNJWPlayerBridgeHandle()
);
return castState;
} catch (e) {
console.error(e);
return null;
}
}
}
async playerState() {
if (RNJWPlayerManager) {
try {
var state = await RNJWPlayerManager.state(
this.getRNJWPlayerBridgeHandle()
);
return state;
} catch (e) {
console.error(e);
return null;
}
}
}
async getAudioTracks() {
if (RNJWPlayerManager) {
try {
var audioTracks = await RNJWPlayerManager.getAudioTracks(
this.getRNJWPlayerBridgeHandle()
);
// iOS sends autoSelect as 0 or 1 instead of a boolean
// couldn't figure out how to send autoSelect as a boolean from Objective C
return audioTracks.map((audioTrack) => {
audioTrack.autoSelect = !!audioTrack.autoSelect;
return audioTrack;
});
} catch (e) {
console.error(e);
return null;
}
}
}
async getCurrentAudioTrack() {
if (RNJWPlayerManager) {
try {
var currentAudioTrack =
await RNJWPlayerManager.getCurrentAudioTrack(
this.getRNJWPlayerBridgeHandle()
);
return currentAudioTrack;
} catch (e) {
console.error(e);
return null;
}
}
}
setCurrentAudioTrack(index) {
if (RNJWPlayerManager) {
RNJWPlayerManager.setCurrentAudioTrack(
this.getRNJWPlayerBridgeHandle(),
index
);
}
}
setCurrentCaptions(index) {
if (RNJWPlayerManager) {
RNJWPlayerManager.setCurrentCaptions(
this.getRNJWPlayerBridgeHandle(),
index
);
}
}
getRNJWPlayerBridgeHandle() {
return findNodeHandle(this[this.ref_key]);
}
render() {
return (
<RNJWPlayer
ref={(player) => (this[this.ref_key] = player)}
key={this.ref_key}
{...this.props}
/>
);
}
}