238 lines
10 KiB
JavaScript
238 lines
10 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = exports.Wistia = void 0;
|
|
|
|
var _react = _interopRequireWildcard(require("react"));
|
|
|
|
var _utils = require("../utils");
|
|
|
|
var _singlePlayer = _interopRequireDefault(require("../singlePlayer"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
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 _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); }
|
|
|
|
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 _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 _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { 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 _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 _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://fast.wistia.com/assets/external/E-v1.js';
|
|
var SDK_GLOBAL = 'Wistia';
|
|
var MATCH_URL = /(?:wistia\.com|wi\.st)\/(?:medias|embed)\/(.*)$/;
|
|
|
|
var Wistia = /*#__PURE__*/function (_Component) {
|
|
_inherits(Wistia, _Component);
|
|
|
|
var _super = _createSuper(Wistia);
|
|
|
|
function Wistia() {
|
|
var _this;
|
|
|
|
_classCallCheck(this, Wistia);
|
|
|
|
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), "onPlay", function () {
|
|
var _this$props;
|
|
|
|
return (_this$props = _this.props).onPlay.apply(_this$props, arguments);
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onPause", function () {
|
|
var _this$props2;
|
|
|
|
return (_this$props2 = _this.props).onPause.apply(_this$props2, arguments);
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onSeek", function () {
|
|
var _this$props3;
|
|
|
|
return (_this$props3 = _this.props).onSeek.apply(_this$props3, arguments);
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "onEnded", function () {
|
|
var _this$props4;
|
|
|
|
return (_this$props4 = _this.props).onEnded.apply(_this$props4, arguments);
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "mute", function () {
|
|
_this.callPlayer('mute');
|
|
});
|
|
|
|
_defineProperty(_assertThisInitialized(_this), "unmute", function () {
|
|
_this.callPlayer('unmute');
|
|
});
|
|
|
|
return _this;
|
|
}
|
|
|
|
_createClass(Wistia, [{
|
|
key: "getID",
|
|
value: function getID(url) {
|
|
return url && url.match(MATCH_URL)[1];
|
|
}
|
|
}, {
|
|
key: "load",
|
|
value: function load(url) {
|
|
var _this2 = this;
|
|
|
|
var _this$props5 = this.props,
|
|
playing = _this$props5.playing,
|
|
muted = _this$props5.muted,
|
|
controls = _this$props5.controls,
|
|
_onReady = _this$props5.onReady,
|
|
config = _this$props5.config,
|
|
onError = _this$props5.onError;
|
|
(0, _utils.getSDK)(SDK_URL, SDK_GLOBAL).then(function () {
|
|
window._wq = window._wq || [];
|
|
|
|
window._wq.push({
|
|
id: _this2.getID(url),
|
|
options: _objectSpread({
|
|
autoPlay: playing,
|
|
silentAutoPlay: 'allow',
|
|
muted: muted,
|
|
controlsVisibleOnLoad: controls
|
|
}, config.wistia.options),
|
|
onReady: function onReady(player) {
|
|
_this2.player = player;
|
|
|
|
_this2.unbind();
|
|
|
|
_this2.player.bind('play', _this2.onPlay);
|
|
|
|
_this2.player.bind('pause', _this2.onPause);
|
|
|
|
_this2.player.bind('seek', _this2.onSeek);
|
|
|
|
_this2.player.bind('end', _this2.onEnded);
|
|
|
|
_onReady();
|
|
}
|
|
});
|
|
}, onError);
|
|
}
|
|
}, {
|
|
key: "unbind",
|
|
value: function unbind() {
|
|
this.player.unbind('play', this.onPlay);
|
|
this.player.unbind('pause', this.onPause);
|
|
this.player.unbind('seek', this.onSeek);
|
|
this.player.unbind('end', this.onEnded);
|
|
} // Proxy methods to prevent listener leaks
|
|
|
|
}, {
|
|
key: "play",
|
|
value: function play() {
|
|
this.callPlayer('play');
|
|
}
|
|
}, {
|
|
key: "pause",
|
|
value: function pause() {
|
|
this.callPlayer('pause');
|
|
}
|
|
}, {
|
|
key: "stop",
|
|
value: function stop() {
|
|
this.unbind();
|
|
this.callPlayer('remove');
|
|
}
|
|
}, {
|
|
key: "seekTo",
|
|
value: function seekTo(seconds) {
|
|
this.callPlayer('time', seconds);
|
|
}
|
|
}, {
|
|
key: "setVolume",
|
|
value: function setVolume(fraction) {
|
|
this.callPlayer('volume', fraction);
|
|
}
|
|
}, {
|
|
key: "setPlaybackRate",
|
|
value: function setPlaybackRate(rate) {
|
|
this.callPlayer('playbackRate', rate);
|
|
}
|
|
}, {
|
|
key: "getDuration",
|
|
value: function getDuration() {
|
|
return this.callPlayer('duration');
|
|
}
|
|
}, {
|
|
key: "getCurrentTime",
|
|
value: function getCurrentTime() {
|
|
return this.callPlayer('time');
|
|
}
|
|
}, {
|
|
key: "getSecondsLoaded",
|
|
value: function getSecondsLoaded() {
|
|
return null;
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
var id = this.getID(this.props.url);
|
|
var className = "wistia_embed wistia_async_".concat(id);
|
|
var style = {
|
|
width: '100%',
|
|
height: '100%'
|
|
};
|
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
key: id,
|
|
className: className,
|
|
style: style
|
|
});
|
|
}
|
|
}]);
|
|
|
|
return Wistia;
|
|
}(_react.Component);
|
|
|
|
exports.Wistia = Wistia;
|
|
|
|
_defineProperty(Wistia, "displayName", 'Wistia');
|
|
|
|
_defineProperty(Wistia, "canPlay", function (url) {
|
|
return MATCH_URL.test(url);
|
|
});
|
|
|
|
_defineProperty(Wistia, "loopOnEnded", true);
|
|
|
|
var _default = (0, _singlePlayer["default"])(Wistia);
|
|
|
|
exports["default"] = _default; |