summaryrefslogtreecommitdiff
path: root/build/assets/js/reactPlayerVidyard.f7032921.js
diff options
context:
space:
mode:
authorWindowsAddict2024-05-17 06:26:02 +0000
committerWindowsAddict2024-05-17 06:26:02 +0000
commit16ff3a80d0f37ab3fc484783384947fb7fe78977 (patch)
tree7f098d1862b2587b42690c3f27cf595c3b148343 /build/assets/js/reactPlayerVidyard.f7032921.js
parentc8990dfcd35e0a0ff2e178331c914c3fad428e9c (diff)
downloadmassgrave.dev-16ff3a80d0f37ab3fc484783384947fb7fe78977.zip
Remove build folder, and move to cloudflare for hosting
Diffstat (limited to 'build/assets/js/reactPlayerVidyard.f7032921.js')
-rw-r--r--build/assets/js/reactPlayerVidyard.f7032921.js149
1 files changed, 0 insertions, 149 deletions
diff --git a/build/assets/js/reactPlayerVidyard.f7032921.js b/build/assets/js/reactPlayerVidyard.f7032921.js
deleted file mode 100644
index e0cdac4..0000000
--- a/build/assets/js/reactPlayerVidyard.f7032921.js
+++ /dev/null
@@ -1,149 +0,0 @@
-exports.id = 392;
-exports.ids = [392];
-exports.modules = {
-
-/***/ 3552:
-/***/ ((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 Vidyard_exports = {};
-__export(Vidyard_exports, {
- default: () => Vidyard
-});
-module.exports = __toCommonJS(Vidyard_exports);
-var import_react = __toESM(__webpack_require__(6540));
-var import_utils = __webpack_require__(5635);
-var import_patterns = __webpack_require__(327);
-const SDK_URL = "https://play.vidyard.com/embed/v4.js";
-const SDK_GLOBAL = "VidyardV4";
-const SDK_GLOBAL_READY = "onVidyardAPI";
-class Vidyard extends import_react.Component {
- constructor() {
- super(...arguments);
- __publicField(this, "callPlayer", import_utils.callPlayer);
- __publicField(this, "mute", () => {
- this.setVolume(0);
- });
- __publicField(this, "unmute", () => {
- if (this.props.volume !== null) {
- this.setVolume(this.props.volume);
- }
- });
- __publicField(this, "ref", (container) => {
- this.container = container;
- });
- }
- componentDidMount() {
- this.props.onMount && this.props.onMount(this);
- }
- load(url) {
- const { playing, config, onError, onDuration } = this.props;
- const id = url && url.match(import_patterns.MATCH_URL_VIDYARD)[1];
- if (this.player) {
- this.stop();
- }
- (0, import_utils.getSDK)(SDK_URL, SDK_GLOBAL, SDK_GLOBAL_READY).then((Vidyard2) => {
- if (!this.container)
- return;
- Vidyard2.api.addReadyListener((data, player) => {
- if (this.player) {
- return;
- }
- this.player = player;
- this.player.on("ready", this.props.onReady);
- this.player.on("play", this.props.onPlay);
- this.player.on("pause", this.props.onPause);
- this.player.on("seek", this.props.onSeek);
- this.player.on("playerComplete", this.props.onEnded);
- }, id);
- Vidyard2.api.renderPlayer({
- uuid: id,
- container: this.container,
- autoplay: playing ? 1 : 0,
- ...config.options
- });
- Vidyard2.api.getPlayerMetadata(id).then((meta) => {
- this.duration = meta.length_in_seconds;
- onDuration(meta.length_in_seconds);
- });
- }, onError);
- }
- play() {
- this.callPlayer("play");
- }
- pause() {
- this.callPlayer("pause");
- }
- stop() {
- window.VidyardV4.api.destroyPlayer(this.player);
- }
- seekTo(amount, keepPlaying = true) {
- this.callPlayer("seek", amount);
- if (!keepPlaying) {
- this.pause();
- }
- }
- setVolume(fraction) {
- this.callPlayer("setVolume", fraction);
- }
- setPlaybackRate(rate) {
- this.callPlayer("setPlaybackSpeed", rate);
- }
- getDuration() {
- return this.duration;
- }
- getCurrentTime() {
- return this.callPlayer("currentTime");
- }
- getSecondsLoaded() {
- return null;
- }
- render() {
- const { display } = this.props;
- const style = {
- width: "100%",
- height: "100%",
- display
- };
- return /* @__PURE__ */ import_react.default.createElement("div", { style }, /* @__PURE__ */ import_react.default.createElement("div", { ref: this.ref }));
- }
-}
-__publicField(Vidyard, "displayName", "Vidyard");
-__publicField(Vidyard, "canPlay", import_patterns.canPlay.vidyard);
-
-
-/***/ })
-
-};
-; \ No newline at end of file