@latest-thinking/lt-player 3.0.0-beta.15 → 3.0.0-beta.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/player.js +1098 -1063
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/player.js
CHANGED
|
@@ -16639,22 +16639,33 @@ function of(e) {
|
|
|
16639
16639
|
let t = Math.max(0, Math.floor(Number.isFinite(e) ? e : 0)), n = Math.floor(t / 3600), r = Math.floor(t % 3600 / 60), i = t % 60;
|
|
16640
16640
|
return n > 0 ? `${n}:${String(r).padStart(2, "0")}:${String(i).padStart(2, "0")}` : `${r}:${String(i).padStart(2, "0")}`;
|
|
16641
16641
|
}
|
|
16642
|
-
function sf() {
|
|
16643
|
-
let
|
|
16644
|
-
muted:
|
|
16645
|
-
volume:
|
|
16646
|
-
captionsOn:
|
|
16647
|
-
captionsOff:
|
|
16648
|
-
paused:
|
|
16649
|
-
playing:
|
|
16650
|
-
fullscreen:
|
|
16651
|
-
exitFullscreen:
|
|
16652
|
-
pictureInPicture:
|
|
16653
|
-
exitPictureInPicture:
|
|
16654
|
-
volumeWithValue: (
|
|
16655
|
-
seekedTo: (
|
|
16656
|
-
playbackRate: (
|
|
16657
|
-
}), [
|
|
16642
|
+
function sf({ captions: e }) {
|
|
16643
|
+
let t = Kd(), n = (0, w.useMemo)(() => ({
|
|
16644
|
+
muted: t.muted,
|
|
16645
|
+
volume: t.volume,
|
|
16646
|
+
captionsOn: t.captionsOn,
|
|
16647
|
+
captionsOff: t.captionsOff,
|
|
16648
|
+
paused: t.paused,
|
|
16649
|
+
playing: t.playing,
|
|
16650
|
+
fullscreen: t.fullscreenEntered,
|
|
16651
|
+
exitFullscreen: t.exitFullscreen,
|
|
16652
|
+
pictureInPicture: t.pictureInPictureEntered,
|
|
16653
|
+
exitPictureInPicture: t.pictureInPictureExited,
|
|
16654
|
+
volumeWithValue: (e) => Vd(t, "volumeFeedback", { value: e }),
|
|
16655
|
+
seekedTo: (e) => Vd(t, "seekedTo", { time: of(e) }),
|
|
16656
|
+
playbackRate: (e) => Vd(t, "playbackRate", { rate: e })
|
|
16657
|
+
}), [t]);
|
|
16658
|
+
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(Tu, {
|
|
16659
|
+
className: "ltp-core-status-announcer",
|
|
16660
|
+
labels: n
|
|
16661
|
+
}), /* @__PURE__ */ (0, N.jsx)("span", {
|
|
16662
|
+
"aria-atomic": "true",
|
|
16663
|
+
"aria-live": "polite",
|
|
16664
|
+
className: "ltp-core-captions-announcer",
|
|
16665
|
+
children: /* @__PURE__ */ (0, N.jsx)("span", { children: e === null ? "" : e.enabled ? t.captionsOn : t.captionsOff }, e?.generation)
|
|
16666
|
+
})] });
|
|
16667
|
+
}
|
|
16668
|
+
function cf() {
|
|
16658
16669
|
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [
|
|
16659
16670
|
/* @__PURE__ */ (0, N.jsx)(mu.Root, {
|
|
16660
16671
|
className: "ltp-core-seek-indicator",
|
|
@@ -16704,16 +16715,12 @@ function sf() {
|
|
|
16704
16715
|
children: t.status === "play" ? /* @__PURE__ */ (0, N.jsx)(Y, { name: "play-landscape" }) : t.status === "pause" ? /* @__PURE__ */ (0, N.jsx)(Y, { name: "pause-landscape" }) : e.children
|
|
16705
16716
|
})
|
|
16706
16717
|
})
|
|
16707
|
-
}),
|
|
16708
|
-
/* @__PURE__ */ (0, N.jsx)(Tu, {
|
|
16709
|
-
className: "ltp-core-status-announcer",
|
|
16710
|
-
labels: t
|
|
16711
16718
|
})
|
|
16712
16719
|
] });
|
|
16713
16720
|
}
|
|
16714
16721
|
//#endregion
|
|
16715
16722
|
//#region src/capabilities/chapters-model.ts
|
|
16716
|
-
function
|
|
16723
|
+
function lf(e, t) {
|
|
16717
16724
|
let n = null;
|
|
16718
16725
|
for (let r of e) {
|
|
16719
16726
|
if (r.start > t) break;
|
|
@@ -16721,20 +16728,20 @@ function cf(e, t) {
|
|
|
16721
16728
|
}
|
|
16722
16729
|
return n;
|
|
16723
16730
|
}
|
|
16724
|
-
function
|
|
16731
|
+
function uf(e) {
|
|
16725
16732
|
return e[0]?.start ?? null;
|
|
16726
16733
|
}
|
|
16727
|
-
function
|
|
16734
|
+
function df(e, t, n) {
|
|
16728
16735
|
let r = e[t];
|
|
16729
16736
|
if (r === void 0) return null;
|
|
16730
16737
|
let i = e[t + 1];
|
|
16731
16738
|
return i === void 0 ? n === null || !Number.isFinite(n) || n < r.start ? null : Math.max(0, n - r.start) : Math.max(0, i.start - r.start);
|
|
16732
16739
|
}
|
|
16733
|
-
function
|
|
16740
|
+
function ff(e) {
|
|
16734
16741
|
let t = Math.max(0, Math.floor(Number.isFinite(e) ? e : 0)), n = Math.floor(t / 3600), r = Math.floor(t % 3600 / 60), i = t % 60;
|
|
16735
16742
|
return n > 0 ? `${n}:${String(r).padStart(2, "0")}:${String(i).padStart(2, "0")}` : `${r}:${String(i).padStart(2, "0")}`;
|
|
16736
16743
|
}
|
|
16737
|
-
function
|
|
16744
|
+
function pf(e) {
|
|
16738
16745
|
let t = Math.max(0, Math.round(e));
|
|
16739
16746
|
return Object.freeze({
|
|
16740
16747
|
minutes: Math.floor(t / 60),
|
|
@@ -16743,51 +16750,51 @@ function ff(e) {
|
|
|
16743
16750
|
}
|
|
16744
16751
|
//#endregion
|
|
16745
16752
|
//#region src/capabilities/interaction-context.tsx
|
|
16746
|
-
var
|
|
16747
|
-
function
|
|
16748
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
16753
|
+
var mf = (0, w.createContext)(!1);
|
|
16754
|
+
function hf({ blocked: e, children: t }) {
|
|
16755
|
+
return /* @__PURE__ */ (0, N.jsx)(mf, {
|
|
16749
16756
|
value: e,
|
|
16750
16757
|
children: t
|
|
16751
16758
|
});
|
|
16752
16759
|
}
|
|
16753
|
-
function
|
|
16754
|
-
return (0, w.useContext)(
|
|
16760
|
+
function gf() {
|
|
16761
|
+
return (0, w.useContext)(mf);
|
|
16755
16762
|
}
|
|
16756
16763
|
//#endregion
|
|
16757
16764
|
//#region src/capabilities/chapters.tsx
|
|
16758
|
-
function
|
|
16765
|
+
function _f(e) {
|
|
16759
16766
|
if (e.key !== "chapters") throw Error("Expected the chapters capability module");
|
|
16760
16767
|
return e;
|
|
16761
16768
|
}
|
|
16762
|
-
function
|
|
16769
|
+
function vf(e) {
|
|
16763
16770
|
return (0, w.useSyncExternalStore)(e.subscribeInteraction, e.getInteractionSnapshot, e.getInteractionSnapshot);
|
|
16764
16771
|
}
|
|
16765
|
-
function
|
|
16772
|
+
function yf(e) {
|
|
16766
16773
|
return (0, w.useSyncExternalStore)(e.subscribeMenuPortalTarget, e.getMenuPortalTarget, e.getMenuPortalTarget);
|
|
16767
16774
|
}
|
|
16768
|
-
function
|
|
16775
|
+
function bf(e, t) {
|
|
16769
16776
|
return e !== void 0 && Number.isFinite(e) && e > 0 ? e : Number.isFinite(t) && t > 0 ? t : null;
|
|
16770
16777
|
}
|
|
16771
|
-
function
|
|
16778
|
+
function xf(e, t) {
|
|
16772
16779
|
let { left: n, width: r } = e.getBoundingClientRect();
|
|
16773
16780
|
return !Number.isFinite(r) || r <= 0 ? 0 : Math.min(100, Math.max(0, (t - n) / r * 100));
|
|
16774
16781
|
}
|
|
16775
|
-
function
|
|
16782
|
+
function Sf(e, t) {
|
|
16776
16783
|
return e.map((n, r) => ({
|
|
16777
16784
|
startTime: n.start,
|
|
16778
16785
|
endTime: e[r + 1]?.start ?? t,
|
|
16779
16786
|
text: n.name
|
|
16780
16787
|
}));
|
|
16781
16788
|
}
|
|
16782
|
-
function
|
|
16789
|
+
function Cf(e, t, n, r) {
|
|
16783
16790
|
let i = Math.max(e, n), a = Math.min(t, r), o = r - n;
|
|
16784
16791
|
return a <= i || o <= 0 ? null : {
|
|
16785
16792
|
"--ltp-chapter-buffer-left": `${(i - n) / o * 100}%`,
|
|
16786
16793
|
"--ltp-chapter-buffer-width": `${(a - i) / o * 100}%`
|
|
16787
16794
|
};
|
|
16788
16795
|
}
|
|
16789
|
-
function
|
|
16790
|
-
let [a] = (0, w.useState)(() => new Xs()), [o] = (0, w.useState)(() => new os()), s = (0, w.useMemo)(() =>
|
|
16796
|
+
function wf({ buffered: e, chapters: t, duration: n, pointerPercent: r, slider: i }) {
|
|
16797
|
+
let [a] = (0, w.useState)(() => new Xs()), [o] = (0, w.useState)(() => new os()), s = (0, w.useMemo)(() => Sf(t, n), [t, n]), c = (0, w.useMemo)(() => Ys(s, 0, n), [s, n]), l = (0, w.useMemo)(() => c.map(({ end: e, key: t, start: n }) => ({
|
|
16791
16798
|
key: t,
|
|
16792
16799
|
start: n,
|
|
16793
16800
|
end: e
|
|
@@ -16812,7 +16819,7 @@ function Cf({ buffered: e, chapters: t, duration: n, pointerPercent: r, slider:
|
|
|
16812
16819
|
"--ltp-chapter-segment-fill": `${n.fillPercent}%`,
|
|
16813
16820
|
"--ltp-chapter-segment-buffer": `${n.bufferPercent}%`
|
|
16814
16821
|
}, s = e.flatMap(([e, n], r) => {
|
|
16815
|
-
let i =
|
|
16822
|
+
let i = Cf(e, n, t.start, t.end);
|
|
16816
16823
|
return i === null ? [] : [/* @__PURE__ */ (0, N.jsx)("span", {
|
|
16817
16824
|
className: "ltp-chapters-timeline__buffer-range",
|
|
16818
16825
|
style: i
|
|
@@ -16835,8 +16842,8 @@ function Cf({ buffered: e, chapters: t, duration: n, pointerPercent: r, slider:
|
|
|
16835
16842
|
})
|
|
16836
16843
|
});
|
|
16837
16844
|
}
|
|
16838
|
-
function
|
|
16839
|
-
|
|
16845
|
+
function Tf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
16846
|
+
_f(e);
|
|
16840
16847
|
let i = fd(), a = Lt($r), o = qd("seek"), s = a?.buffered ?? [], [c, l] = (0, w.useState)(null);
|
|
16841
16848
|
return i.controls.timeline.enabled ? /* @__PURE__ */ (0, N.jsx)(Vu.Root, {
|
|
16842
16849
|
className: "ltp-core-timeline ltp-chapters-timeline",
|
|
@@ -16847,15 +16854,15 @@ function wf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
16847
16854
|
"data-ltp-surface": r,
|
|
16848
16855
|
label: o,
|
|
16849
16856
|
render: (e, t) => {
|
|
16850
|
-
let n = Number.isFinite(t.duration) && t.duration > 0 ? t.duration : null, r = c ?? t.pointerPercent, a = n === null ? null :
|
|
16857
|
+
let n = Number.isFinite(t.duration) && t.duration > 0 ? t.duration : null, r = c ?? t.pointerPercent, a = n === null ? null : lf(i.content.chapters, r / 100 * n);
|
|
16851
16858
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
16852
16859
|
...e,
|
|
16853
16860
|
"data-ltp-chapter-segments": n === null ? void 0 : "",
|
|
16854
16861
|
onPointerDown: (t) => {
|
|
16855
|
-
e.onPointerDown?.(t), l(
|
|
16862
|
+
e.onPointerDown?.(t), l(xf(t.currentTarget, t.clientX));
|
|
16856
16863
|
},
|
|
16857
16864
|
onPointerMove: (t) => {
|
|
16858
|
-
e.onPointerMove?.(t), l(
|
|
16865
|
+
e.onPointerMove?.(t), l(xf(t.currentTarget, t.clientX));
|
|
16859
16866
|
},
|
|
16860
16867
|
children: /* @__PURE__ */ (0, N.jsx)(Qd, {
|
|
16861
16868
|
buffered: s,
|
|
@@ -16864,7 +16871,7 @@ function wf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
16864
16871
|
className: "ltp-chapters-trigger__name ltp-core-timeline__preview-chapter",
|
|
16865
16872
|
children: a.name
|
|
16866
16873
|
}),
|
|
16867
|
-
segments: n === null ? void 0 : /* @__PURE__ */ (0, N.jsx)(
|
|
16874
|
+
segments: n === null ? void 0 : /* @__PURE__ */ (0, N.jsx)(wf, {
|
|
16868
16875
|
buffered: s,
|
|
16869
16876
|
chapters: i.content.chapters,
|
|
16870
16877
|
duration: n,
|
|
@@ -16877,8 +16884,8 @@ function wf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
16877
16884
|
step: i.controls.timeline.seekStep
|
|
16878
16885
|
}) : null;
|
|
16879
16886
|
}
|
|
16880
|
-
function
|
|
16881
|
-
let i =
|
|
16887
|
+
function Ef({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
16888
|
+
let i = _f(e), a = fd(), o = Lt(si), s = qd("chapters"), c = vf(i), l = yf(i), u = lf(a.content.chapters, o?.currentTime ?? 0), d = gf();
|
|
16882
16889
|
return (0, w.useEffect)(() => {
|
|
16883
16890
|
d && i.close();
|
|
16884
16891
|
}, [d, i]), (0, w.useEffect)(() => () => {
|
|
@@ -16910,18 +16917,18 @@ function Tf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
16910
16917
|
className: "ltp-core-tooltip",
|
|
16911
16918
|
children: /* @__PURE__ */ (0, N.jsx)(Zu.Label, { children: s })
|
|
16912
16919
|
})]
|
|
16913
|
-
}), d || l === null ? null : (0, Dl.createPortal)(/* @__PURE__ */ (0, N.jsx)(
|
|
16920
|
+
}), d || l === null ? null : (0, Dl.createPortal)(/* @__PURE__ */ (0, N.jsx)(Of, {
|
|
16914
16921
|
module: i,
|
|
16915
16922
|
state: n
|
|
16916
16923
|
}), l)]
|
|
16917
16924
|
});
|
|
16918
16925
|
}
|
|
16919
|
-
function
|
|
16920
|
-
let { minutes: n, seconds: r } =
|
|
16926
|
+
function Df(e, t) {
|
|
16927
|
+
let { minutes: n, seconds: r } = pf(e), i = [];
|
|
16921
16928
|
return n > 0 && i.push(Vd(t, "chapterMinute", { count: n })), (r > 0 || i.length === 0) && i.push(Vd(t, "chapterSecond", { count: r })), i.join(" ");
|
|
16922
16929
|
}
|
|
16923
|
-
function
|
|
16924
|
-
let n = fd(), r = Lt(si), i = qd("chapters"), a = Kd(), o =
|
|
16930
|
+
function Of({ module: e, state: t }) {
|
|
16931
|
+
let n = fd(), r = Lt(si), i = qd("chapters"), a = Kd(), o = bf(n.content.duration, r?.duration ?? 0), s = lf(n.content.chapters, r?.currentTime ?? 0);
|
|
16925
16932
|
return /* @__PURE__ */ (0, N.jsx)(q.Popup, {
|
|
16926
16933
|
className: "ltp-chapters-menu",
|
|
16927
16934
|
"data-ltp-capability": "chapters",
|
|
@@ -16933,7 +16940,7 @@ function Df({ module: e, state: t }) {
|
|
|
16933
16940
|
"aria-label": i,
|
|
16934
16941
|
className: "ltp-chapters-menu__content",
|
|
16935
16942
|
children: n.content.chapters.map((t, i) => {
|
|
16936
|
-
let c =
|
|
16943
|
+
let c = df(n.content.chapters, i, o), l = s === t;
|
|
16937
16944
|
return /* @__PURE__ */ (0, N.jsxs)(q.Item, {
|
|
16938
16945
|
"aria-current": l || void 0,
|
|
16939
16946
|
className: "ltp-chapters-menu__item",
|
|
@@ -16954,20 +16961,20 @@ function Df({ module: e, state: t }) {
|
|
|
16954
16961
|
}) : null]
|
|
16955
16962
|
}), c === null ? null : /* @__PURE__ */ (0, N.jsx)("span", {
|
|
16956
16963
|
className: "ltp-chapters-menu__duration",
|
|
16957
|
-
children:
|
|
16964
|
+
children: Df(c, a)
|
|
16958
16965
|
})]
|
|
16959
16966
|
}), /* @__PURE__ */ (0, N.jsx)("time", {
|
|
16960
16967
|
className: "ltp-chapters-menu__start",
|
|
16961
16968
|
dateTime: `PT${t.start}S`,
|
|
16962
|
-
children:
|
|
16969
|
+
children: ff(t.start)
|
|
16963
16970
|
})]
|
|
16964
16971
|
}, `${t.start}:${t.name}`);
|
|
16965
16972
|
})
|
|
16966
16973
|
})
|
|
16967
16974
|
});
|
|
16968
16975
|
}
|
|
16969
|
-
function
|
|
16970
|
-
let i =
|
|
16976
|
+
function kf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
16977
|
+
let i = _f(e), a = (0, w.useMemo)(() => (e) => i.setMenuPortalTarget(e), [i]);
|
|
16971
16978
|
return /* @__PURE__ */ (0, N.jsx)("span", {
|
|
16972
16979
|
className: "ltp-chapters-menu-anchor",
|
|
16973
16980
|
"data-ltp-capability": "chapters",
|
|
@@ -16979,23 +16986,23 @@ function Of({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
16979
16986
|
}
|
|
16980
16987
|
//#endregion
|
|
16981
16988
|
//#region src/core/authored-text-tracks.ts
|
|
16982
|
-
var
|
|
16983
|
-
function Af(e) {
|
|
16984
|
-
return e === null ? [] : Array.from(e.querySelectorAll(`track[${kf}]`));
|
|
16985
|
-
}
|
|
16989
|
+
var Af = "data-ltp-authored-track";
|
|
16986
16990
|
function jf(e) {
|
|
16987
|
-
return
|
|
16991
|
+
return e === null ? [] : Array.from(e.querySelectorAll(`track[${Af}]`));
|
|
16988
16992
|
}
|
|
16989
16993
|
function Mf(e) {
|
|
16990
|
-
return
|
|
16994
|
+
return new Set(jf(e).map((e) => e.track).filter((e) => e != null));
|
|
16991
16995
|
}
|
|
16992
16996
|
function Nf(e) {
|
|
16993
|
-
|
|
16997
|
+
return jf(e).filter((e) => !e.hasAttribute("data-ltp-track-failed")).map((e) => e.track).filter((e) => e != null);
|
|
16998
|
+
}
|
|
16999
|
+
function Pf(e) {
|
|
17000
|
+
let t = Mf(e);
|
|
16994
17001
|
for (let n of Array.from(e.textTracks)) !t.has(n) && n.mode !== "disabled" && (n.mode = "disabled");
|
|
16995
17002
|
}
|
|
16996
|
-
function
|
|
17003
|
+
function Ff(e, t) {
|
|
16997
17004
|
let n = () => {
|
|
16998
|
-
|
|
17005
|
+
Pf(e), t?.(Mf(e));
|
|
16999
17006
|
};
|
|
17000
17007
|
return e.textTracks.addEventListener("addtrack", n), e.textTracks.addEventListener("change", n), e.addEventListener("addtrack", n), e.addEventListener("change", n), n(), () => {
|
|
17001
17008
|
e.textTracks.removeEventListener("addtrack", n), e.textTracks.removeEventListener("change", n), e.removeEventListener("addtrack", n), e.removeEventListener("change", n);
|
|
@@ -17003,30 +17010,30 @@ function Pf(e, t) {
|
|
|
17003
17010
|
}
|
|
17004
17011
|
//#endregion
|
|
17005
17012
|
//#region src/user-state/user-state-context.tsx
|
|
17006
|
-
var
|
|
17007
|
-
function
|
|
17008
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
17013
|
+
var If = (0, w.createContext)(null);
|
|
17014
|
+
function Lf({ children: e, controller: t }) {
|
|
17015
|
+
return /* @__PURE__ */ (0, N.jsx)(If, {
|
|
17009
17016
|
value: t,
|
|
17010
17017
|
children: e
|
|
17011
17018
|
});
|
|
17012
17019
|
}
|
|
17013
|
-
function
|
|
17014
|
-
let e = (0, w.useContext)(
|
|
17020
|
+
function Rf() {
|
|
17021
|
+
let e = (0, w.useContext)(If);
|
|
17015
17022
|
if (e === null) throw Error("useUserStateController must be used within UserStateProvider");
|
|
17016
17023
|
return e;
|
|
17017
17024
|
}
|
|
17018
17025
|
//#endregion
|
|
17019
17026
|
//#region src/capabilities/captions-model.ts
|
|
17020
|
-
function
|
|
17027
|
+
function zf(e) {
|
|
17021
17028
|
return e === "captions" || e === "subtitles";
|
|
17022
17029
|
}
|
|
17023
|
-
function
|
|
17030
|
+
function Bf(e) {
|
|
17024
17031
|
return e === "hidden" || e === "showing";
|
|
17025
17032
|
}
|
|
17026
|
-
function
|
|
17033
|
+
function Vf(e) {
|
|
17027
17034
|
return `ltp-text-track-${e}`;
|
|
17028
17035
|
}
|
|
17029
|
-
function
|
|
17036
|
+
function Hf(e) {
|
|
17030
17037
|
if (typeof e != "object" || !e) return "";
|
|
17031
17038
|
let t = e;
|
|
17032
17039
|
if (typeof t.getCueAsHTML == "function") try {
|
|
@@ -17034,34 +17041,34 @@ function Vf(e) {
|
|
|
17034
17041
|
} catch {}
|
|
17035
17042
|
return typeof t.text == "string" ? t.text.trim() : "";
|
|
17036
17043
|
}
|
|
17037
|
-
function
|
|
17044
|
+
function Uf(e, t) {
|
|
17038
17045
|
let n = () => {
|
|
17039
|
-
t(Object.freeze(Array.from(e.activeCues ?? []).map((e) =>
|
|
17046
|
+
t(Object.freeze(Array.from(e.activeCues ?? []).map((e) => Hf(e)).filter((e) => e.length > 0)));
|
|
17040
17047
|
};
|
|
17041
17048
|
return e.addEventListener("cuechange", n), n(), () => e.removeEventListener("cuechange", n);
|
|
17042
17049
|
}
|
|
17043
17050
|
//#endregion
|
|
17044
17051
|
//#region src/capabilities/captions.tsx
|
|
17045
|
-
var
|
|
17046
|
-
function
|
|
17052
|
+
var Wf = (0, w.createContext)(null);
|
|
17053
|
+
function Gf(e) {
|
|
17047
17054
|
if (e.key !== "captions") throw Error("Expected the captions capability module");
|
|
17048
17055
|
return e;
|
|
17049
17056
|
}
|
|
17050
|
-
function
|
|
17057
|
+
function Kf(e) {
|
|
17051
17058
|
return (0, w.useSyncExternalStore)(e.subscribeInteraction, e.getInteractionSnapshot, e.getInteractionSnapshot);
|
|
17052
17059
|
}
|
|
17053
|
-
function
|
|
17060
|
+
function qf(e) {
|
|
17054
17061
|
return (0, w.useSyncExternalStore)(e.subscribeMenuPortalTarget, e.getMenuPortalTarget, e.getMenuPortalTarget);
|
|
17055
17062
|
}
|
|
17056
|
-
function
|
|
17057
|
-
let e = (0, w.useContext)(
|
|
17063
|
+
function Jf() {
|
|
17064
|
+
let e = (0, w.useContext)(Wf);
|
|
17058
17065
|
if (e === null) throw Error("Captions runtime hooks must be used within CaptionsRuntimeProvider");
|
|
17059
17066
|
return e;
|
|
17060
17067
|
}
|
|
17061
|
-
function
|
|
17062
|
-
return (0, w.useContext)(
|
|
17068
|
+
function Yf() {
|
|
17069
|
+
return (0, w.useContext)(Wf);
|
|
17063
17070
|
}
|
|
17064
|
-
function
|
|
17071
|
+
function Xf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17065
17072
|
return /* @__PURE__ */ (0, N.jsx)("span", {
|
|
17066
17073
|
"aria-hidden": "true",
|
|
17067
17074
|
"data-ltp-capability": e.key,
|
|
@@ -17071,14 +17078,14 @@ function Yf({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17071
17078
|
hidden: !0
|
|
17072
17079
|
});
|
|
17073
17080
|
}
|
|
17074
|
-
function
|
|
17075
|
-
let r = Lt(oi), i = fd(), a =
|
|
17076
|
-
(0, w.useLayoutEffect)(() =>
|
|
17077
|
-
let
|
|
17078
|
-
let e =
|
|
17081
|
+
function Zf({ children: e, generation: t, media: n }) {
|
|
17082
|
+
let r = Lt(oi), i = fd(), a = Rf(), o = Kf(Xm().getModule("captions")), [s, c] = (0, w.useState)(Object.freeze([])), [l, u] = (0, w.useState)(null), [d, f] = (0, w.useState)(0);
|
|
17083
|
+
(0, w.useLayoutEffect)(() => f((e) => e + 1), [t]);
|
|
17084
|
+
let p = (0, w.useMemo)(() => {
|
|
17085
|
+
let e = jf(n);
|
|
17079
17086
|
return Object.freeze(i.content.tracks.flatMap((t, n) => {
|
|
17080
|
-
if (!
|
|
17081
|
-
let r = e[n], i = r?.id ??
|
|
17087
|
+
if (!zf(t.kind ?? "")) return [];
|
|
17088
|
+
let r = e[n], i = r?.id ?? Vf(n);
|
|
17082
17089
|
if (r?.hasAttribute("data-ltp-track-failed")) return [];
|
|
17083
17090
|
let a = r?.track;
|
|
17084
17091
|
return [Object.freeze({
|
|
@@ -17094,56 +17101,74 @@ function Xf({ children: e, generation: t, media: n }) {
|
|
|
17094
17101
|
o.failedTrackIds,
|
|
17095
17102
|
n,
|
|
17096
17103
|
r?.textTrackList,
|
|
17097
|
-
|
|
17098
|
-
]),
|
|
17104
|
+
d
|
|
17105
|
+
]), m = p.find((e) => Bf(e.mode)) ?? null;
|
|
17099
17106
|
(0, w.useLayoutEffect)(() => {
|
|
17100
|
-
if (n !== null) return
|
|
17101
|
-
for (let t of e)
|
|
17107
|
+
if (n !== null) return Ff(n, (e) => {
|
|
17108
|
+
for (let t of e) zf(t.kind) && t.mode === "showing" && (t.mode = "hidden");
|
|
17102
17109
|
});
|
|
17103
17110
|
}, [
|
|
17104
17111
|
t,
|
|
17105
17112
|
n,
|
|
17106
17113
|
r?.textTrackList
|
|
17107
17114
|
]), (0, w.useEffect)(() => {
|
|
17108
|
-
let e = n === null ||
|
|
17115
|
+
let e = n === null || m === null ? void 0 : Array.from(n.textTracks).find((e) => e.id === m.id);
|
|
17109
17116
|
if (e === void 0) {
|
|
17110
17117
|
c(Object.freeze([]));
|
|
17111
17118
|
return;
|
|
17112
17119
|
}
|
|
17113
|
-
return
|
|
17120
|
+
return Uf(e, c);
|
|
17114
17121
|
}, [
|
|
17115
17122
|
t,
|
|
17116
17123
|
n,
|
|
17117
|
-
|
|
17124
|
+
m?.id
|
|
17118
17125
|
]);
|
|
17119
|
-
let
|
|
17120
|
-
|
|
17121
|
-
|
|
17122
|
-
|
|
17123
|
-
|
|
17124
|
-
}, [
|
|
17126
|
+
let h = (0, w.useCallback)((e) => {
|
|
17127
|
+
u((t) => ({
|
|
17128
|
+
enabled: e,
|
|
17129
|
+
generation: (t?.generation ?? 0) + 1
|
|
17130
|
+
}));
|
|
17131
|
+
}, []), g = (0, w.useCallback)(() => {
|
|
17132
|
+
let e = m === null;
|
|
17133
|
+
a.setCaptions(e), h(e);
|
|
17134
|
+
}, [
|
|
17135
|
+
h,
|
|
17136
|
+
m,
|
|
17137
|
+
a
|
|
17138
|
+
]), _ = (0, w.useCallback)(() => {
|
|
17139
|
+
a.setCaptions(!1), h(!1);
|
|
17140
|
+
}, [h, a]), v = (0, w.useCallback)((e) => {
|
|
17141
|
+
let t = p.find((t) => t.id === e);
|
|
17142
|
+
t !== void 0 && (a.selectCaptionTrack(t.id, t.language), h(!0));
|
|
17143
|
+
}, [
|
|
17144
|
+
h,
|
|
17145
|
+
p,
|
|
17146
|
+
a
|
|
17147
|
+
]), y = (0, w.useMemo)(() => Object.freeze({
|
|
17125
17148
|
activeCues: s,
|
|
17126
|
-
|
|
17127
|
-
|
|
17128
|
-
|
|
17129
|
-
|
|
17130
|
-
|
|
17131
|
-
|
|
17149
|
+
announcement: l,
|
|
17150
|
+
available: p.length > 0,
|
|
17151
|
+
disable: _,
|
|
17152
|
+
selectedTrack: m,
|
|
17153
|
+
tracks: p,
|
|
17154
|
+
selectTrack: v,
|
|
17155
|
+
toggle: g
|
|
17132
17156
|
}), [
|
|
17133
17157
|
s,
|
|
17158
|
+
l,
|
|
17159
|
+
_,
|
|
17160
|
+
v,
|
|
17134
17161
|
m,
|
|
17135
|
-
|
|
17136
|
-
|
|
17137
|
-
p,
|
|
17138
|
-
d
|
|
17162
|
+
g,
|
|
17163
|
+
p
|
|
17139
17164
|
]);
|
|
17140
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
17141
|
-
value:
|
|
17165
|
+
return /* @__PURE__ */ (0, N.jsx)(Wf, {
|
|
17166
|
+
value: y,
|
|
17142
17167
|
children: e
|
|
17143
17168
|
});
|
|
17144
17169
|
}
|
|
17145
|
-
function
|
|
17146
|
-
let n =
|
|
17170
|
+
function Qf({ index: e, track: t }) {
|
|
17171
|
+
let n = Xm().getModule("captions"), r = Rf(), i = Vf(e), a = zf(t.kind ?? "");
|
|
17147
17172
|
return /* @__PURE__ */ (0, N.jsx)("track", {
|
|
17148
17173
|
"data-ltp-authored-track": "",
|
|
17149
17174
|
"data-ltp-caption-track": a || void 0,
|
|
@@ -17157,15 +17182,15 @@ function Zf({ index: e, track: t }) {
|
|
|
17157
17182
|
srcLang: t.srclang
|
|
17158
17183
|
});
|
|
17159
17184
|
}
|
|
17160
|
-
function
|
|
17185
|
+
function $f({ enabled: e }) {
|
|
17161
17186
|
return /* @__PURE__ */ (0, N.jsx)("span", {
|
|
17162
17187
|
"aria-hidden": "true",
|
|
17163
17188
|
className: "ltp-captions-control__icon",
|
|
17164
17189
|
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: e ? "subtitles-on" : "subtitles-off" })
|
|
17165
17190
|
});
|
|
17166
17191
|
}
|
|
17167
|
-
function
|
|
17168
|
-
let e =
|
|
17192
|
+
function ep() {
|
|
17193
|
+
let e = Jf(), t = qd("enableCaptions"), n = qd("disableCaptions"), r = e.selectedTrack !== null, i = r ? n : t;
|
|
17169
17194
|
return /* @__PURE__ */ (0, N.jsxs)(Zu.Root, {
|
|
17170
17195
|
side: "top",
|
|
17171
17196
|
children: [/* @__PURE__ */ (0, N.jsx)(Zu.Trigger, { render: /* @__PURE__ */ (0, N.jsx)("button", {
|
|
@@ -17174,15 +17199,15 @@ function $f() {
|
|
|
17174
17199
|
className: "ltp-core-button ltp-captions-control",
|
|
17175
17200
|
onClick: e.toggle,
|
|
17176
17201
|
type: "button",
|
|
17177
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
17202
|
+
children: /* @__PURE__ */ (0, N.jsx)($f, { enabled: r })
|
|
17178
17203
|
}) }), /* @__PURE__ */ (0, N.jsx)(Zu.Popup, {
|
|
17179
17204
|
className: "ltp-core-tooltip",
|
|
17180
17205
|
children: /* @__PURE__ */ (0, N.jsx)(Zu.Label, { children: i })
|
|
17181
17206
|
})]
|
|
17182
17207
|
});
|
|
17183
17208
|
}
|
|
17184
|
-
function
|
|
17185
|
-
let n =
|
|
17209
|
+
function tp({ module: e, state: t }) {
|
|
17210
|
+
let n = Jf(), r = qd("captions"), i = qd("captionsOffOption"), a = n.selectedTrack?.id ?? "off";
|
|
17186
17211
|
return /* @__PURE__ */ (0, N.jsx)(q.Popup, {
|
|
17187
17212
|
className: "ltp-captions-menu",
|
|
17188
17213
|
"data-ltp-capability": "captions",
|
|
@@ -17221,13 +17246,13 @@ function ep({ module: e, state: t }) {
|
|
|
17221
17246
|
})
|
|
17222
17247
|
});
|
|
17223
17248
|
}
|
|
17224
|
-
function
|
|
17225
|
-
let i =
|
|
17249
|
+
function np({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17250
|
+
let i = Gf(e), a = Yf(), o = Kf(i), s = qf(i), c = gf(), l = qd("captions"), u = a?.selectedTrack !== null;
|
|
17226
17251
|
return (0, w.useEffect)(() => {
|
|
17227
17252
|
c && i.close();
|
|
17228
17253
|
}, [c, i]), (0, w.useEffect)(() => () => {
|
|
17229
17254
|
i.close();
|
|
17230
|
-
}, [i]), a === null ? /* @__PURE__ */ (0, N.jsx)(
|
|
17255
|
+
}, [i]), a === null ? /* @__PURE__ */ (0, N.jsx)(Xf, {
|
|
17231
17256
|
module: e,
|
|
17232
17257
|
slot: t,
|
|
17233
17258
|
state: n,
|
|
@@ -17237,7 +17262,7 @@ function tp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17237
17262
|
"data-ltp-slot": t,
|
|
17238
17263
|
"data-ltp-state": n,
|
|
17239
17264
|
"data-ltp-surface": r,
|
|
17240
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
17265
|
+
children: /* @__PURE__ */ (0, N.jsx)(ep, {})
|
|
17241
17266
|
}) : /* @__PURE__ */ (0, N.jsxs)(q.Root, {
|
|
17242
17267
|
align: "end",
|
|
17243
17268
|
onOpenChange: (e) => i.setOpen(e),
|
|
@@ -17253,21 +17278,21 @@ function tp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17253
17278
|
"data-ltp-slot": t,
|
|
17254
17279
|
"data-ltp-state": n,
|
|
17255
17280
|
"data-ltp-surface": r,
|
|
17256
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
17281
|
+
children: /* @__PURE__ */ (0, N.jsx)($f, { enabled: u })
|
|
17257
17282
|
}) }), /* @__PURE__ */ (0, N.jsx)(Zu.Popup, {
|
|
17258
17283
|
className: "ltp-core-tooltip",
|
|
17259
17284
|
children: /* @__PURE__ */ (0, N.jsx)(Zu.Label, { children: l })
|
|
17260
17285
|
})]
|
|
17261
|
-
}), c || s === null ? null : (0, Dl.createPortal)(/* @__PURE__ */ (0, N.jsx)(
|
|
17286
|
+
}), c || s === null ? null : (0, Dl.createPortal)(/* @__PURE__ */ (0, N.jsx)(tp, {
|
|
17262
17287
|
module: i,
|
|
17263
17288
|
state: n
|
|
17264
17289
|
}), s)]
|
|
17265
17290
|
}) : null;
|
|
17266
17291
|
}
|
|
17267
|
-
function
|
|
17268
|
-
|
|
17269
|
-
let i =
|
|
17270
|
-
return i === null ? /* @__PURE__ */ (0, N.jsx)(
|
|
17292
|
+
function rp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17293
|
+
Gf(e);
|
|
17294
|
+
let i = Yf();
|
|
17295
|
+
return i === null ? /* @__PURE__ */ (0, N.jsx)(Xf, {
|
|
17271
17296
|
module: e,
|
|
17272
17297
|
slot: t,
|
|
17273
17298
|
state: n,
|
|
@@ -17285,8 +17310,8 @@ function np({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17285
17310
|
}, `${e}:${t}`))
|
|
17286
17311
|
});
|
|
17287
17312
|
}
|
|
17288
|
-
function
|
|
17289
|
-
let i =
|
|
17313
|
+
function ip({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17314
|
+
let i = Gf(e), a = (0, w.useMemo)(() => (e) => i.setMenuPortalTarget(e), [i]);
|
|
17290
17315
|
return /* @__PURE__ */ (0, N.jsx)("span", {
|
|
17291
17316
|
className: "ltp-captions-menu-anchor",
|
|
17292
17317
|
"data-ltp-capability": "captions",
|
|
@@ -17298,7 +17323,7 @@ function rp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17298
17323
|
}
|
|
17299
17324
|
//#endregion
|
|
17300
17325
|
//#region src/capabilities/speed.tsx
|
|
17301
|
-
function
|
|
17326
|
+
function ap(e, t, n) {
|
|
17302
17327
|
if (e.length === 0) return null;
|
|
17303
17328
|
let r = e.indexOf(t);
|
|
17304
17329
|
if (r >= 0) return e[(r + (n === "forward" ? 1 : -1) + e.length) % e.length] ?? null;
|
|
@@ -17309,12 +17334,12 @@ function ip(e, t, n) {
|
|
|
17309
17334
|
}
|
|
17310
17335
|
return e.at(-1) ?? null;
|
|
17311
17336
|
}
|
|
17312
|
-
function
|
|
17337
|
+
function op(e) {
|
|
17313
17338
|
return `${e}x`;
|
|
17314
17339
|
}
|
|
17315
|
-
function
|
|
17340
|
+
function sp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17316
17341
|
if (e.key !== "speed") throw Error("Expected the speed capability module");
|
|
17317
|
-
let i = Lt(ai), a = fd(), o = Kd(), s =
|
|
17342
|
+
let i = Lt(ai), a = fd(), o = Kd(), s = Rf(), c = gf(), l = Mc("speedUp"), [u] = (0, w.useState)(() => new Lo()), d = i?.playbackRate ?? a.initialState.playbackRate, f = Vd(o, "playbackRate", { rate: d }), p = i ? {
|
|
17318
17343
|
playbackRate: d,
|
|
17319
17344
|
playbackRates: a.capabilities.speed.options,
|
|
17320
17345
|
setPlaybackRate: (e) => s.setPlaybackRate(e)
|
|
@@ -17328,7 +17353,7 @@ function op({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17328
17353
|
isDisabled: () => c || p === null,
|
|
17329
17354
|
onActivate: () => {
|
|
17330
17355
|
if (p === null) return;
|
|
17331
|
-
let e =
|
|
17356
|
+
let e = ap(p.playbackRates, p.playbackRate, "forward");
|
|
17332
17357
|
e !== null && s.setPlaybackRate(e);
|
|
17333
17358
|
}
|
|
17334
17359
|
});
|
|
@@ -17350,7 +17375,7 @@ function op({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17350
17375
|
children: /* @__PURE__ */ (0, N.jsx)("span", {
|
|
17351
17376
|
"aria-hidden": "true",
|
|
17352
17377
|
className: "ltp-speed-control__value",
|
|
17353
|
-
children:
|
|
17378
|
+
children: op(m.rate)
|
|
17354
17379
|
})
|
|
17355
17380
|
});
|
|
17356
17381
|
return /* @__PURE__ */ (0, N.jsxs)(Zu.Root, {
|
|
@@ -17364,7 +17389,7 @@ function op({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17364
17389
|
}
|
|
17365
17390
|
//#endregion
|
|
17366
17391
|
//#region src/capabilities/share.tsx
|
|
17367
|
-
var
|
|
17392
|
+
var cp = Object.freeze([
|
|
17368
17393
|
"link",
|
|
17369
17394
|
"embed",
|
|
17370
17395
|
"facebook",
|
|
@@ -17372,13 +17397,13 @@ var sp = Object.freeze([
|
|
|
17372
17397
|
"linkedin",
|
|
17373
17398
|
"whatsapp",
|
|
17374
17399
|
"more"
|
|
17375
|
-
]),
|
|
17376
|
-
function
|
|
17400
|
+
]), lp = 574;
|
|
17401
|
+
function up(e, t = typeof navigator < "u" && typeof navigator.share == "function") {
|
|
17377
17402
|
if (!e.canonicalUrl) return [];
|
|
17378
17403
|
let n = new Set(e.targets);
|
|
17379
|
-
return
|
|
17404
|
+
return cp.filter((r) => n.has(r) ? r === "embed" ? !!e.embedUrl : r !== "more" || t : !1);
|
|
17380
17405
|
}
|
|
17381
|
-
function
|
|
17406
|
+
function dp(e, t) {
|
|
17382
17407
|
let n = {
|
|
17383
17408
|
author: t.author ?? "",
|
|
17384
17409
|
title: t.title ?? "",
|
|
@@ -17386,25 +17411,29 @@ function up(e, t) {
|
|
|
17386
17411
|
};
|
|
17387
17412
|
return e.replace(/\{([^{}]+)\}/g, (e, t) => Object.hasOwn(n, t) ? n[t] : e);
|
|
17388
17413
|
}
|
|
17389
|
-
function
|
|
17414
|
+
function fp(e) {
|
|
17390
17415
|
return e.replace(/[&"<>]/g, (e) => e === "&" ? "&" : e === "\"" ? """ : e === "<" ? "<" : ">");
|
|
17391
17416
|
}
|
|
17392
|
-
function
|
|
17393
|
-
let r =
|
|
17417
|
+
function pp(e, t, n) {
|
|
17418
|
+
let r = fp(e), i = fp(t);
|
|
17394
17419
|
return `<iframe src="${r}" style="aspect-ratio: ${n === "portrait" ? "9 / 16" : "16 / 9"}; display: block; width: 100%; margin: 0; padding: 0; border: 0; border-radius: 0 0 0 30px; background: transparent; color-scheme: light; user-select: none;" title="${i}" loading="lazy" allowfullscreen frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; web-share"></iframe>`;
|
|
17395
17420
|
}
|
|
17396
|
-
function
|
|
17421
|
+
function mp(e) {
|
|
17397
17422
|
if (e.key !== "share") throw Error("Expected the share capability module");
|
|
17398
17423
|
return e;
|
|
17399
17424
|
}
|
|
17400
|
-
function
|
|
17425
|
+
function hp(e) {
|
|
17401
17426
|
return (0, w.useSyncExternalStore)(e.subscribeInteraction, e.getInteractionSnapshot, e.getInteractionSnapshot);
|
|
17402
17427
|
}
|
|
17403
|
-
function
|
|
17404
|
-
|
|
17428
|
+
function gp(e) {
|
|
17429
|
+
let t = e.ownerDocument;
|
|
17430
|
+
return (t.fullscreenElement ?? t.webkitFullscreenElement) === e;
|
|
17431
|
+
}
|
|
17432
|
+
function _p(e) {
|
|
17433
|
+
return e !== null && e.classList.contains("ltp-landscape") && !gp(e) && e.clientWidth > 0 && e.clientWidth < lp;
|
|
17405
17434
|
}
|
|
17406
|
-
function
|
|
17407
|
-
let n =
|
|
17435
|
+
function vp({ children: e, module: t }) {
|
|
17436
|
+
let n = hp(t);
|
|
17408
17437
|
return /* @__PURE__ */ (0, N.jsx)(ru.Root, {
|
|
17409
17438
|
closeOnEscape: !1,
|
|
17410
17439
|
closeOnOutsideClick: !1,
|
|
@@ -17419,8 +17448,8 @@ function gp({ children: e, module: t }) {
|
|
|
17419
17448
|
})
|
|
17420
17449
|
});
|
|
17421
17450
|
}
|
|
17422
|
-
function
|
|
17423
|
-
let i = mp(
|
|
17451
|
+
function yp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17452
|
+
let i = hp(mp(e)), { playerTrigger: a } = fd().capabilities.share, o = qd("share");
|
|
17424
17453
|
return !a || i.targets.length === 0 ? null : /* @__PURE__ */ (0, N.jsx)(Sl.Trigger, {
|
|
17425
17454
|
"aria-label": o,
|
|
17426
17455
|
className: "ltp-share-trigger",
|
|
@@ -17432,31 +17461,31 @@ function _p({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17432
17461
|
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: "share" })
|
|
17433
17462
|
});
|
|
17434
17463
|
}
|
|
17435
|
-
var
|
|
17464
|
+
var bp = {
|
|
17436
17465
|
facebook: "facebook",
|
|
17437
17466
|
x: "x",
|
|
17438
17467
|
linkedin: "linkedin",
|
|
17439
17468
|
whatsapp: "whatsapp"
|
|
17440
|
-
},
|
|
17469
|
+
}, xp = {
|
|
17441
17470
|
facebook: "shareFacebook",
|
|
17442
17471
|
x: "shareX",
|
|
17443
17472
|
linkedin: "shareLinkedIn",
|
|
17444
17473
|
whatsapp: "shareWhatsApp",
|
|
17445
17474
|
more: "shareMore"
|
|
17446
17475
|
};
|
|
17447
|
-
function
|
|
17476
|
+
function Sp(e) {
|
|
17448
17477
|
let t = window.open(e, "_blank", "noopener,noreferrer");
|
|
17449
17478
|
t && (t.opener = null);
|
|
17450
17479
|
}
|
|
17451
|
-
function
|
|
17452
|
-
let { canonicalUrl: n = "", templates: r } = t.capabilities.share, i =
|
|
17480
|
+
function Cp(e, t) {
|
|
17481
|
+
let { canonicalUrl: n = "", templates: r } = t.capabilities.share, i = dp(r.message, {
|
|
17453
17482
|
author: t.content.author,
|
|
17454
17483
|
title: t.content.title,
|
|
17455
17484
|
url: n
|
|
17456
17485
|
});
|
|
17457
17486
|
return e === "facebook" ? `https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(n)}` : e === "x" ? `https://x.com/intent/post?text=${encodeURIComponent(i)}` : e === "linkedin" ? `https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(n)}` : `https://wa.me/?text=${encodeURIComponent(i)}`;
|
|
17458
17487
|
}
|
|
17459
|
-
async function
|
|
17488
|
+
async function wp(e) {
|
|
17460
17489
|
try {
|
|
17461
17490
|
if (navigator.clipboard?.writeText) return await navigator.clipboard.writeText(e), !0;
|
|
17462
17491
|
let t = document.createElement("textarea");
|
|
@@ -17467,9 +17496,9 @@ async function Sp(e) {
|
|
|
17467
17496
|
return !1;
|
|
17468
17497
|
}
|
|
17469
17498
|
}
|
|
17470
|
-
function
|
|
17471
|
-
let r = fd(), i = Kd(), a = e.mode === "embed" && r.capabilities.share.embedUrl ?
|
|
17472
|
-
let t = r.capabilities.share.canonicalUrl ?? "", n =
|
|
17499
|
+
function Tp({ interaction: e, module: t, titleId: n }) {
|
|
17500
|
+
let r = fd(), i = Kd(), a = e.mode === "embed" && r.capabilities.share.embedUrl ? pp(r.capabilities.share.embedUrl, r.content.title ?? i.playerLabel, r.layout) : r.capabilities.share.canonicalUrl ?? "", o = e.targets.filter((e) => e !== "link" && e !== "embed"), s = async (e) => {
|
|
17501
|
+
let t = r.capabilities.share.canonicalUrl ?? "", n = dp(r.capabilities.share.templates.message, {
|
|
17473
17502
|
author: r.content.author,
|
|
17474
17503
|
title: r.content.title,
|
|
17475
17504
|
url: t
|
|
@@ -17484,7 +17513,7 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17484
17513
|
} catch {}
|
|
17485
17514
|
return;
|
|
17486
17515
|
}
|
|
17487
|
-
|
|
17516
|
+
Sp(Cp(e, r));
|
|
17488
17517
|
};
|
|
17489
17518
|
return /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
17490
17519
|
className: "ltp-share-dialog__card",
|
|
@@ -17494,6 +17523,8 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17494
17523
|
children: [/* @__PURE__ */ (0, N.jsx)("h2", {
|
|
17495
17524
|
className: "ltp-share-dialog__title",
|
|
17496
17525
|
id: n,
|
|
17526
|
+
ref: (e) => e?.setAttribute("autofocus", ""),
|
|
17527
|
+
tabIndex: -1,
|
|
17497
17528
|
children: i.share
|
|
17498
17529
|
}), /* @__PURE__ */ (0, N.jsx)("button", {
|
|
17499
17530
|
"aria-label": i.closeShare,
|
|
@@ -17521,7 +17552,7 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17521
17552
|
type: "button",
|
|
17522
17553
|
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: "copy-code" })
|
|
17523
17554
|
}) : null] }), o.map((e) => /* @__PURE__ */ (0, N.jsx)("button", {
|
|
17524
|
-
"aria-label": i[
|
|
17555
|
+
"aria-label": i[xp[e]],
|
|
17525
17556
|
className: "ltp-share-dialog__target",
|
|
17526
17557
|
onClick: () => void s(e),
|
|
17527
17558
|
type: "button",
|
|
@@ -17529,7 +17560,7 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17529
17560
|
"aria-hidden": "true",
|
|
17530
17561
|
className: "ltp-share-dialog__more",
|
|
17531
17562
|
children: "…"
|
|
17532
|
-
}) : /* @__PURE__ */ (0, N.jsx)(Y, { name:
|
|
17563
|
+
}) : /* @__PURE__ */ (0, N.jsx)(Y, { name: bp[e] })
|
|
17533
17564
|
}, e))]
|
|
17534
17565
|
}),
|
|
17535
17566
|
e.mode === null ? null : /* @__PURE__ */ (0, N.jsxs)("section", {
|
|
@@ -17550,7 +17581,7 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17550
17581
|
/* @__PURE__ */ (0, N.jsx)("button", {
|
|
17551
17582
|
className: "ltp-share-dialog__copy",
|
|
17552
17583
|
onClick: async () => {
|
|
17553
|
-
await
|
|
17584
|
+
await wp(a) && t.setCopied(!0);
|
|
17554
17585
|
},
|
|
17555
17586
|
type: "button",
|
|
17556
17587
|
children: e.copied ? i.copied : i.copy
|
|
@@ -17566,7 +17597,7 @@ function Cp({ interaction: e, module: t, titleId: n }) {
|
|
|
17566
17597
|
]
|
|
17567
17598
|
});
|
|
17568
17599
|
}
|
|
17569
|
-
function
|
|
17600
|
+
function Ep({ interaction: e, module: t }) {
|
|
17570
17601
|
let n = (0, w.useId)();
|
|
17571
17602
|
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(Sl.Backdrop, {
|
|
17572
17603
|
className: "ltp-share-dialog__player-backdrop",
|
|
@@ -17578,14 +17609,14 @@ function wp({ interaction: e, module: t }) {
|
|
|
17578
17609
|
onClick: (e) => {
|
|
17579
17610
|
e.target === e.currentTarget && t.close();
|
|
17580
17611
|
},
|
|
17581
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
17612
|
+
children: /* @__PURE__ */ (0, N.jsx)(Tp, {
|
|
17582
17613
|
interaction: e,
|
|
17583
17614
|
module: t,
|
|
17584
17615
|
titleId: n
|
|
17585
17616
|
})
|
|
17586
17617
|
})] });
|
|
17587
17618
|
}
|
|
17588
|
-
function
|
|
17619
|
+
function Dp(e) {
|
|
17589
17620
|
if (e.key !== "Tab") return;
|
|
17590
17621
|
let t = [...e.currentTarget.querySelectorAll("button, input")].filter((e) => !e.hasAttribute("disabled") && e.tabIndex >= 0);
|
|
17591
17622
|
if (t.length === 0) {
|
|
@@ -17595,11 +17626,11 @@ function Tp(e) {
|
|
|
17595
17626
|
let n = t[0], r = t.at(-1);
|
|
17596
17627
|
e.shiftKey && document.activeElement === n ? (e.preventDefault(), r?.focus()) : !e.shiftKey && document.activeElement === r && (e.preventDefault(), n?.focus());
|
|
17597
17628
|
}
|
|
17598
|
-
function
|
|
17629
|
+
function Op({ interaction: e, module: t }) {
|
|
17599
17630
|
let n = (0, w.useRef)(null), r = (0, w.useRef)(null), i = (0, w.useId)();
|
|
17600
17631
|
return (0, w.useLayoutEffect)(() => {
|
|
17601
17632
|
let e = n.current;
|
|
17602
|
-
if (e) return r.current = document.activeElement instanceof HTMLElement ? document.activeElement : null, e.showModal(), e.querySelector("
|
|
17633
|
+
if (e) return r.current = document.activeElement instanceof HTMLElement ? document.activeElement : null, e.showModal(), e.querySelector(".ltp-share-dialog__title")?.focus(), () => {
|
|
17603
17634
|
e.open && e.close();
|
|
17604
17635
|
let t = r.current;
|
|
17605
17636
|
r.current = null, t?.isConnected && t.focus();
|
|
@@ -17615,19 +17646,19 @@ function Ep({ interaction: e, module: t }) {
|
|
|
17615
17646
|
onClick: (e) => {
|
|
17616
17647
|
e.target === e.currentTarget && t.close();
|
|
17617
17648
|
},
|
|
17618
|
-
onKeyDown:
|
|
17649
|
+
onKeyDown: Dp,
|
|
17619
17650
|
ref: n,
|
|
17620
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
17651
|
+
children: /* @__PURE__ */ (0, N.jsx)(Tp, {
|
|
17621
17652
|
interaction: e,
|
|
17622
17653
|
module: t,
|
|
17623
17654
|
titleId: i
|
|
17624
17655
|
})
|
|
17625
17656
|
});
|
|
17626
17657
|
}
|
|
17627
|
-
function
|
|
17628
|
-
let t =
|
|
17658
|
+
function kp({ module: e }) {
|
|
17659
|
+
let t = mp(e), n = hp(t), r = Bt(), i = Lt(), a = (0, w.useRef)(!1);
|
|
17629
17660
|
return (0, w.useLayoutEffect)(() => {
|
|
17630
|
-
if (n.open && n.source === "player" &&
|
|
17661
|
+
if (n.open && n.source === "player" && _p(r)) {
|
|
17631
17662
|
let e = ii(i.state);
|
|
17632
17663
|
!a.current && e && !e.paused && (a.current = !0, e.pause());
|
|
17633
17664
|
return;
|
|
@@ -17638,17 +17669,17 @@ function Dp({ module: e }) {
|
|
|
17638
17669
|
n.open,
|
|
17639
17670
|
n.source,
|
|
17640
17671
|
i
|
|
17641
|
-
]), !n.open || n.source === null || r === null ? null : (0, Dl.createPortal)(n.source === "player" ? /* @__PURE__ */ (0, N.jsx)(
|
|
17672
|
+
]), !n.open || n.source === null || r === null ? null : (0, Dl.createPortal)(n.source === "player" ? /* @__PURE__ */ (0, N.jsx)(Ep, {
|
|
17642
17673
|
interaction: n,
|
|
17643
17674
|
module: t
|
|
17644
|
-
}) : /* @__PURE__ */ (0, N.jsx)(
|
|
17675
|
+
}) : /* @__PURE__ */ (0, N.jsx)(Op, {
|
|
17645
17676
|
interaction: n,
|
|
17646
17677
|
module: t
|
|
17647
17678
|
}), r);
|
|
17648
17679
|
}
|
|
17649
17680
|
//#endregion
|
|
17650
17681
|
//#region src/presentation-navigation.ts
|
|
17651
|
-
var
|
|
17682
|
+
var Ap = "[data-ltp-presentation-stage]", jp = "ltp-presentation-navigation", Mp = [
|
|
17652
17683
|
"input",
|
|
17653
17684
|
"select",
|
|
17654
17685
|
"textarea",
|
|
@@ -17665,38 +17696,38 @@ var Op = "[data-ltp-presentation-stage]", kp = "ltp-presentation-navigation", Ap
|
|
|
17665
17696
|
"[role=\"tablist\"][aria-orientation=\"vertical\"]",
|
|
17666
17697
|
"[role=\"dialog\"][aria-modal=\"true\"]"
|
|
17667
17698
|
].join(",");
|
|
17668
|
-
function
|
|
17699
|
+
function Np(e) {
|
|
17669
17700
|
if (!(e instanceof HTMLElement) || e.matches("[role=\"tablist\"]:not([aria-orientation=\"vertical\"]), [role=\"tablist\"][aria-orientation=\"horizontal\"]")) return !1;
|
|
17670
17701
|
let t = getComputedStyle(e).overflowY;
|
|
17671
17702
|
return (t === "auto" || t === "scroll" || t === "overlay") && e.scrollHeight > e.clientHeight;
|
|
17672
17703
|
}
|
|
17673
|
-
function
|
|
17704
|
+
function Pp(e, t) {
|
|
17674
17705
|
if (!(e instanceof Element)) return !1;
|
|
17675
17706
|
for (let n = e; n && n !== t;) {
|
|
17676
|
-
if (n.matches(
|
|
17707
|
+
if (n.matches(Mp) || Np(n)) return !0;
|
|
17677
17708
|
n = n.parentElement;
|
|
17678
17709
|
}
|
|
17679
17710
|
return !1;
|
|
17680
17711
|
}
|
|
17681
|
-
function
|
|
17682
|
-
return !e.dispatchEvent(new CustomEvent(
|
|
17712
|
+
function Fp(e, t) {
|
|
17713
|
+
return !e.dispatchEvent(new CustomEvent(jp, {
|
|
17683
17714
|
cancelable: !0,
|
|
17684
17715
|
detail: { direction: t }
|
|
17685
17716
|
}));
|
|
17686
17717
|
}
|
|
17687
|
-
function
|
|
17718
|
+
function Ip(e) {
|
|
17688
17719
|
if (!(e instanceof CustomEvent)) return null;
|
|
17689
17720
|
let t = e.detail;
|
|
17690
17721
|
return t?.direction === "previous" || t?.direction === "next" ? t.direction : null;
|
|
17691
17722
|
}
|
|
17692
17723
|
//#endregion
|
|
17693
17724
|
//#region src/capabilities/context-panel.tsx
|
|
17694
|
-
var
|
|
17695
|
-
function
|
|
17696
|
-
let r = Math.min(
|
|
17725
|
+
var Lp = 420, Rp = 650, zp = 32, Bp = 192, Vp = 32;
|
|
17726
|
+
function Hp(e, t, n = []) {
|
|
17727
|
+
let r = Math.min(Bp, t.width * .12), i = t.width - e.width - Vp;
|
|
17697
17728
|
if (i < 452) return null;
|
|
17698
|
-
let a = Math.max(
|
|
17699
|
-
if (s <
|
|
17729
|
+
let a = Math.max(zp, Math.min(r, i - Lp)), o = (n) => Math.min(Rp, i - n, t.right - Vp - (e.right + n)), s = o(a);
|
|
17730
|
+
if (s < Lp && (a = zp, s = o(a)), s < Lp) return null;
|
|
17700
17731
|
let c = {
|
|
17701
17732
|
gap: a,
|
|
17702
17733
|
left: e.right + a,
|
|
@@ -17707,32 +17738,32 @@ function Bp(e, t, n = []) {
|
|
|
17707
17738
|
...c,
|
|
17708
17739
|
right: c.left + c.width,
|
|
17709
17740
|
bottom: c.top + c.height
|
|
17710
|
-
}, u = l.left >= t.left && l.right <= t.right -
|
|
17741
|
+
}, u = l.left >= t.left && l.right <= t.right - Vp && l.top >= t.top && l.bottom <= t.bottom, d = n.some((e) => e.width > 0 && e.height > 0 && l.left < e.right && l.right > e.left && l.top < e.bottom && l.bottom > e.top);
|
|
17711
17742
|
return u && !d ? c : null;
|
|
17712
17743
|
}
|
|
17713
|
-
function
|
|
17744
|
+
function Up(e) {
|
|
17714
17745
|
if (e.key !== "contextPanel") throw Error("Expected the context panel capability module");
|
|
17715
17746
|
return e;
|
|
17716
17747
|
}
|
|
17717
|
-
function
|
|
17748
|
+
function Wp(e) {
|
|
17718
17749
|
return (0, w.useSyncExternalStore)(e.subscribeInteraction, e.getInteractionSnapshot, e.getInteractionSnapshot);
|
|
17719
17750
|
}
|
|
17720
|
-
var
|
|
17721
|
-
function
|
|
17722
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
17751
|
+
var Gp = (0, w.createContext)(null);
|
|
17752
|
+
function Kp({ children: e, seek: t }) {
|
|
17753
|
+
return /* @__PURE__ */ (0, N.jsx)(Gp, {
|
|
17723
17754
|
value: { seek: t },
|
|
17724
17755
|
children: e
|
|
17725
17756
|
});
|
|
17726
17757
|
}
|
|
17727
|
-
function
|
|
17728
|
-
let e = (0, w.useContext)(
|
|
17758
|
+
function qp() {
|
|
17759
|
+
let e = (0, w.useContext)(Gp);
|
|
17729
17760
|
if (e === null) throw Error("Context panel surfaces require a runtime provider");
|
|
17730
17761
|
return e;
|
|
17731
17762
|
}
|
|
17732
|
-
var
|
|
17733
|
-
function
|
|
17734
|
-
let n =
|
|
17735
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
17763
|
+
var Jp = (0, w.createContext)(null);
|
|
17764
|
+
function Yp({ children: e, module: t }) {
|
|
17765
|
+
let n = Wp(t), r = (0, w.useId)();
|
|
17766
|
+
return /* @__PURE__ */ (0, N.jsx)(Jp, {
|
|
17736
17767
|
value: r,
|
|
17737
17768
|
children: /* @__PURE__ */ (0, N.jsx)(ru.Root, {
|
|
17738
17769
|
closeOnEscape: !1,
|
|
@@ -17749,28 +17780,28 @@ function qp({ children: e, module: t }) {
|
|
|
17749
17780
|
})
|
|
17750
17781
|
});
|
|
17751
17782
|
}
|
|
17752
|
-
var
|
|
17783
|
+
var Xp = {
|
|
17753
17784
|
knowledge: "key-concepts",
|
|
17754
17785
|
underlyingPublication: "underlying-publication",
|
|
17755
17786
|
relatedVideos: "related-videos"
|
|
17756
|
-
},
|
|
17787
|
+
}, Zp = {
|
|
17757
17788
|
knowledge: "openKnowledge",
|
|
17758
17789
|
underlyingPublication: "openUnderlyingPublication",
|
|
17759
17790
|
relatedVideos: "openRelatedVideos"
|
|
17760
17791
|
};
|
|
17761
|
-
function
|
|
17762
|
-
let i =
|
|
17792
|
+
function Qp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
17793
|
+
let i = Up(e), a = Wp(i), o = Kd(), s = gf(), c = (0, w.useContext)(Jp), l = (0, w.useId)(), u = c ?? l, d = (e, t = {}) => /* @__PURE__ */ (0, N.jsx)("button", {
|
|
17763
17794
|
...t,
|
|
17764
17795
|
"aria-controls": u,
|
|
17765
17796
|
"aria-disabled": s || void 0,
|
|
17766
|
-
"aria-label": o[
|
|
17797
|
+
"aria-label": o[Zp[e]],
|
|
17767
17798
|
"aria-pressed": a.view === e,
|
|
17768
17799
|
className: "ltp-context-panel-trigger",
|
|
17769
17800
|
onClick: (t) => {
|
|
17770
17801
|
t.preventDefault(), s || i.toggle(e);
|
|
17771
17802
|
},
|
|
17772
17803
|
type: "button",
|
|
17773
|
-
children: /* @__PURE__ */ (0, N.jsx)(Y, { name:
|
|
17804
|
+
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: Xp[e] })
|
|
17774
17805
|
});
|
|
17775
17806
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
17776
17807
|
className: "ltp-context-panel-triggers",
|
|
@@ -17784,7 +17815,7 @@ function Xp({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
17784
17815
|
}, e))
|
|
17785
17816
|
});
|
|
17786
17817
|
}
|
|
17787
|
-
function
|
|
17818
|
+
function $p(e) {
|
|
17788
17819
|
return {
|
|
17789
17820
|
bottom: e.bottom,
|
|
17790
17821
|
height: e.height,
|
|
@@ -17794,7 +17825,7 @@ function Zp(e) {
|
|
|
17794
17825
|
width: e.width
|
|
17795
17826
|
};
|
|
17796
17827
|
}
|
|
17797
|
-
function
|
|
17828
|
+
function em() {
|
|
17798
17829
|
let e = window.visualViewport, t = e?.offsetLeft ?? 0, n = e?.offsetTop ?? 0, r = e?.width ?? window.innerWidth, i = e?.height ?? window.innerHeight;
|
|
17799
17830
|
return {
|
|
17800
17831
|
left: t,
|
|
@@ -17805,7 +17836,7 @@ function Qp() {
|
|
|
17805
17836
|
bottom: n + i
|
|
17806
17837
|
};
|
|
17807
17838
|
}
|
|
17808
|
-
function
|
|
17839
|
+
function tm(e) {
|
|
17809
17840
|
let t = e.getBoundingClientRect(), n = getComputedStyle(e), r = t.left + Number.parseFloat(n.borderLeftWidth || "0") + Number.parseFloat(n.paddingLeft || "0"), i = t.right - Number.parseFloat(n.borderRightWidth || "0") - Number.parseFloat(n.paddingRight || "0"), a = t.top + Number.parseFloat(n.borderTopWidth || "0") + Number.parseFloat(n.paddingTop || "0"), o = t.bottom - Number.parseFloat(n.borderBottomWidth || "0") - Number.parseFloat(n.paddingBottom || "0");
|
|
17810
17841
|
return {
|
|
17811
17842
|
left: r,
|
|
@@ -17816,23 +17847,23 @@ function $p(e) {
|
|
|
17816
17847
|
height: o - a
|
|
17817
17848
|
};
|
|
17818
17849
|
}
|
|
17819
|
-
function
|
|
17850
|
+
function nm(e) {
|
|
17820
17851
|
return e.closest("[data-ltp-presentation-stage]") ?? e;
|
|
17821
17852
|
}
|
|
17822
|
-
function
|
|
17823
|
-
return e.matches("[data-ltp-presentation-stage]") ?
|
|
17853
|
+
function rm(e) {
|
|
17854
|
+
return e.matches("[data-ltp-presentation-stage]") ? $p(e.getBoundingClientRect()) : tm(e);
|
|
17824
17855
|
}
|
|
17825
|
-
function
|
|
17826
|
-
let n =
|
|
17856
|
+
function im(e, t) {
|
|
17857
|
+
let n = $p(e.getBoundingClientRect());
|
|
17827
17858
|
if (!t.matches("[data-ltp-presentation-stage]")) return n;
|
|
17828
|
-
let r =
|
|
17859
|
+
let r = $p(t.getBoundingClientRect());
|
|
17829
17860
|
return {
|
|
17830
17861
|
...n,
|
|
17831
17862
|
top: r.top,
|
|
17832
17863
|
bottom: r.top + n.height
|
|
17833
17864
|
};
|
|
17834
17865
|
}
|
|
17835
|
-
function
|
|
17866
|
+
function am(e, t) {
|
|
17836
17867
|
let n = t.left + t.width, r = t.top + t.height;
|
|
17837
17868
|
for (let i = e.parentElement; i && i !== document.body; i = i.parentElement) {
|
|
17838
17869
|
let e = getComputedStyle(i);
|
|
@@ -17846,7 +17877,7 @@ function rm(e, t) {
|
|
|
17846
17877
|
}
|
|
17847
17878
|
return !1;
|
|
17848
17879
|
}
|
|
17849
|
-
function
|
|
17880
|
+
function om(e, t) {
|
|
17850
17881
|
let [n, r] = (0, w.useState)({
|
|
17851
17882
|
open: !1,
|
|
17852
17883
|
placement: null
|
|
@@ -17877,9 +17908,9 @@ function im(e, t) {
|
|
|
17877
17908
|
});
|
|
17878
17909
|
return;
|
|
17879
17910
|
}
|
|
17880
|
-
let s =
|
|
17911
|
+
let s = nm(t);
|
|
17881
17912
|
s !== o && (o !== null && l?.unobserve(o), o = s, l?.observe(s), a = "", e = !0);
|
|
17882
|
-
let c =
|
|
17913
|
+
let c = im(n, s), u = rm(s), d = [...t.children].filter((e) => e !== i).map((e) => $p(e.getBoundingClientRect())), f = [
|
|
17883
17914
|
c,
|
|
17884
17915
|
u,
|
|
17885
17916
|
...d
|
|
@@ -17893,7 +17924,7 @@ function im(e, t) {
|
|
|
17893
17924
|
]).join(":");
|
|
17894
17925
|
if (!e && f === a) return;
|
|
17895
17926
|
a = f;
|
|
17896
|
-
let p =
|
|
17927
|
+
let p = Hp(c, u, d), m = p && !am(s, p) ? p : null;
|
|
17897
17928
|
r((e) => e.open && (e.placement === null && m === null || e.placement !== null && m !== null && e.placement.gap === m.gap && e.placement.height === m.height && e.placement.left === m.left && e.placement.top === m.top && e.placement.width === m.width) ? e : {
|
|
17898
17929
|
open: !0,
|
|
17899
17930
|
placement: m
|
|
@@ -17907,7 +17938,7 @@ function im(e, t) {
|
|
|
17907
17938
|
};
|
|
17908
17939
|
}, [t, e]), e && n.open ? n.placement : void 0;
|
|
17909
17940
|
}
|
|
17910
|
-
function
|
|
17941
|
+
function sm({ active: e, label: t, onSelect: n, tabs: r, text: i }) {
|
|
17911
17942
|
let a = (0, w.useRef)(/* @__PURE__ */ new Map()), o = (e, t) => {
|
|
17912
17943
|
let i = r.indexOf(t), o = e.key === "ArrowRight" ? (i + 1) % r.length : e.key === "ArrowLeft" ? (i - 1 + r.length) % r.length : e.key === "Home" ? 0 : e.key === "End" ? r.length - 1 : null;
|
|
17913
17944
|
if (o === null) return;
|
|
@@ -17934,15 +17965,15 @@ function am({ active: e, label: t, onSelect: n, tabs: r, text: i }) {
|
|
|
17934
17965
|
}, t))
|
|
17935
17966
|
});
|
|
17936
17967
|
}
|
|
17937
|
-
function
|
|
17968
|
+
function cm() {
|
|
17938
17969
|
let e = qd("generatedByAiDisclaimer");
|
|
17939
17970
|
return /* @__PURE__ */ (0, N.jsxs)("footer", {
|
|
17940
17971
|
className: "ltp-context-panel__ai-footer",
|
|
17941
17972
|
children: [/* @__PURE__ */ (0, N.jsx)(Y, { name: "ai-generated" }), /* @__PURE__ */ (0, N.jsx)("small", { children: e })]
|
|
17942
17973
|
});
|
|
17943
17974
|
}
|
|
17944
|
-
function
|
|
17945
|
-
let r = Kd(), i =
|
|
17975
|
+
function lm({ interaction: e, metadata: t, module: n }) {
|
|
17976
|
+
let r = Kd(), i = qp(), a = e.knowledgeTab;
|
|
17946
17977
|
if (a === null) return null;
|
|
17947
17978
|
let o, s;
|
|
17948
17979
|
if (a === "inANutshell") {
|
|
@@ -17967,7 +17998,7 @@ function sm({ interaction: e, metadata: t, module: n }) {
|
|
|
17967
17998
|
type: "button",
|
|
17968
17999
|
children: e.label
|
|
17969
18000
|
}, e.label))
|
|
17970
|
-
}), c ? /* @__PURE__ */ (0, N.jsx)(
|
|
18001
|
+
}), c ? /* @__PURE__ */ (0, N.jsx)(um, { concept: c }) : null]
|
|
17971
18002
|
});
|
|
17972
18003
|
} else if (a === "researchField") {
|
|
17973
18004
|
let e = t.researchField;
|
|
@@ -17984,17 +18015,17 @@ function sm({ interaction: e, metadata: t, module: n }) {
|
|
|
17984
18015
|
children: e?.entries?.map((e, t) => /* @__PURE__ */ (0, N.jsxs)("button", {
|
|
17985
18016
|
onClick: () => i.seek(e.start),
|
|
17986
18017
|
type: "button",
|
|
17987
|
-
children: [/* @__PURE__ */ (0, N.jsx)("time", { children:
|
|
18018
|
+
children: [/* @__PURE__ */ (0, N.jsx)("time", { children: ff(e.start) }), /* @__PURE__ */ (0, N.jsx)("span", { children: e.text })]
|
|
17988
18019
|
}, `${e.start}:${t}`))
|
|
17989
18020
|
});
|
|
17990
18021
|
}
|
|
17991
18022
|
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)("div", {
|
|
17992
18023
|
className: "ltp-context-panel__scroll",
|
|
17993
18024
|
children: o
|
|
17994
|
-
}), s ? /* @__PURE__ */ (0, N.jsx)(
|
|
18025
|
+
}), s ? /* @__PURE__ */ (0, N.jsx)(cm, {}) : null] });
|
|
17995
18026
|
}
|
|
17996
|
-
function
|
|
17997
|
-
let t =
|
|
18027
|
+
function um({ concept: e }) {
|
|
18028
|
+
let t = ff(e.start ?? 0), n = qd("playAt", { time: t }), r = n.indexOf(t), i = qp();
|
|
17998
18029
|
return /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
17999
18030
|
className: "ltp-context-panel__concept-description",
|
|
18000
18031
|
children: [/* @__PURE__ */ (0, N.jsx)("p", { children: e.description }), e.start === void 0 ? null : /* @__PURE__ */ (0, N.jsxs)("button", {
|
|
@@ -18008,7 +18039,7 @@ function cm({ concept: e }) {
|
|
|
18008
18039
|
})]
|
|
18009
18040
|
});
|
|
18010
18041
|
}
|
|
18011
|
-
function
|
|
18042
|
+
function dm({ items: e }) {
|
|
18012
18043
|
let t = Kd();
|
|
18013
18044
|
return /* @__PURE__ */ (0, N.jsx)("section", {
|
|
18014
18045
|
className: "ltp-context-panel__scroll ltp-context-panel__publications",
|
|
@@ -18040,7 +18071,7 @@ function lm({ items: e }) {
|
|
|
18040
18071
|
] }, `${e.url}:${n}`))
|
|
18041
18072
|
});
|
|
18042
18073
|
}
|
|
18043
|
-
function
|
|
18074
|
+
function fm({ video: e }) {
|
|
18044
18075
|
return /* @__PURE__ */ (0, N.jsxs)("a", {
|
|
18045
18076
|
className: "ltp-context-panel__video-card",
|
|
18046
18077
|
draggable: !1,
|
|
@@ -18061,38 +18092,38 @@ function um({ video: e }) {
|
|
|
18061
18092
|
})]
|
|
18062
18093
|
});
|
|
18063
18094
|
}
|
|
18064
|
-
function
|
|
18095
|
+
function pm({ interaction: e, metadata: t }) {
|
|
18065
18096
|
let n = e.relatedTab === "relatedVideos" ? t.related ?? [] : t.forYou ?? [];
|
|
18066
18097
|
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18067
18098
|
className: "ltp-context-panel__scroll",
|
|
18068
18099
|
children: /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18069
18100
|
className: "ltp-context-panel__video-grid",
|
|
18070
|
-
children: n.map((e, t) => /* @__PURE__ */ (0, N.jsx)(
|
|
18101
|
+
children: n.map((e, t) => /* @__PURE__ */ (0, N.jsx)(fm, { video: e }, `${e.url}:${t}`))
|
|
18071
18102
|
})
|
|
18072
|
-
}), t.generatedByAi ? /* @__PURE__ */ (0, N.jsx)(
|
|
18103
|
+
}), t.generatedByAi ? /* @__PURE__ */ (0, N.jsx)(cm, {}) : null] });
|
|
18073
18104
|
}
|
|
18074
|
-
function
|
|
18075
|
-
let t =
|
|
18105
|
+
function mm({ module: e }) {
|
|
18106
|
+
let t = Wp(e), n = fd(), r = Kd(), i = t.view;
|
|
18076
18107
|
if (i === null) return null;
|
|
18077
|
-
if (i === "knowledge") return /* @__PURE__ */ (0, N.jsx)(
|
|
18108
|
+
if (i === "knowledge") return /* @__PURE__ */ (0, N.jsx)(lm, {
|
|
18078
18109
|
interaction: t,
|
|
18079
18110
|
metadata: n.content.metadata,
|
|
18080
18111
|
module: e
|
|
18081
18112
|
});
|
|
18082
18113
|
if (i === "underlyingPublication") {
|
|
18083
18114
|
let e = n.content.metadata.underlyingPublication;
|
|
18084
|
-
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(
|
|
18115
|
+
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(dm, { items: e?.items ?? [] }), e?.generatedByAi ? /* @__PURE__ */ (0, N.jsx)(cm, {}) : null] });
|
|
18085
18116
|
}
|
|
18086
18117
|
let a = n.content.metadata.relatedVideos;
|
|
18087
|
-
return a ? /* @__PURE__ */ (0, N.jsx)(
|
|
18118
|
+
return a ? /* @__PURE__ */ (0, N.jsx)(pm, {
|
|
18088
18119
|
interaction: t,
|
|
18089
18120
|
metadata: a
|
|
18090
18121
|
}) : /* @__PURE__ */ (0, N.jsx)("div", { "aria-label": r.relatedVideos });
|
|
18091
18122
|
}
|
|
18092
|
-
function
|
|
18123
|
+
function hm(e, t) {
|
|
18093
18124
|
return e === "knowledge" ? t.knowledge : e === "underlyingPublication" ? t.underlyingPublication : t.relatedVideos;
|
|
18094
18125
|
}
|
|
18095
|
-
function
|
|
18126
|
+
function gm({ interaction: e, module: t }) {
|
|
18096
18127
|
let n = Kd();
|
|
18097
18128
|
if (e.view === "knowledge" && e.knowledgeTab !== null) {
|
|
18098
18129
|
let r = {
|
|
@@ -18101,7 +18132,7 @@ function mm({ interaction: e, module: t }) {
|
|
|
18101
18132
|
researchField: n.researchField,
|
|
18102
18133
|
transcript: n.transcript
|
|
18103
18134
|
};
|
|
18104
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
18135
|
+
return /* @__PURE__ */ (0, N.jsx)(sm, {
|
|
18105
18136
|
active: e.knowledgeTab,
|
|
18106
18137
|
label: n.knowledge,
|
|
18107
18138
|
onSelect: (e) => t.setKnowledgeTab(e),
|
|
@@ -18114,7 +18145,7 @@ function mm({ interaction: e, module: t }) {
|
|
|
18114
18145
|
relatedVideos: n.relatedVideos,
|
|
18115
18146
|
forYou: n.forYou
|
|
18116
18147
|
};
|
|
18117
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
18148
|
+
return /* @__PURE__ */ (0, N.jsx)(sm, {
|
|
18118
18149
|
active: e.relatedTab,
|
|
18119
18150
|
label: n.relatedVideos,
|
|
18120
18151
|
onSelect: (e) => t.setRelatedTab(e),
|
|
@@ -18127,8 +18158,8 @@ function mm({ interaction: e, module: t }) {
|
|
|
18127
18158
|
children: n.underlyingPublication
|
|
18128
18159
|
});
|
|
18129
18160
|
}
|
|
18130
|
-
function
|
|
18131
|
-
let r =
|
|
18161
|
+
function _m({ module: e, presentation: t, titleId: n }) {
|
|
18162
|
+
let r = Wp(e), i = Kd();
|
|
18132
18163
|
return r.view === null ? null : /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
18133
18164
|
className: "ltp-context-panel__frame",
|
|
18134
18165
|
"data-ltp-context-presentation": t,
|
|
@@ -18140,8 +18171,8 @@ function hm({ module: e, presentation: t, titleId: n }) {
|
|
|
18140
18171
|
children: [/* @__PURE__ */ (0, N.jsx)("span", {
|
|
18141
18172
|
"aria-hidden": "true",
|
|
18142
18173
|
className: "ltp-context-panel__header-icon",
|
|
18143
|
-
children: /* @__PURE__ */ (0, N.jsx)(Y, { name:
|
|
18144
|
-
}), /* @__PURE__ */ (0, N.jsx)(
|
|
18174
|
+
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: Xp[r.view] })
|
|
18175
|
+
}), /* @__PURE__ */ (0, N.jsx)(gm, {
|
|
18145
18176
|
interaction: r,
|
|
18146
18177
|
module: e
|
|
18147
18178
|
})]
|
|
@@ -18149,7 +18180,8 @@ function hm({ module: e, presentation: t, titleId: n }) {
|
|
|
18149
18180
|
/* @__PURE__ */ (0, N.jsx)(Sl.Title, {
|
|
18150
18181
|
className: "ltp-context-panel__title",
|
|
18151
18182
|
id: n,
|
|
18152
|
-
|
|
18183
|
+
tabIndex: t === "dialog" ? -1 : void 0,
|
|
18184
|
+
children: hm(r.view, i)
|
|
18153
18185
|
}),
|
|
18154
18186
|
/* @__PURE__ */ (0, N.jsx)("button", {
|
|
18155
18187
|
"aria-label": i.closeContextPanel,
|
|
@@ -18159,20 +18191,20 @@ function hm({ module: e, presentation: t, titleId: n }) {
|
|
|
18159
18191
|
children: /* @__PURE__ */ (0, N.jsx)(Y, { name: "close" })
|
|
18160
18192
|
})
|
|
18161
18193
|
]
|
|
18162
|
-
}), /* @__PURE__ */ (0, N.jsx)(
|
|
18194
|
+
}), /* @__PURE__ */ (0, N.jsx)(mm, { module: e })]
|
|
18163
18195
|
});
|
|
18164
18196
|
}
|
|
18165
|
-
function
|
|
18166
|
-
let n =
|
|
18197
|
+
function vm({ module: e, titleId: t }) {
|
|
18198
|
+
let n = Wp(e), r = (0, w.useRef)(null), i = (0, w.useContext)(Jp), a = (0, w.useId)(), o = i ?? a, s = (0, w.useRef)(null);
|
|
18167
18199
|
return (0, w.useLayoutEffect)(() => {
|
|
18168
18200
|
let e = r.current;
|
|
18169
18201
|
if (!e || n.view === null) return;
|
|
18170
18202
|
s.current = document.activeElement instanceof HTMLElement ? document.activeElement : null;
|
|
18171
18203
|
let t = () => {
|
|
18172
|
-
let t =
|
|
18204
|
+
let t = em();
|
|
18173
18205
|
e.style.setProperty("--ltp-context-viewport-left", `${t.left}px`), e.style.setProperty("--ltp-context-viewport-top", `${t.top}px`), e.style.setProperty("--ltp-context-viewport-width", `${t.width}px`), e.style.setProperty("--ltp-context-viewport-height", `${t.height}px`);
|
|
18174
18206
|
};
|
|
18175
|
-
return typeof e.showModal == "function" ? e.showModal() : e.setAttribute("open", ""), t(), e.querySelector("
|
|
18207
|
+
return typeof e.showModal == "function" ? e.showModal() : e.setAttribute("open", ""), t(), e.querySelector(".ltp-context-panel__title")?.focus(), window.visualViewport?.addEventListener("resize", t), window.visualViewport?.addEventListener("scroll", t), window.addEventListener("resize", t), () => {
|
|
18176
18208
|
window.visualViewport?.removeEventListener("resize", t), window.visualViewport?.removeEventListener("scroll", t), window.removeEventListener("resize", t), e.open && typeof e.close == "function" ? e.close() : e.removeAttribute("open");
|
|
18177
18209
|
let n = s.current;
|
|
18178
18210
|
s.current = null, n?.isConnected && n.focus();
|
|
@@ -18192,15 +18224,15 @@ function gm({ module: e, titleId: t }) {
|
|
|
18192
18224
|
!n || !r || (e.shiftKey && document.activeElement === n ? (e.preventDefault(), r.focus()) : !e.shiftKey && document.activeElement === r && (e.preventDefault(), n.focus()));
|
|
18193
18225
|
},
|
|
18194
18226
|
ref: r,
|
|
18195
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18227
|
+
children: /* @__PURE__ */ (0, N.jsx)(_m, {
|
|
18196
18228
|
module: e,
|
|
18197
18229
|
presentation: "dialog",
|
|
18198
18230
|
titleId: t
|
|
18199
18231
|
})
|
|
18200
18232
|
})] });
|
|
18201
18233
|
}
|
|
18202
|
-
function
|
|
18203
|
-
let i =
|
|
18234
|
+
function ym({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
18235
|
+
let i = Up(e), a = Wp(i), o = Kd(), s = gf(), c = (0, w.useRef)(null), l = (0, w.useId)(), u = om(a.view !== null, c);
|
|
18204
18236
|
(0, w.useEffect)(() => {
|
|
18205
18237
|
s && i.close();
|
|
18206
18238
|
}, [s, i]), (0, w.useEffect)(() => () => {
|
|
@@ -18231,25 +18263,25 @@ function _m({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
18231
18263
|
"data-ltp-surface": r,
|
|
18232
18264
|
children: a.view === null || u === void 0 ? null : u ? (0, Dl.createPortal)(/* @__PURE__ */ (0, N.jsx)("aside", {
|
|
18233
18265
|
className: "ltp-player ltp-context-panel ltp-context-panel--side-card",
|
|
18234
|
-
"aria-label":
|
|
18266
|
+
"aria-label": hm(a.view, o),
|
|
18235
18267
|
onKeyDownCapture: (e) => {
|
|
18236
18268
|
if (e.key === "Escape") {
|
|
18237
18269
|
e.preventDefault(), i.close();
|
|
18238
18270
|
return;
|
|
18239
18271
|
}
|
|
18240
|
-
if ((e.key === "ArrowUp" || e.key === "ArrowDown") && !
|
|
18241
|
-
let t = c.current?.closest(
|
|
18242
|
-
t &&
|
|
18272
|
+
if ((e.key === "ArrowUp" || e.key === "ArrowDown") && !Pp(e.target, e.currentTarget)) {
|
|
18273
|
+
let t = c.current?.closest(Ap);
|
|
18274
|
+
t && Fp(t, e.key === "ArrowUp" ? "previous" : "next") && (e.preventDefault(), e.stopPropagation());
|
|
18243
18275
|
}
|
|
18244
18276
|
},
|
|
18245
18277
|
role: "region",
|
|
18246
18278
|
style: d,
|
|
18247
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18279
|
+
children: /* @__PURE__ */ (0, N.jsx)(_m, {
|
|
18248
18280
|
module: i,
|
|
18249
18281
|
presentation: "side-card",
|
|
18250
18282
|
titleId: l
|
|
18251
18283
|
})
|
|
18252
|
-
}), document.body) : /* @__PURE__ */ (0, N.jsx)(
|
|
18284
|
+
}), document.body) : /* @__PURE__ */ (0, N.jsx)(vm, {
|
|
18253
18285
|
module: i,
|
|
18254
18286
|
titleId: l
|
|
18255
18287
|
})
|
|
@@ -18257,13 +18289,13 @@ function _m({ module: e, slot: t, state: n, surfaceId: r }) {
|
|
|
18257
18289
|
}
|
|
18258
18290
|
//#endregion
|
|
18259
18291
|
//#region src/capabilities/types.ts
|
|
18260
|
-
var
|
|
18292
|
+
var bm = [
|
|
18261
18293
|
"chapters",
|
|
18262
18294
|
"captions",
|
|
18263
18295
|
"speed",
|
|
18264
18296
|
"share",
|
|
18265
18297
|
"contextPanel"
|
|
18266
|
-
],
|
|
18298
|
+
], xm = [
|
|
18267
18299
|
"timeline",
|
|
18268
18300
|
"controlBarLeft",
|
|
18269
18301
|
"controlBarCenter",
|
|
@@ -18274,7 +18306,7 @@ var vm = [
|
|
|
18274
18306
|
"overlay",
|
|
18275
18307
|
"menu",
|
|
18276
18308
|
"contextPanel"
|
|
18277
|
-
],
|
|
18309
|
+
], Sm = Object.freeze({
|
|
18278
18310
|
landscape: Object.freeze([
|
|
18279
18311
|
"timeline",
|
|
18280
18312
|
"controlBarLeft",
|
|
@@ -18298,14 +18330,14 @@ var vm = [
|
|
|
18298
18330
|
"contextPanel"
|
|
18299
18331
|
])
|
|
18300
18332
|
});
|
|
18301
|
-
function
|
|
18333
|
+
function Cm(e) {
|
|
18302
18334
|
for (let t of e.surfaces) Object.freeze(t.slots), Object.freeze(t);
|
|
18303
18335
|
return Object.freeze(e.surfaces), Object.freeze(e);
|
|
18304
18336
|
}
|
|
18305
18337
|
//#endregion
|
|
18306
18338
|
//#region src/capabilities/modules.tsx
|
|
18307
|
-
var
|
|
18308
|
-
function
|
|
18339
|
+
var wm = Pd("chapters"), Tm = Pd("captions"), Em = Pd("speed"), Dm = Pd("share"), Om = Pd("contextPanel");
|
|
18340
|
+
function km(e, t, n) {
|
|
18309
18341
|
let r = e.surfaces.find((e) => e.id === t);
|
|
18310
18342
|
if (r === void 0) throw Error(`Missing capability surface metadata: ${e.key}.${t}`);
|
|
18311
18343
|
return {
|
|
@@ -18313,7 +18345,7 @@ function Dm(e, t, n) {
|
|
|
18313
18345
|
component: n
|
|
18314
18346
|
};
|
|
18315
18347
|
}
|
|
18316
|
-
function
|
|
18348
|
+
function Am(e) {
|
|
18317
18349
|
let t = !1;
|
|
18318
18350
|
return Object.freeze({
|
|
18319
18351
|
key: e,
|
|
@@ -18325,7 +18357,7 @@ function Om(e) {
|
|
|
18325
18357
|
}
|
|
18326
18358
|
});
|
|
18327
18359
|
}
|
|
18328
|
-
function
|
|
18360
|
+
function jm() {
|
|
18329
18361
|
let e = !1, t = !1, n = null, r = null, i = Object.freeze({ open: !1 }), a = /* @__PURE__ */ new Set(), o = /* @__PURE__ */ new Set(), s = (e) => {
|
|
18330
18362
|
if (i.open === e) return !1;
|
|
18331
18363
|
i = Object.freeze({ open: e });
|
|
@@ -18336,7 +18368,7 @@ function km() {
|
|
|
18336
18368
|
key: "chapters",
|
|
18337
18369
|
apply({ config: r, state: i }) {
|
|
18338
18370
|
if (e) throw Error("Cannot apply disposed capability module: chapters");
|
|
18339
|
-
t = i === "active", n =
|
|
18371
|
+
t = i === "active", n = uf(r.content.chapters), t || s(!1);
|
|
18340
18372
|
},
|
|
18341
18373
|
getInteractionSnapshot: () => i,
|
|
18342
18374
|
subscribeInteraction(t) {
|
|
@@ -18364,7 +18396,7 @@ function km() {
|
|
|
18364
18396
|
}
|
|
18365
18397
|
});
|
|
18366
18398
|
}
|
|
18367
|
-
function
|
|
18399
|
+
function Mm() {
|
|
18368
18400
|
let e = !1, t = !1, n = null, r = Object.freeze({
|
|
18369
18401
|
failedTrackIds: Object.freeze([]),
|
|
18370
18402
|
open: !1
|
|
@@ -18411,7 +18443,7 @@ function Am() {
|
|
|
18411
18443
|
}
|
|
18412
18444
|
});
|
|
18413
18445
|
}
|
|
18414
|
-
function
|
|
18446
|
+
function Nm() {
|
|
18415
18447
|
let e = !1, t = !1, n = /* @__PURE__ */ new Set(), r = Object.freeze({
|
|
18416
18448
|
copied: !1,
|
|
18417
18449
|
mode: null,
|
|
@@ -18432,7 +18464,7 @@ function jm() {
|
|
|
18432
18464
|
apply({ config: i, state: o }) {
|
|
18433
18465
|
if (e) throw Error("Cannot apply disposed capability module: share");
|
|
18434
18466
|
t = o === "active";
|
|
18435
|
-
let s = t ?
|
|
18467
|
+
let s = t ? up(i.capabilities.share) : [];
|
|
18436
18468
|
n = new Set(s.filter((e) => e === "link" || e === "embed"));
|
|
18437
18469
|
let c = r.mode !== null && n.has(r.mode) ? r.mode : s.find((e) => e === "link" || e === "embed") ?? null;
|
|
18438
18470
|
a({
|
|
@@ -18480,11 +18512,11 @@ function jm() {
|
|
|
18480
18512
|
}
|
|
18481
18513
|
});
|
|
18482
18514
|
}
|
|
18483
|
-
function
|
|
18515
|
+
function Pm(e) {
|
|
18484
18516
|
let t = e.content.metadata;
|
|
18485
18517
|
return t.inANutshell !== void 0 || t.keyConcepts !== void 0 || t.researchField !== void 0 || t.transcript !== void 0;
|
|
18486
18518
|
}
|
|
18487
|
-
function
|
|
18519
|
+
function Fm() {
|
|
18488
18520
|
let e = !1, t = !1, n = /* @__PURE__ */ new Set(), r = /* @__PURE__ */ new Set(), i = /* @__PURE__ */ new Set(), a = Object.freeze({
|
|
18489
18521
|
availableViews: Object.freeze([]),
|
|
18490
18522
|
knowledgeTab: null,
|
|
@@ -18506,7 +18538,7 @@ function Nm() {
|
|
|
18506
18538
|
key: "contextPanel",
|
|
18507
18539
|
apply({ config: o, state: c }) {
|
|
18508
18540
|
if (e) throw Error("Cannot apply disposed capability module: contextPanel");
|
|
18509
|
-
t = c === "active" &&
|
|
18541
|
+
t = c === "active" && Sm[o.layout].includes("contextPanel"), n = /* @__PURE__ */ new Set(), Pm(o) && n.add("knowledge"), o.content.metadata.underlyingPublication !== void 0 && n.add("underlyingPublication"), o.content.metadata.relatedVideos !== void 0 && n.add("relatedVideos");
|
|
18510
18542
|
let l = o.content.metadata, u = [
|
|
18511
18543
|
...l.inANutshell === void 0 ? [] : ["inANutshell"],
|
|
18512
18544
|
...l.keyConcepts === void 0 ? [] : ["keyConcepts"],
|
|
@@ -18571,70 +18603,70 @@ function Nm() {
|
|
|
18571
18603
|
}
|
|
18572
18604
|
});
|
|
18573
18605
|
}
|
|
18574
|
-
var
|
|
18575
|
-
key:
|
|
18576
|
-
defaults:
|
|
18577
|
-
strings:
|
|
18606
|
+
var Im = Cm({
|
|
18607
|
+
key: wm.key,
|
|
18608
|
+
defaults: wm.defaults,
|
|
18609
|
+
strings: wm.strings,
|
|
18578
18610
|
selectOptions: (e) => e.capabilities.chapters,
|
|
18579
18611
|
isAvailable: ({ content: e }) => e.chapters.length > 0,
|
|
18580
18612
|
surfaces: [
|
|
18581
|
-
|
|
18582
|
-
|
|
18583
|
-
|
|
18613
|
+
km(wm, "timeline", Tf),
|
|
18614
|
+
km(wm, "trigger", Ef),
|
|
18615
|
+
km(wm, "menu", kf)
|
|
18584
18616
|
],
|
|
18585
|
-
create:
|
|
18586
|
-
}),
|
|
18587
|
-
key:
|
|
18588
|
-
defaults:
|
|
18589
|
-
strings:
|
|
18617
|
+
create: jm
|
|
18618
|
+
}), Lm = Cm({
|
|
18619
|
+
key: Tm.key,
|
|
18620
|
+
defaults: Tm.defaults,
|
|
18621
|
+
strings: Tm.strings,
|
|
18590
18622
|
selectOptions: (e) => e.capabilities.captions,
|
|
18591
18623
|
isAvailable: ({ content: e }) => e.tracks.some((e) => e.kind === "subtitles" || e.kind === "captions"),
|
|
18592
18624
|
surfaces: [
|
|
18593
|
-
|
|
18594
|
-
|
|
18595
|
-
|
|
18625
|
+
km(Tm, "text", rp),
|
|
18626
|
+
km(Tm, "control", np),
|
|
18627
|
+
km(Tm, "menu", ip)
|
|
18596
18628
|
],
|
|
18597
|
-
create:
|
|
18598
|
-
}),
|
|
18599
|
-
key:
|
|
18600
|
-
defaults:
|
|
18601
|
-
strings:
|
|
18629
|
+
create: Mm
|
|
18630
|
+
}), Rm = Cm({
|
|
18631
|
+
key: Em.key,
|
|
18632
|
+
defaults: Em.defaults,
|
|
18633
|
+
strings: Em.strings,
|
|
18602
18634
|
selectOptions: (e) => e.capabilities.speed,
|
|
18603
18635
|
isAvailable: () => !0,
|
|
18604
|
-
surfaces: [
|
|
18605
|
-
create: () =>
|
|
18606
|
-
}),
|
|
18607
|
-
key:
|
|
18608
|
-
defaults:
|
|
18609
|
-
strings:
|
|
18636
|
+
surfaces: [km(Em, "control", sp)],
|
|
18637
|
+
create: () => Am("speed")
|
|
18638
|
+
}), zm = Cm({
|
|
18639
|
+
key: Dm.key,
|
|
18640
|
+
defaults: Dm.defaults,
|
|
18641
|
+
strings: Dm.strings,
|
|
18610
18642
|
selectOptions: (e) => e.capabilities.share,
|
|
18611
18643
|
isAvailable: ({ options: e }) => e.canonicalUrl !== void 0 && e.canonicalUrl.length > 0,
|
|
18612
|
-
surfaces: [Dm
|
|
18613
|
-
create:
|
|
18614
|
-
}),
|
|
18615
|
-
key:
|
|
18616
|
-
defaults:
|
|
18617
|
-
strings:
|
|
18644
|
+
surfaces: [km(Dm, "trigger", yp), km(Dm, "dialog", kp)],
|
|
18645
|
+
create: Nm
|
|
18646
|
+
}), Bm = Cm({
|
|
18647
|
+
key: Om.key,
|
|
18648
|
+
defaults: Om.defaults,
|
|
18649
|
+
strings: Om.strings,
|
|
18618
18650
|
selectOptions: (e) => e.capabilities.contextPanel,
|
|
18619
18651
|
isAvailable: ({ content: e }) => Object.keys(e.metadata).length > 0,
|
|
18620
|
-
surfaces: [
|
|
18621
|
-
create:
|
|
18622
|
-
}),
|
|
18623
|
-
Pm,
|
|
18624
|
-
Fm,
|
|
18652
|
+
surfaces: [km(Om, "triggers", Qp), km(Om, "panel", ym)],
|
|
18653
|
+
create: Fm
|
|
18654
|
+
}), Vm = Object.freeze([
|
|
18625
18655
|
Im,
|
|
18626
18656
|
Lm,
|
|
18627
|
-
Rm
|
|
18628
|
-
|
|
18657
|
+
Rm,
|
|
18658
|
+
zm,
|
|
18659
|
+
Bm
|
|
18660
|
+
]), Hm = class extends Error {
|
|
18629
18661
|
constructor(e) {
|
|
18630
18662
|
super(e), this.name = "CapabilityRegistryLifecycleError";
|
|
18631
18663
|
}
|
|
18632
18664
|
};
|
|
18633
|
-
function
|
|
18634
|
-
return
|
|
18665
|
+
function Um() {
|
|
18666
|
+
return xm.reduce((e, t) => (e[t] = [], e), {});
|
|
18635
18667
|
}
|
|
18636
|
-
function
|
|
18637
|
-
let t =
|
|
18668
|
+
function Wm(e) {
|
|
18669
|
+
let t = Um(), n = {};
|
|
18638
18670
|
for (let r of e) {
|
|
18639
18671
|
let e = Object.freeze({
|
|
18640
18672
|
key: r.declaration.key,
|
|
@@ -18652,42 +18684,42 @@ function Hm(e) {
|
|
|
18652
18684
|
n === "controlBarRight" && r.declaration.key === "speed" ? t[n].unshift(i) : t[n].push(i);
|
|
18653
18685
|
}
|
|
18654
18686
|
}
|
|
18655
|
-
if (t.timeline.length > 1) throw new
|
|
18656
|
-
for (let e of
|
|
18687
|
+
if (t.timeline.length > 1) throw new Hm("Only one capability timeline replacement may be active");
|
|
18688
|
+
for (let e of xm) Object.freeze(t[e]);
|
|
18657
18689
|
return Object.freeze({
|
|
18658
18690
|
capabilities: Object.freeze(n),
|
|
18659
18691
|
slots: Object.freeze(t)
|
|
18660
18692
|
});
|
|
18661
18693
|
}
|
|
18662
|
-
function
|
|
18694
|
+
function Gm(e, t, n) {
|
|
18663
18695
|
return n.enabled ? e.isAvailable({
|
|
18664
18696
|
content: t.content,
|
|
18665
18697
|
options: n
|
|
18666
18698
|
}) ? "active" : "dormant" : "removed";
|
|
18667
18699
|
}
|
|
18668
|
-
function
|
|
18700
|
+
function Km(e, t) {
|
|
18669
18701
|
let n = t.map(({ key: e }) => e);
|
|
18670
|
-
if (t.length !==
|
|
18671
|
-
if (t.flatMap((e) => e.surfaces.filter((e) => e.slots.includes("timeline"))).length > 1) throw new
|
|
18702
|
+
if (t.length !== bm.length || bm.some((e) => n.filter((t) => t === e).length !== 1)) throw new Hm("The capability registry must contain each fixed capability exactly once");
|
|
18703
|
+
if (t.flatMap((e) => e.surfaces.filter((e) => e.slots.includes("timeline"))).length > 1) throw new Hm("Only one capability timeline replacement may be registered");
|
|
18672
18704
|
for (let e of t) {
|
|
18673
18705
|
let t = e.surfaces.map(({ id: e }) => e);
|
|
18674
|
-
if (e.surfaces.some(({ slots: e }) => e.length === 0) || new Set(t).size !== t.length) throw new
|
|
18706
|
+
if (e.surfaces.some(({ slots: e }) => e.length === 0) || new Set(t).size !== t.length) throw new Hm(`Capability surfaces must have unique identifiers and at least one slot: ${e.key}`);
|
|
18675
18707
|
}
|
|
18676
18708
|
let r = t.map((e) => ({
|
|
18677
18709
|
declaration: e,
|
|
18678
18710
|
module: e.create(),
|
|
18679
18711
|
state: "dormant"
|
|
18680
18712
|
})), i = /* @__PURE__ */ new Set(), a = !1, o, s = (e, t) => {
|
|
18681
|
-
if (a) throw new
|
|
18713
|
+
if (a) throw new Hm("Cannot apply a configuration after the capability registry is disposed");
|
|
18682
18714
|
for (let t of r) {
|
|
18683
|
-
let n = t.declaration.selectOptions(e), r =
|
|
18715
|
+
let n = t.declaration.selectOptions(e), r = Gm(t.declaration, e, n);
|
|
18684
18716
|
t.module.apply({
|
|
18685
18717
|
config: e,
|
|
18686
18718
|
options: n,
|
|
18687
18719
|
state: r
|
|
18688
18720
|
}), t.state = r;
|
|
18689
18721
|
}
|
|
18690
|
-
if (o =
|
|
18722
|
+
if (o = Wm(r), t) for (let e of i) e();
|
|
18691
18723
|
};
|
|
18692
18724
|
return s(e, !1), Object.freeze({
|
|
18693
18725
|
getSnapshot: () => o,
|
|
@@ -18696,7 +18728,7 @@ function Wm(e, t) {
|
|
|
18696
18728
|
},
|
|
18697
18729
|
getModule(e) {
|
|
18698
18730
|
let t = r.find(({ declaration: t }) => t.key === e);
|
|
18699
|
-
if (t === void 0) throw new
|
|
18731
|
+
if (t === void 0) throw new Hm(`Unknown capability module: ${e}`);
|
|
18700
18732
|
return t.module;
|
|
18701
18733
|
},
|
|
18702
18734
|
applyConfig(e) {
|
|
@@ -18711,34 +18743,34 @@ function Wm(e, t) {
|
|
|
18711
18743
|
isDisposed: () => a
|
|
18712
18744
|
});
|
|
18713
18745
|
}
|
|
18714
|
-
function
|
|
18715
|
-
return
|
|
18746
|
+
function qm(e) {
|
|
18747
|
+
return Km(e, Vm);
|
|
18716
18748
|
}
|
|
18717
|
-
var
|
|
18718
|
-
function
|
|
18719
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
18749
|
+
var Jm = (0, w.createContext)(null);
|
|
18750
|
+
function Ym({ children: e, registry: t }) {
|
|
18751
|
+
return /* @__PURE__ */ (0, N.jsx)(Jm, {
|
|
18720
18752
|
value: t,
|
|
18721
18753
|
children: e
|
|
18722
18754
|
});
|
|
18723
18755
|
}
|
|
18724
|
-
function
|
|
18725
|
-
let e = (0, w.useContext)(
|
|
18756
|
+
function Xm() {
|
|
18757
|
+
let e = (0, w.useContext)(Jm);
|
|
18726
18758
|
if (e === null) throw Error("Capability hooks must be used within CapabilityRegistryProvider");
|
|
18727
18759
|
return e;
|
|
18728
18760
|
}
|
|
18729
|
-
function
|
|
18730
|
-
let e =
|
|
18761
|
+
function Zm() {
|
|
18762
|
+
let e = Xm();
|
|
18731
18763
|
return (0, w.useSyncExternalStore)(e.subscribe, e.getSnapshot, e.getSnapshot);
|
|
18732
18764
|
}
|
|
18733
|
-
function
|
|
18734
|
-
return /* @__PURE__ */ (0, N.jsx)(w.Fragment, { children:
|
|
18765
|
+
function Qm({ slot: e }) {
|
|
18766
|
+
return /* @__PURE__ */ (0, N.jsx)(w.Fragment, { children: Zm().slots[e] });
|
|
18735
18767
|
}
|
|
18736
|
-
function
|
|
18737
|
-
let t =
|
|
18768
|
+
function $m({ coreTimeline: e }) {
|
|
18769
|
+
let t = Zm().slots.timeline;
|
|
18738
18770
|
return /* @__PURE__ */ (0, N.jsx)(w.Fragment, { children: t.length === 0 ? e : t });
|
|
18739
18771
|
}
|
|
18740
|
-
Object.freeze(
|
|
18741
|
-
var
|
|
18772
|
+
Object.freeze(Sm.landscape.filter((e) => e !== "fullscreen"));
|
|
18773
|
+
var eh = Object.freeze({
|
|
18742
18774
|
timeline: "timeline",
|
|
18743
18775
|
controlBarLeft: "control-left",
|
|
18744
18776
|
controlBarRight: "control-right",
|
|
@@ -18747,65 +18779,66 @@ var Qm = Object.freeze({
|
|
|
18747
18779
|
overlay: "overlay",
|
|
18748
18780
|
menu: "menu-anchor"
|
|
18749
18781
|
});
|
|
18750
|
-
function
|
|
18782
|
+
function th({ children: e, name: t }) {
|
|
18751
18783
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18752
18784
|
className: `ltp-landscape__core ltp-landscape__core--${t}`,
|
|
18753
18785
|
"data-ltp-core-slot": t,
|
|
18754
18786
|
children: e
|
|
18755
18787
|
});
|
|
18756
18788
|
}
|
|
18757
|
-
function
|
|
18789
|
+
function nh({ slot: e }) {
|
|
18758
18790
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18759
|
-
className: `ltp-landscape__capability ltp-landscape__capability--${
|
|
18791
|
+
className: `ltp-landscape__capability ltp-landscape__capability--${eh[e]}`,
|
|
18760
18792
|
"data-ltp-landscape-slot": e,
|
|
18761
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18793
|
+
children: /* @__PURE__ */ (0, N.jsx)(Qm, { slot: e })
|
|
18762
18794
|
});
|
|
18763
18795
|
}
|
|
18764
|
-
function
|
|
18765
|
-
let
|
|
18796
|
+
function rh({ announcer: e, configurationError: t, controlsMounted: n = !0, controlsVisible: r = !0, controlVisibilityHandlers: i, core: a = {}, inputPolicy: o, language: s, media: c, mediaError: l, runtimeBridge: u }) {
|
|
18797
|
+
let d = t !== void 0, f = l !== void 0, p = d || f, m = Zm().slots, h = n && (a.logo !== void 0 || m.topIcons.length > 0), g = n && (a.playPause !== void 0 || a.volume !== void 0 || a.time !== void 0 || a.timeline !== void 0 || a.fullscreen !== void 0 || m.timeline.length > 0 || m.controlBarLeft.length > 0 || m.controlBarCenter.length > 0 || m.controlBarRight.length > 0);
|
|
18766
18798
|
return /* @__PURE__ */ (0, N.jsxs)(_c, {
|
|
18767
18799
|
className: "ltp-player ltp-media-engine ltp-landscape",
|
|
18768
|
-
"data-ltp-configuration-error":
|
|
18769
|
-
"data-ltp-media-error":
|
|
18770
|
-
"data-ltp-controls-hidden":
|
|
18771
|
-
"data-ltp-controls-visible":
|
|
18800
|
+
"data-ltp-configuration-error": d || void 0,
|
|
18801
|
+
"data-ltp-media-error": f || void 0,
|
|
18802
|
+
"data-ltp-controls-hidden": n && !r ? !0 : void 0,
|
|
18803
|
+
"data-ltp-controls-visible": n && r ? !0 : void 0,
|
|
18772
18804
|
"data-ltp-layout": "landscape",
|
|
18773
|
-
lang:
|
|
18774
|
-
...
|
|
18805
|
+
lang: s,
|
|
18806
|
+
...i,
|
|
18775
18807
|
children: [
|
|
18776
18808
|
/* @__PURE__ */ (0, N.jsx)(Cd, {}),
|
|
18809
|
+
e,
|
|
18777
18810
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
18778
|
-
"aria-hidden":
|
|
18811
|
+
"aria-hidden": p || void 0,
|
|
18779
18812
|
className: "ltp-landscape__content",
|
|
18780
|
-
"data-ltp-fullscreen-input":
|
|
18781
|
-
"data-ltp-gestures-input":
|
|
18782
|
-
"data-ltp-hotkeys-input":
|
|
18783
|
-
"data-ltp-pip-input":
|
|
18784
|
-
"data-ltp-play-pause-input":
|
|
18785
|
-
"data-ltp-seek-input":
|
|
18786
|
-
"data-ltp-seek-step":
|
|
18787
|
-
"data-ltp-volume-input":
|
|
18788
|
-
inert:
|
|
18813
|
+
"data-ltp-fullscreen-input": o?.fullscreen || void 0,
|
|
18814
|
+
"data-ltp-gestures-input": o?.gestures || void 0,
|
|
18815
|
+
"data-ltp-hotkeys-input": o?.hotkeys || void 0,
|
|
18816
|
+
"data-ltp-pip-input": o?.pip || void 0,
|
|
18817
|
+
"data-ltp-play-pause-input": o?.playPause || void 0,
|
|
18818
|
+
"data-ltp-seek-input": o?.seek || void 0,
|
|
18819
|
+
"data-ltp-seek-step": o?.seekStep,
|
|
18820
|
+
"data-ltp-volume-input": o?.volume || void 0,
|
|
18821
|
+
inert: p || void 0,
|
|
18789
18822
|
children: [
|
|
18790
18823
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18791
18824
|
className: "ltp-landscape__media",
|
|
18792
|
-
children:
|
|
18825
|
+
children: c
|
|
18793
18826
|
}),
|
|
18794
18827
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18795
18828
|
className: "ltp-landscape__cover",
|
|
18796
18829
|
"data-ltp-landscape-region": "cover",
|
|
18797
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18830
|
+
children: /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18798
18831
|
name: "cover",
|
|
18799
|
-
children:
|
|
18832
|
+
children: a.cover
|
|
18800
18833
|
})
|
|
18801
18834
|
}),
|
|
18802
|
-
|
|
18835
|
+
h ? /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18803
18836
|
"aria-hidden": "true",
|
|
18804
18837
|
className: "ltp-landscape__scrim ltp-landscape__scrim--top",
|
|
18805
18838
|
"data-ltp-control-visibility-fade": !0,
|
|
18806
18839
|
"data-ltp-landscape-region": "top-scrim"
|
|
18807
18840
|
}) : null,
|
|
18808
|
-
|
|
18841
|
+
g ? /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18809
18842
|
"aria-hidden": "true",
|
|
18810
18843
|
className: "ltp-landscape__scrim ltp-landscape__scrim--bottom",
|
|
18811
18844
|
"data-ltp-control-visibility-fade": !0,
|
|
@@ -18814,44 +18847,44 @@ function th({ configurationError: e, controlsMounted: t = !0, controlsVisible: n
|
|
|
18814
18847
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18815
18848
|
className: "ltp-landscape__buffering",
|
|
18816
18849
|
"data-ltp-landscape-region": "buffering",
|
|
18817
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18850
|
+
children: /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18818
18851
|
name: "buffering",
|
|
18819
|
-
children:
|
|
18852
|
+
children: a.buffering
|
|
18820
18853
|
})
|
|
18821
18854
|
}),
|
|
18822
|
-
|
|
18855
|
+
a.logo !== void 0 || n ? /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
18823
18856
|
className: "ltp-landscape__top-row",
|
|
18824
18857
|
"data-ltp-landscape-region": "top-row",
|
|
18825
|
-
children: [/* @__PURE__ */ (0, N.jsx)(
|
|
18858
|
+
children: [/* @__PURE__ */ (0, N.jsx)(th, {
|
|
18826
18859
|
name: "logo",
|
|
18827
|
-
children:
|
|
18828
|
-
}),
|
|
18860
|
+
children: a.logo
|
|
18861
|
+
}), n ? /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18829
18862
|
className: "ltp-landscape__top-actions",
|
|
18830
18863
|
"data-ltp-control-visibility-fade": !0,
|
|
18831
18864
|
"data-ltp-control-visibility-lock": !0,
|
|
18832
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18865
|
+
children: /* @__PURE__ */ (0, N.jsx)(nh, { slot: "topIcons" })
|
|
18833
18866
|
}) : null]
|
|
18834
18867
|
}) : null,
|
|
18835
|
-
|
|
18868
|
+
n ? /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [
|
|
18836
18869
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18837
18870
|
className: "ltp-landscape__input-feedback",
|
|
18838
18871
|
"data-ltp-landscape-region": "input-feedback",
|
|
18839
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18872
|
+
children: /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18840
18873
|
name: "inputFeedback",
|
|
18841
|
-
children:
|
|
18874
|
+
children: a.inputFeedback
|
|
18842
18875
|
})
|
|
18843
18876
|
}),
|
|
18844
18877
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18845
18878
|
className: "ltp-landscape__captions",
|
|
18846
18879
|
"data-ltp-landscape-region": "captions",
|
|
18847
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18880
|
+
children: /* @__PURE__ */ (0, N.jsx)(nh, { slot: "captions" })
|
|
18848
18881
|
}),
|
|
18849
18882
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18850
18883
|
className: "ltp-landscape__information",
|
|
18851
18884
|
"data-ltp-landscape-region": "information",
|
|
18852
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18885
|
+
children: /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18853
18886
|
name: "information",
|
|
18854
|
-
children:
|
|
18887
|
+
children: a.information
|
|
18855
18888
|
})
|
|
18856
18889
|
}),
|
|
18857
18890
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
@@ -18860,9 +18893,9 @@ function th({ configurationError: e, controlsMounted: t = !0, controlsVisible: n
|
|
|
18860
18893
|
"data-ltp-control-visibility-lock": !0,
|
|
18861
18894
|
"data-ltp-landscape-region": "timeline",
|
|
18862
18895
|
"data-ltp-landscape-slot": "timeline",
|
|
18863
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18896
|
+
children: /* @__PURE__ */ (0, N.jsx)($m, { coreTimeline: /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18864
18897
|
name: "timeline",
|
|
18865
|
-
children:
|
|
18898
|
+
children: a.timeline
|
|
18866
18899
|
}) })
|
|
18867
18900
|
}),
|
|
18868
18901
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
@@ -18874,26 +18907,26 @@ function th({ configurationError: e, controlsMounted: t = !0, controlsVisible: n
|
|
|
18874
18907
|
className: "ltp-landscape__control-group",
|
|
18875
18908
|
"data-ltp-control-group": "left",
|
|
18876
18909
|
children: [
|
|
18877
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
18910
|
+
/* @__PURE__ */ (0, N.jsx)(th, {
|
|
18878
18911
|
name: "playPause",
|
|
18879
|
-
children:
|
|
18912
|
+
children: a.playPause
|
|
18880
18913
|
}),
|
|
18881
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
18914
|
+
/* @__PURE__ */ (0, N.jsx)(th, {
|
|
18882
18915
|
name: "volume",
|
|
18883
|
-
children:
|
|
18916
|
+
children: a.volume
|
|
18884
18917
|
}),
|
|
18885
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
18918
|
+
/* @__PURE__ */ (0, N.jsx)(th, {
|
|
18886
18919
|
name: "time",
|
|
18887
|
-
children:
|
|
18920
|
+
children: a.time
|
|
18888
18921
|
}),
|
|
18889
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
18922
|
+
/* @__PURE__ */ (0, N.jsx)(nh, { slot: "controlBarLeft" })
|
|
18890
18923
|
]
|
|
18891
18924
|
}), /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
18892
18925
|
className: "ltp-landscape__control-group",
|
|
18893
18926
|
"data-ltp-control-group": "right",
|
|
18894
|
-
children: [/* @__PURE__ */ (0, N.jsx)(
|
|
18927
|
+
children: [/* @__PURE__ */ (0, N.jsx)(nh, { slot: "controlBarRight" }), /* @__PURE__ */ (0, N.jsx)(th, {
|
|
18895
18928
|
name: "fullscreen",
|
|
18896
|
-
children:
|
|
18929
|
+
children: a.fullscreen
|
|
18897
18930
|
})]
|
|
18898
18931
|
})]
|
|
18899
18932
|
}),
|
|
@@ -18901,7 +18934,7 @@ function th({ configurationError: e, controlsMounted: t = !0, controlsVisible: n
|
|
|
18901
18934
|
className: "ltp-landscape__menu",
|
|
18902
18935
|
"data-ltp-control-visibility-fade": !0,
|
|
18903
18936
|
"data-ltp-landscape-region": "menu-anchor",
|
|
18904
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18937
|
+
children: /* @__PURE__ */ (0, N.jsx)(nh, { slot: "menu" })
|
|
18905
18938
|
})
|
|
18906
18939
|
] }) : null
|
|
18907
18940
|
]
|
|
@@ -18909,16 +18942,16 @@ function th({ configurationError: e, controlsMounted: t = !0, controlsVisible: n
|
|
|
18909
18942
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18910
18943
|
className: "ltp-landscape__overlay",
|
|
18911
18944
|
"data-ltp-landscape-region": "overlay",
|
|
18912
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18945
|
+
children: /* @__PURE__ */ (0, N.jsx)(nh, { slot: "overlay" })
|
|
18913
18946
|
}),
|
|
18914
|
-
|
|
18915
|
-
|
|
18916
|
-
|
|
18947
|
+
t,
|
|
18948
|
+
l,
|
|
18949
|
+
u
|
|
18917
18950
|
]
|
|
18918
18951
|
});
|
|
18919
18952
|
}
|
|
18920
|
-
Object.freeze([...
|
|
18921
|
-
var
|
|
18953
|
+
Object.freeze([...Sm.portrait]);
|
|
18954
|
+
var ih = Object.freeze({
|
|
18922
18955
|
timeline: "timeline",
|
|
18923
18956
|
controlBarLeft: "control-left",
|
|
18924
18957
|
controlBarCenter: "control-center",
|
|
@@ -18930,61 +18963,62 @@ var nh = Object.freeze({
|
|
|
18930
18963
|
menu: "menu-anchor",
|
|
18931
18964
|
contextPanel: "context-panel"
|
|
18932
18965
|
});
|
|
18933
|
-
function
|
|
18966
|
+
function ah({ children: e, name: t }) {
|
|
18934
18967
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18935
18968
|
className: `ltp-portrait__core ltp-portrait__core--${t}`,
|
|
18936
18969
|
"data-ltp-core-slot": t,
|
|
18937
18970
|
children: e
|
|
18938
18971
|
});
|
|
18939
18972
|
}
|
|
18940
|
-
function
|
|
18973
|
+
function oh({ slot: e }) {
|
|
18941
18974
|
return /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18942
|
-
className: `ltp-portrait__capability ltp-portrait__capability--${
|
|
18975
|
+
className: `ltp-portrait__capability ltp-portrait__capability--${ih[e]}`,
|
|
18943
18976
|
"data-ltp-portrait-slot": e,
|
|
18944
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
18977
|
+
children: /* @__PURE__ */ (0, N.jsx)(Qm, { slot: e })
|
|
18945
18978
|
});
|
|
18946
18979
|
}
|
|
18947
|
-
function
|
|
18948
|
-
let
|
|
18980
|
+
function sh({ announcer: e, configurationError: t, controlsVisible: n = !0, core: r = {}, inputPolicy: i, language: a, media: o, mediaError: s, runtimeBridge: c }) {
|
|
18981
|
+
let l = t !== void 0, u = s !== void 0, d = l || u, f = Zm().slots, p = n && (r.logo !== void 0 || r.volume !== void 0 || f.topIcons.length > 0), m = n && (r.playPause !== void 0 || r.time !== void 0 || r.timeline !== void 0 || f.timeline.length > 0 || f.controlBarLeft.length > 0 || f.controlBarCenter.length > 0 || f.controlBarRight.length > 0);
|
|
18949
18982
|
return /* @__PURE__ */ (0, N.jsxs)(_c, {
|
|
18950
18983
|
className: "ltp-player ltp-media-engine ltp-portrait",
|
|
18951
|
-
"data-ltp-configuration-error":
|
|
18952
|
-
"data-ltp-media-error":
|
|
18984
|
+
"data-ltp-configuration-error": l || void 0,
|
|
18985
|
+
"data-ltp-media-error": u || void 0,
|
|
18953
18986
|
"data-ltp-layout": "portrait",
|
|
18954
|
-
lang:
|
|
18987
|
+
lang: a,
|
|
18955
18988
|
children: [
|
|
18956
18989
|
/* @__PURE__ */ (0, N.jsx)(Cd, {}),
|
|
18990
|
+
e,
|
|
18957
18991
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
18958
|
-
"aria-hidden":
|
|
18992
|
+
"aria-hidden": d || void 0,
|
|
18959
18993
|
className: "ltp-portrait__content",
|
|
18960
|
-
"data-ltp-fullscreen-input":
|
|
18961
|
-
"data-ltp-gestures-input":
|
|
18962
|
-
"data-ltp-hotkeys-input":
|
|
18963
|
-
"data-ltp-pip-input":
|
|
18964
|
-
"data-ltp-play-pause-input":
|
|
18965
|
-
"data-ltp-seek-input":
|
|
18966
|
-
"data-ltp-seek-step":
|
|
18967
|
-
"data-ltp-volume-input":
|
|
18968
|
-
inert:
|
|
18994
|
+
"data-ltp-fullscreen-input": i?.fullscreen || void 0,
|
|
18995
|
+
"data-ltp-gestures-input": i?.gestures || void 0,
|
|
18996
|
+
"data-ltp-hotkeys-input": i?.hotkeys || void 0,
|
|
18997
|
+
"data-ltp-pip-input": i?.pip || void 0,
|
|
18998
|
+
"data-ltp-play-pause-input": i?.playPause || void 0,
|
|
18999
|
+
"data-ltp-seek-input": i?.seek || void 0,
|
|
19000
|
+
"data-ltp-seek-step": i?.seekStep,
|
|
19001
|
+
"data-ltp-volume-input": i?.volume || void 0,
|
|
19002
|
+
inert: d || void 0,
|
|
18969
19003
|
children: [
|
|
18970
19004
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18971
19005
|
className: "ltp-portrait__media",
|
|
18972
|
-
children:
|
|
19006
|
+
children: o
|
|
18973
19007
|
}),
|
|
18974
19008
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18975
19009
|
className: "ltp-portrait__cover",
|
|
18976
19010
|
"data-ltp-portrait-region": "cover",
|
|
18977
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19011
|
+
children: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
18978
19012
|
name: "cover",
|
|
18979
|
-
children:
|
|
19013
|
+
children: r.cover
|
|
18980
19014
|
})
|
|
18981
19015
|
}),
|
|
18982
|
-
|
|
19016
|
+
p ? /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18983
19017
|
"aria-hidden": "true",
|
|
18984
19018
|
className: "ltp-portrait__scrim ltp-portrait__scrim--top",
|
|
18985
19019
|
"data-ltp-portrait-region": "top-scrim"
|
|
18986
19020
|
}) : null,
|
|
18987
|
-
|
|
19021
|
+
m ? /* @__PURE__ */ (0, N.jsx)("div", {
|
|
18988
19022
|
"aria-hidden": "true",
|
|
18989
19023
|
className: "ltp-portrait__scrim ltp-portrait__scrim--bottom",
|
|
18990
19024
|
"data-ltp-portrait-region": "bottom-scrim"
|
|
@@ -18992,37 +19026,37 @@ function ah({ configurationError: e, controlsVisible: t = !0, core: n = {}, inpu
|
|
|
18992
19026
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
18993
19027
|
className: "ltp-portrait__buffering",
|
|
18994
19028
|
"data-ltp-portrait-region": "buffering",
|
|
18995
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19029
|
+
children: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
18996
19030
|
name: "buffering",
|
|
18997
|
-
children:
|
|
19031
|
+
children: r.buffering
|
|
18998
19032
|
})
|
|
18999
19033
|
}),
|
|
19000
|
-
|
|
19034
|
+
r.logo === void 0 ? null : /* @__PURE__ */ (0, N.jsx)("div", {
|
|
19001
19035
|
className: "ltp-portrait__top-left",
|
|
19002
19036
|
"data-ltp-portrait-region": "top-left",
|
|
19003
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19037
|
+
children: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19004
19038
|
name: "logo",
|
|
19005
|
-
children:
|
|
19039
|
+
children: r.logo
|
|
19006
19040
|
})
|
|
19007
19041
|
}),
|
|
19008
|
-
|
|
19042
|
+
n ? /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [
|
|
19009
19043
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19010
19044
|
className: "ltp-portrait__input-feedback",
|
|
19011
19045
|
"data-ltp-portrait-region": "input-feedback",
|
|
19012
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19046
|
+
children: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19013
19047
|
name: "inputFeedback",
|
|
19014
|
-
children:
|
|
19048
|
+
children: r.inputFeedback
|
|
19015
19049
|
})
|
|
19016
19050
|
}),
|
|
19017
19051
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19018
19052
|
className: "ltp-portrait__top-right",
|
|
19019
19053
|
"data-ltp-portrait-region": "top-right",
|
|
19020
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19054
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "topIcons" })
|
|
19021
19055
|
}),
|
|
19022
19056
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19023
19057
|
className: "ltp-portrait__captions",
|
|
19024
19058
|
"data-ltp-portrait-region": "captions",
|
|
19025
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19059
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "captions" })
|
|
19026
19060
|
}),
|
|
19027
19061
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
19028
19062
|
className: "ltp-portrait__information-stack",
|
|
@@ -19030,13 +19064,13 @@ function ah({ configurationError: e, controlsVisible: t = !0, core: n = {}, inpu
|
|
|
19030
19064
|
children: [/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19031
19065
|
className: "ltp-portrait__trigger-rail",
|
|
19032
19066
|
"data-ltp-portrait-region": "trigger-rail",
|
|
19033
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19067
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "triggerRail" })
|
|
19034
19068
|
}), /* @__PURE__ */ (0, N.jsx)("div", {
|
|
19035
19069
|
className: "ltp-portrait__information",
|
|
19036
19070
|
"data-ltp-portrait-region": "information",
|
|
19037
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19071
|
+
children: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19038
19072
|
name: "information",
|
|
19039
|
-
children:
|
|
19073
|
+
children: r.information
|
|
19040
19074
|
})
|
|
19041
19075
|
})]
|
|
19042
19076
|
}),
|
|
@@ -19044,59 +19078,59 @@ function ah({ configurationError: e, controlsVisible: t = !0, core: n = {}, inpu
|
|
|
19044
19078
|
className: "ltp-portrait__timeline",
|
|
19045
19079
|
"data-ltp-portrait-region": "timeline",
|
|
19046
19080
|
"data-ltp-portrait-slot": "timeline",
|
|
19047
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19081
|
+
children: /* @__PURE__ */ (0, N.jsx)($m, { coreTimeline: /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19048
19082
|
name: "timeline",
|
|
19049
|
-
children:
|
|
19083
|
+
children: r.timeline
|
|
19050
19084
|
}) })
|
|
19051
19085
|
}),
|
|
19052
19086
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
19053
19087
|
className: "ltp-portrait__control-group ltp-portrait__control-group--left",
|
|
19054
19088
|
"data-ltp-control-group": "left",
|
|
19055
19089
|
"data-ltp-portrait-region": "bottom-left",
|
|
19056
|
-
children: [/* @__PURE__ */ (0, N.jsx)(
|
|
19090
|
+
children: [/* @__PURE__ */ (0, N.jsx)(oh, { slot: "controlBarLeft" }), /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19057
19091
|
name: "time",
|
|
19058
|
-
children:
|
|
19092
|
+
children: r.time
|
|
19059
19093
|
})]
|
|
19060
19094
|
}),
|
|
19061
19095
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
19062
19096
|
className: "ltp-portrait__control-group ltp-portrait__control-group--center",
|
|
19063
19097
|
"data-ltp-control-group": "center",
|
|
19064
19098
|
"data-ltp-portrait-region": "bottom-center",
|
|
19065
|
-
children: [/* @__PURE__ */ (0, N.jsx)(
|
|
19099
|
+
children: [/* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19066
19100
|
name: "playPause",
|
|
19067
|
-
children:
|
|
19068
|
-
}), /* @__PURE__ */ (0, N.jsx)(
|
|
19101
|
+
children: r.playPause
|
|
19102
|
+
}), /* @__PURE__ */ (0, N.jsx)(oh, { slot: "controlBarCenter" })]
|
|
19069
19103
|
}),
|
|
19070
19104
|
/* @__PURE__ */ (0, N.jsxs)("div", {
|
|
19071
19105
|
className: "ltp-portrait__control-group ltp-portrait__control-group--right",
|
|
19072
19106
|
"data-ltp-control-group": "right",
|
|
19073
19107
|
"data-ltp-portrait-region": "bottom-right",
|
|
19074
|
-
children: [/* @__PURE__ */ (0, N.jsx)(
|
|
19108
|
+
children: [/* @__PURE__ */ (0, N.jsx)(oh, { slot: "controlBarRight" }), /* @__PURE__ */ (0, N.jsx)(ah, {
|
|
19075
19109
|
name: "volume",
|
|
19076
|
-
children:
|
|
19110
|
+
children: r.volume
|
|
19077
19111
|
})]
|
|
19078
19112
|
}),
|
|
19079
19113
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19080
19114
|
className: "ltp-portrait__menu",
|
|
19081
19115
|
"data-ltp-portrait-region": "menu-anchor",
|
|
19082
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19116
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "menu" })
|
|
19083
19117
|
})
|
|
19084
19118
|
] }) : null,
|
|
19085
19119
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19086
19120
|
className: "ltp-portrait__context-panel",
|
|
19087
19121
|
"data-ltp-portrait-region": "context-panel",
|
|
19088
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19122
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "contextPanel" })
|
|
19089
19123
|
})
|
|
19090
19124
|
]
|
|
19091
19125
|
}),
|
|
19092
19126
|
/* @__PURE__ */ (0, N.jsx)("div", {
|
|
19093
19127
|
className: "ltp-portrait__overlay",
|
|
19094
19128
|
"data-ltp-portrait-region": "overlay",
|
|
19095
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
19129
|
+
children: /* @__PURE__ */ (0, N.jsx)(oh, { slot: "overlay" })
|
|
19096
19130
|
}),
|
|
19097
|
-
|
|
19098
|
-
|
|
19099
|
-
|
|
19131
|
+
t,
|
|
19132
|
+
s,
|
|
19133
|
+
c
|
|
19100
19134
|
]
|
|
19101
19135
|
});
|
|
19102
19136
|
}
|
|
@@ -19109,7 +19143,7 @@ function Q(e, t, n = {}) {
|
|
|
19109
19143
|
placeholders: Object.freeze(n)
|
|
19110
19144
|
});
|
|
19111
19145
|
}
|
|
19112
|
-
var
|
|
19146
|
+
var ch = Object.freeze([
|
|
19113
19147
|
Q("container.label", "playerLabel"),
|
|
19114
19148
|
Q("buttons.play", "play"),
|
|
19115
19149
|
Q("buttons.pause", "pause"),
|
|
@@ -19149,13 +19183,13 @@ var oh = Object.freeze([
|
|
|
19149
19183
|
Q("menu.off", "captionsOffOption"),
|
|
19150
19184
|
Q("menu.subtitles", "subtitles")
|
|
19151
19185
|
]);
|
|
19152
|
-
function
|
|
19186
|
+
function lh(e, t) {
|
|
19153
19187
|
return e.replace(/\{([^{}]+)\}/g, (e, n) => {
|
|
19154
19188
|
let r = t[n];
|
|
19155
19189
|
return r === void 0 ? e : `{${r}}`;
|
|
19156
19190
|
});
|
|
19157
19191
|
}
|
|
19158
|
-
function
|
|
19192
|
+
function uh(e, t, n) {
|
|
19159
19193
|
let r = t.split("."), i = e;
|
|
19160
19194
|
for (let e of r.slice(0, -1)) {
|
|
19161
19195
|
let t = i[e];
|
|
@@ -19169,24 +19203,24 @@ function ch(e, t, n) {
|
|
|
19169
19203
|
if (a === void 0) throw Error("Engine translation key cannot be empty");
|
|
19170
19204
|
i[a] = n;
|
|
19171
19205
|
}
|
|
19172
|
-
function
|
|
19206
|
+
function dh(e) {
|
|
19173
19207
|
let t = {};
|
|
19174
|
-
for (let n of
|
|
19208
|
+
for (let n of ch) uh(t, n.engineKey, lh(e[n.playerKey], n.placeholders));
|
|
19175
19209
|
return t;
|
|
19176
19210
|
}
|
|
19177
|
-
function
|
|
19211
|
+
function fh(e, t = "", n = {}) {
|
|
19178
19212
|
for (let [r, i] of Object.entries(e)) {
|
|
19179
19213
|
if (i === void 0) continue;
|
|
19180
19214
|
let e = t === "" ? r : `${t}.${r}`;
|
|
19181
|
-
typeof i == "string" ? n[e] = i :
|
|
19215
|
+
typeof i == "string" ? n[e] = i : fh(i, e, n);
|
|
19182
19216
|
}
|
|
19183
19217
|
return n;
|
|
19184
19218
|
}
|
|
19185
|
-
ce("en", l), ce("en",
|
|
19186
|
-
function
|
|
19187
|
-
let r = (0, w.useMemo)(() =>
|
|
19219
|
+
ce("en", l), ce("en", dh(Bd));
|
|
19220
|
+
function ph({ children: e, language: t, strings: n }) {
|
|
19221
|
+
let r = (0, w.useMemo)(() => dh(n), [n]), i = (0, w.useMemo)(() => me({
|
|
19188
19222
|
...le(t),
|
|
19189
|
-
...
|
|
19223
|
+
...fh(r)
|
|
19190
19224
|
}, t), [t, r]), a = (0, w.useMemo)(() => ({
|
|
19191
19225
|
translator: i,
|
|
19192
19226
|
locale: t,
|
|
@@ -19205,71 +19239,71 @@ function dh({ children: e, language: t, strings: n }) {
|
|
|
19205
19239
|
}
|
|
19206
19240
|
//#endregion
|
|
19207
19241
|
//#region src/strings/resolve-strings.ts
|
|
19208
|
-
var
|
|
19242
|
+
var mh = Object.freeze({
|
|
19209
19243
|
language: "en",
|
|
19210
19244
|
strings: Bd
|
|
19211
19245
|
});
|
|
19212
|
-
function
|
|
19246
|
+
function hh(e) {
|
|
19213
19247
|
if (typeof e != "object" || !e || Object.isFrozen(e)) return e;
|
|
19214
|
-
for (let t of Object.values(e))
|
|
19248
|
+
for (let t of Object.values(e)) hh(t);
|
|
19215
19249
|
return Object.freeze(e);
|
|
19216
19250
|
}
|
|
19217
|
-
function
|
|
19251
|
+
function gh(e) {
|
|
19218
19252
|
try {
|
|
19219
19253
|
return Intl.getCanonicalLocales(e)[0] ?? null;
|
|
19220
19254
|
} catch {
|
|
19221
19255
|
return null;
|
|
19222
19256
|
}
|
|
19223
19257
|
}
|
|
19224
|
-
function
|
|
19225
|
-
let n = new Map(t.map((e) => [
|
|
19258
|
+
function _h(e, t) {
|
|
19259
|
+
let n = new Map(t.map((e) => [gh(e.language), e])), r = e === void 0 ? [] : Array.isArray(e) ? e : [e];
|
|
19226
19260
|
for (let e of r) {
|
|
19227
|
-
let t =
|
|
19261
|
+
let t = gh(e);
|
|
19228
19262
|
if (t !== null) {
|
|
19229
19263
|
let e = n.get(t);
|
|
19230
19264
|
if (e !== void 0) return e;
|
|
19231
19265
|
}
|
|
19232
19266
|
}
|
|
19233
|
-
return
|
|
19267
|
+
return mh;
|
|
19234
19268
|
}
|
|
19235
|
-
function
|
|
19269
|
+
function vh(e) {
|
|
19236
19270
|
return /^[A-Za-z_$][\w$]*$/.test(e) ? `$.strings.${e}` : `$.strings[${JSON.stringify(e)}]`;
|
|
19237
19271
|
}
|
|
19238
|
-
function
|
|
19239
|
-
let r =
|
|
19272
|
+
function yh(e, t = {}, n = []) {
|
|
19273
|
+
let r = _h(e, [mh, ...n]), i = Object.keys(t).filter((e) => !Hd(e)).sort(), a = i.map((e) => ({
|
|
19240
19274
|
code: "unknown-string-key",
|
|
19241
|
-
path:
|
|
19275
|
+
path: vh(e),
|
|
19242
19276
|
action: "omitted",
|
|
19243
19277
|
message: `unknown player string key ${JSON.stringify(e)}`
|
|
19244
19278
|
})), o = Object.fromEntries(Object.keys(Bd).map((e) => [e, Object.hasOwn(t, e) ? t[e] : r.strings[e] ?? Bd[e]]));
|
|
19245
|
-
return
|
|
19246
|
-
selectedLanguage:
|
|
19279
|
+
return hh({
|
|
19280
|
+
selectedLanguage: gh(r.language) ?? "en",
|
|
19247
19281
|
strings: o,
|
|
19248
19282
|
unknownKeys: i,
|
|
19249
19283
|
findings: a
|
|
19250
19284
|
});
|
|
19251
19285
|
}
|
|
19252
|
-
var
|
|
19286
|
+
var bh = yh();
|
|
19253
19287
|
//#endregion
|
|
19254
19288
|
//#region src/config/resolve-config.ts
|
|
19255
|
-
function
|
|
19256
|
-
return Array.isArray(e) ? e.map((e) =>
|
|
19289
|
+
function xh(e) {
|
|
19290
|
+
return Array.isArray(e) ? e.map((e) => xh(e)) : typeof e == "object" && e ? Object.fromEntries(Object.entries(e).map(([e, t]) => [e, xh(t)])) : e;
|
|
19257
19291
|
}
|
|
19258
|
-
function
|
|
19292
|
+
function Sh(e) {
|
|
19259
19293
|
if (typeof e != "object" || !e || Object.isFrozen(e)) return e;
|
|
19260
|
-
for (let t of Object.values(e))
|
|
19294
|
+
for (let t of Object.values(e)) Sh(t);
|
|
19261
19295
|
return Object.freeze(e);
|
|
19262
19296
|
}
|
|
19263
|
-
function
|
|
19297
|
+
function Ch(e, t) {
|
|
19264
19298
|
return { enabled: e === void 0 ? t.enabled : e !== !1 };
|
|
19265
19299
|
}
|
|
19266
|
-
function
|
|
19300
|
+
function wh(e) {
|
|
19267
19301
|
let t = X.controls.cover;
|
|
19268
19302
|
if (e === !1) return {
|
|
19269
|
-
...
|
|
19303
|
+
...xh(t),
|
|
19270
19304
|
enabled: !1
|
|
19271
19305
|
};
|
|
19272
|
-
if (typeof e != "object" || !e) return
|
|
19306
|
+
if (typeof e != "object" || !e) return xh(t);
|
|
19273
19307
|
let n = e, r = n.button, i = r === !1 ? {
|
|
19274
19308
|
...t.button,
|
|
19275
19309
|
enabled: !1
|
|
@@ -19285,7 +19319,7 @@ function Sh(e) {
|
|
|
19285
19319
|
button: i
|
|
19286
19320
|
};
|
|
19287
19321
|
}
|
|
19288
|
-
function
|
|
19322
|
+
function Th(e) {
|
|
19289
19323
|
let t = X.controls.timeline;
|
|
19290
19324
|
return e === !1 ? {
|
|
19291
19325
|
...t,
|
|
@@ -19295,28 +19329,28 @@ function Ch(e) {
|
|
|
19295
19329
|
seekStep: e.seekStep ?? t.seekStep
|
|
19296
19330
|
};
|
|
19297
19331
|
}
|
|
19298
|
-
function
|
|
19332
|
+
function Eh(e) {
|
|
19299
19333
|
let t = e.controls;
|
|
19300
19334
|
return {
|
|
19301
|
-
cover:
|
|
19302
|
-
playPause:
|
|
19303
|
-
timeline:
|
|
19304
|
-
time:
|
|
19305
|
-
volume:
|
|
19306
|
-
fullscreen:
|
|
19307
|
-
pip:
|
|
19308
|
-
buffering:
|
|
19309
|
-
inputFeedback:
|
|
19310
|
-
logo:
|
|
19311
|
-
gestures:
|
|
19312
|
-
hotkeys:
|
|
19335
|
+
cover: wh(t?.cover),
|
|
19336
|
+
playPause: Ch(t?.playPause, X.controls.playPause),
|
|
19337
|
+
timeline: Th(t?.timeline),
|
|
19338
|
+
time: Ch(t?.time, X.controls.time),
|
|
19339
|
+
volume: Ch(t?.volume, X.controls.volume),
|
|
19340
|
+
fullscreen: Ch(t?.fullscreen, X.controls.fullscreen),
|
|
19341
|
+
pip: Ch(t?.pip, X.controls.pip),
|
|
19342
|
+
buffering: Ch(t?.buffering, X.controls.buffering),
|
|
19343
|
+
inputFeedback: Ch(t?.inputFeedback, X.controls.inputFeedback),
|
|
19344
|
+
logo: Ch(t?.logo, X.controls.logo),
|
|
19345
|
+
gestures: Ch(t?.gestures, X.controls.gestures),
|
|
19346
|
+
hotkeys: Ch(t?.hotkeys, X.controls.hotkeys)
|
|
19313
19347
|
};
|
|
19314
19348
|
}
|
|
19315
|
-
function
|
|
19349
|
+
function Dh(e) {
|
|
19316
19350
|
let t = e.capabilities, n = t?.speed, r = t?.share;
|
|
19317
19351
|
return {
|
|
19318
|
-
chapters:
|
|
19319
|
-
captions:
|
|
19352
|
+
chapters: Ch(t?.chapters, X.capabilities.chapters),
|
|
19353
|
+
captions: Ch(t?.captions, X.capabilities.captions),
|
|
19320
19354
|
speed: {
|
|
19321
19355
|
enabled: n === void 0 ? X.capabilities.speed.enabled : n !== !1,
|
|
19322
19356
|
options: typeof n == "object" && n.options !== void 0 ? [...n.options] : [...X.capabilities.speed.options]
|
|
@@ -19329,17 +19363,17 @@ function Th(e) {
|
|
|
19329
19363
|
targets: typeof r == "object" && r.targets !== void 0 ? X.capabilities.share.targets.filter((e) => r.targets?.includes(e)) : [...X.capabilities.share.targets],
|
|
19330
19364
|
templates: { message: typeof r == "object" && r.templates?.message !== void 0 ? r.templates.message : X.capabilities.share.templates.message }
|
|
19331
19365
|
},
|
|
19332
|
-
contextPanel:
|
|
19366
|
+
contextPanel: Ch(t?.contextPanel, X.capabilities.contextPanel)
|
|
19333
19367
|
};
|
|
19334
19368
|
}
|
|
19335
|
-
function
|
|
19369
|
+
function Oh(e, t) {
|
|
19336
19370
|
return t.reduce((t, n) => {
|
|
19337
19371
|
let r = Math.abs(n - e), i = Math.abs(t - e);
|
|
19338
19372
|
return Math.abs(r - i) <= 2 ** -52 * Math.max(1, r, i) * 4 ? Math.min(n, t) : r < i ? n : t;
|
|
19339
19373
|
});
|
|
19340
19374
|
}
|
|
19341
|
-
function
|
|
19342
|
-
let r = t.speed.enabled ?
|
|
19375
|
+
function kh(e, t, n) {
|
|
19376
|
+
let r = t.speed.enabled ? Oh(n.playbackRate ?? X.initialState.playbackRate, t.speed.options) : X.initialState.playbackRate;
|
|
19343
19377
|
if (!t.captions.enabled) return {
|
|
19344
19378
|
playbackRate: r,
|
|
19345
19379
|
captions: { enabled: !1 }
|
|
@@ -19353,58 +19387,58 @@ function Dh(e, t, n) {
|
|
|
19353
19387
|
}
|
|
19354
19388
|
};
|
|
19355
19389
|
}
|
|
19356
|
-
function
|
|
19357
|
-
let t =
|
|
19390
|
+
function Ah(e) {
|
|
19391
|
+
let t = xh(e);
|
|
19358
19392
|
return {
|
|
19359
19393
|
...t,
|
|
19360
19394
|
sources: t.sources,
|
|
19361
19395
|
tracks: t.tracks ?? [...X.content.tracks],
|
|
19362
19396
|
chapters: t.chapters ?? [...X.content.chapters],
|
|
19363
|
-
metadata: t.metadata ??
|
|
19397
|
+
metadata: t.metadata ?? xh(X.content.metadata)
|
|
19364
19398
|
};
|
|
19365
19399
|
}
|
|
19366
|
-
function
|
|
19367
|
-
let n =
|
|
19368
|
-
return
|
|
19400
|
+
function jh(e, t = {}) {
|
|
19401
|
+
let n = Dh(e);
|
|
19402
|
+
return Sh({
|
|
19369
19403
|
version: X.version,
|
|
19370
19404
|
layout: e.layout,
|
|
19371
|
-
language:
|
|
19372
|
-
content:
|
|
19373
|
-
controls:
|
|
19405
|
+
language: xh(e.language ?? X.language),
|
|
19406
|
+
content: Ah(e.content),
|
|
19407
|
+
controls: Eh(e),
|
|
19374
19408
|
capabilities: n,
|
|
19375
|
-
strings:
|
|
19376
|
-
initialState:
|
|
19409
|
+
strings: xh(e.strings ?? X.strings),
|
|
19410
|
+
initialState: kh(e, n, t)
|
|
19377
19411
|
});
|
|
19378
19412
|
}
|
|
19379
19413
|
//#endregion
|
|
19380
19414
|
//#region src/user-state/storage.ts
|
|
19381
|
-
var
|
|
19382
|
-
function
|
|
19415
|
+
var Mh = "lt-player:user:v1", Nh = !1, Ph = Object.freeze({});
|
|
19416
|
+
function Fh(e) {
|
|
19383
19417
|
return Object.freeze({ ...e });
|
|
19384
19418
|
}
|
|
19385
|
-
function
|
|
19419
|
+
function Ih(e) {
|
|
19386
19420
|
try {
|
|
19387
19421
|
return Intl.getCanonicalLocales(e).length === 1;
|
|
19388
19422
|
} catch {
|
|
19389
19423
|
return !1;
|
|
19390
19424
|
}
|
|
19391
19425
|
}
|
|
19392
|
-
function
|
|
19393
|
-
if (typeof e != "object" || !e || Array.isArray(e)) return
|
|
19426
|
+
function Lh(e) {
|
|
19427
|
+
if (typeof e != "object" || !e || Array.isArray(e)) return Fh({});
|
|
19394
19428
|
let t = e, n = {};
|
|
19395
|
-
return typeof t.volume == "number" && Number.isFinite(t.volume) && t.volume >= 0 && t.volume <= 1 && (n.volume = t.volume), typeof t.muted == "boolean" && (n.muted = t.muted), typeof t.playbackRate == "number" && Number.isFinite(t.playbackRate) && t.playbackRate > 0 && (n.playbackRate = t.playbackRate), typeof t.captionsEnabled == "boolean" && (n.captionsEnabled = t.captionsEnabled), typeof t.captionsLanguage == "string" &&
|
|
19429
|
+
return typeof t.volume == "number" && Number.isFinite(t.volume) && t.volume >= 0 && t.volume <= 1 && (n.volume = t.volume), typeof t.muted == "boolean" && (n.muted = t.muted), typeof t.playbackRate == "number" && Number.isFinite(t.playbackRate) && t.playbackRate > 0 && (n.playbackRate = t.playbackRate), typeof t.captionsEnabled == "boolean" && (n.captionsEnabled = t.captionsEnabled), typeof t.captionsLanguage == "string" && Ih(t.captionsLanguage) && (n.captionsLanguage = t.captionsLanguage), Fh(n);
|
|
19396
19430
|
}
|
|
19397
|
-
function
|
|
19398
|
-
|
|
19431
|
+
function Rh(e) {
|
|
19432
|
+
Nh = !0, e !== void 0 && (Ph = Fh(e));
|
|
19399
19433
|
}
|
|
19400
|
-
function
|
|
19434
|
+
function zh(e = {}) {
|
|
19401
19435
|
let t = e.getStorage ?? (() => globalThis.localStorage), n = e.stringify ?? JSON.stringify, r, i = () => {
|
|
19402
|
-
if (!
|
|
19436
|
+
if (!Nh) {
|
|
19403
19437
|
if (r !== void 0) return r;
|
|
19404
19438
|
try {
|
|
19405
19439
|
return r = t(), r;
|
|
19406
19440
|
} catch {
|
|
19407
|
-
|
|
19441
|
+
Rh();
|
|
19408
19442
|
return;
|
|
19409
19443
|
}
|
|
19410
19444
|
}
|
|
@@ -19412,74 +19446,74 @@ function Lh(e = {}) {
|
|
|
19412
19446
|
return {
|
|
19413
19447
|
read() {
|
|
19414
19448
|
let e = i();
|
|
19415
|
-
if (e === void 0) return
|
|
19449
|
+
if (e === void 0) return Fh(Ph);
|
|
19416
19450
|
let t;
|
|
19417
19451
|
try {
|
|
19418
|
-
t = e.getItem(
|
|
19452
|
+
t = e.getItem(Mh);
|
|
19419
19453
|
} catch {
|
|
19420
|
-
return
|
|
19454
|
+
return Rh(), Fh(Ph);
|
|
19421
19455
|
}
|
|
19422
|
-
if (t === null) return
|
|
19456
|
+
if (t === null) return Fh({});
|
|
19423
19457
|
try {
|
|
19424
|
-
return
|
|
19458
|
+
return Lh(JSON.parse(t));
|
|
19425
19459
|
} catch {
|
|
19426
|
-
return
|
|
19460
|
+
return Fh({});
|
|
19427
19461
|
}
|
|
19428
19462
|
},
|
|
19429
19463
|
write(e) {
|
|
19430
|
-
let t =
|
|
19431
|
-
if (
|
|
19432
|
-
|
|
19464
|
+
let t = Lh(e);
|
|
19465
|
+
if (Nh) {
|
|
19466
|
+
Ph = t;
|
|
19433
19467
|
return;
|
|
19434
19468
|
}
|
|
19435
19469
|
let r;
|
|
19436
19470
|
try {
|
|
19437
19471
|
r = n(t);
|
|
19438
19472
|
} catch {
|
|
19439
|
-
|
|
19473
|
+
Rh(t);
|
|
19440
19474
|
return;
|
|
19441
19475
|
}
|
|
19442
19476
|
let a = i();
|
|
19443
19477
|
if (a === void 0) {
|
|
19444
|
-
|
|
19478
|
+
Ph = t;
|
|
19445
19479
|
return;
|
|
19446
19480
|
}
|
|
19447
19481
|
try {
|
|
19448
|
-
a.setItem(
|
|
19482
|
+
a.setItem(Mh, r);
|
|
19449
19483
|
} catch {
|
|
19450
|
-
|
|
19484
|
+
Rh(t);
|
|
19451
19485
|
}
|
|
19452
19486
|
}
|
|
19453
19487
|
};
|
|
19454
19488
|
}
|
|
19455
19489
|
//#endregion
|
|
19456
19490
|
//#region src/user-state/user-state.ts
|
|
19457
|
-
var
|
|
19458
|
-
function
|
|
19491
|
+
var Bh = Symbol("ignore-observed-value");
|
|
19492
|
+
function Vh(e) {
|
|
19459
19493
|
return Object.freeze({ ...e });
|
|
19460
19494
|
}
|
|
19461
|
-
function
|
|
19462
|
-
let t = e.textTracks.find((e) =>
|
|
19495
|
+
function Hh(e) {
|
|
19496
|
+
let t = e.textTracks.find((e) => Uh(e) && (e.mode === "hidden" || e.mode === "showing"));
|
|
19463
19497
|
return t === void 0 ? "off" : `on:${t.id ?? ""}:${t.language}`;
|
|
19464
19498
|
}
|
|
19465
|
-
function
|
|
19499
|
+
function Uh(e) {
|
|
19466
19500
|
return e.kind === "captions" || e.kind === "subtitles";
|
|
19467
19501
|
}
|
|
19468
|
-
function
|
|
19502
|
+
function Wh(e) {
|
|
19469
19503
|
try {
|
|
19470
19504
|
return Intl.getCanonicalLocales(e)[0]?.toLowerCase();
|
|
19471
19505
|
} catch {
|
|
19472
19506
|
return;
|
|
19473
19507
|
}
|
|
19474
19508
|
}
|
|
19475
|
-
function
|
|
19476
|
-
let n =
|
|
19509
|
+
function Gh(e, t) {
|
|
19510
|
+
let n = Wh(e), r = Wh(t);
|
|
19477
19511
|
return n === void 0 || r === void 0 ? !1 : n === r || n.startsWith(`${r}-`) || r.startsWith(`${n}-`);
|
|
19478
19512
|
}
|
|
19479
|
-
function
|
|
19513
|
+
function Kh(e) {
|
|
19480
19514
|
return typeof e == "string" ? [e] : e;
|
|
19481
19515
|
}
|
|
19482
|
-
function
|
|
19516
|
+
function qh(e = zh()) {
|
|
19483
19517
|
let t;
|
|
19484
19518
|
return {
|
|
19485
19519
|
storage: e,
|
|
@@ -19488,12 +19522,12 @@ function Gh(e = Lh()) {
|
|
|
19488
19522
|
}
|
|
19489
19523
|
};
|
|
19490
19524
|
}
|
|
19491
|
-
var
|
|
19525
|
+
var Jh = class {
|
|
19492
19526
|
#e;
|
|
19493
19527
|
#t;
|
|
19494
19528
|
#n = /* @__PURE__ */ new Set();
|
|
19495
19529
|
#r = /* @__PURE__ */ new Map();
|
|
19496
|
-
#i =
|
|
19530
|
+
#i = Vh({});
|
|
19497
19531
|
#a;
|
|
19498
19532
|
#o = null;
|
|
19499
19533
|
#s = null;
|
|
@@ -19512,7 +19546,7 @@ var Kh = class {
|
|
|
19512
19546
|
getSnapshot = () => this.#i;
|
|
19513
19547
|
subscribe = (e) => this.#g ? () => void 0 : (this.#n.add(e), () => this.#n.delete(e));
|
|
19514
19548
|
start() {
|
|
19515
|
-
this.#h || this.#g || (this.#h = !0, this.#i =
|
|
19549
|
+
this.#h || this.#g || (this.#h = !0, this.#i = Vh(this.#t.hydrate()), this.#a = this.#e.getSnapshot(), this.#m = this.#a.canPlay, this.#o = this.#e.subscribe(this.#_), this.#k(), this.#y());
|
|
19516
19550
|
}
|
|
19517
19551
|
applyResolvedConfig(e, t) {
|
|
19518
19552
|
this.#g || (this.start(), this.#s = e, this.#c = t, this.#l += 1, this.#f = !0, this.#p = !0, this.#m = !1, this.#y());
|
|
@@ -19520,32 +19554,32 @@ var Kh = class {
|
|
|
19520
19554
|
setVolume(e) {
|
|
19521
19555
|
if (this.#g || (this.start(), !Number.isFinite(e))) return;
|
|
19522
19556
|
let t = Math.min(1, Math.max(0, e));
|
|
19523
|
-
this.#O({ volume: t }) && this.#D([["volume", t], ["muted",
|
|
19557
|
+
this.#O({ volume: t }) && this.#D([["volume", t], ["muted", Bh]], () => this.#e.setVolume(t));
|
|
19524
19558
|
}
|
|
19525
19559
|
setMuted(e) {
|
|
19526
19560
|
this.#g || (this.start(), !(!this.#O({ muted: e }) && this.#e.getSnapshot().muted === e) && this.#D([["muted", e]], () => this.#e.setMuted(e)));
|
|
19527
19561
|
}
|
|
19528
19562
|
setPlaybackRate(e) {
|
|
19529
19563
|
if (this.#g || (this.start(), this.#s?.capabilities.speed.enabled === !1) || !Number.isFinite(e) || e <= 0 || !this.#O({ playbackRate: e })) return;
|
|
19530
|
-
let t = this.#s?.capabilities.speed, n = t === void 0 ? e : t.enabled ?
|
|
19564
|
+
let t = this.#s?.capabilities.speed, n = t === void 0 ? e : t.enabled ? Oh(e, t.options) : 1;
|
|
19531
19565
|
this.#f = !1, this.#D([["playbackRate", n]], () => this.#e.setPlaybackRate(n));
|
|
19532
19566
|
}
|
|
19533
19567
|
setCaptions(e, t) {
|
|
19534
19568
|
if (this.#g || (this.start(), this.#s?.capabilities.captions.enabled === !1)) return;
|
|
19535
|
-
let n = t === void 0 ? void 0 :
|
|
19569
|
+
let n = t === void 0 ? void 0 : Lh({ captionsLanguage: t }).captionsLanguage, r = { captionsEnabled: e };
|
|
19536
19570
|
n !== void 0 && (r.captionsLanguage = n), this.#O(r) && (this.#p = !1, this.#m = this.#e.getSnapshot().canPlay, this.#T());
|
|
19537
19571
|
}
|
|
19538
19572
|
selectCaptionTrack(e, t) {
|
|
19539
19573
|
if (this.#g || (this.start(), this.#s?.capabilities.captions.enabled === !1)) return;
|
|
19540
|
-
let n = this.#e.getSnapshot().textTracks.find((t) =>
|
|
19574
|
+
let n = this.#e.getSnapshot().textTracks.find((t) => Uh(t) && t.id === e);
|
|
19541
19575
|
if (n === void 0) return;
|
|
19542
|
-
let r =
|
|
19576
|
+
let r = Lh({ captionsLanguage: t ?? n.language }).captionsLanguage;
|
|
19543
19577
|
this.#O({
|
|
19544
19578
|
captionsEnabled: !0,
|
|
19545
19579
|
...r === void 0 ? {} : { captionsLanguage: r }
|
|
19546
19580
|
}), this.#p = !1, this.#m = this.#e.getSnapshot().canPlay;
|
|
19547
19581
|
let i = `on:${e}:${n.language}`;
|
|
19548
|
-
|
|
19582
|
+
Hh(this.#e.getSnapshot()) !== i && this.#D([["captions", i]], () => this.#e.selectSubtitlesTrack(e));
|
|
19549
19583
|
}
|
|
19550
19584
|
refreshCaptions() {
|
|
19551
19585
|
this.#g || this.#s === null || (this.#a = this.#e.getSnapshot(), this.#p = !0, this.#m = !1, this.#C(this.#a));
|
|
@@ -19572,11 +19606,11 @@ var Kh = class {
|
|
|
19572
19606
|
}), this.#p) this.#C(t);
|
|
19573
19607
|
else if (!this.#m) t.canPlay && (this.#m = !0);
|
|
19574
19608
|
else {
|
|
19575
|
-
let n =
|
|
19609
|
+
let n = Hh(t), i = Hh(e);
|
|
19576
19610
|
this.#v("captions", n, i, () => {
|
|
19577
|
-
let e = t.textTracks.find((e) =>
|
|
19611
|
+
let e = t.textTracks.find((e) => Uh(e) && (e.mode === "hidden" || e.mode === "showing"));
|
|
19578
19612
|
if (r.captionsEnabled = e !== void 0, e !== void 0) {
|
|
19579
|
-
let t =
|
|
19613
|
+
let t = Lh({ captionsLanguage: e.language }).captionsLanguage;
|
|
19580
19614
|
t !== void 0 && (r.captionsLanguage = t);
|
|
19581
19615
|
}
|
|
19582
19616
|
});
|
|
@@ -19586,7 +19620,7 @@ var Kh = class {
|
|
|
19586
19620
|
#v(e, t, n, r) {
|
|
19587
19621
|
let i = this.#r.get(e);
|
|
19588
19622
|
if (i !== void 0) {
|
|
19589
|
-
(i.expected ===
|
|
19623
|
+
(i.expected === Bh || Object.is(t, i.expected)) && this.#r.delete(e);
|
|
19590
19624
|
return;
|
|
19591
19625
|
}
|
|
19592
19626
|
Object.is(t, n) || r(t);
|
|
@@ -19598,7 +19632,7 @@ var Kh = class {
|
|
|
19598
19632
|
}
|
|
19599
19633
|
async #b() {
|
|
19600
19634
|
let e = this.#i.volume, t = [];
|
|
19601
|
-
e !== void 0 && t.push(this.#D([["volume", e], ["muted",
|
|
19635
|
+
e !== void 0 && t.push(this.#D([["volume", e], ["muted", Bh]], () => this.#e.setVolume(e)));
|
|
19602
19636
|
let n = this.#c === "feed" || this.#i.muted;
|
|
19603
19637
|
n !== void 0 && t.push(this.#D([["muted", n]], () => this.#e.setMuted(n))), await Promise.all(t);
|
|
19604
19638
|
}
|
|
@@ -19623,7 +19657,7 @@ var Kh = class {
|
|
|
19623
19657
|
#C(e) {
|
|
19624
19658
|
if (!this.#p || this.#s === null || !e.attached || this.#r.has("captions")) return;
|
|
19625
19659
|
let t = this.#E(e);
|
|
19626
|
-
if (t !== null && t.value !==
|
|
19660
|
+
if (t !== null && t.value !== Hh(e)) {
|
|
19627
19661
|
let e = this.#l;
|
|
19628
19662
|
this.#D([["captions", t.value]], () => this.#e.selectSubtitlesTrack(t.action)).then(() => {
|
|
19629
19663
|
!this.#g && e === this.#l && this.#e.getSnapshot().canPlay && this.#w();
|
|
@@ -19638,7 +19672,7 @@ var Kh = class {
|
|
|
19638
19672
|
#T() {
|
|
19639
19673
|
if (!this.#a.attached) return;
|
|
19640
19674
|
let e = this.#E(this.#a);
|
|
19641
|
-
e !== null && e.value !==
|
|
19675
|
+
e !== null && e.value !== Hh(this.#a) && this.#D([["captions", e.value]], () => this.#e.selectSubtitlesTrack(e.action));
|
|
19642
19676
|
}
|
|
19643
19677
|
#E(e) {
|
|
19644
19678
|
let t = this.#s;
|
|
@@ -19646,13 +19680,13 @@ var Kh = class {
|
|
|
19646
19680
|
action: "off",
|
|
19647
19681
|
value: "off"
|
|
19648
19682
|
};
|
|
19649
|
-
let n = e.textTracks.filter(
|
|
19683
|
+
let n = e.textTracks.filter(Uh);
|
|
19650
19684
|
if (n.length === 0) return null;
|
|
19651
19685
|
let r = [
|
|
19652
19686
|
this.#i.captionsLanguage,
|
|
19653
19687
|
t.initialState.captions.language,
|
|
19654
|
-
...
|
|
19655
|
-
].filter((e) => e !== void 0).map((e) => n.find((t) =>
|
|
19688
|
+
...Kh(t.language)
|
|
19689
|
+
].filter((e) => e !== void 0).map((e) => n.find((t) => Gh(t.language, e))).find((e) => e !== void 0) ?? n[0];
|
|
19656
19690
|
return r?.id === void 0 ? null : {
|
|
19657
19691
|
action: r.id,
|
|
19658
19692
|
value: `on:${r.id}:${r.language}`
|
|
@@ -19679,7 +19713,7 @@ var Kh = class {
|
|
|
19679
19713
|
});
|
|
19680
19714
|
}
|
|
19681
19715
|
#O(e) {
|
|
19682
|
-
let t =
|
|
19716
|
+
let t = Vh({
|
|
19683
19717
|
...this.#i,
|
|
19684
19718
|
...e
|
|
19685
19719
|
});
|
|
@@ -19689,10 +19723,10 @@ var Kh = class {
|
|
|
19689
19723
|
for (let e of this.#n) e();
|
|
19690
19724
|
}
|
|
19691
19725
|
};
|
|
19692
|
-
function
|
|
19693
|
-
return new
|
|
19726
|
+
function Yh(e, t = qh()) {
|
|
19727
|
+
return new Jh(e, t);
|
|
19694
19728
|
}
|
|
19695
|
-
var
|
|
19729
|
+
var Xh = 1e4, Zh = 1e4, Qh = eg("idle", null, null), $h = {
|
|
19696
19730
|
idle: { start: "buffering" },
|
|
19697
19731
|
buffering: {
|
|
19698
19732
|
frames: "playing",
|
|
@@ -19707,7 +19741,7 @@ var Jh = 1e4, Yh = 1e4, Xh = Qh("idle", null, null), Zh = {
|
|
|
19707
19741
|
ended: { replay: "buffering" },
|
|
19708
19742
|
error: { retry: "buffering" }
|
|
19709
19743
|
};
|
|
19710
|
-
function
|
|
19744
|
+
function eg(e, t, n) {
|
|
19711
19745
|
return Object.freeze({
|
|
19712
19746
|
playback: e,
|
|
19713
19747
|
errorKind: t,
|
|
@@ -19715,19 +19749,19 @@ function Qh(e, t, n) {
|
|
|
19715
19749
|
retryable: e === "error" && t === "media"
|
|
19716
19750
|
});
|
|
19717
19751
|
}
|
|
19718
|
-
function
|
|
19752
|
+
function tg(e) {
|
|
19719
19753
|
return e.error === null ? e.ended ? "ended" : e.started ? e.waiting ? "buffering" : e.paused ? "paused" : "playing" : "idle" : "error";
|
|
19720
19754
|
}
|
|
19721
|
-
function
|
|
19722
|
-
return t === "media-error" || t === "config-error" ? "error" : t === "standalone-update" ? "idle" : t === "feed-update" ? "buffering" :
|
|
19755
|
+
function ng(e, t) {
|
|
19756
|
+
return t === "media-error" || t === "config-error" ? "error" : t === "standalone-update" ? "idle" : t === "feed-update" ? "buffering" : $h[e]?.[t] ?? e;
|
|
19723
19757
|
}
|
|
19724
|
-
function
|
|
19758
|
+
function rg(e) {
|
|
19725
19759
|
return e;
|
|
19726
19760
|
}
|
|
19727
|
-
var
|
|
19761
|
+
var ig = class {
|
|
19728
19762
|
#e;
|
|
19729
19763
|
#t = /* @__PURE__ */ new Set();
|
|
19730
|
-
#n =
|
|
19764
|
+
#n = Qh;
|
|
19731
19765
|
#r = null;
|
|
19732
19766
|
#i = null;
|
|
19733
19767
|
#a = "idle";
|
|
@@ -19754,7 +19788,7 @@ var ng = class {
|
|
|
19754
19788
|
subscribe = (e) => this.#_ ? () => void 0 : (this.#t.add(e), () => this.#t.delete(e));
|
|
19755
19789
|
applyEngineSnapshot(e) {
|
|
19756
19790
|
if (this.#_) return;
|
|
19757
|
-
let t = this.#o, n = t !== null && Number.isFinite(e.currentTime) && e.currentTime > t.currentTime, r = t !== null && !t.canPlay && e.canPlay, i =
|
|
19791
|
+
let t = this.#o, n = t !== null && Number.isFinite(e.currentTime) && e.currentTime > t.currentTime, r = t !== null && !t.canPlay && e.canPlay, i = tg(e);
|
|
19758
19792
|
if (this.#o = e, (n || i === "playing") && (this.#c = !0), i === "error") {
|
|
19759
19793
|
if (this.#F(), this.#g) return;
|
|
19760
19794
|
this.#c && this.#a !== "error" ? this.#w(this.#A(e)) : this.#k(this.#A(e, !1));
|
|
@@ -19795,7 +19829,7 @@ var ng = class {
|
|
|
19795
19829
|
}
|
|
19796
19830
|
}
|
|
19797
19831
|
#y(e) {
|
|
19798
|
-
this.#a =
|
|
19832
|
+
this.#a = ng(this.#a, e);
|
|
19799
19833
|
}
|
|
19800
19834
|
#b(e = !1) {
|
|
19801
19835
|
if (this.#a === "buffering") {
|
|
@@ -19812,7 +19846,7 @@ var ng = class {
|
|
|
19812
19846
|
#S(e) {
|
|
19813
19847
|
this.#u === null && (this.#u = setTimeout(() => {
|
|
19814
19848
|
this.#u = null, this.#a === "buffering" && !this.#g && this.#w(this.#A(e));
|
|
19815
|
-
},
|
|
19849
|
+
}, Xh));
|
|
19816
19850
|
}
|
|
19817
19851
|
#C(e) {
|
|
19818
19852
|
this.#F(), this.#S(e);
|
|
@@ -19832,7 +19866,7 @@ var ng = class {
|
|
|
19832
19866
|
let t = new AbortController();
|
|
19833
19867
|
this.#p = t, this.#f = setTimeout(() => {
|
|
19834
19868
|
e === this.#m && this.#p === t && (t.abort(), this.#D(e, t));
|
|
19835
|
-
},
|
|
19869
|
+
}, Zh);
|
|
19836
19870
|
let n;
|
|
19837
19871
|
try {
|
|
19838
19872
|
n = this.#e(this.#s, t.signal);
|
|
@@ -19865,7 +19899,7 @@ var ng = class {
|
|
|
19865
19899
|
this.#r = e;
|
|
19866
19900
|
}
|
|
19867
19901
|
#M(e) {
|
|
19868
|
-
let t =
|
|
19902
|
+
let t = eg(e, this.#r, this.#i);
|
|
19869
19903
|
if (t.playback !== this.#n.playback || t.errorKind !== this.#n.errorKind || t.mediaFailurePhase !== this.#n.mediaFailurePhase) {
|
|
19870
19904
|
this.#n = t;
|
|
19871
19905
|
for (let e of this.#t) e();
|
|
@@ -19887,30 +19921,30 @@ var ng = class {
|
|
|
19887
19921
|
this.#f !== null && (clearTimeout(this.#f), this.#f = null);
|
|
19888
19922
|
}
|
|
19889
19923
|
};
|
|
19890
|
-
function
|
|
19891
|
-
return new
|
|
19924
|
+
function ag(e) {
|
|
19925
|
+
return new ig(e);
|
|
19892
19926
|
}
|
|
19893
19927
|
//#endregion
|
|
19894
19928
|
//#region src/core/player-state-context.tsx
|
|
19895
|
-
var
|
|
19896
|
-
function
|
|
19897
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
19929
|
+
var og = (0, w.createContext)(null);
|
|
19930
|
+
function sg({ children: e, controller: t }) {
|
|
19931
|
+
return /* @__PURE__ */ (0, N.jsx)(og, {
|
|
19898
19932
|
value: t,
|
|
19899
19933
|
children: e
|
|
19900
19934
|
});
|
|
19901
19935
|
}
|
|
19902
|
-
function
|
|
19903
|
-
let e = (0, w.useContext)(
|
|
19936
|
+
function cg() {
|
|
19937
|
+
let e = (0, w.useContext)(og);
|
|
19904
19938
|
if (e === null) throw Error("usePlayerStateController must be used within PlayerStateProvider");
|
|
19905
19939
|
return e;
|
|
19906
19940
|
}
|
|
19907
|
-
function
|
|
19908
|
-
let e =
|
|
19909
|
-
return Et(e.subscribe, e.getSnapshot,
|
|
19941
|
+
function lg() {
|
|
19942
|
+
let e = cg();
|
|
19943
|
+
return Et(e.subscribe, e.getSnapshot, rg, Object.is);
|
|
19910
19944
|
}
|
|
19911
19945
|
//#endregion
|
|
19912
19946
|
//#region src/core/identity.tsx
|
|
19913
|
-
function
|
|
19947
|
+
function ug({ author: e, hidden: t = !1, surface: n, title: r }) {
|
|
19914
19948
|
if (e === void 0 && r === void 0) return null;
|
|
19915
19949
|
let i = n === "cover", a = !i && t;
|
|
19916
19950
|
return /* @__PURE__ */ (0, N.jsxs)("span", {
|
|
@@ -19934,7 +19968,7 @@ function cg({ author: e, hidden: t = !1, surface: n, title: r }) {
|
|
|
19934
19968
|
}
|
|
19935
19969
|
//#endregion
|
|
19936
19970
|
//#region src/core/cover.tsx
|
|
19937
|
-
function
|
|
19971
|
+
function dg(e, t) {
|
|
19938
19972
|
let n = (0, w.useRef)({
|
|
19939
19973
|
generation: t,
|
|
19940
19974
|
hasPlayed: !1,
|
|
@@ -19952,14 +19986,14 @@ function lg(e, t) {
|
|
|
19952
19986
|
"ended"
|
|
19953
19987
|
].includes(e) && (r.hasPlayed = !0), !r.hasPlayed;
|
|
19954
19988
|
}
|
|
19955
|
-
function
|
|
19956
|
-
let r =
|
|
19989
|
+
function fg(e, t, n) {
|
|
19990
|
+
let r = dg(e, t), i = n && r;
|
|
19957
19991
|
return {
|
|
19958
19992
|
chromeVisible: !n || !i,
|
|
19959
19993
|
coverVisible: i
|
|
19960
19994
|
};
|
|
19961
19995
|
}
|
|
19962
|
-
function
|
|
19996
|
+
function pg({ author: e, buttonEnabled: t, buttonLabel: n, imageEnabled: r, layout: i, onPlay: a, playback: o, poster: s, title: c, visible: l, visibleButtonLabel: u }) {
|
|
19963
19997
|
let [d, f] = (0, w.useState)(!1), p = (0, w.useRef)(!1), m = (0, w.useRef)(o);
|
|
19964
19998
|
return m.current = o, l ? /* @__PURE__ */ (0, N.jsxs)("button", {
|
|
19965
19999
|
"aria-disabled": d || o === "buffering" || void 0,
|
|
@@ -19979,7 +20013,7 @@ function dg({ author: e, buttonEnabled: t, buttonLabel: n, imageEnabled: r, layo
|
|
|
19979
20013
|
className: "ltp-cover__poster",
|
|
19980
20014
|
src: s
|
|
19981
20015
|
}) : null,
|
|
19982
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
20016
|
+
/* @__PURE__ */ (0, N.jsx)(ug, {
|
|
19983
20017
|
author: e,
|
|
19984
20018
|
surface: "cover",
|
|
19985
20019
|
title: c
|
|
@@ -20001,13 +20035,13 @@ function dg({ author: e, buttonEnabled: t, buttonLabel: n, imageEnabled: r, layo
|
|
|
20001
20035
|
}
|
|
20002
20036
|
//#endregion
|
|
20003
20037
|
//#region src/core/control-visibility.ts
|
|
20004
|
-
var
|
|
20005
|
-
function
|
|
20038
|
+
var mg = 3e3, hg = 2e3, gg = Object.freeze({ visible: !0 }), _g = Object.freeze({ visible: !1 });
|
|
20039
|
+
function vg(e) {
|
|
20006
20040
|
return e !== null && e.layout === "landscape" && e.playback === "playing" && !e.configurationError;
|
|
20007
20041
|
}
|
|
20008
|
-
function
|
|
20009
|
-
let e = null, t = !1, n = Date.now(), r =
|
|
20010
|
-
let t = e ?
|
|
20042
|
+
function yg() {
|
|
20043
|
+
let e = null, t = !1, n = Date.now(), r = gg, i = null, a = /* @__PURE__ */ new Set(), o = /* @__PURE__ */ new Set(), s = (e) => {
|
|
20044
|
+
let t = e ? gg : _g;
|
|
20011
20045
|
if (r !== t) {
|
|
20012
20046
|
r = t;
|
|
20013
20047
|
for (let e of a) e();
|
|
@@ -20015,10 +20049,10 @@ function _g() {
|
|
|
20015
20049
|
}, c = () => {
|
|
20016
20050
|
i !== null && (clearTimeout(i), i = null);
|
|
20017
20051
|
}, l = () => e !== null && (e.engine.userActive || e.engine.controlsVisible), u = () => {
|
|
20018
|
-
if (c(), !
|
|
20019
|
-
let r = Math.max(0, n +
|
|
20052
|
+
if (c(), !vg(e) || o.size > 0) return;
|
|
20053
|
+
let r = Math.max(0, n + mg - Date.now());
|
|
20020
20054
|
i = setTimeout(() => {
|
|
20021
|
-
i = null, !t &&
|
|
20055
|
+
i = null, !t && vg(e) && o.size === 0 && !l() && s(!1);
|
|
20022
20056
|
}, r);
|
|
20023
20057
|
}, d = () => {
|
|
20024
20058
|
t || e?.layout === "portrait" || (n = Date.now(), s(!0), u());
|
|
@@ -20026,12 +20060,12 @@ function _g() {
|
|
|
20026
20060
|
return Object.freeze({
|
|
20027
20061
|
apply(r) {
|
|
20028
20062
|
if (t) return;
|
|
20029
|
-
let i = e, a = i?.generation !== r.generation, f =
|
|
20063
|
+
let i = e, a = i?.generation !== r.generation, f = vg(r) && !vg(i), p = i !== null && !i.engine.userActive && r.engine.userActive, m = i !== null && i.engine.userActive && !r.engine.userActive && !r.engine.controlsVisible;
|
|
20030
20064
|
if (e = r, a || r.layout === "portrait") {
|
|
20031
|
-
n = Date.now(), c(), s(!0), r.layout === "landscape" &&
|
|
20065
|
+
n = Date.now(), c(), s(!0), r.layout === "landscape" && vg(r) && u();
|
|
20032
20066
|
return;
|
|
20033
20067
|
}
|
|
20034
|
-
if (!
|
|
20068
|
+
if (!vg(r)) {
|
|
20035
20069
|
c(), s(!0);
|
|
20036
20070
|
return;
|
|
20037
20071
|
}
|
|
@@ -20039,7 +20073,7 @@ function _g() {
|
|
|
20039
20073
|
d();
|
|
20040
20074
|
return;
|
|
20041
20075
|
}
|
|
20042
|
-
if (m && (n = Math.max(n, Date.now() -
|
|
20076
|
+
if (m && (n = Math.max(n, Date.now() - hg)), o.size > 0 || l()) {
|
|
20043
20077
|
c(), s(!0);
|
|
20044
20078
|
return;
|
|
20045
20079
|
}
|
|
@@ -20064,7 +20098,7 @@ function _g() {
|
|
|
20064
20098
|
},
|
|
20065
20099
|
setGestureVisibility(n) {
|
|
20066
20100
|
if (!(t || e?.layout === "portrait")) {
|
|
20067
|
-
if (n || !
|
|
20101
|
+
if (n || !vg(e) || o.size > 0) {
|
|
20068
20102
|
d();
|
|
20069
20103
|
return;
|
|
20070
20104
|
}
|
|
@@ -20078,40 +20112,40 @@ function _g() {
|
|
|
20078
20112
|
}
|
|
20079
20113
|
//#endregion
|
|
20080
20114
|
//#region src/core/control-visibility-context.tsx
|
|
20081
|
-
var
|
|
20082
|
-
function
|
|
20083
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
20115
|
+
var bg = (0, w.createContext)(null);
|
|
20116
|
+
function xg({ children: e, controller: t }) {
|
|
20117
|
+
return /* @__PURE__ */ (0, N.jsx)(bg, {
|
|
20084
20118
|
value: t,
|
|
20085
20119
|
children: e
|
|
20086
20120
|
});
|
|
20087
20121
|
}
|
|
20088
|
-
function
|
|
20089
|
-
let e = (0, w.useContext)(
|
|
20122
|
+
function Sg() {
|
|
20123
|
+
let e = (0, w.useContext)(bg);
|
|
20090
20124
|
if (e === null) throw Error("Control visibility hooks must be used within ControlVisibilityProvider");
|
|
20091
20125
|
return e;
|
|
20092
20126
|
}
|
|
20093
|
-
function
|
|
20094
|
-
let e =
|
|
20127
|
+
function Cg() {
|
|
20128
|
+
let e = Sg();
|
|
20095
20129
|
return (0, w.useSyncExternalStore)(e.subscribe, e.getSnapshot, e.getSnapshot);
|
|
20096
20130
|
}
|
|
20097
|
-
function
|
|
20098
|
-
let t =
|
|
20131
|
+
function wg(e) {
|
|
20132
|
+
let t = Sg();
|
|
20099
20133
|
(0, w.useEffect)(() => {
|
|
20100
20134
|
if (e) return t.requestControlsLock();
|
|
20101
20135
|
}, [e, t]);
|
|
20102
20136
|
}
|
|
20103
|
-
var
|
|
20104
|
-
function
|
|
20105
|
-
return e instanceof Element ? e.closest(
|
|
20137
|
+
var Tg = "[data-ltp-control-visibility-lock]", Eg = "button, input, select, textarea, [role=\"button\"], [tabindex]:not([tabindex=\"-1\"])";
|
|
20138
|
+
function Dg(e) {
|
|
20139
|
+
return e instanceof Element ? e.closest(Tg) : null;
|
|
20106
20140
|
}
|
|
20107
|
-
function
|
|
20108
|
-
return e instanceof HTMLElement && e.matches(
|
|
20141
|
+
function Og(e) {
|
|
20142
|
+
return e instanceof HTMLElement && e.matches(Eg) && e.closest(Tg) !== null && e.matches(":focus-visible");
|
|
20109
20143
|
}
|
|
20110
|
-
function
|
|
20111
|
-
let t =
|
|
20144
|
+
function kg(e = !0) {
|
|
20145
|
+
let t = Sg(), n = (0, w.useRef)(null), r = (0, w.useRef)(null), i = (0, w.useRef)(null), a = (0, w.useRef)(/* @__PURE__ */ new Map()), o = (0, w.useRef)(/* @__PURE__ */ new Set()), s = (0, w.useCallback)(() => {
|
|
20112
20146
|
n.current?.(), n.current = null;
|
|
20113
20147
|
}, []), c = (0, w.useCallback)((e) => {
|
|
20114
|
-
!
|
|
20148
|
+
!Og(e) || n.current !== null || (n.current = t.requestControlsLock());
|
|
20115
20149
|
}, [t]), l = (0, w.useCallback)(() => {
|
|
20116
20150
|
i.current?.(), i.current = null, r.current = null;
|
|
20117
20151
|
}, []), u = (0, w.useCallback)((e) => {
|
|
@@ -20137,10 +20171,10 @@ function Dg(e = !0) {
|
|
|
20137
20171
|
}, [e]), {
|
|
20138
20172
|
onBlurCapture(e) {
|
|
20139
20173
|
let t = e.relatedTarget;
|
|
20140
|
-
|
|
20174
|
+
Og(t) || s();
|
|
20141
20175
|
},
|
|
20142
20176
|
onFocusCapture(e) {
|
|
20143
|
-
c(e.target),
|
|
20177
|
+
c(e.target), Og(e.target) && t.noteInteraction();
|
|
20144
20178
|
},
|
|
20145
20179
|
onKeyDownCapture(e) {
|
|
20146
20180
|
t.noteInteraction(), c(e.target);
|
|
@@ -20149,18 +20183,18 @@ function Dg(e = !0) {
|
|
|
20149
20183
|
u(e.pointerId);
|
|
20150
20184
|
},
|
|
20151
20185
|
onPointerDownCapture(n) {
|
|
20152
|
-
s(), n.pointerType === "mouse" && t.noteInteraction(), !(n.pointerType !== "touch" || !e || !t.getSnapshot().visible ||
|
|
20186
|
+
s(), n.pointerType === "mouse" && t.noteInteraction(), !(n.pointerType !== "touch" || !e || !t.getSnapshot().visible || Dg(n.target) === null) && (a.current.has(n.pointerId) || a.current.set(n.pointerId, t.requestControlsLock()));
|
|
20153
20187
|
},
|
|
20154
20188
|
onPointerMoveCapture(e) {
|
|
20155
20189
|
e.pointerType === "mouse" && t.noteInteraction();
|
|
20156
20190
|
},
|
|
20157
20191
|
onPointerOutCapture(e) {
|
|
20158
|
-
let t =
|
|
20192
|
+
let t = Dg(e.target), n = Dg(e.relatedTarget);
|
|
20159
20193
|
t !== null && t === r.current && t !== n && l();
|
|
20160
20194
|
},
|
|
20161
20195
|
onPointerOverCapture(e) {
|
|
20162
20196
|
if (e.pointerType !== "mouse" && e.pointerType !== "pen") return;
|
|
20163
|
-
let n =
|
|
20197
|
+
let n = Dg(e.target);
|
|
20164
20198
|
n !== null && n !== r.current && (l(), r.current = n, i.current = t.requestControlsLock());
|
|
20165
20199
|
},
|
|
20166
20200
|
onPointerUpCapture(n) {
|
|
@@ -20170,12 +20204,12 @@ function Dg(e = !0) {
|
|
|
20170
20204
|
}
|
|
20171
20205
|
//#endregion
|
|
20172
20206
|
//#region src/core/input-bindings.tsx
|
|
20173
|
-
var
|
|
20174
|
-
function
|
|
20175
|
-
let r = Bt(), i = Lt(), a =
|
|
20207
|
+
var Ag = .05;
|
|
20208
|
+
function jg({ disabled: e, layout: t, policy: n }) {
|
|
20209
|
+
let r = Bt(), i = Lt(), a = Xm(), { toggle: o } = Jf(), s = Rf(), c = Sg(), l = a.getModule("share"), u = a.getModule("contextPanel"), d = (0, w.useSyncExternalStore)(l.subscribeInteraction, l.getInteractionSnapshot, l.getInteractionSnapshot).open, f = (0, w.useSyncExternalStore)(u.subscribeInteraction, u.getInteractionSnapshot, u.getInteractionSnapshot).view;
|
|
20176
20210
|
return (0, w.useEffect)(() => {
|
|
20177
20211
|
if (r === null) return;
|
|
20178
|
-
let a = [], p = n.hotkeys && !e, m = n.gestures && !e, h = (e, t, r) =>
|
|
20212
|
+
let a = [], p = n.hotkeys && !e, m = n.gestures && !e, h = (e, t, r) => Mg(i, e, t, r, n.speedOptions, (e) => s.setPlaybackRate(e), e === "toggleControls" ? c.setGestureVisibility : void 0), g = (e, t, n, i) => {
|
|
20179
20213
|
!p || !n || a.push(Oi(r, {
|
|
20180
20214
|
action: t,
|
|
20181
20215
|
keys: e,
|
|
@@ -20184,7 +20218,7 @@ function kg({ disabled: e, layout: t, policy: n }) {
|
|
|
20184
20218
|
onActivate: (e, n) => h(t, i, n)
|
|
20185
20219
|
}));
|
|
20186
20220
|
};
|
|
20187
|
-
g("Space", "togglePaused", n.playPause), g("k", "togglePaused", n.playPause), g("ArrowLeft", "seekStep", n.seek, -n.seekStep), g("j", "seekStep", n.seek, -n.seekStep), g("ArrowRight", "seekStep", n.seek, n.seekStep), g("l", "seekStep", n.seek, n.seekStep), g("ArrowUp", "volumeStep", n.volume,
|
|
20221
|
+
g("Space", "togglePaused", n.playPause), g("k", "togglePaused", n.playPause), g("ArrowLeft", "seekStep", n.seek, -n.seekStep), g("j", "seekStep", n.seek, -n.seekStep), g("ArrowRight", "seekStep", n.seek, n.seekStep), g("l", "seekStep", n.seek, n.seekStep), g("ArrowUp", "volumeStep", n.volume, Ag), g("ArrowDown", "volumeStep", n.volume, -.05), g("m", "toggleMuted", n.volume), g("f", "toggleFullscreen", n.fullscreen), p && n.captions && a.push(Oi(r, {
|
|
20188
20222
|
action: "toggleSubtitles",
|
|
20189
20223
|
keys: "c",
|
|
20190
20224
|
repeatable: !1,
|
|
@@ -20227,7 +20261,7 @@ function kg({ disabled: e, layout: t, policy: n }) {
|
|
|
20227
20261
|
s
|
|
20228
20262
|
]), null;
|
|
20229
20263
|
}
|
|
20230
|
-
function
|
|
20264
|
+
function Mg(e, t, n, r, i = [], a = () => void 0, o) {
|
|
20231
20265
|
if (t.startsWith("toggle")) {
|
|
20232
20266
|
let n = e.state[t];
|
|
20233
20267
|
if (typeof n == "function") {
|
|
@@ -20243,7 +20277,7 @@ function Ag(e, t, n, r, i = [], a = () => void 0, o) {
|
|
|
20243
20277
|
} else if (t === "speedUp" || t === "speedDown") {
|
|
20244
20278
|
let n = ai(e.state);
|
|
20245
20279
|
if (!n) return;
|
|
20246
|
-
let r =
|
|
20280
|
+
let r = ap(i, n.playbackRate, t === "speedUp" ? "forward" : "backward");
|
|
20247
20281
|
r !== null && a(r);
|
|
20248
20282
|
} else if (t === "seekToPercent") {
|
|
20249
20283
|
let t = si(e.state), i = n ?? (r !== void 0 && r >= "0" && r <= "9" ? Number(r) * 10 : void 0);
|
|
@@ -20252,7 +20286,7 @@ function Ag(e, t, n, r, i = [], a = () => void 0, o) {
|
|
|
20252
20286
|
}
|
|
20253
20287
|
//#endregion
|
|
20254
20288
|
//#region src/core/media-session.ts
|
|
20255
|
-
var
|
|
20289
|
+
var Ng = [
|
|
20256
20290
|
"play",
|
|
20257
20291
|
"pause",
|
|
20258
20292
|
"seekbackward",
|
|
@@ -20261,31 +20295,31 @@ var jg = [
|
|
|
20261
20295
|
"previoustrack",
|
|
20262
20296
|
"nexttrack"
|
|
20263
20297
|
];
|
|
20264
|
-
function
|
|
20298
|
+
function Pg() {
|
|
20265
20299
|
return typeof navigator > "u" || !("mediaSession" in navigator) ? null : navigator.mediaSession;
|
|
20266
20300
|
}
|
|
20267
|
-
function
|
|
20301
|
+
function Fg(e) {
|
|
20268
20302
|
return e.configurationError || e.playback === "error";
|
|
20269
20303
|
}
|
|
20270
|
-
function
|
|
20304
|
+
function Ig(e, t, n) {
|
|
20271
20305
|
try {
|
|
20272
20306
|
e.setActionHandler(t, n);
|
|
20273
20307
|
} catch {}
|
|
20274
20308
|
}
|
|
20275
|
-
function
|
|
20276
|
-
for (let t of
|
|
20309
|
+
function Lg(e) {
|
|
20310
|
+
for (let t of Ng) Ig(e, t, null);
|
|
20277
20311
|
}
|
|
20278
|
-
function
|
|
20312
|
+
function Rg(e) {
|
|
20279
20313
|
try {
|
|
20280
20314
|
e.setPositionState();
|
|
20281
20315
|
} catch {}
|
|
20282
20316
|
}
|
|
20283
|
-
function
|
|
20317
|
+
function zg(e, t) {
|
|
20284
20318
|
try {
|
|
20285
20319
|
e.playbackState = t;
|
|
20286
20320
|
} catch {}
|
|
20287
20321
|
}
|
|
20288
|
-
function
|
|
20322
|
+
function Bg(e, t) {
|
|
20289
20323
|
if (typeof MediaMetadata > "u") {
|
|
20290
20324
|
try {
|
|
20291
20325
|
e.metadata = null;
|
|
@@ -20307,9 +20341,9 @@ function Rg(e, t) {
|
|
|
20307
20341
|
} catch {}
|
|
20308
20342
|
}
|
|
20309
20343
|
}
|
|
20310
|
-
function
|
|
20344
|
+
function Vg(e, t) {
|
|
20311
20345
|
if (!Number.isFinite(t.duration) || t.duration <= 0 || !Number.isFinite(t.currentTime) || !Number.isFinite(t.playbackRate) || t.playbackRate <= 0) {
|
|
20312
|
-
|
|
20346
|
+
Rg(e);
|
|
20313
20347
|
return;
|
|
20314
20348
|
}
|
|
20315
20349
|
try {
|
|
@@ -20319,10 +20353,10 @@ function zg(e, t) {
|
|
|
20319
20353
|
position: Math.min(t.duration, Math.max(0, t.currentTime))
|
|
20320
20354
|
});
|
|
20321
20355
|
} catch {
|
|
20322
|
-
|
|
20356
|
+
Rg(e);
|
|
20323
20357
|
}
|
|
20324
20358
|
}
|
|
20325
|
-
var
|
|
20359
|
+
var Hg = new class {
|
|
20326
20360
|
#e = [];
|
|
20327
20361
|
#t = null;
|
|
20328
20362
|
#n = null;
|
|
@@ -20335,7 +20369,7 @@ var Bg = new class {
|
|
|
20335
20369
|
commands: t,
|
|
20336
20370
|
snapshot: e,
|
|
20337
20371
|
activity: 0,
|
|
20338
|
-
eligible: !
|
|
20372
|
+
eligible: !Fg(e),
|
|
20339
20373
|
destroyed: !1
|
|
20340
20374
|
};
|
|
20341
20375
|
return this.#e.push(n), (this.#t === null || !this.#t.eligible) && (this.#t = n.eligible ? n : this.#t), e.playback === "playing" && n.eligible ? this.#c(n) : this.#t === n && this.#u(n), {
|
|
@@ -20349,7 +20383,7 @@ var Bg = new class {
|
|
|
20349
20383
|
#o(e, t) {
|
|
20350
20384
|
if (e.destroyed) return;
|
|
20351
20385
|
let n = e.snapshot.playback === "playing", r = e.eligible;
|
|
20352
|
-
if (e.snapshot = t, e.eligible = !
|
|
20386
|
+
if (e.snapshot = t, e.eligible = !Fg(t), e.eligible && t.playback === "playing" && (!n || !r)) {
|
|
20353
20387
|
this.#c(e);
|
|
20354
20388
|
return;
|
|
20355
20389
|
}
|
|
@@ -20373,37 +20407,37 @@ var Bg = new class {
|
|
|
20373
20407
|
return t.length === 0 ? null : t.reduce((e, t) => t.activity === e.activity ? t.id < e.id ? t : e : t.activity > e.activity ? t : e);
|
|
20374
20408
|
}
|
|
20375
20409
|
#u(e) {
|
|
20376
|
-
let t =
|
|
20410
|
+
let t = Pg();
|
|
20377
20411
|
if (t === null) return;
|
|
20378
|
-
let n = e.snapshot, r = this.#r, i = this.#n !== e, a = r === null ||
|
|
20379
|
-
if (o &&
|
|
20380
|
-
|
|
20412
|
+
let n = e.snapshot, r = this.#r, i = this.#n !== e, a = r === null || Fg(r) !== !e.eligible, o = i || r === null || r.title !== n.title || r.artist !== n.artist || r.poster !== n.poster, s = i || a || r === null || r.playPauseEnabled !== n.playPauseEnabled || r.timelineEnabled !== n.timelineEnabled;
|
|
20413
|
+
if (o && Bg(t, n), s && Lg(t), !e.eligible) {
|
|
20414
|
+
Rg(t), zg(t, "none"), this.#n = e, this.#r = n;
|
|
20381
20415
|
return;
|
|
20382
20416
|
}
|
|
20383
|
-
s && n.playPauseEnabled && (
|
|
20417
|
+
s && n.playPauseEnabled && (Ig(t, "play", () => e.commands.play()), Ig(t, "pause", () => e.commands.pause())), s && n.timelineEnabled && (Ig(t, "seekbackward", () => {
|
|
20384
20418
|
e.commands.seek(e.snapshot.currentTime - e.snapshot.seekStep);
|
|
20385
|
-
}),
|
|
20419
|
+
}), Ig(t, "seekforward", () => {
|
|
20386
20420
|
e.commands.seek(e.snapshot.currentTime + e.snapshot.seekStep);
|
|
20387
|
-
}),
|
|
20421
|
+
}), Ig(t, "seekto", (t) => {
|
|
20388
20422
|
"seekTime" in t && typeof t.seekTime == "number" && Number.isFinite(t.seekTime) && e.commands.seek(t.seekTime);
|
|
20389
|
-
})), s && e.commands.previousTrack !== void 0 &&
|
|
20423
|
+
})), s && e.commands.previousTrack !== void 0 && Ig(t, "previoustrack", e.commands.previousTrack), s && e.commands.nextTrack !== void 0 && Ig(t, "nexttrack", e.commands.nextTrack), zg(t, n.paused ? "paused" : "playing"), Vg(t, n), this.#n = e, this.#r = n;
|
|
20390
20424
|
}
|
|
20391
20425
|
#d() {
|
|
20392
|
-
let e =
|
|
20426
|
+
let e = Pg();
|
|
20393
20427
|
if (e !== null) {
|
|
20394
|
-
|
|
20428
|
+
Lg(e), Rg(e), zg(e, "none"), this.#n = null, this.#r = null;
|
|
20395
20429
|
try {
|
|
20396
20430
|
e.metadata = null;
|
|
20397
20431
|
} catch {}
|
|
20398
20432
|
}
|
|
20399
20433
|
}
|
|
20400
20434
|
}();
|
|
20401
|
-
function
|
|
20402
|
-
return
|
|
20435
|
+
function Ug(e, t) {
|
|
20436
|
+
return Hg.create(e, t);
|
|
20403
20437
|
}
|
|
20404
20438
|
//#endregion
|
|
20405
20439
|
//#region src/core/state-presentations.tsx
|
|
20406
|
-
function
|
|
20440
|
+
function Wg({ kind: e, message: t, onRetry: n, retryLabel: r }) {
|
|
20407
20441
|
return /* @__PURE__ */ (0, N.jsxs)("div", {
|
|
20408
20442
|
className: e === "configuration" ? "ltp-state-error ltp-state-error--configuration ltp-configuration-error" : "ltp-state-error ltp-state-error--media",
|
|
20409
20443
|
"data-ltp-error-presentation": e,
|
|
@@ -20419,15 +20453,15 @@ function Hg({ kind: e, message: t, onRetry: n, retryLabel: r }) {
|
|
|
20419
20453
|
}) : null]
|
|
20420
20454
|
});
|
|
20421
20455
|
}
|
|
20422
|
-
function
|
|
20423
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
20456
|
+
function Gg({ message: e }) {
|
|
20457
|
+
return /* @__PURE__ */ (0, N.jsx)(Wg, {
|
|
20424
20458
|
kind: "configuration",
|
|
20425
20459
|
message: e
|
|
20426
20460
|
});
|
|
20427
20461
|
}
|
|
20428
|
-
function
|
|
20429
|
-
let e =
|
|
20430
|
-
return e.playback !== "error" || e.errorKind !== "media" ? null : /* @__PURE__ */ (0, N.jsx)(
|
|
20462
|
+
function Kg() {
|
|
20463
|
+
let e = lg(), t = cg(), n = qd("mediaErrorMessage"), r = qd("retry");
|
|
20464
|
+
return e.playback !== "error" || e.errorKind !== "media" ? null : /* @__PURE__ */ (0, N.jsx)(Wg, {
|
|
20431
20465
|
kind: "media",
|
|
20432
20466
|
message: n,
|
|
20433
20467
|
onRetry: e.retryable ? () => t.retryMediaError() : void 0,
|
|
@@ -20436,12 +20470,12 @@ function Wg() {
|
|
|
20436
20470
|
}
|
|
20437
20471
|
//#endregion
|
|
20438
20472
|
//#region src/core/adaptive-video.tsx
|
|
20439
|
-
var
|
|
20473
|
+
var qg = "application/vnd.apple.mpegurl", Jg = /* @__PURE__ */ new Set(["application/x-mpegurl", qg]), Yg = Object.freeze({
|
|
20440
20474
|
enableWebVTT: !1,
|
|
20441
20475
|
enableCEA708Captions: !1,
|
|
20442
20476
|
renderTextTracksNatively: !1
|
|
20443
20477
|
});
|
|
20444
|
-
function
|
|
20478
|
+
function Xg() {
|
|
20445
20479
|
let e = !1, t = null;
|
|
20446
20480
|
return {
|
|
20447
20481
|
begin() {
|
|
@@ -20475,11 +20509,11 @@ function Jg() {
|
|
|
20475
20509
|
}
|
|
20476
20510
|
};
|
|
20477
20511
|
}
|
|
20478
|
-
function
|
|
20479
|
-
return e !== void 0 &&
|
|
20512
|
+
function Zg(e) {
|
|
20513
|
+
return e !== void 0 && Jg.has(e.toLowerCase());
|
|
20480
20514
|
}
|
|
20481
|
-
function
|
|
20482
|
-
return e.findIndex((e) =>
|
|
20515
|
+
function Qg(e) {
|
|
20516
|
+
return e.findIndex((e) => Zg(e.type)) === 0 ? {
|
|
20483
20517
|
kind: "hls",
|
|
20484
20518
|
source: e[0]
|
|
20485
20519
|
} : {
|
|
@@ -20487,21 +20521,21 @@ function Xg(e) {
|
|
|
20487
20521
|
sources: e
|
|
20488
20522
|
};
|
|
20489
20523
|
}
|
|
20490
|
-
function
|
|
20524
|
+
function $g(e, t) {
|
|
20491
20525
|
return e.src === t.src && e.type === t.type;
|
|
20492
20526
|
}
|
|
20493
|
-
function
|
|
20494
|
-
return e.kind === t.kind ? e.kind === "hls" && t.kind === "hls" ?
|
|
20527
|
+
function e_(e, t) {
|
|
20528
|
+
return e.kind === t.kind ? e.kind === "hls" && t.kind === "hls" ? $g(e.source, t.source) : e.kind !== "native" || t.kind !== "native" ? !1 : e.sources.length === t.sources.length && e.sources.every((e, n) => $g(e, t.sources[n])) : !1;
|
|
20495
20529
|
}
|
|
20496
|
-
function
|
|
20497
|
-
let t = (0, w.useRef)(
|
|
20498
|
-
return
|
|
20530
|
+
function t_(e) {
|
|
20531
|
+
let t = (0, w.useRef)(Qg(e)), n = Qg(e);
|
|
20532
|
+
return e_(t.current, n) || (t.current = n), t.current;
|
|
20499
20533
|
}
|
|
20500
|
-
function
|
|
20501
|
-
return typeof document > "u" || typeof navigator > "u" || !/apple/i.test(navigator.vendor) ? !1 : document.createElement("video").canPlayType(
|
|
20534
|
+
function n_() {
|
|
20535
|
+
return typeof document > "u" || typeof navigator > "u" || !/apple/i.test(navigator.vendor) ? !1 : document.createElement("video").canPlayType(qg) !== "";
|
|
20502
20536
|
}
|
|
20503
|
-
function
|
|
20504
|
-
let a = Ht(), o = (0, w.useRef)(null), s = (0, w.useRef)(null), c = (0, w.useRef)(null), l = (0, w.useRef)(0), u =
|
|
20537
|
+
function r_({ children: e, intentQueue: t, mediaRef: n, sources: r, ...i }) {
|
|
20538
|
+
let a = Ht(), o = (0, w.useRef)(null), s = (0, w.useRef)(null), c = (0, w.useRef)(null), l = (0, w.useRef)(0), u = t_(r), d = u.kind === "hls" && n_(), f = u.kind === "hls" && !d, p = (0, w.useCallback)((e) => {
|
|
20505
20539
|
if (o.current = e, e === null) {
|
|
20506
20540
|
a?.(null);
|
|
20507
20541
|
return;
|
|
@@ -20524,9 +20558,9 @@ function t_({ children: e, intentQueue: t, mediaRef: n, sources: r, ...i }) {
|
|
|
20524
20558
|
let d = s.current ?? new o();
|
|
20525
20559
|
s.current = d, c.current !== d && (d.attach(e), c.current = d), d.preload = i.preload === "" || i.preload === "none" || i.preload === "auto" || i.preload === "metadata" ? i.preload : "metadata", a?.(d), d.source = {
|
|
20526
20560
|
src: u.source.src,
|
|
20527
|
-
type:
|
|
20561
|
+
type: qg,
|
|
20528
20562
|
preferPlayback: "mse",
|
|
20529
|
-
engine: { hlsJs:
|
|
20563
|
+
engine: { hlsJs: Yg }
|
|
20530
20564
|
}, queueMicrotask(() => {
|
|
20531
20565
|
!r && n === l.current && t?.finish(d);
|
|
20532
20566
|
});
|
|
@@ -20558,18 +20592,18 @@ function t_({ children: e, intentQueue: t, mediaRef: n, sources: r, ...i }) {
|
|
|
20558
20592
|
}
|
|
20559
20593
|
//#endregion
|
|
20560
20594
|
//#region src/core/media-engine.tsx
|
|
20561
|
-
function
|
|
20595
|
+
function i_(e) {
|
|
20562
20596
|
return !e || typeof navigator < "u" && /\bFirefox\//u.test(navigator.userAgent);
|
|
20563
20597
|
}
|
|
20564
|
-
function
|
|
20598
|
+
function a_(...e) {
|
|
20565
20599
|
return e;
|
|
20566
20600
|
}
|
|
20567
|
-
var { Player:
|
|
20568
|
-
features:
|
|
20601
|
+
var { Player: o_, usePlayer: s_ } = yc({
|
|
20602
|
+
features: a_(fr, mr, Mr, Ar, xr, Cn, er, ji, dr, Bn, Or, Hn, ur),
|
|
20569
20603
|
displayName: "LTMediaEnginePlayer"
|
|
20570
|
-
}),
|
|
20571
|
-
function
|
|
20572
|
-
let t =
|
|
20604
|
+
}), c_ = P(fr), l_ = P(xr), u_ = P(Hn), d_ = P(Ar), f_ = P(Mr), p_ = P(mr), m_ = P(Or), h_ = P(dr), g_ = P(Bn), __ = P(ur);
|
|
20605
|
+
function v_(e) {
|
|
20606
|
+
let t = c_(e), n = l_(e), r = u_(e), i = d_(e);
|
|
20573
20607
|
if (t === void 0 || n === void 0 || r === void 0 || i === void 0) throw Error("The LT media engine state features are not configured");
|
|
20574
20608
|
return {
|
|
20575
20609
|
paused: t.paused,
|
|
@@ -20582,10 +20616,10 @@ function g_(e) {
|
|
|
20582
20616
|
currentTime: i.currentTime
|
|
20583
20617
|
};
|
|
20584
20618
|
}
|
|
20585
|
-
function
|
|
20586
|
-
let r =
|
|
20619
|
+
function y_({ children: e, mediaRef: t, userStateSession: n }) {
|
|
20620
|
+
let r = s_(), i = Et((e) => r.subscribe(e), () => r.state, v_), a = (0, w.useCallback)((e, t) => {
|
|
20587
20621
|
if (e.source === null) return Promise.reject(/* @__PURE__ */ Error("Cannot recover media without a selected source"));
|
|
20588
|
-
let n = r.state, i =
|
|
20622
|
+
let n = r.state, i = u_(n), a = l_(n);
|
|
20589
20623
|
return i === void 0 || a === void 0 ? Promise.reject(/* @__PURE__ */ Error("The LT media recovery features are not configured")) : (i.dismissError(), a.loadSource(e.source), new Promise((n, i) => {
|
|
20590
20624
|
let a = !1, o = !1, s = !1, c = () => void 0, l = (e) => {
|
|
20591
20625
|
s || (s = !0, c(), t.removeEventListener("abort", u), e === void 0 ? n() : i(e));
|
|
@@ -20594,7 +20628,7 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20594
20628
|
u();
|
|
20595
20629
|
return;
|
|
20596
20630
|
}
|
|
20597
|
-
let n = r.state, i =
|
|
20631
|
+
let n = r.state, i = c_(n), s = l_(n), c = u_(n), f = d_(n);
|
|
20598
20632
|
if (i === void 0 || s === void 0 || c === void 0 || f === void 0) {
|
|
20599
20633
|
l(/* @__PURE__ */ Error("The LT media recovery features are not configured"));
|
|
20600
20634
|
return;
|
|
@@ -20613,9 +20647,9 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20613
20647
|
};
|
|
20614
20648
|
c = r.subscribe(d), t.addEventListener("abort", u, { once: !0 }), d();
|
|
20615
20649
|
}));
|
|
20616
|
-
}, [r]), o = (0, w.useCallback)(() =>
|
|
20650
|
+
}, [r]), o = (0, w.useCallback)(() => ag({ recoverMedia: a }), [a]), s = (0, w.useMemo)(() => ({
|
|
20617
20651
|
getSnapshot: () => {
|
|
20618
|
-
let e = r.state, n =
|
|
20652
|
+
let e = r.state, n = f_(e), i = p_(e), a = l_(e), o = m_(e);
|
|
20619
20653
|
if (n === void 0 || i === void 0 || a === void 0 || o === void 0) throw Error("The LT user-state media features are not configured");
|
|
20620
20654
|
return {
|
|
20621
20655
|
attached: !!r.target,
|
|
@@ -20624,7 +20658,7 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20624
20658
|
muted: n.muted,
|
|
20625
20659
|
playbackRate: i.playbackRate,
|
|
20626
20660
|
canPlay: a.canPlay,
|
|
20627
|
-
textTracks:
|
|
20661
|
+
textTracks: Nf(t?.current ?? null).map((e) => ({
|
|
20628
20662
|
id: e.id,
|
|
20629
20663
|
kind: e.kind,
|
|
20630
20664
|
label: e.label,
|
|
@@ -20635,7 +20669,7 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20635
20669
|
},
|
|
20636
20670
|
subscribe: (e) => r.subscribe(e),
|
|
20637
20671
|
setVolume(e) {
|
|
20638
|
-
|
|
20672
|
+
f_(r.state)?.setVolume(e);
|
|
20639
20673
|
},
|
|
20640
20674
|
setMuted(e) {
|
|
20641
20675
|
let n = t?.current;
|
|
@@ -20643,19 +20677,19 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20643
20677
|
n.muted !== e && (n.muted = e);
|
|
20644
20678
|
return;
|
|
20645
20679
|
}
|
|
20646
|
-
let i =
|
|
20680
|
+
let i = f_(r.state);
|
|
20647
20681
|
i !== void 0 && i.muted !== e && i.toggleMuted();
|
|
20648
20682
|
},
|
|
20649
20683
|
setPlaybackRate(e) {
|
|
20650
|
-
|
|
20684
|
+
p_(r.state)?.setPlaybackRate(e);
|
|
20651
20685
|
},
|
|
20652
20686
|
selectSubtitlesTrack(e) {
|
|
20653
|
-
if (
|
|
20654
|
-
let n =
|
|
20687
|
+
if (m_(r.state)?.selectSubtitlesTrack(e), e === "off") return;
|
|
20688
|
+
let n = Nf(t?.current ?? null).find((t) => t.id === e);
|
|
20655
20689
|
n !== void 0 && (n.mode = "hidden");
|
|
20656
20690
|
}
|
|
20657
|
-
}), [t, r]), c = (0, w.useCallback)((e) =>
|
|
20658
|
-
f.current = i, l.current === null && (l.current = o()), d.current ??= n ??
|
|
20691
|
+
}), [t, r]), c = (0, w.useCallback)((e) => Yh(s, e), [s]), l = (0, w.useRef)(null), u = (0, w.useRef)(null), d = (0, w.useRef)(null), f = (0, w.useRef)(i), [, p] = (0, w.useState)(0);
|
|
20692
|
+
f.current = i, l.current === null && (l.current = o()), d.current ??= n ?? qh(), u.current ??= c(d.current);
|
|
20659
20693
|
let m = l.current, h = u.current;
|
|
20660
20694
|
return (0, w.useEffect)(() => {
|
|
20661
20695
|
let e = l.current;
|
|
@@ -20666,29 +20700,29 @@ function __({ children: e, mediaRef: t, userStateSession: n }) {
|
|
|
20666
20700
|
}, [i]), (0, w.useEffect)(() => {
|
|
20667
20701
|
let e = u.current;
|
|
20668
20702
|
if (e === null || e.isDestroyed()) {
|
|
20669
|
-
let t = d.current ??
|
|
20703
|
+
let t = d.current ?? qh();
|
|
20670
20704
|
d.current = t, e = c(t), u.current = e, p((e) => e + 1);
|
|
20671
20705
|
}
|
|
20672
20706
|
return e.start(), () => e.destroy();
|
|
20673
|
-
}, [c]), /* @__PURE__ */ (0, N.jsx)(
|
|
20707
|
+
}, [c]), /* @__PURE__ */ (0, N.jsx)(sg, {
|
|
20674
20708
|
controller: m,
|
|
20675
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20709
|
+
children: /* @__PURE__ */ (0, N.jsx)(Lf, {
|
|
20676
20710
|
controller: h,
|
|
20677
20711
|
children: e
|
|
20678
20712
|
})
|
|
20679
20713
|
});
|
|
20680
20714
|
}
|
|
20681
|
-
function
|
|
20715
|
+
function b_({ children: e, mediaRef: t, orientationLockType: n, poster: r, stringCatalog: i = bh, title: a, userStateSession: o }) {
|
|
20682
20716
|
return /* @__PURE__ */ (0, N.jsx)(Wd, {
|
|
20683
20717
|
value: i,
|
|
20684
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20718
|
+
children: /* @__PURE__ */ (0, N.jsx)(ph, {
|
|
20685
20719
|
language: i.selectedLanguage,
|
|
20686
20720
|
strings: i.strings,
|
|
20687
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20721
|
+
children: /* @__PURE__ */ (0, N.jsx)(o_, {
|
|
20688
20722
|
orientationLockType: n,
|
|
20689
20723
|
poster: r,
|
|
20690
20724
|
title: a,
|
|
20691
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20725
|
+
children: /* @__PURE__ */ (0, N.jsx)(y_, {
|
|
20692
20726
|
mediaRef: t,
|
|
20693
20727
|
userStateSession: o,
|
|
20694
20728
|
children: e
|
|
@@ -20697,10 +20731,10 @@ function v_({ children: e, mediaRef: t, orientationLockType: n, poster: r, strin
|
|
|
20697
20731
|
})
|
|
20698
20732
|
});
|
|
20699
20733
|
}
|
|
20700
|
-
function
|
|
20701
|
-
let n =
|
|
20734
|
+
function x_(e, t) {
|
|
20735
|
+
let n = d_(e), r = f_(e), i = p_(e), a = m_(e), o = h_(e);
|
|
20702
20736
|
if (n === void 0 || r === void 0 || i === void 0 || a === void 0 || o === void 0) throw Error("The LT page API media features are not configured");
|
|
20703
|
-
let s =
|
|
20737
|
+
let s = Nf(t).find((e) => zf(e.kind) && Bf(e.mode));
|
|
20704
20738
|
return Object.freeze({
|
|
20705
20739
|
currentTime: n.currentTime,
|
|
20706
20740
|
duration: n.duration,
|
|
@@ -20714,8 +20748,8 @@ function y_(e, t) {
|
|
|
20714
20748
|
pip: o.pip
|
|
20715
20749
|
});
|
|
20716
20750
|
}
|
|
20717
|
-
function
|
|
20718
|
-
let i =
|
|
20751
|
+
function S_({ application: e, intentQueue: t, mediaRef: n, runtime: r }) {
|
|
20752
|
+
let i = s_(), a = cg(), o = Rf(), s = (0, w.useMemo)(() => ({
|
|
20719
20753
|
get media() {
|
|
20720
20754
|
let e = n.current;
|
|
20721
20755
|
if (e === null) throw Error("The LT media element is not attached");
|
|
@@ -20723,16 +20757,16 @@ function b_({ application: e, intentQueue: t, mediaRef: n, runtime: r }) {
|
|
|
20723
20757
|
},
|
|
20724
20758
|
playerState: a,
|
|
20725
20759
|
userState: o,
|
|
20726
|
-
getSnapshot: () =>
|
|
20760
|
+
getSnapshot: () => x_(i.state, n.current),
|
|
20727
20761
|
subscribe: (e) => i.subscribe(e),
|
|
20728
20762
|
play() {
|
|
20729
|
-
t.play(() =>
|
|
20763
|
+
t.play(() => c_(i.state)?.play().catch(() => void 0));
|
|
20730
20764
|
},
|
|
20731
20765
|
pause() {
|
|
20732
|
-
t.pause(() =>
|
|
20766
|
+
t.pause(() => c_(i.state)?.pause());
|
|
20733
20767
|
},
|
|
20734
20768
|
seek(e) {
|
|
20735
|
-
|
|
20769
|
+
d_(i.state)?.seek(e).catch(() => void 0);
|
|
20736
20770
|
},
|
|
20737
20771
|
load() {
|
|
20738
20772
|
n.current?.load();
|
|
@@ -20752,14 +20786,14 @@ function b_({ application: e, intentQueue: t, mediaRef: n, runtime: r }) {
|
|
|
20752
20786
|
r
|
|
20753
20787
|
]), null;
|
|
20754
20788
|
}
|
|
20755
|
-
function
|
|
20756
|
-
let n =
|
|
20757
|
-
let e =
|
|
20789
|
+
function C_({ application: e, visible: t }) {
|
|
20790
|
+
let n = s_(), { playback: r } = lg(), i = qd("coverButton"), { config: a } = e, o = a.controls.cover, s = (0, w.useCallback)(() => {
|
|
20791
|
+
let e = c_(n.state);
|
|
20758
20792
|
return e === void 0 ? Promise.reject(/* @__PURE__ */ Error("The LT media playback feature is not configured")) : e.play();
|
|
20759
20793
|
}, [n]);
|
|
20760
20794
|
if (!o.enabled) return null;
|
|
20761
20795
|
let c = o.button.label;
|
|
20762
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
20796
|
+
return /* @__PURE__ */ (0, N.jsx)(pg, {
|
|
20763
20797
|
author: o.author ? a.content.author : void 0,
|
|
20764
20798
|
buttonEnabled: o.button.enabled,
|
|
20765
20799
|
buttonLabel: c ?? i,
|
|
@@ -20773,7 +20807,7 @@ function x_({ application: e, visible: t }) {
|
|
|
20773
20807
|
visibleButtonLabel: c
|
|
20774
20808
|
});
|
|
20775
20809
|
}
|
|
20776
|
-
function
|
|
20810
|
+
function w_({ application: e, runtime: t }) {
|
|
20777
20811
|
let { config: n, strings: r } = e;
|
|
20778
20812
|
if (e.initialError) {
|
|
20779
20813
|
let e = n.layout === "landscape" ? "ltp-landscape" : "ltp-portrait";
|
|
@@ -20782,36 +20816,36 @@ function S_({ application: e, runtime: t }) {
|
|
|
20782
20816
|
"data-ltp-configuration-error": !0,
|
|
20783
20817
|
"data-ltp-layout": n.layout,
|
|
20784
20818
|
lang: r.selectedLanguage,
|
|
20785
|
-
children: [/* @__PURE__ */ (0, N.jsx)(Cd, {}), /* @__PURE__ */ (0, N.jsx)(
|
|
20819
|
+
children: [/* @__PURE__ */ (0, N.jsx)(Cd, {}), /* @__PURE__ */ (0, N.jsx)(Gg, { message: r.strings.configErrorMessage })]
|
|
20786
20820
|
});
|
|
20787
20821
|
}
|
|
20788
|
-
return /* @__PURE__ */ (0, N.jsx)(
|
|
20822
|
+
return /* @__PURE__ */ (0, N.jsx)(T_, {
|
|
20789
20823
|
application: e,
|
|
20790
20824
|
runtime: t
|
|
20791
20825
|
});
|
|
20792
20826
|
}
|
|
20793
|
-
function
|
|
20827
|
+
function T_({ application: e, runtime: t }) {
|
|
20794
20828
|
let n = (0, w.useRef)(null), [r, i] = (0, w.useState)(null), a = (0, w.useRef)(null), o = (0, w.useRef)(null);
|
|
20795
|
-
a.current ??=
|
|
20829
|
+
a.current ??= Xg();
|
|
20796
20830
|
let s = a.current, c = (0, w.useCallback)((e) => {
|
|
20797
20831
|
n.current = e, i(e), e !== null && t.prepareMedia(e);
|
|
20798
20832
|
}, [t]), { config: l, strings: u } = e;
|
|
20799
20833
|
o.current !== e.generation && (o.current = e.generation, s.begin());
|
|
20800
|
-
let d = /* @__PURE__ */ (0, N.jsx)(
|
|
20834
|
+
let d = /* @__PURE__ */ (0, N.jsx)(r_, {
|
|
20801
20835
|
mediaRef: c,
|
|
20802
20836
|
"aria-label": l.content.title,
|
|
20803
20837
|
className: "ltp-media-engine__video",
|
|
20804
20838
|
crossOrigin: "anonymous",
|
|
20805
|
-
disablePictureInPicture:
|
|
20839
|
+
disablePictureInPicture: i_(l.controls.pip.enabled),
|
|
20806
20840
|
intentQueue: s,
|
|
20807
20841
|
playsInline: !0,
|
|
20808
20842
|
preload: "metadata",
|
|
20809
20843
|
sources: l.content.sources,
|
|
20810
|
-
children: l.content.tracks.map((t, n) => /* @__PURE__ */ (0, N.jsx)(
|
|
20844
|
+
children: l.content.tracks.map((t, n) => /* @__PURE__ */ (0, N.jsx)(Qf, {
|
|
20811
20845
|
index: n,
|
|
20812
20846
|
track: t
|
|
20813
20847
|
}, `${e.generation}:${t.src}:${t.kind ?? ""}:${n}`))
|
|
20814
|
-
}), f = e.configurationError ? /* @__PURE__ */ (0, N.jsx)(
|
|
20848
|
+
}), f = e.configurationError ? /* @__PURE__ */ (0, N.jsx)(Gg, { message: u.strings.configErrorMessage }) : void 0, p = /* @__PURE__ */ (0, N.jsx)(S_, {
|
|
20815
20849
|
application: e,
|
|
20816
20850
|
intentQueue: s,
|
|
20817
20851
|
mediaRef: n,
|
|
@@ -20819,19 +20853,19 @@ function C_({ application: e, runtime: t }) {
|
|
|
20819
20853
|
});
|
|
20820
20854
|
return /* @__PURE__ */ (0, N.jsx)(dd, {
|
|
20821
20855
|
value: l,
|
|
20822
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20856
|
+
children: /* @__PURE__ */ (0, N.jsx)(Ym, {
|
|
20823
20857
|
registry: e.registry,
|
|
20824
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20858
|
+
children: /* @__PURE__ */ (0, N.jsx)(b_, {
|
|
20825
20859
|
mediaRef: n,
|
|
20826
20860
|
orientationLockType: l.layout,
|
|
20827
20861
|
poster: l.content.poster ?? null,
|
|
20828
20862
|
stringCatalog: u,
|
|
20829
20863
|
title: l.content.title ?? null,
|
|
20830
20864
|
userStateSession: t.userStateSession,
|
|
20831
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20865
|
+
children: /* @__PURE__ */ (0, N.jsx)(Zf, {
|
|
20832
20866
|
generation: e.generation,
|
|
20833
20867
|
media: r,
|
|
20834
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20868
|
+
children: /* @__PURE__ */ (0, N.jsx)(k_, {
|
|
20835
20869
|
application: e,
|
|
20836
20870
|
configurationError: f,
|
|
20837
20871
|
media: d,
|
|
@@ -20842,17 +20876,17 @@ function C_({ application: e, runtime: t }) {
|
|
|
20842
20876
|
})
|
|
20843
20877
|
});
|
|
20844
20878
|
}
|
|
20845
|
-
function
|
|
20846
|
-
let t =
|
|
20879
|
+
function E_(e) {
|
|
20880
|
+
let t = D_(e), n = d_(e);
|
|
20847
20881
|
if (t === void 0 || n === void 0) throw Error("The LT core control media features are not configured");
|
|
20848
20882
|
return {
|
|
20849
20883
|
buffered: t.buffered,
|
|
20850
20884
|
duration: n.duration
|
|
20851
20885
|
};
|
|
20852
20886
|
}
|
|
20853
|
-
var
|
|
20854
|
-
function
|
|
20855
|
-
let t =
|
|
20887
|
+
var D_ = P(Cn);
|
|
20888
|
+
function O_(e) {
|
|
20889
|
+
let t = g_(e);
|
|
20856
20890
|
if (t === void 0) throw Error("The LT control visibility media feature is not configured");
|
|
20857
20891
|
return {
|
|
20858
20892
|
controlsVisible: t.controlsVisible,
|
|
@@ -20860,8 +20894,8 @@ function E_(e) {
|
|
|
20860
20894
|
userActive: t.userActive
|
|
20861
20895
|
};
|
|
20862
20896
|
}
|
|
20863
|
-
function
|
|
20864
|
-
let i =
|
|
20897
|
+
function k_({ application: e, configurationError: t, media: n, runtimeBridge: r }) {
|
|
20898
|
+
let i = s_(), { playback: a } = lg(), { config: o } = e, s = Et((e) => i.subscribe(e), () => i.state, O_), c = (0, w.useRef)(null), l = (0, w.useRef)({
|
|
20865
20899
|
configurationError: t !== void 0,
|
|
20866
20900
|
engine: s,
|
|
20867
20901
|
generation: e.generation,
|
|
@@ -20874,11 +20908,11 @@ function D_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
20874
20908
|
generation: e.generation,
|
|
20875
20909
|
layout: o.layout,
|
|
20876
20910
|
playback: a
|
|
20877
|
-
}, c.current === null && (c.current =
|
|
20911
|
+
}, c.current === null && (c.current = yg());
|
|
20878
20912
|
let d = c.current;
|
|
20879
20913
|
return (0, w.useEffect)(() => {
|
|
20880
20914
|
let e = c.current;
|
|
20881
|
-
return (e === null || e.isDestroyed()) && (e =
|
|
20915
|
+
return (e === null || e.isDestroyed()) && (e = yg(), c.current = e, u((e) => e + 1)), e.apply(l.current), () => e.destroy();
|
|
20882
20916
|
}, []), (0, w.useLayoutEffect)(() => {
|
|
20883
20917
|
let e = c.current;
|
|
20884
20918
|
e !== null && !e.isDestroyed() && e.apply(l.current);
|
|
@@ -20888,9 +20922,9 @@ function D_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
20888
20922
|
t,
|
|
20889
20923
|
s,
|
|
20890
20924
|
a
|
|
20891
|
-
]), /* @__PURE__ */ (0, N.jsx)(
|
|
20925
|
+
]), /* @__PURE__ */ (0, N.jsx)(xg, {
|
|
20892
20926
|
controller: d,
|
|
20893
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
20927
|
+
children: /* @__PURE__ */ (0, N.jsx)(N_, {
|
|
20894
20928
|
application: e,
|
|
20895
20929
|
configurationError: t,
|
|
20896
20930
|
media: n,
|
|
@@ -20898,12 +20932,12 @@ function D_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
20898
20932
|
})
|
|
20899
20933
|
});
|
|
20900
20934
|
}
|
|
20901
|
-
function
|
|
20902
|
-
let e =
|
|
20903
|
-
return
|
|
20935
|
+
function A_() {
|
|
20936
|
+
let e = Xm().getModule("share"), t = (0, w.useSyncExternalStore)(e.subscribeInteraction, e.getInteractionSnapshot, e.getInteractionSnapshot).open;
|
|
20937
|
+
return wg(t), null;
|
|
20904
20938
|
}
|
|
20905
|
-
function
|
|
20906
|
-
let t =
|
|
20939
|
+
function j_(e) {
|
|
20940
|
+
let t = __(e), n = c_(e), r = p_(e), i = d_(e);
|
|
20907
20941
|
if (t === void 0 || n === void 0 || r === void 0 || i === void 0) throw Error("The LT Media Session features are not configured");
|
|
20908
20942
|
return {
|
|
20909
20943
|
currentTime: i.currentTime,
|
|
@@ -20914,16 +20948,16 @@ function k_(e) {
|
|
|
20914
20948
|
title: t.title
|
|
20915
20949
|
};
|
|
20916
20950
|
}
|
|
20917
|
-
function
|
|
20918
|
-
let t =
|
|
20951
|
+
function M_({ application: e }) {
|
|
20952
|
+
let t = s_(), n = lg(), r = Et((e) => t.subscribe(e), () => t.state, j_), i = (0, w.useMemo)(() => ({
|
|
20919
20953
|
play() {
|
|
20920
|
-
|
|
20954
|
+
c_(t.state)?.play().catch(() => void 0);
|
|
20921
20955
|
},
|
|
20922
20956
|
pause() {
|
|
20923
|
-
|
|
20957
|
+
c_(t.state)?.pause();
|
|
20924
20958
|
},
|
|
20925
20959
|
seek(e) {
|
|
20926
|
-
|
|
20960
|
+
d_(t.state)?.seek(e).catch(() => void 0);
|
|
20927
20961
|
},
|
|
20928
20962
|
...e.mediaSessionTrackCommands === void 0 ? {} : {
|
|
20929
20963
|
previousTrack: e.mediaSessionTrackCommands.previousTrack,
|
|
@@ -20944,14 +20978,14 @@ function A_({ application: e }) {
|
|
|
20944
20978
|
configurationError: e.configurationError
|
|
20945
20979
|
}, o = (0, w.useRef)(a), s = (0, w.useRef)(null);
|
|
20946
20980
|
return o.current = a, (0, w.useLayoutEffect)(() => {
|
|
20947
|
-
let e =
|
|
20981
|
+
let e = Ug(o.current, i);
|
|
20948
20982
|
return s.current = e, () => {
|
|
20949
20983
|
e.destroy(), s.current === e && (s.current = null);
|
|
20950
20984
|
};
|
|
20951
20985
|
}, [i]), (0, w.useLayoutEffect)(() => s.current?.update(a), [a]), null;
|
|
20952
20986
|
}
|
|
20953
|
-
function
|
|
20954
|
-
let i =
|
|
20987
|
+
function N_({ application: e, configurationError: t, media: n, runtimeBridge: r }) {
|
|
20988
|
+
let i = s_(), a = lg(), { playback: o } = a, { config: s, strings: c } = e, l = Cg(), u = Zm(), d = Xm().getModule("share"), f = Xm().getModule("contextPanel"), p = Jf(), m = Et((e) => i.subscribe(e), () => i.state, E_), h = p.available ? u.capabilities.captions.state : "dormant", g = u.capabilities.speed.state, _ = (0, w.useMemo)(() => Jd(s, {
|
|
20955
20989
|
captions: h,
|
|
20956
20990
|
speed: g
|
|
20957
20991
|
}), [
|
|
@@ -20959,33 +20993,34 @@ function j_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
20959
20993
|
s,
|
|
20960
20994
|
g
|
|
20961
20995
|
]), v = t !== void 0 || o === "error", y = (0, w.useCallback)((e) => {
|
|
20962
|
-
|
|
20963
|
-
}, [i]), b =
|
|
20996
|
+
d_(i.state)?.seek(e).catch(() => void 0);
|
|
20997
|
+
}, [i]), b = kg(_.gestures && !v), x = t === void 0 && a.playback === "error" && a.errorKind === "media" ? /* @__PURE__ */ (0, N.jsx)(Kg, {}) : void 0, { chromeVisible: S, coverVisible: C } = fg(o, e.generation, s.controls.cover.enabled), T = {
|
|
20998
|
+
cover: s.controls.cover.enabled && C ? /* @__PURE__ */ (0, N.jsx)(C_, {
|
|
20999
|
+
application: e,
|
|
21000
|
+
visible: C
|
|
21001
|
+
}, e.generation) : void 0,
|
|
21002
|
+
logo: S && s.controls.logo.enabled ? /* @__PURE__ */ (0, N.jsx)(rf, {}) : void 0,
|
|
21003
|
+
playPause: S && s.controls.playPause.enabled ? /* @__PURE__ */ (0, N.jsx)(Xd, {}) : void 0,
|
|
21004
|
+
volume: S && s.controls.volume.enabled ? /* @__PURE__ */ (0, N.jsx)(tf, { layout: s.layout }) : void 0,
|
|
21005
|
+
time: S && s.controls.time.enabled ? /* @__PURE__ */ (0, N.jsx)(ef, {}) : void 0,
|
|
21006
|
+
timeline: S && s.controls.timeline.enabled ? /* @__PURE__ */ (0, N.jsx)($d, {
|
|
21007
|
+
buffered: m.buffered,
|
|
21008
|
+
duration: m.duration,
|
|
21009
|
+
seekStep: s.controls.timeline.seekStep
|
|
21010
|
+
}) : void 0,
|
|
21011
|
+
information: S && s.layout === "portrait" && (s.content.author !== void 0 || s.content.title !== void 0) ? /* @__PURE__ */ (0, N.jsx)(ug, {
|
|
21012
|
+
author: s.content.author,
|
|
21013
|
+
hidden: p.selectedTrack !== null,
|
|
21014
|
+
surface: "playback",
|
|
21015
|
+
title: s.content.title
|
|
21016
|
+
}) : void 0,
|
|
21017
|
+
fullscreen: S && s.layout === "landscape" && s.controls.fullscreen.enabled ? /* @__PURE__ */ (0, N.jsx)(nf, {}) : void 0,
|
|
21018
|
+
buffering: s.controls.buffering.enabled ? /* @__PURE__ */ (0, N.jsx)(af, { playback: o }) : void 0,
|
|
21019
|
+
inputFeedback: S && s.controls.inputFeedback.enabled ? /* @__PURE__ */ (0, N.jsx)(cf, {}) : void 0
|
|
21020
|
+
}, E = {
|
|
21021
|
+
announcer: /* @__PURE__ */ (0, N.jsx)(sf, { captions: p.announcement }),
|
|
20964
21022
|
configurationError: t,
|
|
20965
|
-
core:
|
|
20966
|
-
cover: s.controls.cover.enabled && C ? /* @__PURE__ */ (0, N.jsx)(x_, {
|
|
20967
|
-
application: e,
|
|
20968
|
-
visible: C
|
|
20969
|
-
}, e.generation) : void 0,
|
|
20970
|
-
logo: S && s.controls.logo.enabled ? /* @__PURE__ */ (0, N.jsx)(rf, {}) : void 0,
|
|
20971
|
-
playPause: S && s.controls.playPause.enabled ? /* @__PURE__ */ (0, N.jsx)(Xd, {}) : void 0,
|
|
20972
|
-
volume: S && s.controls.volume.enabled ? /* @__PURE__ */ (0, N.jsx)(tf, { layout: s.layout }) : void 0,
|
|
20973
|
-
time: S && s.controls.time.enabled ? /* @__PURE__ */ (0, N.jsx)(ef, {}) : void 0,
|
|
20974
|
-
timeline: S && s.controls.timeline.enabled ? /* @__PURE__ */ (0, N.jsx)($d, {
|
|
20975
|
-
buffered: m.buffered,
|
|
20976
|
-
duration: m.duration,
|
|
20977
|
-
seekStep: s.controls.timeline.seekStep
|
|
20978
|
-
}) : void 0,
|
|
20979
|
-
information: S && s.layout === "portrait" && (s.content.author !== void 0 || s.content.title !== void 0) ? /* @__PURE__ */ (0, N.jsx)(cg, {
|
|
20980
|
-
author: s.content.author,
|
|
20981
|
-
hidden: p.selectedTrack !== null,
|
|
20982
|
-
surface: "playback",
|
|
20983
|
-
title: s.content.title
|
|
20984
|
-
}) : void 0,
|
|
20985
|
-
fullscreen: S && s.layout === "landscape" && s.controls.fullscreen.enabled ? /* @__PURE__ */ (0, N.jsx)(nf, {}) : void 0,
|
|
20986
|
-
buffering: s.controls.buffering.enabled ? /* @__PURE__ */ (0, N.jsx)(af, { playback: o }) : void 0,
|
|
20987
|
-
inputFeedback: S && s.controls.inputFeedback.enabled ? /* @__PURE__ */ (0, N.jsx)(sf, {}) : void 0
|
|
20988
|
-
},
|
|
21023
|
+
core: T,
|
|
20989
21024
|
inputPolicy: _,
|
|
20990
21025
|
language: c.selectedLanguage,
|
|
20991
21026
|
media: n,
|
|
@@ -20993,27 +21028,27 @@ function j_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
20993
21028
|
runtimeBridge: r
|
|
20994
21029
|
};
|
|
20995
21030
|
return /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [
|
|
20996
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
20997
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
21031
|
+
/* @__PURE__ */ (0, N.jsx)(M_, { application: e }),
|
|
21032
|
+
/* @__PURE__ */ (0, N.jsx)(jg, {
|
|
20998
21033
|
disabled: v,
|
|
20999
21034
|
layout: s.layout,
|
|
21000
21035
|
policy: _
|
|
21001
21036
|
}),
|
|
21002
|
-
/* @__PURE__ */ (0, N.jsx)(
|
|
21037
|
+
/* @__PURE__ */ (0, N.jsx)(hf, {
|
|
21003
21038
|
blocked: v,
|
|
21004
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
21039
|
+
children: /* @__PURE__ */ (0, N.jsx)(Kp, {
|
|
21005
21040
|
seek: y,
|
|
21006
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
21041
|
+
children: /* @__PURE__ */ (0, N.jsx)(Yp, {
|
|
21007
21042
|
module: f,
|
|
21008
|
-
children: /* @__PURE__ */ (0, N.jsx)(
|
|
21043
|
+
children: /* @__PURE__ */ (0, N.jsx)(vp, {
|
|
21009
21044
|
module: d,
|
|
21010
|
-
children: s.layout === "landscape" ? /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(
|
|
21011
|
-
...
|
|
21045
|
+
children: s.layout === "landscape" ? /* @__PURE__ */ (0, N.jsxs)(N.Fragment, { children: [/* @__PURE__ */ (0, N.jsx)(A_, {}), /* @__PURE__ */ (0, N.jsx)(rh, {
|
|
21046
|
+
...E,
|
|
21012
21047
|
controlsMounted: S,
|
|
21013
21048
|
controlsVisible: l.visible,
|
|
21014
21049
|
controlVisibilityHandlers: b
|
|
21015
|
-
})] }) : /* @__PURE__ */ (0, N.jsx)(
|
|
21016
|
-
...
|
|
21050
|
+
})] }) : /* @__PURE__ */ (0, N.jsx)(sh, {
|
|
21051
|
+
...E,
|
|
21017
21052
|
controlsVisible: S
|
|
21018
21053
|
})
|
|
21019
21054
|
})
|
|
@@ -21024,8 +21059,8 @@ function j_({ application: e, configurationError: t, media: n, runtimeBridge: r
|
|
|
21024
21059
|
}
|
|
21025
21060
|
//#endregion
|
|
21026
21061
|
//#region src/player-application-mode.ts
|
|
21027
|
-
var
|
|
21028
|
-
function
|
|
21062
|
+
var P_ = Object.freeze({ mode: "standalone" }), F_ = /* @__PURE__ */ new WeakMap();
|
|
21063
|
+
function I_(e, t, n) {
|
|
21029
21064
|
let r = Object.freeze({
|
|
21030
21065
|
mode: t.mode,
|
|
21031
21066
|
...t.mediaSessionTrackCommands === void 0 ? {} : { mediaSessionTrackCommands: Object.freeze({
|
|
@@ -21033,32 +21068,32 @@ function P_(e, t, n) {
|
|
|
21033
21068
|
nextTrack: t.mediaSessionTrackCommands.nextTrack
|
|
21034
21069
|
}) }
|
|
21035
21070
|
});
|
|
21036
|
-
|
|
21071
|
+
F_.set(e, r);
|
|
21037
21072
|
try {
|
|
21038
21073
|
return n();
|
|
21039
21074
|
} finally {
|
|
21040
|
-
|
|
21075
|
+
F_.delete(e);
|
|
21041
21076
|
}
|
|
21042
21077
|
}
|
|
21043
|
-
function
|
|
21044
|
-
return
|
|
21078
|
+
function L_(e) {
|
|
21079
|
+
return F_.get(e) ?? P_;
|
|
21045
21080
|
}
|
|
21046
21081
|
//#endregion
|
|
21047
21082
|
//#region src/config/diagnostics.ts
|
|
21048
|
-
function
|
|
21083
|
+
function R_(e) {
|
|
21049
21084
|
return e.length === 0 ? null : {
|
|
21050
21085
|
level: "warning",
|
|
21051
21086
|
code: "config-soft-degrade",
|
|
21052
21087
|
message: `[lt-player] Configuration soft-degraded:\n${e.map((e) => `- ${e.path}: ${e.message}`).join("\n")}`
|
|
21053
21088
|
};
|
|
21054
21089
|
}
|
|
21055
|
-
function
|
|
21056
|
-
let n =
|
|
21090
|
+
function z_(e, t) {
|
|
21091
|
+
let n = R_(e);
|
|
21057
21092
|
return n !== null && t(n), n;
|
|
21058
21093
|
}
|
|
21059
21094
|
//#endregion
|
|
21060
21095
|
//#region src/config/parse-config.ts
|
|
21061
|
-
var
|
|
21096
|
+
var B_ = [
|
|
21062
21097
|
"version",
|
|
21063
21098
|
"layout",
|
|
21064
21099
|
"language",
|
|
@@ -21066,7 +21101,7 @@ var R_ = [
|
|
|
21066
21101
|
"controls",
|
|
21067
21102
|
"capabilities",
|
|
21068
21103
|
"strings"
|
|
21069
|
-
],
|
|
21104
|
+
], V_ = [
|
|
21070
21105
|
"title",
|
|
21071
21106
|
"author",
|
|
21072
21107
|
"description",
|
|
@@ -21076,14 +21111,14 @@ var R_ = [
|
|
|
21076
21111
|
"tracks",
|
|
21077
21112
|
"chapters",
|
|
21078
21113
|
"metadata"
|
|
21079
|
-
],
|
|
21114
|
+
], H_ = [
|
|
21080
21115
|
"inANutshell",
|
|
21081
21116
|
"keyConcepts",
|
|
21082
21117
|
"researchField",
|
|
21083
21118
|
"transcript",
|
|
21084
21119
|
"underlyingPublication",
|
|
21085
21120
|
"relatedVideos"
|
|
21086
|
-
],
|
|
21121
|
+
], U_ = [
|
|
21087
21122
|
"cover",
|
|
21088
21123
|
"playPause",
|
|
21089
21124
|
"timeline",
|
|
@@ -21096,27 +21131,27 @@ var R_ = [
|
|
|
21096
21131
|
"logo",
|
|
21097
21132
|
"gestures",
|
|
21098
21133
|
"hotkeys"
|
|
21099
|
-
],
|
|
21134
|
+
], W_ = [
|
|
21100
21135
|
"chapters",
|
|
21101
21136
|
"captions",
|
|
21102
21137
|
"speed",
|
|
21103
21138
|
"share",
|
|
21104
21139
|
"contextPanel"
|
|
21105
21140
|
];
|
|
21106
|
-
function
|
|
21141
|
+
function G_(e) {
|
|
21107
21142
|
return typeof e == "object" && !!e && !Array.isArray(e);
|
|
21108
21143
|
}
|
|
21109
|
-
function
|
|
21144
|
+
function K_(e, t) {
|
|
21110
21145
|
return Object.hasOwn(e, t);
|
|
21111
21146
|
}
|
|
21112
|
-
function
|
|
21147
|
+
function q_(e) {
|
|
21113
21148
|
return e === "landscape" || e === "portrait";
|
|
21114
21149
|
}
|
|
21115
|
-
function
|
|
21150
|
+
function J_(e) {
|
|
21116
21151
|
return typeof e == "number" && Number.isFinite(e);
|
|
21117
21152
|
}
|
|
21118
|
-
function
|
|
21119
|
-
return
|
|
21153
|
+
function Y_(e) {
|
|
21154
|
+
return J_(e) && e > 0;
|
|
21120
21155
|
}
|
|
21121
21156
|
function $(e, t, n, r, i) {
|
|
21122
21157
|
e.push({
|
|
@@ -21126,46 +21161,46 @@ function $(e, t, n, r, i) {
|
|
|
21126
21161
|
message: i
|
|
21127
21162
|
});
|
|
21128
21163
|
}
|
|
21129
|
-
function
|
|
21164
|
+
function X_(e, t, n, r) {
|
|
21130
21165
|
let i = new Set(t);
|
|
21131
21166
|
for (let t of Object.keys(e)) i.has(t) || $(r, "unknown-key", `${n}.${t}`, "omitted", "unknown key was ignored");
|
|
21132
21167
|
}
|
|
21133
|
-
function
|
|
21134
|
-
if (!
|
|
21168
|
+
function Z_(e, t, n, r) {
|
|
21169
|
+
if (!K_(e, t)) return;
|
|
21135
21170
|
let i = e[t];
|
|
21136
21171
|
if (typeof i == "string") return i;
|
|
21137
21172
|
$(r, "wrong-type", `${n}.${t}`, "omitted", "expected a string");
|
|
21138
21173
|
}
|
|
21139
|
-
function
|
|
21140
|
-
if (!
|
|
21174
|
+
function Q_(e, t, n, r) {
|
|
21175
|
+
if (!K_(e, t)) return;
|
|
21141
21176
|
let i = e[t];
|
|
21142
21177
|
if (typeof i == "boolean") return i;
|
|
21143
21178
|
$(r, "wrong-type", `${n}.${t}`, "omitted", "expected a boolean");
|
|
21144
21179
|
}
|
|
21145
|
-
function
|
|
21146
|
-
if (!
|
|
21180
|
+
function $_(e, t, n, r) {
|
|
21181
|
+
if (!K_(e, t)) return;
|
|
21147
21182
|
let i = e[t];
|
|
21148
|
-
if (
|
|
21149
|
-
$(r,
|
|
21183
|
+
if (J_(i) && i >= 0) return i;
|
|
21184
|
+
$(r, J_(i) ? "invalid-value" : "wrong-type", `${n}.${t}`, "omitted", "expected a finite nonnegative number");
|
|
21150
21185
|
}
|
|
21151
|
-
function
|
|
21152
|
-
if (!
|
|
21186
|
+
function ev(e, t, n, r) {
|
|
21187
|
+
if (!K_(e, t)) return;
|
|
21153
21188
|
let i = e[t];
|
|
21154
|
-
if (
|
|
21155
|
-
$(r,
|
|
21189
|
+
if (J_(i) && i > 0) return i;
|
|
21190
|
+
$(r, J_(i) ? "invalid-value" : "wrong-type", `${n}.${t}`, "omitted", "expected a finite positive number");
|
|
21156
21191
|
}
|
|
21157
|
-
function
|
|
21192
|
+
function tv(e, t, n, r) {
|
|
21158
21193
|
let i = e[t];
|
|
21159
21194
|
if (typeof i == "string" && i.length > 0) return i;
|
|
21160
|
-
$(r,
|
|
21195
|
+
$(r, K_(e, t) ? typeof i == "string" ? "invalid-value" : "wrong-type" : "missing-value", `${n}.${t}`, "dropped", "entry requires a non-empty string");
|
|
21161
21196
|
}
|
|
21162
|
-
function
|
|
21197
|
+
function nv(e, t, n, r) {
|
|
21163
21198
|
let i = e[t];
|
|
21164
|
-
if (
|
|
21165
|
-
$(r,
|
|
21199
|
+
if (J_(i) && i >= 0) return i;
|
|
21200
|
+
$(r, K_(e, t) ? J_(i) ? "invalid-value" : "wrong-type" : "missing-value", `${n}.${t}`, "dropped", "entry requires a finite nonnegative number");
|
|
21166
21201
|
}
|
|
21167
|
-
function
|
|
21168
|
-
if (!
|
|
21202
|
+
function rv(e, t, n, r, i) {
|
|
21203
|
+
if (!K_(e, t)) return;
|
|
21169
21204
|
let a = e[t];
|
|
21170
21205
|
if (!Array.isArray(a)) {
|
|
21171
21206
|
$(r, "wrong-type", `${n}.${t}`, "omitted", "expected an array");
|
|
@@ -21177,30 +21212,30 @@ function tv(e, t, n, r, i) {
|
|
|
21177
21212
|
s !== void 0 && o.push(s);
|
|
21178
21213
|
}), o;
|
|
21179
21214
|
}
|
|
21180
|
-
function
|
|
21181
|
-
if (!
|
|
21215
|
+
function iv(e, t, n) {
|
|
21216
|
+
if (!G_(e)) {
|
|
21182
21217
|
$(n, "dropped-entry", t, "dropped", "source entry must be an object");
|
|
21183
21218
|
return;
|
|
21184
21219
|
}
|
|
21185
|
-
|
|
21186
|
-
let r =
|
|
21220
|
+
X_(e, ["src", "type"], t, n);
|
|
21221
|
+
let r = tv(e, "src", t, n);
|
|
21187
21222
|
if (r === void 0) return;
|
|
21188
|
-
let i = { src: r }, a =
|
|
21223
|
+
let i = { src: r }, a = Z_(e, "type", t, n);
|
|
21189
21224
|
return a !== void 0 && (i.type = a), i;
|
|
21190
21225
|
}
|
|
21191
|
-
function
|
|
21192
|
-
if (!
|
|
21226
|
+
function av(e, t, n) {
|
|
21227
|
+
if (!G_(e)) {
|
|
21193
21228
|
$(n, "dropped-entry", t, "dropped", "track entry must be an object");
|
|
21194
21229
|
return;
|
|
21195
21230
|
}
|
|
21196
|
-
|
|
21231
|
+
X_(e, [
|
|
21197
21232
|
"src",
|
|
21198
21233
|
"kind",
|
|
21199
21234
|
"label",
|
|
21200
21235
|
"srclang",
|
|
21201
21236
|
"default"
|
|
21202
21237
|
], t, n);
|
|
21203
|
-
let r =
|
|
21238
|
+
let r = tv(e, "src", t, n);
|
|
21204
21239
|
if (r === void 0) return;
|
|
21205
21240
|
let i = { src: r };
|
|
21206
21241
|
for (let r of [
|
|
@@ -21208,19 +21243,19 @@ function rv(e, t, n) {
|
|
|
21208
21243
|
"label",
|
|
21209
21244
|
"srclang"
|
|
21210
21245
|
]) {
|
|
21211
|
-
let a =
|
|
21246
|
+
let a = Z_(e, r, t, n);
|
|
21212
21247
|
a !== void 0 && (i[r] = a);
|
|
21213
21248
|
}
|
|
21214
|
-
let a =
|
|
21249
|
+
let a = Q_(e, "default", t, n);
|
|
21215
21250
|
return a !== void 0 && (i.default = a), i;
|
|
21216
21251
|
}
|
|
21217
|
-
function
|
|
21218
|
-
if (!
|
|
21252
|
+
function ov(e, t, n) {
|
|
21253
|
+
if (!G_(e)) {
|
|
21219
21254
|
$(n, "dropped-entry", t, "dropped", "chapter entry must be an object");
|
|
21220
21255
|
return;
|
|
21221
21256
|
}
|
|
21222
|
-
|
|
21223
|
-
let r =
|
|
21257
|
+
X_(e, ["name", "start"], t, n);
|
|
21258
|
+
let r = tv(e, "name", t, n), i = nv(e, "start", t, n);
|
|
21224
21259
|
if (r === void 0 || i === void 0) return;
|
|
21225
21260
|
let a = t.match(/\[(\d+)\]$/u);
|
|
21226
21261
|
return {
|
|
@@ -21231,8 +21266,8 @@ function iv(e, t, n) {
|
|
|
21231
21266
|
index: Number(a?.[1] ?? 0)
|
|
21232
21267
|
};
|
|
21233
21268
|
}
|
|
21234
|
-
function
|
|
21235
|
-
let n =
|
|
21269
|
+
function sv(e, t) {
|
|
21270
|
+
let n = rv(e, "chapters", "$.content", t, ov);
|
|
21236
21271
|
if (n === void 0) return;
|
|
21237
21272
|
let r = /* @__PURE__ */ new Set(), i = [];
|
|
21238
21273
|
for (let { chapter: e, index: a } of n) {
|
|
@@ -21244,99 +21279,99 @@ function av(e, t) {
|
|
|
21244
21279
|
}
|
|
21245
21280
|
return i.sort((e, t) => e.start - t.start);
|
|
21246
21281
|
}
|
|
21247
|
-
function
|
|
21248
|
-
let r = {}, i =
|
|
21282
|
+
function cv(e, t, n) {
|
|
21283
|
+
let r = {}, i = Q_(e, "generatedByAi", t, n);
|
|
21249
21284
|
return i !== void 0 && (r.generatedByAi = i), r;
|
|
21250
21285
|
}
|
|
21251
|
-
function
|
|
21252
|
-
if (!
|
|
21286
|
+
function lv(e, t, n) {
|
|
21287
|
+
if (!G_(e)) {
|
|
21253
21288
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21254
21289
|
return;
|
|
21255
21290
|
}
|
|
21256
|
-
|
|
21291
|
+
X_(e, [
|
|
21257
21292
|
"generatedByAi",
|
|
21258
21293
|
"keyTakeaway",
|
|
21259
21294
|
"summary"
|
|
21260
21295
|
], t, n);
|
|
21261
|
-
let r =
|
|
21296
|
+
let r = cv(e, t, n);
|
|
21262
21297
|
for (let i of ["keyTakeaway", "summary"]) {
|
|
21263
|
-
let a =
|
|
21298
|
+
let a = Z_(e, i, t, n);
|
|
21264
21299
|
a !== void 0 && (r[i] = a);
|
|
21265
21300
|
}
|
|
21266
21301
|
return r;
|
|
21267
21302
|
}
|
|
21268
|
-
function
|
|
21269
|
-
if (!
|
|
21303
|
+
function uv(e, t, n) {
|
|
21304
|
+
if (!G_(e)) {
|
|
21270
21305
|
$(n, "dropped-entry", t, "dropped", "key-concept entry must be an object");
|
|
21271
21306
|
return;
|
|
21272
21307
|
}
|
|
21273
|
-
|
|
21308
|
+
X_(e, [
|
|
21274
21309
|
"label",
|
|
21275
21310
|
"description",
|
|
21276
21311
|
"start"
|
|
21277
21312
|
], t, n);
|
|
21278
|
-
let r =
|
|
21313
|
+
let r = tv(e, "label", t, n), i = tv(e, "description", t, n);
|
|
21279
21314
|
if (r === void 0 || i === void 0) return;
|
|
21280
21315
|
let a = {
|
|
21281
21316
|
label: r,
|
|
21282
21317
|
description: i
|
|
21283
|
-
}, o =
|
|
21318
|
+
}, o = $_(e, "start", t, n);
|
|
21284
21319
|
return o !== void 0 && (a.start = o), a;
|
|
21285
21320
|
}
|
|
21286
|
-
function
|
|
21287
|
-
if (!
|
|
21321
|
+
function dv(e, t, n) {
|
|
21322
|
+
if (!G_(e)) {
|
|
21288
21323
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21289
21324
|
return;
|
|
21290
21325
|
}
|
|
21291
|
-
|
|
21292
|
-
let r =
|
|
21326
|
+
X_(e, ["generatedByAi", "items"], t, n);
|
|
21327
|
+
let r = cv(e, t, n), i = rv(e, "items", t, n, uv);
|
|
21293
21328
|
return i !== void 0 && (r.items = i), r;
|
|
21294
21329
|
}
|
|
21295
|
-
function
|
|
21296
|
-
if (!
|
|
21330
|
+
function fv(e, t, n) {
|
|
21331
|
+
if (!G_(e)) {
|
|
21297
21332
|
$(n, "dropped-entry", t, "dropped", "research-field entry must be an object");
|
|
21298
21333
|
return;
|
|
21299
21334
|
}
|
|
21300
|
-
|
|
21301
|
-
let r =
|
|
21335
|
+
X_(e, ["title", "description"], t, n);
|
|
21336
|
+
let r = tv(e, "title", t, n), i = tv(e, "description", t, n);
|
|
21302
21337
|
return r === void 0 || i === void 0 ? void 0 : {
|
|
21303
21338
|
title: r,
|
|
21304
21339
|
description: i
|
|
21305
21340
|
};
|
|
21306
21341
|
}
|
|
21307
|
-
function
|
|
21308
|
-
if (!
|
|
21342
|
+
function pv(e, t, n) {
|
|
21343
|
+
if (!G_(e)) {
|
|
21309
21344
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21310
21345
|
return;
|
|
21311
21346
|
}
|
|
21312
|
-
|
|
21313
|
-
let r =
|
|
21347
|
+
X_(e, ["generatedByAi", "sections"], t, n);
|
|
21348
|
+
let r = cv(e, t, n), i = rv(e, "sections", t, n, fv);
|
|
21314
21349
|
return i !== void 0 && (r.sections = i), r;
|
|
21315
21350
|
}
|
|
21316
|
-
function
|
|
21317
|
-
if (!
|
|
21351
|
+
function mv(e, t, n) {
|
|
21352
|
+
if (!G_(e)) {
|
|
21318
21353
|
$(n, "dropped-entry", t, "dropped", "transcript entry must be an object");
|
|
21319
21354
|
return;
|
|
21320
21355
|
}
|
|
21321
|
-
|
|
21322
|
-
let r =
|
|
21356
|
+
X_(e, ["start", "text"], t, n);
|
|
21357
|
+
let r = nv(e, "start", t, n), i = tv(e, "text", t, n);
|
|
21323
21358
|
return r === void 0 || i === void 0 ? void 0 : {
|
|
21324
21359
|
start: r,
|
|
21325
21360
|
text: i
|
|
21326
21361
|
};
|
|
21327
21362
|
}
|
|
21328
|
-
function
|
|
21329
|
-
if (!
|
|
21363
|
+
function hv(e, t, n) {
|
|
21364
|
+
if (!G_(e)) {
|
|
21330
21365
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21331
21366
|
return;
|
|
21332
21367
|
}
|
|
21333
|
-
|
|
21334
|
-
let r =
|
|
21368
|
+
X_(e, ["generatedByAi", "entries"], t, n);
|
|
21369
|
+
let r = cv(e, t, n), i = rv(e, "entries", t, n, mv);
|
|
21335
21370
|
return i !== void 0 && (r.entries = i), r;
|
|
21336
21371
|
}
|
|
21337
|
-
function
|
|
21338
|
-
if (!
|
|
21339
|
-
$(r,
|
|
21372
|
+
function gv(e, t, n, r) {
|
|
21373
|
+
if (!K_(e, t) || !Array.isArray(e[t])) {
|
|
21374
|
+
$(r, K_(e, t) ? "wrong-type" : "missing-value", `${n}.${t}`, "dropped", "entry requires an array of strings");
|
|
21340
21375
|
return;
|
|
21341
21376
|
}
|
|
21342
21377
|
let i = [];
|
|
@@ -21344,19 +21379,19 @@ function mv(e, t, n, r) {
|
|
|
21344
21379
|
typeof e == "string" ? i.push(e) : $(r, "dropped-entry", `${n}.${t}[${a}]`, "dropped", "expected a string");
|
|
21345
21380
|
}), i;
|
|
21346
21381
|
}
|
|
21347
|
-
function
|
|
21348
|
-
if (!
|
|
21382
|
+
function _v(e, t, n) {
|
|
21383
|
+
if (!G_(e)) {
|
|
21349
21384
|
$(n, "dropped-entry", t, "dropped", "publication entry must be an object");
|
|
21350
21385
|
return;
|
|
21351
21386
|
}
|
|
21352
|
-
|
|
21387
|
+
X_(e, [
|
|
21353
21388
|
"title",
|
|
21354
21389
|
"authors",
|
|
21355
21390
|
"journal",
|
|
21356
21391
|
"abstract",
|
|
21357
21392
|
"url"
|
|
21358
21393
|
], t, n);
|
|
21359
|
-
let r =
|
|
21394
|
+
let r = tv(e, "title", t, n), i = gv(e, "authors", t, n), a = tv(e, "journal", t, n), o = tv(e, "abstract", t, n), s = tv(e, "url", t, n);
|
|
21360
21395
|
if (r !== void 0 && i !== void 0 && a !== void 0 && o !== void 0 && s !== void 0) return {
|
|
21361
21396
|
title: r,
|
|
21362
21397
|
authors: i,
|
|
@@ -21365,92 +21400,92 @@ function hv(e, t, n) {
|
|
|
21365
21400
|
url: s
|
|
21366
21401
|
};
|
|
21367
21402
|
}
|
|
21368
|
-
function
|
|
21369
|
-
if (!
|
|
21403
|
+
function vv(e, t, n) {
|
|
21404
|
+
if (!G_(e)) {
|
|
21370
21405
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21371
21406
|
return;
|
|
21372
21407
|
}
|
|
21373
|
-
|
|
21374
|
-
let r =
|
|
21408
|
+
X_(e, ["generatedByAi", "items"], t, n);
|
|
21409
|
+
let r = cv(e, t, n), i = rv(e, "items", t, n, _v);
|
|
21375
21410
|
return i !== void 0 && (r.items = i), r;
|
|
21376
21411
|
}
|
|
21377
|
-
function
|
|
21378
|
-
if (!
|
|
21412
|
+
function yv(e, t, n) {
|
|
21413
|
+
if (!G_(e)) {
|
|
21379
21414
|
$(n, "dropped-entry", t, "dropped", "related-video entry must be an object");
|
|
21380
21415
|
return;
|
|
21381
21416
|
}
|
|
21382
|
-
|
|
21417
|
+
X_(e, [
|
|
21383
21418
|
"title",
|
|
21384
21419
|
"poster",
|
|
21385
21420
|
"url"
|
|
21386
21421
|
], t, n);
|
|
21387
|
-
let r =
|
|
21422
|
+
let r = tv(e, "title", t, n), i = tv(e, "poster", t, n), a = tv(e, "url", t, n);
|
|
21388
21423
|
return r === void 0 || i === void 0 || a === void 0 ? void 0 : {
|
|
21389
21424
|
title: r,
|
|
21390
21425
|
poster: i,
|
|
21391
21426
|
url: a
|
|
21392
21427
|
};
|
|
21393
21428
|
}
|
|
21394
|
-
function
|
|
21395
|
-
if (!
|
|
21429
|
+
function bv(e, t, n) {
|
|
21430
|
+
if (!G_(e)) {
|
|
21396
21431
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21397
21432
|
return;
|
|
21398
21433
|
}
|
|
21399
|
-
|
|
21434
|
+
X_(e, [
|
|
21400
21435
|
"generatedByAi",
|
|
21401
21436
|
"related",
|
|
21402
21437
|
"forYou"
|
|
21403
21438
|
], t, n);
|
|
21404
|
-
let r =
|
|
21439
|
+
let r = cv(e, t, n);
|
|
21405
21440
|
for (let i of ["related", "forYou"]) {
|
|
21406
|
-
let a =
|
|
21441
|
+
let a = rv(e, i, t, n, yv);
|
|
21407
21442
|
a !== void 0 && (r[i] = a);
|
|
21408
21443
|
}
|
|
21409
21444
|
return r;
|
|
21410
21445
|
}
|
|
21411
|
-
function
|
|
21412
|
-
if (!
|
|
21446
|
+
function xv(e, t, n) {
|
|
21447
|
+
if (!G_(e)) {
|
|
21413
21448
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21414
21449
|
return;
|
|
21415
21450
|
}
|
|
21416
|
-
|
|
21451
|
+
X_(e, H_, t, n);
|
|
21417
21452
|
let r = {}, i = {
|
|
21418
|
-
inANutshell:
|
|
21419
|
-
keyConcepts:
|
|
21420
|
-
researchField:
|
|
21421
|
-
transcript:
|
|
21422
|
-
underlyingPublication:
|
|
21423
|
-
relatedVideos:
|
|
21453
|
+
inANutshell: lv,
|
|
21454
|
+
keyConcepts: dv,
|
|
21455
|
+
researchField: pv,
|
|
21456
|
+
transcript: hv,
|
|
21457
|
+
underlyingPublication: vv,
|
|
21458
|
+
relatedVideos: bv
|
|
21424
21459
|
};
|
|
21425
|
-
for (let a of
|
|
21426
|
-
if (!
|
|
21460
|
+
for (let a of H_) {
|
|
21461
|
+
if (!K_(e, a)) continue;
|
|
21427
21462
|
let o = i[a](e[a], `${t}.${a}`, n);
|
|
21428
21463
|
o !== void 0 && Object.assign(r, { [a]: o });
|
|
21429
21464
|
}
|
|
21430
21465
|
return r;
|
|
21431
21466
|
}
|
|
21432
|
-
function
|
|
21467
|
+
function Sv(e, t, n) {
|
|
21433
21468
|
if (typeof e == "boolean") return e;
|
|
21434
|
-
if (
|
|
21469
|
+
if (G_(e)) return X_(e, [], t, n), {};
|
|
21435
21470
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21436
21471
|
}
|
|
21437
|
-
function
|
|
21472
|
+
function Cv(e, t, n) {
|
|
21438
21473
|
if (typeof e == "boolean") return e;
|
|
21439
|
-
if (!
|
|
21474
|
+
if (!G_(e)) {
|
|
21440
21475
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21441
21476
|
return;
|
|
21442
21477
|
}
|
|
21443
|
-
|
|
21444
|
-
let r = {}, i =
|
|
21478
|
+
X_(e, ["label"], t, n);
|
|
21479
|
+
let r = {}, i = Z_(e, "label", t, n);
|
|
21445
21480
|
return i !== void 0 && (r.label = i), r;
|
|
21446
21481
|
}
|
|
21447
|
-
function
|
|
21482
|
+
function wv(e, t, n) {
|
|
21448
21483
|
if (typeof e == "boolean") return e;
|
|
21449
|
-
if (!
|
|
21484
|
+
if (!G_(e)) {
|
|
21450
21485
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21451
21486
|
return;
|
|
21452
21487
|
}
|
|
21453
|
-
|
|
21488
|
+
X_(e, [
|
|
21454
21489
|
"image",
|
|
21455
21490
|
"title",
|
|
21456
21491
|
"author",
|
|
@@ -21462,62 +21497,62 @@ function Sv(e, t, n) {
|
|
|
21462
21497
|
"title",
|
|
21463
21498
|
"author"
|
|
21464
21499
|
]) {
|
|
21465
|
-
let a =
|
|
21500
|
+
let a = Q_(e, i, t, n);
|
|
21466
21501
|
a !== void 0 && (r[i] = a);
|
|
21467
21502
|
}
|
|
21468
|
-
if (
|
|
21469
|
-
let i =
|
|
21503
|
+
if (K_(e, "button")) {
|
|
21504
|
+
let i = Cv(e.button, `${t}.button`, n);
|
|
21470
21505
|
i !== void 0 && (r.button = i);
|
|
21471
21506
|
}
|
|
21472
21507
|
return r;
|
|
21473
21508
|
}
|
|
21474
|
-
function
|
|
21509
|
+
function Tv(e, t, n) {
|
|
21475
21510
|
if (typeof e == "boolean") return e;
|
|
21476
|
-
if (!
|
|
21511
|
+
if (!G_(e)) {
|
|
21477
21512
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21478
21513
|
return;
|
|
21479
21514
|
}
|
|
21480
|
-
|
|
21515
|
+
X_(e, ["seekStep"], t, n);
|
|
21481
21516
|
let r = {};
|
|
21482
|
-
if (
|
|
21517
|
+
if (K_(e, "seekStep")) {
|
|
21483
21518
|
let i = e.seekStep;
|
|
21484
|
-
|
|
21519
|
+
J_(i) && i > 0 ? r.seekStep = i : $(n, J_(i) ? "invalid-value" : "wrong-type", `${t}.seekStep`, "omitted", "expected a finite positive number");
|
|
21485
21520
|
}
|
|
21486
21521
|
return r;
|
|
21487
21522
|
}
|
|
21488
|
-
function
|
|
21489
|
-
if (!
|
|
21523
|
+
function Ev(e, t, n) {
|
|
21524
|
+
if (!G_(e)) {
|
|
21490
21525
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21491
21526
|
return;
|
|
21492
21527
|
}
|
|
21493
|
-
|
|
21528
|
+
X_(e, U_, t, n);
|
|
21494
21529
|
let r = {};
|
|
21495
|
-
for (let i of
|
|
21496
|
-
if (!
|
|
21497
|
-
let a = i === "cover" ?
|
|
21530
|
+
for (let i of U_) {
|
|
21531
|
+
if (!K_(e, i)) continue;
|
|
21532
|
+
let a = i === "cover" ? wv(e[i], `${t}.${i}`, n) : i === "timeline" ? Tv(e[i], `${t}.${i}`, n) : Sv(e[i], `${t}.${i}`, n);
|
|
21498
21533
|
a !== void 0 && Object.assign(r, { [i]: a });
|
|
21499
21534
|
}
|
|
21500
21535
|
return r;
|
|
21501
21536
|
}
|
|
21502
|
-
function
|
|
21537
|
+
function Dv(e, t, n) {
|
|
21503
21538
|
if (typeof e == "boolean") return e;
|
|
21504
|
-
if (!
|
|
21539
|
+
if (!G_(e)) {
|
|
21505
21540
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21506
21541
|
return;
|
|
21507
21542
|
}
|
|
21508
|
-
|
|
21543
|
+
X_(e, ["options"], t, n);
|
|
21509
21544
|
let r = {};
|
|
21510
|
-
if (!
|
|
21545
|
+
if (!K_(e, "options")) return r;
|
|
21511
21546
|
let i = e.options;
|
|
21512
|
-
return Array.isArray(i) && i.length > 0 && i.every((e) =>
|
|
21547
|
+
return Array.isArray(i) && i.length > 0 && i.every((e) => J_(e) && e > 0) && i.every((e, t) => t === 0 || e > i[t - 1]) ? r.options = [...i] : $(n, Array.isArray(i) ? "invalid-value" : "wrong-type", `${t}.options`, "omitted", "expected a non-empty strictly ascending list of positive rates"), r;
|
|
21513
21548
|
}
|
|
21514
|
-
function
|
|
21549
|
+
function Ov(e, t, n) {
|
|
21515
21550
|
if (typeof e == "boolean") return e;
|
|
21516
|
-
if (!
|
|
21551
|
+
if (!G_(e)) {
|
|
21517
21552
|
$(n, "wrong-type", t, "omitted", "expected a boolean or object");
|
|
21518
21553
|
return;
|
|
21519
21554
|
}
|
|
21520
|
-
|
|
21555
|
+
X_(e, [
|
|
21521
21556
|
"canonicalUrl",
|
|
21522
21557
|
"embedUrl",
|
|
21523
21558
|
"playerTrigger",
|
|
@@ -21526,11 +21561,11 @@ function Ev(e, t, n) {
|
|
|
21526
21561
|
], t, n);
|
|
21527
21562
|
let r = {};
|
|
21528
21563
|
for (let i of ["canonicalUrl", "embedUrl"]) {
|
|
21529
|
-
let a =
|
|
21564
|
+
let a = Z_(e, i, t, n);
|
|
21530
21565
|
a !== void 0 && (r[i] = a);
|
|
21531
21566
|
}
|
|
21532
|
-
let i =
|
|
21533
|
-
if (i !== void 0 && (r.playerTrigger = i),
|
|
21567
|
+
let i = Q_(e, "playerTrigger", t, n);
|
|
21568
|
+
if (i !== void 0 && (r.playerTrigger = i), K_(e, "targets")) {
|
|
21534
21569
|
let i = e.targets;
|
|
21535
21570
|
if (!Array.isArray(i)) $(n, "wrong-type", `${t}.targets`, "omitted", "expected an array");
|
|
21536
21571
|
else {
|
|
@@ -21562,13 +21597,13 @@ function Ev(e, t, n) {
|
|
|
21562
21597
|
}), r.targets = o;
|
|
21563
21598
|
}
|
|
21564
21599
|
}
|
|
21565
|
-
if (
|
|
21566
|
-
if (!
|
|
21600
|
+
if (K_(e, "templates")) {
|
|
21601
|
+
if (!G_(e.templates)) $(n, "wrong-type", `${t}.templates`, "omitted", "expected an object");
|
|
21567
21602
|
else {
|
|
21568
|
-
|
|
21603
|
+
X_(e.templates, ["message"], `${t}.templates`, n);
|
|
21569
21604
|
let i = {};
|
|
21570
21605
|
for (let r of ["message"]) {
|
|
21571
|
-
let a =
|
|
21606
|
+
let a = Z_(e.templates, r, `${t}.templates`, n);
|
|
21572
21607
|
a !== void 0 && (i[r] = a);
|
|
21573
21608
|
}
|
|
21574
21609
|
r.templates = i;
|
|
@@ -21576,22 +21611,22 @@ function Ev(e, t, n) {
|
|
|
21576
21611
|
}
|
|
21577
21612
|
return r;
|
|
21578
21613
|
}
|
|
21579
|
-
function
|
|
21580
|
-
if (!
|
|
21614
|
+
function kv(e, t, n) {
|
|
21615
|
+
if (!G_(e)) {
|
|
21581
21616
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21582
21617
|
return;
|
|
21583
21618
|
}
|
|
21584
|
-
|
|
21619
|
+
X_(e, W_, t, n);
|
|
21585
21620
|
let r = {};
|
|
21586
|
-
for (let i of
|
|
21587
|
-
if (!
|
|
21588
|
-
let a = i === "speed" ?
|
|
21621
|
+
for (let i of W_) {
|
|
21622
|
+
if (!K_(e, i)) continue;
|
|
21623
|
+
let a = i === "speed" ? Dv(e[i], `${t}.${i}`, n) : i === "share" ? Ov(e[i], `${t}.${i}`, n) : Q_(e, i, t, n);
|
|
21589
21624
|
a !== void 0 && Object.assign(r, { [i]: a });
|
|
21590
21625
|
}
|
|
21591
21626
|
return r;
|
|
21592
21627
|
}
|
|
21593
|
-
function
|
|
21594
|
-
if (!
|
|
21628
|
+
function Av(e, t, n) {
|
|
21629
|
+
if (!G_(e)) {
|
|
21595
21630
|
$(n, "wrong-type", t, "omitted", "expected an object");
|
|
21596
21631
|
return;
|
|
21597
21632
|
}
|
|
@@ -21599,7 +21634,7 @@ function Ov(e, t, n) {
|
|
|
21599
21634
|
for (let [i, a] of Object.entries(e)) typeof a == "string" ? r[i] = a : $(n, "wrong-type", `${t}.${i}`, "omitted", "expected a string");
|
|
21600
21635
|
return r;
|
|
21601
21636
|
}
|
|
21602
|
-
function
|
|
21637
|
+
function jv(e, t, n) {
|
|
21603
21638
|
if (typeof e == "string") return e;
|
|
21604
21639
|
if (!Array.isArray(e)) {
|
|
21605
21640
|
$(n, "wrong-type", t, "omitted", "expected a string or string array");
|
|
@@ -21614,50 +21649,50 @@ function kv(e, t, n) {
|
|
|
21614
21649
|
typeof e == "string" ? r.push(e) : $(n, "dropped-entry", `${t}[${i}]`, "dropped", "expected a string");
|
|
21615
21650
|
}), r.length > 0 ? r : void 0;
|
|
21616
21651
|
}
|
|
21617
|
-
function
|
|
21618
|
-
|
|
21619
|
-
let n = { sources: e.sources.map((e, n) =>
|
|
21652
|
+
function Mv(e, t) {
|
|
21653
|
+
X_(e, V_, "$.content", t);
|
|
21654
|
+
let n = { sources: e.sources.map((e, n) => iv(e, `$.content.sources[${n}]`, t)).filter((e) => e !== void 0) };
|
|
21620
21655
|
for (let r of [
|
|
21621
21656
|
"title",
|
|
21622
21657
|
"author",
|
|
21623
21658
|
"description",
|
|
21624
21659
|
"poster"
|
|
21625
21660
|
]) {
|
|
21626
|
-
let i =
|
|
21661
|
+
let i = Z_(e, r, "$.content", t);
|
|
21627
21662
|
i !== void 0 && (n[r] = i);
|
|
21628
21663
|
}
|
|
21629
|
-
let r =
|
|
21664
|
+
let r = ev(e, "duration", "$.content", t);
|
|
21630
21665
|
r !== void 0 && (n.duration = r);
|
|
21631
|
-
let i =
|
|
21666
|
+
let i = rv(e, "tracks", "$.content", t, av);
|
|
21632
21667
|
i !== void 0 && (n.tracks = i);
|
|
21633
|
-
let a =
|
|
21634
|
-
if (a !== void 0 && (n.chapters = a),
|
|
21635
|
-
let r =
|
|
21668
|
+
let a = sv(e, t);
|
|
21669
|
+
if (a !== void 0 && (n.chapters = a), K_(e, "metadata")) {
|
|
21670
|
+
let r = xv(e.metadata, "$.content.metadata", t);
|
|
21636
21671
|
r !== void 0 && (n.metadata = r);
|
|
21637
21672
|
}
|
|
21638
21673
|
return n;
|
|
21639
21674
|
}
|
|
21640
|
-
function
|
|
21675
|
+
function Nv(e, t) {
|
|
21641
21676
|
return {
|
|
21642
21677
|
level: "error",
|
|
21643
21678
|
code: t ? "legacy-config-invalid" : "config-invalid",
|
|
21644
21679
|
message: `${t ? "[lt-player] Legacy pre-v3 configuration rejected" : "[lt-player] Configuration rejected"}:\n${e.map((e) => `- ${e.path}: ${e.message}`).join("\n")}`
|
|
21645
21680
|
};
|
|
21646
21681
|
}
|
|
21647
|
-
function
|
|
21682
|
+
function Pv(e, t) {
|
|
21648
21683
|
return {
|
|
21649
21684
|
status: "valid",
|
|
21650
21685
|
config: e,
|
|
21651
21686
|
findings: t,
|
|
21652
|
-
diagnostic:
|
|
21687
|
+
diagnostic: R_(t)
|
|
21653
21688
|
};
|
|
21654
21689
|
}
|
|
21655
|
-
function
|
|
21690
|
+
function Fv(e, t, n) {
|
|
21656
21691
|
return e.filter((e) => e.start <= t || ($(n, "chapter-beyond-duration", "$.content.chapters", "dropped", `chapter "${e.name}" at ${e.start} seconds exceeds duration ${t}`), !1));
|
|
21657
21692
|
}
|
|
21658
|
-
function
|
|
21659
|
-
let n =
|
|
21660
|
-
if (
|
|
21693
|
+
function Iv(e, t) {
|
|
21694
|
+
let n = G_(e) ? e : {}, r = G_(n.content) ? n.content : void 0, i = n.layout, a = [];
|
|
21695
|
+
if (q_(i) || a.push({
|
|
21661
21696
|
code: "invalid-layout",
|
|
21662
21697
|
path: "$.layout",
|
|
21663
21698
|
message: "layout must be landscape or portrait"
|
|
@@ -21665,54 +21700,54 @@ function Pv(e, t) {
|
|
|
21665
21700
|
code: "missing-sources",
|
|
21666
21701
|
path: "$.content.sources",
|
|
21667
21702
|
message: "content.sources must be a non-empty array"
|
|
21668
|
-
}), t.application === "update" &&
|
|
21703
|
+
}), t.application === "update" && q_(i) && i !== t.instanceLayout && a.push({
|
|
21669
21704
|
code: "layout-change",
|
|
21670
21705
|
path: "$.layout",
|
|
21671
21706
|
message: `layout cannot change from ${t.instanceLayout} to ${i}`
|
|
21672
21707
|
}), a.length > 0) {
|
|
21673
|
-
let e =
|
|
21708
|
+
let e = K_(n, "body");
|
|
21674
21709
|
return {
|
|
21675
21710
|
status: "invalid",
|
|
21676
21711
|
violations: a,
|
|
21677
21712
|
legacy: e,
|
|
21678
|
-
diagnostic:
|
|
21713
|
+
diagnostic: Nv(a, e)
|
|
21679
21714
|
};
|
|
21680
21715
|
}
|
|
21681
21716
|
let o = [];
|
|
21682
|
-
|
|
21717
|
+
X_(n, B_, "$", o);
|
|
21683
21718
|
let s = {
|
|
21684
21719
|
version: 3,
|
|
21685
21720
|
layout: i,
|
|
21686
|
-
content:
|
|
21721
|
+
content: Mv(r, o)
|
|
21687
21722
|
};
|
|
21688
|
-
if (
|
|
21689
|
-
let e =
|
|
21723
|
+
if (K_(n, "version") && n.version !== 3 && $(o, typeof n.version == "number" ? "invalid-value" : "wrong-type", "$.version", "omitted", "version was normalized to 3"), K_(n, "language")) {
|
|
21724
|
+
let e = jv(n.language, "$.language", o);
|
|
21690
21725
|
e !== void 0 && (s.language = e);
|
|
21691
21726
|
}
|
|
21692
|
-
if (
|
|
21693
|
-
let e =
|
|
21727
|
+
if (K_(n, "controls")) {
|
|
21728
|
+
let e = Ev(n.controls, "$.controls", o);
|
|
21694
21729
|
e !== void 0 && (s.controls = e);
|
|
21695
21730
|
}
|
|
21696
|
-
if (
|
|
21697
|
-
let e =
|
|
21731
|
+
if (K_(n, "capabilities")) {
|
|
21732
|
+
let e = kv(n.capabilities, "$.capabilities", o);
|
|
21698
21733
|
e !== void 0 && (s.capabilities = e);
|
|
21699
21734
|
}
|
|
21700
|
-
if (
|
|
21701
|
-
let e =
|
|
21735
|
+
if (K_(n, "strings")) {
|
|
21736
|
+
let e = Av(n.strings, "$.strings", o);
|
|
21702
21737
|
e !== void 0 && (s.strings = e);
|
|
21703
21738
|
}
|
|
21704
|
-
let c = s.content.chapters, l = s.content.duration ?? (
|
|
21739
|
+
let c = s.content.chapters, l = s.content.duration ?? (Y_(t.engineDuration) ? t.engineDuration : void 0);
|
|
21705
21740
|
return c !== void 0 && c.length > 0 && l === void 0 ? {
|
|
21706
21741
|
status: "pending-duration",
|
|
21707
21742
|
config: s,
|
|
21708
21743
|
findings: o,
|
|
21709
21744
|
diagnostic: null
|
|
21710
|
-
} : (c !== void 0 && l !== void 0 && (s.content.chapters =
|
|
21745
|
+
} : (c !== void 0 && l !== void 0 && (s.content.chapters = Fv(c, l, o)), Pv(s, o));
|
|
21711
21746
|
}
|
|
21712
|
-
function
|
|
21713
|
-
if (!
|
|
21714
|
-
let n = [...e.findings], r =
|
|
21715
|
-
return
|
|
21747
|
+
function Lv(e, t) {
|
|
21748
|
+
if (!Y_(t)) return e;
|
|
21749
|
+
let n = [...e.findings], r = Fv(e.config.content.chapters ?? [], t, n);
|
|
21750
|
+
return Pv({
|
|
21716
21751
|
...e.config,
|
|
21717
21752
|
content: {
|
|
21718
21753
|
...e.config.content,
|
|
@@ -21720,17 +21755,17 @@ function Fv(e, t) {
|
|
|
21720
21755
|
}
|
|
21721
21756
|
}, n);
|
|
21722
21757
|
}
|
|
21723
|
-
function
|
|
21724
|
-
return
|
|
21758
|
+
function Rv(e) {
|
|
21759
|
+
return Pv(e.config, e.findings);
|
|
21725
21760
|
}
|
|
21726
21761
|
//#endregion
|
|
21727
21762
|
//#region src/page-api/player-runtime.ts
|
|
21728
|
-
var
|
|
21729
|
-
function
|
|
21763
|
+
var zv = Symbol("chapter-unset"), Bv = () => void 0;
|
|
21764
|
+
function Vv(e) {
|
|
21730
21765
|
return Number.isFinite(e) && e >= 0 ? e : 0;
|
|
21731
21766
|
}
|
|
21732
|
-
function
|
|
21733
|
-
return
|
|
21767
|
+
function Hv(e) {
|
|
21768
|
+
return jh({
|
|
21734
21769
|
version: 3,
|
|
21735
21770
|
layout: e,
|
|
21736
21771
|
content: { sources: [] },
|
|
@@ -21743,14 +21778,14 @@ function Bv(e) {
|
|
|
21743
21778
|
}
|
|
21744
21779
|
});
|
|
21745
21780
|
}
|
|
21746
|
-
function
|
|
21781
|
+
function Uv(e) {
|
|
21747
21782
|
if (typeof e == "object" && e && "layout" in e) {
|
|
21748
21783
|
let t = e.layout;
|
|
21749
21784
|
if (t === "landscape" || t === "portrait") return t;
|
|
21750
21785
|
}
|
|
21751
21786
|
return "landscape";
|
|
21752
21787
|
}
|
|
21753
|
-
var
|
|
21788
|
+
var Wv = class {
|
|
21754
21789
|
#e;
|
|
21755
21790
|
#t;
|
|
21756
21791
|
#n;
|
|
@@ -21769,7 +21804,7 @@ var Hv = class {
|
|
|
21769
21804
|
#h = 0;
|
|
21770
21805
|
#g = "";
|
|
21771
21806
|
#_ = -1;
|
|
21772
|
-
#v =
|
|
21807
|
+
#v = zv;
|
|
21773
21808
|
#y = Object.freeze({
|
|
21774
21809
|
playback: "idle",
|
|
21775
21810
|
currentTime: 0,
|
|
@@ -21786,7 +21821,7 @@ var Hv = class {
|
|
|
21786
21821
|
#S = !1;
|
|
21787
21822
|
#C = -1;
|
|
21788
21823
|
constructor(e) {
|
|
21789
|
-
this.#r = e.applicationContext?.mode ?? "standalone", this.#i = e.applicationContext?.mediaSessionTrackCommands, this.#e = e.render, this.#t = e.unmount, this.#n = e.releaseHost, this.#a = e.userStateSession ??
|
|
21824
|
+
this.#r = e.applicationContext?.mode ?? "standalone", this.#i = e.applicationContext?.mediaSessionTrackCommands, this.#e = e.render, this.#t = e.unmount, this.#n = e.releaseHost, this.#a = e.userStateSession ?? qh(), this.#c = Object.freeze({
|
|
21790
21825
|
update: (e) => this.update(e),
|
|
21791
21826
|
destroy: () => this.destroy(),
|
|
21792
21827
|
getState: () => this.getState(),
|
|
@@ -21822,9 +21857,9 @@ var Hv = class {
|
|
|
21822
21857
|
return this.#x;
|
|
21823
21858
|
}
|
|
21824
21859
|
mount(e) {
|
|
21825
|
-
let t =
|
|
21860
|
+
let t = Iv(e, { application: "mount" });
|
|
21826
21861
|
if (t.status === "invalid") {
|
|
21827
|
-
let n =
|
|
21862
|
+
let n = Uv(e), r = Hv(n), i = yh(), a = qm(r);
|
|
21828
21863
|
throw this.#m += 1, this.#l = Object.freeze({
|
|
21829
21864
|
generation: this.#m,
|
|
21830
21865
|
revision: ++this.#h,
|
|
@@ -21847,7 +21882,7 @@ var Hv = class {
|
|
|
21847
21882
|
if (this.#b) return;
|
|
21848
21883
|
let t = this.application;
|
|
21849
21884
|
this.#E();
|
|
21850
|
-
let n =
|
|
21885
|
+
let n = Iv(e, {
|
|
21851
21886
|
application: "update",
|
|
21852
21887
|
instanceLayout: t.config.layout
|
|
21853
21888
|
});
|
|
@@ -21871,8 +21906,8 @@ var Hv = class {
|
|
|
21871
21906
|
});
|
|
21872
21907
|
let e = this.#d.getSnapshot(), t = this.#d.playerState.getSnapshot().playback, n = Object.freeze({
|
|
21873
21908
|
playback: t,
|
|
21874
|
-
currentTime:
|
|
21875
|
-
duration:
|
|
21909
|
+
currentTime: Vv(e.currentTime),
|
|
21910
|
+
duration: Vv(e.duration),
|
|
21876
21911
|
volume: e.volume,
|
|
21877
21912
|
muted: e.muted,
|
|
21878
21913
|
rate: e.rate,
|
|
@@ -21883,7 +21918,7 @@ var Hv = class {
|
|
|
21883
21918
|
return this.#y = n, n;
|
|
21884
21919
|
}
|
|
21885
21920
|
on(e, t) {
|
|
21886
|
-
if (this.#b) return
|
|
21921
|
+
if (this.#b) return Bv;
|
|
21887
21922
|
let n = this.#s.get(e) ?? /* @__PURE__ */ new Set();
|
|
21888
21923
|
this.#s.set(e, n);
|
|
21889
21924
|
let r = t;
|
|
@@ -21894,7 +21929,7 @@ var Hv = class {
|
|
|
21894
21929
|
};
|
|
21895
21930
|
}
|
|
21896
21931
|
attachEngine(e) {
|
|
21897
|
-
if (this.#b) return
|
|
21932
|
+
if (this.#b) return Bv;
|
|
21898
21933
|
this.#f?.(), this.#d = e;
|
|
21899
21934
|
let t = e.media, n = e.getSnapshot(), r = e.playerState.getSnapshot(), i = e.subscribe(() => {
|
|
21900
21935
|
let t = e.getSnapshot();
|
|
@@ -21924,10 +21959,10 @@ var Hv = class {
|
|
|
21924
21959
|
let n = this.application;
|
|
21925
21960
|
if (n.generation !== e || n.revision !== t) return;
|
|
21926
21961
|
let r = `${e}:${t}`;
|
|
21927
|
-
this.#g !== r && (this.#g = r, n.commit !== "duration" && (this.#S = !0, this.#_ = -1, this.#v =
|
|
21962
|
+
this.#g !== r && (this.#g = r, n.commit !== "duration" && (this.#S = !0, this.#_ = -1, this.#v = zv, n.configurationError ? (this.#d.pause(), this.#d.playerState.enterConfigurationError()) : (this.#C = n.generation, this.#d.playerState.resetForApplication(this.#r), this.#d.userState.applyResolvedConfig(n.config, this.#r), this.#d.load()), this.#S = !1, n.commit === "update" && this.#I("videoChange", {})));
|
|
21928
21963
|
}
|
|
21929
21964
|
#w(e, t) {
|
|
21930
|
-
let n = this.#d?.userState.getSnapshot() ?? this.#a.hydrate(), r =
|
|
21965
|
+
let n = this.#d?.userState.getSnapshot() ?? this.#a.hydrate(), r = jh(e.config, n), i = yh(typeof r.language == "string" ? r.language : [...r.language], r.strings), a = this.#l?.registry ?? qm(r);
|
|
21931
21966
|
this.#l !== null && a.applyConfig(r), this.#m += 1, this.#l = Object.freeze({
|
|
21932
21967
|
generation: this.#m,
|
|
21933
21968
|
revision: ++this.#h,
|
|
@@ -21947,10 +21982,10 @@ var Hv = class {
|
|
|
21947
21982
|
#T(e) {
|
|
21948
21983
|
let t = this.#u;
|
|
21949
21984
|
if (t === null || t.generation !== this.application.generation || this.#C !== -1 || !Number.isFinite(e) || e <= 0) return;
|
|
21950
|
-
let n =
|
|
21985
|
+
let n = Lv(t.result, e);
|
|
21951
21986
|
if (n.status === "pending-duration") return;
|
|
21952
21987
|
this.#u = null;
|
|
21953
|
-
let r = this.#d?.userState.getSnapshot() ?? this.#a.hydrate(), i =
|
|
21988
|
+
let r = this.#d?.userState.getSnapshot() ?? this.#a.hydrate(), i = jh(n.config, r);
|
|
21954
21989
|
this.application.registry.applyConfig(i), this.#l = Object.freeze({
|
|
21955
21990
|
...this.application,
|
|
21956
21991
|
revision: ++this.#h,
|
|
@@ -21962,7 +21997,7 @@ var Hv = class {
|
|
|
21962
21997
|
let e = this.#u;
|
|
21963
21998
|
if (e === null) return;
|
|
21964
21999
|
this.#u = null;
|
|
21965
|
-
let t =
|
|
22000
|
+
let t = Rv(e.result);
|
|
21966
22001
|
this.#L([...t.findings, ...e.stringFindings]);
|
|
21967
22002
|
}
|
|
21968
22003
|
#D(e) {
|
|
@@ -21992,7 +22027,7 @@ var Hv = class {
|
|
|
21992
22027
|
#M(e) {
|
|
21993
22028
|
if (!(this.#b || this.#S || this.#d === null)) {
|
|
21994
22029
|
if (e === "canplay") {
|
|
21995
|
-
this.#C = -1, this.#T(this.#d.getSnapshot().duration), this.#_ !== this.application.generation && (this.#_ = this.application.generation, this.#I("ready", { duration:
|
|
22030
|
+
this.#C = -1, this.#T(this.#d.getSnapshot().duration), this.#_ !== this.application.generation && (this.#_ = this.application.generation, this.#I("ready", { duration: Vv(this.#d.getSnapshot().duration) }));
|
|
21996
22031
|
return;
|
|
21997
22032
|
}
|
|
21998
22033
|
if (this.#C === -1) {
|
|
@@ -22022,38 +22057,38 @@ var Hv = class {
|
|
|
22022
22057
|
}
|
|
22023
22058
|
#F() {
|
|
22024
22059
|
if (this.#d === null || this.#l === null) return;
|
|
22025
|
-
let e =
|
|
22060
|
+
let e = lf(this.#l.config.content.chapters, this.#d.getSnapshot().currentTime);
|
|
22026
22061
|
this.#v !== e && (this.#v = e, this.#I("chapterChange", { chapter: e }));
|
|
22027
22062
|
}
|
|
22028
22063
|
#I(e, t) {
|
|
22029
22064
|
if (this.#b) return;
|
|
22030
|
-
let n =
|
|
22065
|
+
let n = Vv(this.#d?.getSnapshot().currentTime ?? 0), r = Object.freeze({
|
|
22031
22066
|
currentTime: n,
|
|
22032
22067
|
...t
|
|
22033
22068
|
});
|
|
22034
22069
|
for (let t of [...this.#s.get(e) ?? []]) t(r);
|
|
22035
22070
|
}
|
|
22036
22071
|
#L(e) {
|
|
22037
|
-
|
|
22072
|
+
z_(e, (e) => this.#R(e));
|
|
22038
22073
|
}
|
|
22039
22074
|
#R(e) {
|
|
22040
22075
|
e.level === "error" ? console.error(e.message) : console.warn(e.message);
|
|
22041
22076
|
}
|
|
22042
|
-
},
|
|
22043
|
-
function
|
|
22077
|
+
}, Gv = /* @__PURE__ */ new WeakMap();
|
|
22078
|
+
function Kv(e) {
|
|
22044
22079
|
return e.id ? `#${e.id}` : e.tagName.toLowerCase();
|
|
22045
22080
|
}
|
|
22046
|
-
function
|
|
22047
|
-
let n =
|
|
22081
|
+
function qv(e, t) {
|
|
22082
|
+
let n = Gv.get(e);
|
|
22048
22083
|
if (n !== void 0) {
|
|
22049
|
-
if (!n.isFailedMount()) throw Error(`Cannot create player: host ${
|
|
22084
|
+
if (!n.isFailedMount()) throw Error(`Cannot create player: host ${Kv(e)} is already owned`);
|
|
22050
22085
|
n.destroy();
|
|
22051
22086
|
}
|
|
22052
|
-
let r = (0, ld.createRoot)(e), i = new
|
|
22053
|
-
applicationContext:
|
|
22087
|
+
let r = (0, ld.createRoot)(e), i = new Wv({
|
|
22088
|
+
applicationContext: L_(e),
|
|
22054
22089
|
render(e) {
|
|
22055
22090
|
r !== null && (0, Dl.flushSync)(() => {
|
|
22056
|
-
r?.render((0, w.createElement)(
|
|
22091
|
+
r?.render((0, w.createElement)(w_, {
|
|
22057
22092
|
application: e,
|
|
22058
22093
|
runtime: i
|
|
22059
22094
|
}));
|
|
@@ -22065,10 +22100,10 @@ function Gv(e, t) {
|
|
|
22065
22100
|
r = null, (0, Dl.flushSync)(() => e.unmount());
|
|
22066
22101
|
},
|
|
22067
22102
|
releaseHost() {
|
|
22068
|
-
|
|
22103
|
+
Gv.get(e) === i && Gv.delete(e);
|
|
22069
22104
|
}
|
|
22070
22105
|
});
|
|
22071
|
-
return
|
|
22106
|
+
return Gv.set(e, i), i.mount(t);
|
|
22072
22107
|
}
|
|
22073
22108
|
//#endregion
|
|
22074
|
-
export { m as _,
|
|
22109
|
+
export { m as _, Ip as a, Qt as c, bt as d, ht as f, v as g, f as h, Pp as i, Zt as l, _ as m, I_ as n, Fd as o, M as p, jp as r, yn as s, qv as t, Xt as u };
|