@hirebus/academy
Version:
React component library for academy and learning platforms
136 lines (135 loc) • 4.43 kB
JavaScript
import { g as P, u as v, p as D } from "./index-DY6PE18t.js";
import O from "react";
function b(t, e) {
for (var r = 0; r < e.length; r++) {
const o = e[r];
if (typeof o != "string" && !Array.isArray(o)) {
for (const a in o)
if (a !== "default" && !(a in t)) {
const i = Object.getOwnPropertyDescriptor(o, a);
i && Object.defineProperty(t, a, i.get ? i : {
enumerable: !0,
get: () => o[a]
});
}
}
}
return Object.freeze(Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }));
}
var M = Object.create, s = Object.defineProperty, w = Object.getOwnPropertyDescriptor, S = Object.getOwnPropertyNames, j = Object.getPrototypeOf, T = Object.prototype.hasOwnProperty, A = (t, e, r) => e in t ? s(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r, E = (t, e) => {
for (var r in e)
s(t, r, { get: e[r], enumerable: !0 });
}, h = (t, e, r, o) => {
if (e && typeof e == "object" || typeof e == "function")
for (let a of S(e))
!T.call(t, a) && a !== r && s(t, a, { get: () => e[a], enumerable: !(o = w(e, a)) || o.enumerable });
return t;
}, L = (t, e, r) => (r = t != null ? M(j(t)) : {}, h(
// 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.
!t || !t.__esModule ? s(r, "default", { value: t, enumerable: !0 }) : r,
t
)), C = (t) => h(s({}, "__esModule", { value: !0 }), t), n = (t, e, r) => (A(t, typeof e != "symbol" ? e + "" : e, r), r), d = {};
E(d, {
default: () => p
});
var _ = C(d), c = L(O), l = v, f = D;
const N = "https://api.dmcdn.net/all.js", x = "DM", R = "dmAsyncInit";
class p extends c.Component {
constructor() {
super(...arguments), n(this, "callPlayer", l.callPlayer), n(this, "onDurationChange", () => {
const e = this.getDuration();
this.props.onDuration(e);
}), n(this, "mute", () => {
this.callPlayer("setMuted", !0);
}), n(this, "unmute", () => {
this.callPlayer("setMuted", !1);
}), n(this, "ref", (e) => {
this.container = e;
});
}
componentDidMount() {
this.props.onMount && this.props.onMount(this);
}
load(e) {
const { controls: r, config: o, onError: a, playing: i } = this.props, [, y] = e.match(f.MATCH_URL_DAILYMOTION);
if (this.player) {
this.player.load(y, {
start: (0, l.parseStartTime)(e),
autoplay: i
});
return;
}
(0, l.getSDK)(N, x, R, (u) => u.player).then((u) => {
if (!this.container)
return;
const g = u.player;
this.player = new g(this.container, {
width: "100%",
height: "100%",
video: y,
params: {
controls: r,
autoplay: this.props.playing,
mute: this.props.muted,
start: (0, l.parseStartTime)(e),
origin: window.location.origin,
...o.params
},
events: {
apiready: this.props.onReady,
seeked: () => this.props.onSeek(this.player.currentTime),
video_end: this.props.onEnded,
durationchange: this.onDurationChange,
pause: this.props.onPause,
playing: this.props.onPlay,
waiting: this.props.onBuffer,
error: (m) => a(m)
}
});
}, a);
}
play() {
this.callPlayer("play");
}
pause() {
this.callPlayer("pause");
}
stop() {
}
seekTo(e, r = !0) {
this.callPlayer("seek", e), r || this.pause();
}
setVolume(e) {
this.callPlayer("setVolume", e);
}
getDuration() {
return this.player.duration || null;
}
getCurrentTime() {
return this.player.currentTime;
}
getSecondsLoaded() {
return this.player.bufferedTime;
}
render() {
const { display: e } = this.props, r = {
width: "100%",
height: "100%",
display: e
};
return /* @__PURE__ */ c.default.createElement("div", { style: r }, /* @__PURE__ */ c.default.createElement("div", { ref: this.ref }));
}
}
n(p, "displayName", "DailyMotion");
n(p, "canPlay", f.canPlay.dailymotion);
n(p, "loopOnEnded", !0);
const K = /* @__PURE__ */ P(_), k = /* @__PURE__ */ b({
__proto__: null,
default: K
}, [_]);
export {
k as D
};