summaryrefslogtreecommitdiff
path: root/build/assets/js/reactPlayerStreamable.80256c3f.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/assets/js/reactPlayerStreamable.80256c3f.js')
-rw-r--r--build/assets/js/reactPlayerStreamable.80256c3f.js151
1 files changed, 151 insertions, 0 deletions
diff --git a/build/assets/js/reactPlayerStreamable.80256c3f.js b/build/assets/js/reactPlayerStreamable.80256c3f.js
new file mode 100644
index 0000000..ae36e29
--- /dev/null
+++ b/build/assets/js/reactPlayerStreamable.80256c3f.js
@@ -0,0 +1,151 @@
+exports.id = 627;
+exports.ids = [627];
+exports.modules = {
+
+/***/ 9643:
+/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
+
+var __create = Object.create;
+var __defProp = Object.defineProperty;
+var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
+var __getOwnPropNames = Object.getOwnPropertyNames;
+var __getProtoOf = Object.getPrototypeOf;
+var __hasOwnProp = Object.prototype.hasOwnProperty;
+var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
+var __export = (target, all) => {
+ for (var name in all)
+ __defProp(target, name, { get: all[name], enumerable: true });
+};
+var __copyProps = (to, from, except, desc) => {
+ if (from && typeof from === "object" || typeof from === "function") {
+ for (let key of __getOwnPropNames(from))
+ if (!__hasOwnProp.call(to, key) && key !== except)
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
+ }
+ return to;
+};
+var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
+ // If the importer is in node compatibility mode or this is not an ESM
+ // file that has been converted to a CommonJS file using a Babel-
+ // compatible transform (i.e. "__esModule" has not been set), then set
+ // "default" to the CommonJS "module.exports" for node compatibility.
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
+ mod
+));
+var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
+var __publicField = (obj, key, value) => {
+ __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
+ return value;
+};
+var Streamable_exports = {};
+__export(Streamable_exports, {
+ default: () => Streamable
+});
+module.exports = __toCommonJS(Streamable_exports);
+var import_react = __toESM(__webpack_require__(6540));
+var import_utils = __webpack_require__(5635);
+var import_patterns = __webpack_require__(327);
+const SDK_URL = "https://cdn.embed.ly/player-0.1.0.min.js";
+const SDK_GLOBAL = "playerjs";
+class Streamable extends import_react.Component {
+ constructor() {
+ super(...arguments);
+ __publicField(this, "callPlayer", import_utils.callPlayer);
+ __publicField(this, "duration", null);
+ __publicField(this, "currentTime", null);
+ __publicField(this, "secondsLoaded", null);
+ __publicField(this, "mute", () => {
+ this.callPlayer("mute");
+ });
+ __publicField(this, "unmute", () => {
+ this.callPlayer("unmute");
+ });
+ __publicField(this, "ref", (iframe) => {
+ this.iframe = iframe;
+ });
+ }
+ componentDidMount() {
+ this.props.onMount && this.props.onMount(this);
+ }
+ load(url) {
+ (0, import_utils.getSDK)(SDK_URL, SDK_GLOBAL).then((playerjs) => {
+ if (!this.iframe)
+ return;
+ this.player = new playerjs.Player(this.iframe);
+ this.player.setLoop(this.props.loop);
+ this.player.on("ready", this.props.onReady);
+ this.player.on("play", this.props.onPlay);
+ this.player.on("pause", this.props.onPause);
+ this.player.on("seeked", this.props.onSeek);
+ this.player.on("ended", this.props.onEnded);
+ this.player.on("error", this.props.onError);
+ this.player.on("timeupdate", ({ duration, seconds }) => {
+ this.duration = duration;
+ this.currentTime = seconds;
+ });
+ this.player.on("buffered", ({ percent }) => {
+ if (this.duration) {
+ this.secondsLoaded = this.duration * percent;
+ }
+ });
+ if (this.props.muted) {
+ this.player.mute();
+ }
+ }, this.props.onError);
+ }
+ play() {
+ this.callPlayer("play");
+ }
+ pause() {
+ this.callPlayer("pause");
+ }
+ stop() {
+ }
+ seekTo(seconds, keepPlaying = true) {
+ this.callPlayer("setCurrentTime", seconds);
+ if (!keepPlaying) {
+ this.pause();
+ }
+ }
+ setVolume(fraction) {
+ this.callPlayer("setVolume", fraction * 100);
+ }
+ setLoop(loop) {
+ this.callPlayer("setLoop", loop);
+ }
+ getDuration() {
+ return this.duration;
+ }
+ getCurrentTime() {
+ return this.currentTime;
+ }
+ getSecondsLoaded() {
+ return this.secondsLoaded;
+ }
+ render() {
+ const id = this.props.url.match(import_patterns.MATCH_URL_STREAMABLE)[1];
+ const style = {
+ width: "100%",
+ height: "100%"
+ };
+ return /* @__PURE__ */ import_react.default.createElement(
+ "iframe",
+ {
+ ref: this.ref,
+ src: `https://streamable.com/o/${id}`,
+ frameBorder: "0",
+ scrolling: "no",
+ style,
+ allow: "encrypted-media; autoplay; fullscreen;"
+ }
+ );
+ }
+}
+__publicField(Streamable, "displayName", "Streamable");
+__publicField(Streamable, "canPlay", import_patterns.canPlay.streamable);
+
+
+/***/ })
+
+};
+; \ No newline at end of file