react-player
Version:
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
232 lines (181 loc) • 11.5 kB
JavaScript
;
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = _interopRequireWildcard(require("react"));
var _utils = require("../utils");
var _patterns = require("../patterns");
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var SDK_URL = 'https://api.dmcdn.net/all.js';
var SDK_GLOBAL = 'DM';
var SDK_GLOBAL_READY = 'dmAsyncInit';
var DailyMotion = /*#__PURE__*/function (_Component) {
_inherits(DailyMotion, _Component);
var _super = _createSuper(DailyMotion);
function DailyMotion() {
var _this;
_classCallCheck(this, DailyMotion);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _super.call.apply(_super, [this].concat(args));
_defineProperty(_assertThisInitialized(_this), "callPlayer", _utils.callPlayer);
_defineProperty(_assertThisInitialized(_this), "onDurationChange", function () {
var duration = _this.getDuration();
_this.props.onDuration(duration);
});
_defineProperty(_assertThisInitialized(_this), "mute", function () {
_this.callPlayer('setMuted', true);
});
_defineProperty(_assertThisInitialized(_this), "unmute", function () {
_this.callPlayer('setMuted', false);
});
_defineProperty(_assertThisInitialized(_this), "ref", function (container) {
_this.container = container;
});
return _this;
}
_createClass(DailyMotion, [{
key: "componentDidMount",
value: function componentDidMount() {
this.props.onMount && this.props.onMount(this);
}
}, {
key: "load",
value: function load(url) {
var _this2 = this;
var _this$props = this.props,
controls = _this$props.controls,
config = _this$props.config,
onError = _this$props.onError,
playing = _this$props.playing;
var _url$match = url.match(_patterns.MATCH_URL_DAILYMOTION),
_url$match2 = _slicedToArray(_url$match, 2),
id = _url$match2[1];
if (this.player) {
this.player.load(id, {
start: (0, _utils.parseStartTime)(url),
autoplay: playing
});
return;
}
(0, _utils.getSDK)(SDK_URL, SDK_GLOBAL, SDK_GLOBAL_READY, function (DM) {
return DM.player;
}).then(function (DM) {
if (!_this2.container) return;
var Player = DM.player;
_this2.player = new Player(_this2.container, {
width: '100%',
height: '100%',
video: id,
params: _objectSpread({
controls: controls,
autoplay: _this2.props.playing,
mute: _this2.props.muted,
start: (0, _utils.parseStartTime)(url),
origin: window.location.origin
}, config.params),
events: {
apiready: _this2.props.onReady,
seeked: function seeked() {
return _this2.props.onSeek(_this2.player.currentTime);
},
video_end: _this2.props.onEnded,
durationchange: _this2.onDurationChange,
pause: _this2.props.onPause,
playing: _this2.props.onPlay,
waiting: _this2.props.onBuffer,
error: function error(event) {
return onError(event);
}
}
});
}, onError);
}
}, {
key: "play",
value: function play() {
this.callPlayer('play');
}
}, {
key: "pause",
value: function pause() {
this.callPlayer('pause');
}
}, {
key: "stop",
value: function stop() {// Nothing to do
}
}, {
key: "seekTo",
value: function seekTo(seconds) {
var keepPlaying = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
this.callPlayer('seek', seconds);
if (!keepPlaying) {
this.pause();
}
}
}, {
key: "setVolume",
value: function setVolume(fraction) {
this.callPlayer('setVolume', fraction);
}
}, {
key: "getDuration",
value: function getDuration() {
return this.player.duration || null;
}
}, {
key: "getCurrentTime",
value: function getCurrentTime() {
return this.player.currentTime;
}
}, {
key: "getSecondsLoaded",
value: function getSecondsLoaded() {
return this.player.bufferedTime;
}
}, {
key: "render",
value: function render() {
var display = this.props.display;
var style = {
width: '100%',
height: '100%',
display: display
};
return /*#__PURE__*/_react["default"].createElement("div", {
style: style
}, /*#__PURE__*/_react["default"].createElement("div", {
ref: this.ref
}));
}
}]);
return DailyMotion;
}(_react.Component);
exports["default"] = DailyMotion;
_defineProperty(DailyMotion, "displayName", 'DailyMotion');
_defineProperty(DailyMotion, "canPlay", _patterns.canPlay.dailymotion);
_defineProperty(DailyMotion, "loopOnEnded", true);