react-player
Version:
A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion
207 lines (156 loc) • 8.71 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 _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://cdn.embed.ly/player-0.1.0.min.js';
var SDK_GLOBAL = 'playerjs';
var Streamable = /*#__PURE__*/function (_Component) {
_inherits(Streamable, _Component);
var _super = _createSuper(Streamable);
function Streamable() {
var _this;
_classCallCheck(this, Streamable);
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), "duration", null);
_defineProperty(_assertThisInitialized(_this), "currentTime", null);
_defineProperty(_assertThisInitialized(_this), "secondsLoaded", null);
_defineProperty(_assertThisInitialized(_this), "mute", function () {
_this.callPlayer('mute');
});
_defineProperty(_assertThisInitialized(_this), "unmute", function () {
_this.callPlayer('unmute');
});
_defineProperty(_assertThisInitialized(_this), "ref", function (iframe) {
_this.iframe = iframe;
});
return _this;
}
_createClass(Streamable, [{
key: "componentDidMount",
value: function componentDidMount() {
this.props.onMount && this.props.onMount(this);
}
}, {
key: "load",
value: function load(url) {
var _this2 = this;
(0, _utils.getSDK)(SDK_URL, SDK_GLOBAL).then(function (playerjs) {
if (!_this2.iframe) return;
_this2.player = new playerjs.Player(_this2.iframe);
_this2.player.setLoop(_this2.props.loop);
_this2.player.on('ready', _this2.props.onReady);
_this2.player.on('play', _this2.props.onPlay);
_this2.player.on('pause', _this2.props.onPause);
_this2.player.on('seeked', _this2.props.onSeek);
_this2.player.on('ended', _this2.props.onEnded);
_this2.player.on('error', _this2.props.onError);
_this2.player.on('timeupdate', function (_ref) {
var duration = _ref.duration,
seconds = _ref.seconds;
_this2.duration = duration;
_this2.currentTime = seconds;
});
_this2.player.on('buffered', function (_ref2) {
var percent = _ref2.percent;
if (_this2.duration) {
_this2.secondsLoaded = _this2.duration * percent;
}
});
if (_this2.props.muted) {
_this2.player.mute();
}
}, this.props.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('setCurrentTime', seconds);
if (!keepPlaying) {
this.pause();
}
}
}, {
key: "setVolume",
value: function setVolume(fraction) {
this.callPlayer('setVolume', fraction * 100);
}
}, {
key: "setLoop",
value: function setLoop(loop) {
this.callPlayer('setLoop', loop);
}
}, {
key: "getDuration",
value: function getDuration() {
return this.duration;
}
}, {
key: "getCurrentTime",
value: function getCurrentTime() {
return this.currentTime;
}
}, {
key: "getSecondsLoaded",
value: function getSecondsLoaded() {
return this.secondsLoaded;
}
}, {
key: "render",
value: function render() {
var id = this.props.url.match(_patterns.MATCH_URL_STREAMABLE)[1];
var style = {
width: '100%',
height: '100%'
};
return /*#__PURE__*/_react["default"].createElement("iframe", {
ref: this.ref,
src: "https://streamable.com/o/".concat(id),
frameBorder: "0",
scrolling: "no",
style: style,
allow: "encrypted-media; autoplay; fullscreen;"
});
}
}]);
return Streamable;
}(_react.Component);
exports["default"] = Streamable;
_defineProperty(Streamable, "displayName", 'Streamable');
_defineProperty(Streamable, "canPlay", _patterns.canPlay.streamable);