-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathmojs-player.js
9348 lines (7575 loc) · 274 KB
/
mojs-player.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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("mojs-player", [], factory);
else if(typeof exports === 'object')
exports["mojs-player"] = factory();
else
root["mojs-player"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "build/";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(1);
/***/ }),
/* 1 */
/***/ (function(module, exports, __webpack_require__) {
var __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';
exports.__esModule = true;
var _typeof2 = __webpack_require__(3);
var _typeof3 = _interopRequireDefault(_typeof2);
var _stringify = __webpack_require__(70);
var _stringify2 = _interopRequireDefault(_stringify);
var _extends2 = __webpack_require__(72);
var _extends3 = _interopRequireDefault(_extends2);
var _classCallCheck2 = __webpack_require__(77);
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
var _possibleConstructorReturn2 = __webpack_require__(78);
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
var _inherits2 = __webpack_require__(79);
var _inherits3 = _interopRequireDefault(_inherits2);
var _classlistPolyfill = __webpack_require__(87);
var _classlistPolyfill2 = _interopRequireDefault(_classlistPolyfill);
var _icons = __webpack_require__(88);
var _icons2 = _interopRequireDefault(_icons);
var _module = __webpack_require__(89);
var _module2 = _interopRequireDefault(_module);
var _playerSlider = __webpack_require__(90);
var _playerSlider2 = _interopRequireDefault(_playerSlider);
var _iconButton = __webpack_require__(110);
var _iconButton2 = _interopRequireDefault(_iconButton);
var _speedControl = __webpack_require__(122);
var _speedControl2 = _interopRequireDefault(_speedControl);
var _playButton = __webpack_require__(134);
var _playButton2 = _interopRequireDefault(_playButton);
var _stopButton = __webpack_require__(142);
var _stopButton2 = _interopRequireDefault(_stopButton);
var _repeatButton = __webpack_require__(146);
var _repeatButton2 = _interopRequireDefault(_repeatButton);
var _boundsButton = __webpack_require__(154);
var _boundsButton2 = _interopRequireDefault(_boundsButton);
var _hideButton = __webpack_require__(155);
var _hideButton2 = _interopRequireDefault(_hideButton);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// TODO
__webpack_require__(159);
var CLASSES = __webpack_require__(161);
var MojsPlayer = function (_Module) {
(0, _inherits3.default)(MojsPlayer, _Module);
function MojsPlayer(o) {
(0, _classCallCheck3.default)(this, MojsPlayer);
if (typeof mojs === 'undefined') {
throw new Error('MojsPlayer relies on mojs^0.225.2, please include it before player initialization. [ https://github.com/mojs/mojs ] ');
}
return (0, _possibleConstructorReturn3.default)(this, _Module.call(this, o));
}
/*
Method to declare defaults.
@private
@overrides @ Module
*/
MojsPlayer.prototype._declareDefaults = function _declareDefaults() {
_Module.prototype._declareDefaults.call(this);
this._defaults.isSaveState = true;
this._defaults.isPlaying = false;
this._defaults.progress = 0;
this._defaults.isRepeat = false;
this._defaults.isBounds = false;
this._defaults.leftBound = 0;
this._defaults.rightBound = 1;
this._defaults.isSpeed = false;
this._defaults.speed = 1;
this._defaults.isHidden = false;
this._defaults.precision = 0.1;
this._defaults.name = 'mojs-player';
this._defaults.onToggleHide = null;
this._defaults.onPlayStateChange = null;
this._defaults.onSeekStart = null;
this._defaults.onSeekEnd = null;
this._defaults.onProgress = null;
this._play = this._play.bind(this);
this.revision = '1.3.0';
var str = this._fallbackTo(this._o.name, this._defaults.name);
str += str === this._defaults.name ? '' : '__' + this._defaults.name;
this._localStorage = str + '__' + this._hashCode(str);
};
/*
Method to copy `_o` options to `_props` object
with fallback to `localStorage` and `_defaults`.
@private
*/
MojsPlayer.prototype._extendDefaults = function _extendDefaults() {
this._props = {};
var p = this._props,
o = this._o,
defs = this._defaults;
// get localstorage regarding isSaveState option
p.isSaveState = this._fallbackTo(o.isSaveState, defs.isSaveState);
var m = p.isSaveState ? JSON.parse(localStorage.getItem(this._localStorage)) || {} : {};
for (var key in defs) {
var value = this._fallbackTo(m[key], o[key]);
this._assignProp(key, this._fallbackTo(value, defs[key]));
}
// get raw-speed option
this._props['raw-speed'] = this._fallbackTo(m['raw-speed'], .5);
};
/*
Callback for keyup on document.
@private
@param {Object} Original event object.
*/
MojsPlayer.prototype._keyUp = function _keyUp(e) {
if (e.altKey) {
switch (e.keyCode) {
case 80:
// alt + P => PLAY/PAUSE TOGGLE
this._props.isPlaying = !this._props.isPlaying;
this._onPlayStateChange(this._props.isPlaying);
break;
case 189:
// alt + - => DECREASE PROGRESS
this.playButton.off();
this.playerSlider.decreaseProgress(e.shiftKey ? .1 : .01);
break;
case 187:
// alt + + => INCREASE PROGRESS
this.playButton.off();
this.playerSlider.increaseProgress(e.shiftKey ? .1 : .01);
break;
case 83:
// alt + S => STOP
this._onStop();
break;
case 82:
// alt + R => REPEAT TOGGLE
this._props.isRepeat = !this._props.isRepeat;
var method = this._props.isRepeat ? 'on' : 'off';
this.repeatButton[method]();
break;
case 66:
// alt + B => BOUNDS TOGGLE
this._props.isBounds = !this._props.isBounds;
var method = this._props.isBounds ? 'on' : 'off';
this.boundsButton[method]();
break;
case 72:
// alt + H => HIDE PLAYER TOGGLE
this._props.isHidden = !this._props.isHidden;
this._onHideStateChange(this._props.isHidden);
var method = this._props.isHidden ? 'on' : 'off';
this.hideButton[method]();
break;
// case 49: // alt + 1 => RESET SPEED TO 1x
case 81:
// alt + q => RESET SPEED TO 1x
this.speedControl.reset();
break;
case 50:
// alt + 2 => DECREASE SPEEED by .05
this.speedControl.decreaseSpeed(e.shiftKey ? .05 : .01);
break;
case 51:
// alt + 3 => INCREASE SPEED by .05
this.speedControl.increaseSpeed(e.shiftKey ? .05 : .01);
break;
}
}
};
/*
Method to declare properties.
@private
@overrides @ Module
*/
MojsPlayer.prototype._vars = function _vars() {
this._hideCount = 0;
};
/*
Method to render the module.
@private
@overrides @ Module
*/
MojsPlayer.prototype._render = function _render() {
this._initTimeline();
var p = this._props,
className = 'mojs-player',
icons = new _icons2.default({ prefix: this._props.prefix });
_Module.prototype._render.call(this);
// this.el.classList.add(p.classNAme );
this.el.classList.add(CLASSES[className]);
this.el.setAttribute('id', 'js-mojs-player');
var left = this._createChild('div', CLASSES[className + '__left']),
mid = this._createChild('div', CLASSES[className + '__mid']),
right = this._createChild('div', CLASSES[className + '__right']);
this.repeatButton = new _repeatButton2.default({
parent: left,
isOn: p.isRepeat,
onStateChange: this._onRepeatStateChange.bind(this),
prefix: this._props.prefix
});
this.playerSlider = new _playerSlider2.default({
parent: mid,
isBounds: p.isBounds,
leftProgress: p.leftBound,
rightProgress: p.rightBound,
progress: p.progress,
onLeftProgress: this._onLeftProgress.bind(this),
onProgress: this._onProgress.bind(this),
onRightProgress: this._onRightProgress.bind(this),
onSeekStart: this._onSeekStart.bind(this),
onSeekEnd: this._onSeekEnd.bind(this)
});
this.boundsButton = new _boundsButton2.default({
isOn: p.isBounds,
parent: left,
onStateChange: this._boundsStateChange.bind(this),
prefix: this._props.prefix
});
this.speedControl = new _speedControl2.default({
parent: left,
// progress: p.speed,
speed: p.speed,
isOn: p.isSpeed,
onSpeedChange: this._onSpeedChange.bind(this),
onIsSpeed: this._onIsSpeed.bind(this),
prefix: this._props.prefix
});
var proc = 0,
progress = [],
procToSpeed = [],
speedToProc = [];
this.stopButton = new _stopButton2.default({
parent: left,
isPrepend: true,
onPointerUp: this._onStop.bind(this),
prefix: this._props.prefix
});
this.playButton = new _playButton2.default({
parent: left,
isOn: p.isPlaying,
isPrepend: true,
onStateChange: this._onPlayStateChange.bind(this),
prefix: this._props.prefix
});
this.mojsButton = new _iconButton2.default({
parent: right,
className: CLASSES[className + '__mojs-logo'],
icon: 'mojs',
target: '_blank',
link: 'https://github.com/mojs/mojs-player',
title: 'mo • js',
prefix: this._props.prefix
});
this.hideButton = new _hideButton2.default({
parent: this.el,
className: CLASSES[className + '__hide-button'],
isOn: p.isHidden,
onStateChange: this._onHideStateChange.bind(this),
prefix: this._props.prefix
});
this._listen();
};
/*
Method to initialize event listeners.
@private
*/
MojsPlayer.prototype._listen = function _listen() {
var unloadEvent = 'onpagehide' in window ? 'pagehide' : 'beforeunload';
window.addEventListener(unloadEvent, this._onUnload.bind(this));
document.addEventListener('keyup', this._keyUp.bind(this));
};
/*
Method that is invoked when user touches the track.
@private
@param {Object} Original event object.
*/
MojsPlayer.prototype._onSeekStart = function _onSeekStart(e) {
this._sysTween.pause();
var onSeekStart = this._props.onSeekStart;
if (this._isFunction(onSeekStart)) {
onSeekStart(e);
}
};
/*
Method that is invoked when user touches the track.
@private
@param {Object} Original event object.
*/
MojsPlayer.prototype._onSeekEnd = function _onSeekEnd(e) {
var _this2 = this;
clearTimeout(this._endTimer);
this._endTimer = setTimeout(function () {
_this2._props.isPlaying && _this2._play();
}, 20);
};
/*
Method to init timeline.
@private
*/
MojsPlayer.prototype._initTimeline = function _initTimeline() {
var _this3 = this;
this.timeline = new mojs.Timeline({});
var add = this._o.add;
// check whether the `add` option meets the next criterias:
var isUndefined = typeof add === 'undefined';
if (!isUndefined) {
add = add.timeline || add.tween || add;
}
var isAdd = !!add.setProgress;
if (isUndefined || !isAdd) {
throw new Error('MojsPlayer expects Tween/Timeline/Module as `add` option in constructor call. [ new MojsPlayer({ add: new mojs.Tween }); ]');
return;
}
this.timeline.add(this._o.add);
var _props = this.timeline._props;
var duration = _props.repeatTime !== void 0 ? _props : _props.delay + _props.duration;
this._sysTween = new mojs.Tween({
easing: 'linear.none',
duration: duration,
onUpdate: this._onSysProgress.bind(this),
onComplete: this._onSysTweenComplete.bind(this),
onPlaybackStop: function onPlaybackStop() {
_this3._setPlayState('off');
},
onPlaybackPause: function onPlaybackPause() {
_this3._setPlayState('off');
},
onPlaybackStart: function onPlaybackStart() {
_this3._setPlayState('on');
}
});
};
/*
Method that is invoked on system tween progress.
@private
@param {Number} Progress value [0...1].
*/
MojsPlayer.prototype._onSysProgress = function _onSysProgress(p) {
this.playerSlider.setTrackProgress(p);
var rightBound = this._props.isBounds ? this._props.rightBound : 1,
leftBound = this._props.isBounds ? this._props.leftBound : -1;
// since js is really bed in numbers precision,
// if we set a progress in the `_play` method it returns slighly
// different when piped thru tween, so add `0.01` gap to soften that
if (p < leftBound - 0.01 && p !== 0) {
this._reset();
requestAnimationFrame(this._play);
}
if (p >= rightBound) {
this._reset(rightBound === 1);
if (this._props.isRepeat) {
requestAnimationFrame(this._play);
} else {
this._props.isPlaying = false;
}
}
};
/*
Method to play system tween from progress.
@private
*/
MojsPlayer.prototype._play = function _play() {
var p = this._props;
var leftBound = p.isBounds ? p.leftBound : p.progress;
var progress = p.progress >= this._getBound('right') ? leftBound : p.progress;
if (progress === 1) {
progress = p.isBounds ? p.leftBound : 0;
};
if (progress !== 0) {
this._sysTween.setProgress(progress);
};
this._sysTween.play();
};
/*
Method to reset sysTween and timeline.
@param {Boolean} If should not set progress to 0.
@private
*/
MojsPlayer.prototype._reset = function _reset(isPause) {
this._sysTween.reset();
// if ( !isPause ) {
// const p = this._props,
// progress = p.progress;
//
// let start = progress,
// leftBound = (p.isBounds) ? p.leftBound : 0;
//
// // while ( (start - p.precision) >= leftBound ) {
// // start -= p.precision;
// // this.timeline.setProgress( start );
// // }
// }
this.timeline.reset();
};
/*
Method to set play button state.
@private
@param {String} Method name to call it on playButton.
*/
MojsPlayer.prototype._setPlayState = function _setPlayState(method) {
var _this4 = this;
clearTimeout(this._playTimeout);
this._playTimeout = setTimeout(function () {
_this4.playButton && _this4.playButton[method](false);
}, 20);
};
/*
Method that is invoked on system tween completion.
@private
@param {Boolean} If forward direction.
*/
MojsPlayer.prototype._onSysTweenComplete = function _onSysTweenComplete(isForward) {}
// console.log(' complete ', this._props.isPlaying, isForward, this._props.isRepeat);
// if ( this._props.isPlaying && isForward ) {
// if ( this._props.isRepeat ) {
// console.log('reset 2')
// // this._sysTween.reset();
// // this._play();
// }
// }
/*
Method that is invoked play button state change.
@private
@param {Boolean} Repeat button state.
*/
;
MojsPlayer.prototype._onPlayStateChange = function _onPlayStateChange(isPlay) {
this._props.isPlaying = isPlay;
if (isPlay) {
this._play();
} else {
this._sysTween.pause();
}
var onPlayStateChange = this._props.onPlayStateChange;
if (this._isFunction(onPlayStateChange)) {
onPlayStateChange(isPlay);
}
};
/*
Callback for hide button change state.
@private
@param {Boolean}
*/
MojsPlayer.prototype._onHideStateChange = function _onHideStateChange(isHidden) {
this._props.isHidden = isHidden;
var onToggleHide = this._props.onToggleHide;
if (this._isFunction(onToggleHide)) {
onToggleHide(isHidden);
}
var method = isHidden ? 'add' : 'remove';
this.el.classList[method](CLASSES['is-hidden']);
// enable CSS transition on subsequent calls
if (this._hideCount++ === 1) {
this.el.classList.add(CLASSES['is-transition']);
}
};
/*
Method that is invoked on stop button tap.
@private
*/
MojsPlayer.prototype._onStop = function _onStop() {
var p = this._props;
p.isPlaying = false;
var leftBound = p.isBounds ? p.leftBound : 0;
// set sysTween progress twice because it could be _reset already
this._sysTween.setProgress(leftBound + 0.01);
this._sysTween.setProgress(leftBound);
this._reset();
};
/*
Method that is invoked on repeat switch state change.
@private
@param {Boolean} Repeat button state.
*/
MojsPlayer.prototype._onRepeatStateChange = function _onRepeatStateChange(isOn) {
this._props.isRepeat = isOn;
};
/*
Method that is invoked on bounds switch state change.
@private
@param {Boolean} Bounds state.
*/
MojsPlayer.prototype._boundsStateChange = function _boundsStateChange(isOn) {
this.playerSlider._props.isBounds = isOn;
this.playerSlider[(isOn ? 'enable' : 'disable') + 'Bounds']();
this._props.isBounds = isOn;
};
/*
Method that is invoked on speed value change.
@private
@param {Number} Speed value.
@param {Number} Slider progress.
*/
MojsPlayer.prototype._onSpeedChange = function _onSpeedChange(speed, progress) {
this._props['raw-speed'] = progress;
this._props.speed = speed;
this._sysTween.setSpeed(speed);
};
/*
Method that is invoked on speed state change.
@private
@param {Boolean} Speed control state.
*/
MojsPlayer.prototype._onIsSpeed = function _onIsSpeed(isOn) {
this._props.isSpeed = isOn;
};
/*
Method that is invoked on timeline's left bound progress.
@private
@param {Number} Progress value [0...1].
*/
MojsPlayer.prototype._onLeftProgress = function _onLeftProgress(progress) {
this._props.leftBound = progress;
};
/*
Method that is invoked on timeline progress.
@private
@param {Number} Progress value [0...1].
*/
MojsPlayer.prototype._onProgress = function _onProgress(progress) {
this._props.progress = progress;
// if timeline was reset - refresh it's state
// by incremental updates until progress (0 always)
// if ( !this.timeline._prevTime && progress > 0 ) {
// let start = 0;
// do {
// this.timeline.setProgress( start );
// start += this._props.precision;
// } while ( start + this._props.precision < progress );
// }
// console.log(`timeline.setProgress: ${progress}`);
this.timeline.setProgress(progress);
};
/*
Method that is invoked on timeline's right bound progress.
@private
@param {Number} Progress value [0...1].
*/
MojsPlayer.prototype._onRightProgress = function _onRightProgress(progress) {
this._props.rightBound = progress;
};
/*
Method that is invoked on window unload.
@private
@param {Object} Original even object.
*/
MojsPlayer.prototype._onUnload = function _onUnload(e) {
if (!this._props.isSaveState) {
return localStorage.removeItem(this._localStorage);
}
var props = (0, _extends3.default)({}, this._props);
delete props.parent;
delete props.className;
delete props.isSaveState;
delete props.precision;
localStorage.setItem(this._localStorage, (0, _stringify2.default)(props));
};
/*
Method that returns the second argument if the first one isn't set.
@private
@param {Any} Property to set.
@param {Any} Property to return as fallback.
@returns {Any} If set - the first property, if not - the second.
*/
MojsPlayer.prototype._fallbackTo = function _fallbackTo(prop, fallback) {
return prop != null ? prop : fallback;
};
/*
Method to get bound regarding isBound option.
@private
@param {String} Bound name.
*/
MojsPlayer.prototype._getBound = function _getBound(boundName) {
var p = this._props,
fallback = boundName === 'left' ? 0 : 1;
return p.isBounds ? p[boundName + 'Bound'] : fallback;
};
/*
Method to defer a method.
@private
@param {Function} Function that should be defered.
*/
MojsPlayer.prototype._defer = function _defer(fn) {
setTimeout(fn.bind(this), 1);
};
/*
Method to generate hash code.
@private
@return {String} Hash code.
*/
MojsPlayer.prototype._hashCode = function _hashCode(str) {
var hash = 0,
i,
chr,
len;
if (str.length === 0) return hash;
for (i = 0, len = str.length; i < len; i++) {
chr = str.charCodeAt(i);
hash = (hash << 5) - hash + chr;
hash |= 0; // Convert to 32bit integer
}
return Math.abs(hash);
};
/*
Method to determine if variable is a function
@private
@param {Function} Function to be guarenteed.
@return {Boolean} true/false whether variable reference was a function
*/
MojsPlayer.prototype._isFunction = function _isFunction(fn) {
return typeof fn === 'function';
};
return MojsPlayer;
}(_module2.default);
if (true) {
!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {
return MojsPlayer;
}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
}
if (( false ? 'undefined' : (0, _typeof3.default)(module)) === "object" && (0, _typeof3.default)(module.exports) === "object") {
module.exports = MojsPlayer;
}
var _global = typeof global !== 'undefined' ? global : window;
_global.MojsPlayer = MojsPlayer;
exports.default = MojsPlayer;
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(2)(module), (function() { return this; }())))
/***/ }),
/* 2 */
/***/ (function(module, exports) {
module.exports = function(module) {
if(!module.webpackPolyfill) {
module.deprecate = function() {};
module.paths = [];
// module.parent = undefined by default
module.children = [];
module.webpackPolyfill = 1;
}
return module;
}
/***/ }),
/* 3 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
exports.__esModule = true;
var _iterator = __webpack_require__(4);
var _iterator2 = _interopRequireDefault(_iterator);
var _symbol = __webpack_require__(55);
var _symbol2 = _interopRequireDefault(_symbol);
var _typeof = typeof _symbol2.default === "function" && typeof _iterator2.default === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof _symbol2.default === "function" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : typeof obj; };
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.default = typeof _symbol2.default === "function" && _typeof(_iterator2.default) === "symbol" ? function (obj) {
return typeof obj === "undefined" ? "undefined" : _typeof(obj);
} : function (obj) {
return obj && typeof _symbol2.default === "function" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? "symbol" : typeof obj === "undefined" ? "undefined" : _typeof(obj);
};
/***/ }),
/* 4 */
/***/ (function(module, exports, __webpack_require__) {
module.exports = { "default": __webpack_require__(5), __esModule: true };
/***/ }),
/* 5 */
/***/ (function(module, exports, __webpack_require__) {
__webpack_require__(6);
__webpack_require__(50);
module.exports = __webpack_require__(54).f('iterator');
/***/ }),
/* 6 */
/***/ (function(module, exports, __webpack_require__) {
'use strict';
var $at = __webpack_require__(7)(true);
// 21.1.3.27 String.prototype[@@iterator]()
__webpack_require__(10)(String, 'String', function (iterated) {
this._t = String(iterated); // target
this._i = 0; // next index
// 21.1.5.2.1 %StringIteratorPrototype%.next()
}, function () {
var O = this._t;
var index = this._i;
var point;
if (index >= O.length) return { value: undefined, done: true };
point = $at(O, index);
this._i += point.length;
return { value: point, done: false };
});
/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {
var toInteger = __webpack_require__(8);
var defined = __webpack_require__(9);
// true -> String#at
// false -> String#codePointAt
module.exports = function (TO_STRING) {
return function (that, pos) {
var s = String(defined(that));
var i = toInteger(pos);
var l = s.length;
var a, b;
if (i < 0 || i >= l) return TO_STRING ? '' : undefined;
a = s.charCodeAt(i);
return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
? TO_STRING ? s.charAt(i) : a
: TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
};
};
/***/ }),
/* 8 */
/***/ (function(module, exports) {
// 7.1.4 ToInteger
var ceil = Math.ceil;
var floor = Math.floor;
module.exports = function (it) {
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
};
/***/ }),
/* 9 */
/***/ (function(module, exports) {
// 7.2.1 RequireObjectCoercible(argument)
module.exports = function (it) {
if (it == undefined) throw TypeError("Can't call method on " + it);
return it;
};
/***/ }),
/* 10 */
/***/ (function(module, exports, __webpack_require__) {
'use strict';
var LIBRARY = __webpack_require__(11);
var $export = __webpack_require__(12);
var redefine = __webpack_require__(28);
var hide = __webpack_require__(17);
var Iterators = __webpack_require__(29);
var $iterCreate = __webpack_require__(30);
var setToStringTag = __webpack_require__(46);
var getPrototypeOf = __webpack_require__(48);
var ITERATOR = __webpack_require__(47)('iterator');
var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
var FF_ITERATOR = '@@iterator';
var KEYS = 'keys';
var VALUES = 'values';
var returnThis = function () { return this; };
module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {
$iterCreate(Constructor, NAME, next);
var getMethod = function (kind) {
if (!BUGGY && kind in proto) return proto[kind];
switch (kind) {
case KEYS: return function keys() { return new Constructor(this, kind); };
case VALUES: return function values() { return new Constructor(this, kind); };
} return function entries() { return new Constructor(this, kind); };
};
var TAG = NAME + ' Iterator';
var DEF_VALUES = DEFAULT == VALUES;
var VALUES_BUG = false;
var proto = Base.prototype;
var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
var $default = $native || getMethod(DEFAULT);
var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
var methods, key, IteratorPrototype;