@hanifhan1f/vidstack-react 1.12.30 → 1.12.31
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/dev/chunks/vidstack-3rdEWplD.js +189 -0
- package/dev/chunks/vidstack-BRTBRJ_I.js +288 -0
- package/dev/chunks/vidstack-C56TjAKZ.js +61 -0
- package/dev/chunks/vidstack-C5tZAkKo.js +11694 -0
- package/dev/chunks/vidstack-CXjRKTos.js +401 -0
- package/dev/chunks/vidstack-C_xw7iZ2.js +34 -0
- package/dev/chunks/vidstack-CaaASbOf.js +476 -0
- package/dev/chunks/vidstack-D2Bi2Td9.js +1537 -0
- package/dev/chunks/vidstack-D95QIbAo.js +551 -0
- package/dev/chunks/vidstack-DnmOVAbr.js +643 -0
- package/dev/chunks/vidstack-Dnoefs4z.js +180 -0
- package/dev/chunks/vidstack-S_S6XDnL.js +375 -0
- package/dev/chunks/vidstack-oOGofWSl.js +668 -0
- package/dev/chunks/vidstack-vh0BKYWJ.js +84 -0
- package/dev/player/vidstack-default-components.js +8 -9
- package/dev/player/vidstack-default-icons.js +1 -1
- package/dev/player/vidstack-default-layout.js +8 -9
- package/dev/player/vidstack-plyr-layout.js +63 -77
- package/dev/player/vidstack-remotion.js +6 -6
- package/dev/vidstack.js +133 -22
- package/package.json +1 -1
- package/prod/chunks/vidstack-B0SSIHIv.js +1537 -0
- package/prod/chunks/vidstack-B3E9kXKq.js +34 -0
- package/prod/chunks/vidstack-BLWRqo3I.js +470 -0
- package/prod/chunks/vidstack-BXAOpsiW.js +61 -0
- package/prod/chunks/vidstack-BzPma_p3.js +288 -0
- package/prod/chunks/vidstack-C48MQkXV.js +11199 -0
- package/prod/chunks/vidstack-CKBLQMZi.js +159 -0
- package/prod/chunks/vidstack-CwlfLr4v.js +504 -0
- package/prod/chunks/vidstack-DVMwXUgY.js +189 -0
- package/prod/chunks/vidstack-D_Sd7838.js +663 -0
- package/prod/chunks/vidstack-DgsBXr1J.js +84 -0
- package/prod/chunks/vidstack-DhSvljmQ.js +375 -0
- package/prod/chunks/vidstack-DlPpeEXU.js +545 -0
- package/prod/chunks/vidstack-xwdT591E.js +386 -0
- package/prod/player/vidstack-default-components.js +8 -9
- package/prod/player/vidstack-default-icons.js +1 -1
- package/prod/player/vidstack-default-layout.js +8 -9
- package/prod/player/vidstack-plyr-layout.js +63 -77
- package/prod/player/vidstack-remotion.js +6 -6
- package/prod/vidstack.js +204 -22
- package/server/chunks/vidstack--ufi23Q6.js +1537 -0
- package/server/chunks/vidstack-3hd9uS5U.js +386 -0
- package/server/chunks/vidstack-B_l_DXPI.js +61 -0
- package/server/chunks/vidstack-Bb44UuL8.js +470 -0
- package/server/chunks/vidstack-Bu9QXEz1.js +159 -0
- package/server/chunks/vidstack-Cb_tNfNU.js +11199 -0
- package/server/chunks/vidstack-D9vUNwri.js +288 -0
- package/server/chunks/vidstack-DM-5dPT-.js +663 -0
- package/server/chunks/vidstack-DWfS9vAY.js +84 -0
- package/server/chunks/vidstack-DY51lx0R.js +189 -0
- package/server/chunks/vidstack-VGPw_CQP.js +375 -0
- package/server/chunks/vidstack-dz2TmHzm.js +34 -0
- package/server/chunks/vidstack-e0ZPAI-d.js +504 -0
- package/server/chunks/vidstack-zzooMghu.js +545 -0
- package/server/player/vidstack-default-components.js +8 -9
- package/server/player/vidstack-default-icons.js +1 -1
- package/server/player/vidstack-default-layout.js +8 -9
- package/server/player/vidstack-plyr-layout.js +63 -77
- package/server/player/vidstack-remotion.js +6 -6
- package/server/vidstack.js +204 -22
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import { listenEvent, EventsController, animationFrameThrottle, effect } from './vidstack-D_bWd66h.js';
|
|
5
|
+
import { useMediaPlayer } from './vidstack-DM-5dPT-.js';
|
|
6
|
+
|
|
7
|
+
function useClassName(el, className) {
|
|
8
|
+
React.useEffect(() => {
|
|
9
|
+
if (!el || !className) return;
|
|
10
|
+
const tokens = className.split(" ");
|
|
11
|
+
for (const token of tokens) el.classList.add(token);
|
|
12
|
+
return () => {
|
|
13
|
+
for (const token of tokens) el.classList.remove(token);
|
|
14
|
+
};
|
|
15
|
+
}, [el, className]);
|
|
16
|
+
}
|
|
17
|
+
function useResizeObserver(el, callback) {
|
|
18
|
+
React.useEffect(() => {
|
|
19
|
+
if (!el) return;
|
|
20
|
+
callback();
|
|
21
|
+
const observer = new ResizeObserver(animationFrameThrottle(callback));
|
|
22
|
+
observer.observe(el);
|
|
23
|
+
return () => observer.disconnect();
|
|
24
|
+
}, [el, callback]);
|
|
25
|
+
}
|
|
26
|
+
function useTransitionActive(el) {
|
|
27
|
+
const [isActive, setIsActive] = React.useState(false);
|
|
28
|
+
React.useEffect(() => {
|
|
29
|
+
if (!el) return;
|
|
30
|
+
const events = new EventsController(el).add("transitionstart", () => setIsActive(true)).add("transitionend", () => setIsActive(false));
|
|
31
|
+
return () => events.abort();
|
|
32
|
+
}, [el]);
|
|
33
|
+
return isActive;
|
|
34
|
+
}
|
|
35
|
+
function useMouseEnter(el) {
|
|
36
|
+
const [isMouseEnter, setIsMouseEnter] = React.useState(false);
|
|
37
|
+
React.useEffect(() => {
|
|
38
|
+
if (!el) return;
|
|
39
|
+
const events = new EventsController(el).add("mouseenter", () => setIsMouseEnter(true)).add("mouseleave", () => setIsMouseEnter(false));
|
|
40
|
+
return () => events.abort();
|
|
41
|
+
}, [el]);
|
|
42
|
+
return isMouseEnter;
|
|
43
|
+
}
|
|
44
|
+
function useFocusIn(el) {
|
|
45
|
+
const [isFocusIn, setIsFocusIn] = React.useState(false);
|
|
46
|
+
React.useEffect(() => {
|
|
47
|
+
if (!el) return;
|
|
48
|
+
const events = new EventsController(el).add("focusin", () => setIsFocusIn(true)).add("focusout", () => setIsFocusIn(false));
|
|
49
|
+
return () => events.abort();
|
|
50
|
+
}, [el]);
|
|
51
|
+
return isFocusIn;
|
|
52
|
+
}
|
|
53
|
+
function useActive(el) {
|
|
54
|
+
const isMouseEnter = useMouseEnter(el), isFocusIn = useFocusIn(el), prevMouseEnter = React.useRef(false);
|
|
55
|
+
if (prevMouseEnter.current && !isMouseEnter) return false;
|
|
56
|
+
prevMouseEnter.current = isMouseEnter;
|
|
57
|
+
return isMouseEnter || isFocusIn;
|
|
58
|
+
}
|
|
59
|
+
function useColorSchemePreference() {
|
|
60
|
+
const [colorScheme, setColorScheme] = React.useState("dark");
|
|
61
|
+
React.useEffect(() => {
|
|
62
|
+
const media = window.matchMedia("(prefers-color-scheme: light)");
|
|
63
|
+
function onChange() {
|
|
64
|
+
setColorScheme(media.matches ? "light" : "dark");
|
|
65
|
+
}
|
|
66
|
+
onChange();
|
|
67
|
+
return listenEvent(media, "change", onChange);
|
|
68
|
+
}, []);
|
|
69
|
+
return colorScheme;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function useLayoutName(name) {
|
|
73
|
+
const player = useMediaPlayer();
|
|
74
|
+
React.useEffect(() => {
|
|
75
|
+
if (!player) return;
|
|
76
|
+
return effect(() => {
|
|
77
|
+
const el = player.$el;
|
|
78
|
+
el?.setAttribute("data-layout", name);
|
|
79
|
+
return () => el?.removeAttribute("data-layout");
|
|
80
|
+
});
|
|
81
|
+
}, [player]);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export { useActive, useClassName, useColorSchemePreference, useLayoutName, useResizeObserver, useTransitionActive };
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import { RadioGroupController, useMediaContext, menuContext, MediaRemoteControl, MediaPlayerInstance, sortVideoQualities } from './vidstack-Cb_tNfNU.js';
|
|
5
|
+
import { useMediaContext as useMediaContext$1 } from './vidstack-DM-5dPT-.js';
|
|
6
|
+
import { prop, method, Component, hasProvidedContext, useContext, effect, useSignal, isString } from './vidstack-D_bWd66h.js';
|
|
7
|
+
|
|
8
|
+
const DEFAULT_PLAYBACK_RATES = [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2];
|
|
9
|
+
class SpeedRadioGroup extends Component {
|
|
10
|
+
static props = {
|
|
11
|
+
normalLabel: "Normal",
|
|
12
|
+
rates: DEFAULT_PLAYBACK_RATES
|
|
13
|
+
};
|
|
14
|
+
#media;
|
|
15
|
+
#menu;
|
|
16
|
+
#controller;
|
|
17
|
+
get value() {
|
|
18
|
+
return this.#controller.value;
|
|
19
|
+
}
|
|
20
|
+
get disabled() {
|
|
21
|
+
const { rates } = this.$props, { canSetPlaybackRate } = this.#media.$state;
|
|
22
|
+
return !canSetPlaybackRate() || rates().length === 0;
|
|
23
|
+
}
|
|
24
|
+
constructor() {
|
|
25
|
+
super();
|
|
26
|
+
this.#controller = new RadioGroupController();
|
|
27
|
+
this.#controller.onValueChange = this.#onValueChange.bind(this);
|
|
28
|
+
}
|
|
29
|
+
onSetup() {
|
|
30
|
+
this.#media = useMediaContext();
|
|
31
|
+
if (hasProvidedContext(menuContext)) {
|
|
32
|
+
this.#menu = useContext(menuContext);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
onConnect(el) {
|
|
36
|
+
effect(this.#watchValue.bind(this));
|
|
37
|
+
effect(this.#watchHintText.bind(this));
|
|
38
|
+
effect(this.#watchControllerDisabled.bind(this));
|
|
39
|
+
}
|
|
40
|
+
getOptions() {
|
|
41
|
+
const { rates, normalLabel } = this.$props;
|
|
42
|
+
return rates().map((rate) => ({
|
|
43
|
+
label: rate === 1 ? normalLabel : rate + "\xD7",
|
|
44
|
+
value: rate.toString()
|
|
45
|
+
}));
|
|
46
|
+
}
|
|
47
|
+
#watchValue() {
|
|
48
|
+
this.#controller.value = this.#getValue();
|
|
49
|
+
}
|
|
50
|
+
#watchHintText() {
|
|
51
|
+
const { normalLabel } = this.$props, { playbackRate } = this.#media.$state, rate = playbackRate();
|
|
52
|
+
this.#menu?.hint.set(rate === 1 ? normalLabel() : rate + "\xD7");
|
|
53
|
+
}
|
|
54
|
+
#watchControllerDisabled() {
|
|
55
|
+
this.#menu?.disable(this.disabled);
|
|
56
|
+
}
|
|
57
|
+
#getValue() {
|
|
58
|
+
const { playbackRate } = this.#media.$state;
|
|
59
|
+
return playbackRate().toString();
|
|
60
|
+
}
|
|
61
|
+
#onValueChange(value, trigger) {
|
|
62
|
+
if (this.disabled) return;
|
|
63
|
+
const rate = +value;
|
|
64
|
+
this.#media.remote.changePlaybackRate(rate, trigger);
|
|
65
|
+
this.dispatch("change", { detail: rate, trigger });
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
const speedradiogroup__proto = SpeedRadioGroup.prototype;
|
|
69
|
+
prop(speedradiogroup__proto, "value");
|
|
70
|
+
prop(speedradiogroup__proto, "disabled");
|
|
71
|
+
method(speedradiogroup__proto, "getOptions");
|
|
72
|
+
|
|
73
|
+
function useMediaRemote(target) {
|
|
74
|
+
const media = useMediaContext$1(), remote = React.useRef(null);
|
|
75
|
+
if (!remote.current) {
|
|
76
|
+
remote.current = new MediaRemoteControl();
|
|
77
|
+
}
|
|
78
|
+
React.useEffect(() => {
|
|
79
|
+
const ref = target && "current" in target ? target.current : target, isPlayerRef = ref instanceof MediaPlayerInstance, player = isPlayerRef ? ref : media?.player;
|
|
80
|
+
remote.current.setPlayer(player ?? null);
|
|
81
|
+
remote.current.setTarget(ref ?? null);
|
|
82
|
+
}, [media, target && "current" in target ? target.current : target]);
|
|
83
|
+
return remote.current;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function useVideoQualityOptions({
|
|
87
|
+
auto = true,
|
|
88
|
+
sort = "descending"
|
|
89
|
+
} = {}) {
|
|
90
|
+
const media = useMediaContext$1(), { qualities, quality, autoQuality, canSetQuality } = media.$state, $qualities = useSignal(qualities);
|
|
91
|
+
useSignal(quality);
|
|
92
|
+
useSignal(autoQuality);
|
|
93
|
+
useSignal(canSetQuality);
|
|
94
|
+
return React.useMemo(() => {
|
|
95
|
+
const sortedQualities = sortVideoQualities($qualities, sort === "descending"), options = sortedQualities.map((q) => {
|
|
96
|
+
return {
|
|
97
|
+
quality: q,
|
|
98
|
+
label: q.height + "p",
|
|
99
|
+
value: getQualityValue(q),
|
|
100
|
+
bitrateText: q.bitrate && q.bitrate > 0 ? `${(q.bitrate / 1e6).toFixed(2)} Mbps` : null,
|
|
101
|
+
get selected() {
|
|
102
|
+
return q === quality();
|
|
103
|
+
},
|
|
104
|
+
get autoSelected() {
|
|
105
|
+
return autoQuality();
|
|
106
|
+
},
|
|
107
|
+
select(trigger) {
|
|
108
|
+
const index = qualities().indexOf(q);
|
|
109
|
+
if (index >= 0) media.remote.changeQuality(index, trigger);
|
|
110
|
+
}
|
|
111
|
+
};
|
|
112
|
+
});
|
|
113
|
+
if (auto) {
|
|
114
|
+
options.unshift({
|
|
115
|
+
quality: null,
|
|
116
|
+
label: isString(auto) ? auto : "Auto",
|
|
117
|
+
value: "auto",
|
|
118
|
+
bitrateText: null,
|
|
119
|
+
get selected() {
|
|
120
|
+
return autoQuality();
|
|
121
|
+
},
|
|
122
|
+
get autoSelected() {
|
|
123
|
+
return autoQuality();
|
|
124
|
+
},
|
|
125
|
+
select(trigger) {
|
|
126
|
+
media.remote.requestAutoQuality(trigger);
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
Object.defineProperty(options, "disabled", {
|
|
131
|
+
get() {
|
|
132
|
+
return !canSetQuality() || $qualities.length <= 1;
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
Object.defineProperty(options, "selectedQuality", {
|
|
136
|
+
get() {
|
|
137
|
+
return quality();
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
Object.defineProperty(options, "selectedValue", {
|
|
141
|
+
get() {
|
|
142
|
+
const $quality = quality();
|
|
143
|
+
return !autoQuality() && $quality ? getQualityValue($quality) : "auto";
|
|
144
|
+
}
|
|
145
|
+
});
|
|
146
|
+
return options;
|
|
147
|
+
}, [$qualities, sort]);
|
|
148
|
+
}
|
|
149
|
+
function getQualityValue(quality) {
|
|
150
|
+
return quality.height + "_" + quality.bitrate;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
function usePlaybackRateOptions({
|
|
154
|
+
rates = DEFAULT_PLAYBACK_RATES,
|
|
155
|
+
normalLabel = "Normal"
|
|
156
|
+
} = {}) {
|
|
157
|
+
const media = useMediaContext$1(), { playbackRate, canSetPlaybackRate } = media.$state;
|
|
158
|
+
useSignal(playbackRate);
|
|
159
|
+
useSignal(canSetPlaybackRate);
|
|
160
|
+
return React.useMemo(() => {
|
|
161
|
+
const options = rates.map((opt) => {
|
|
162
|
+
const label = typeof opt === "number" ? opt === 1 && normalLabel ? normalLabel : opt + "x" : opt.label, rate = typeof opt === "number" ? opt : opt.rate;
|
|
163
|
+
return {
|
|
164
|
+
label,
|
|
165
|
+
value: rate.toString(),
|
|
166
|
+
rate,
|
|
167
|
+
get selected() {
|
|
168
|
+
return playbackRate() === rate;
|
|
169
|
+
},
|
|
170
|
+
select(trigger) {
|
|
171
|
+
media.remote.changePlaybackRate(rate, trigger);
|
|
172
|
+
}
|
|
173
|
+
};
|
|
174
|
+
});
|
|
175
|
+
Object.defineProperty(options, "disabled", {
|
|
176
|
+
get() {
|
|
177
|
+
return !canSetPlaybackRate() || !options.length;
|
|
178
|
+
}
|
|
179
|
+
});
|
|
180
|
+
Object.defineProperty(options, "selectedValue", {
|
|
181
|
+
get() {
|
|
182
|
+
return playbackRate().toString();
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
return options;
|
|
186
|
+
}, [rates]);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export { DEFAULT_PLAYBACK_RATES, useMediaRemote, usePlaybackRateOptions, useVideoQualityOptions };
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import { createReactComponent, composeRefs, listenEvent, useReactScope, scoped, computed, signal, effect, EventsController, useSignal } from './vidstack-D_bWd66h.js';
|
|
5
|
+
import { MediaAnnouncerInstance, Primitive, ControlsInstance, ControlsGroupInstance, TooltipInstance, TooltipTriggerInstance, TooltipContentInstance, GoogleCastButtonInstance, QualitySliderInstance, AudioGainSliderInstance, SpeedSliderInstance, useMediaState, watchActiveTextTrack, CaptionsInstance, formatSpokenTime, formatTime } from './vidstack-Cb_tNfNU.js';
|
|
6
|
+
import { sliderCallbacks, Preview, Steps, Thumb, Track as Track$1, TrackFill as TrackFill$1, Value, useMediaContext } from './vidstack-DM-5dPT-.js';
|
|
7
|
+
|
|
8
|
+
const MediaAnnouncerBridge = createReactComponent(MediaAnnouncerInstance, {
|
|
9
|
+
events: ["onChange"]
|
|
10
|
+
});
|
|
11
|
+
const MediaAnnouncer = React.forwardRef(
|
|
12
|
+
({ style, children, ...props }, forwardRef) => {
|
|
13
|
+
return /* @__PURE__ */ React.createElement(MediaAnnouncerBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
14
|
+
Primitive.div,
|
|
15
|
+
{
|
|
16
|
+
...props2,
|
|
17
|
+
style: { display: "contents", ...style },
|
|
18
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
19
|
+
},
|
|
20
|
+
children
|
|
21
|
+
));
|
|
22
|
+
}
|
|
23
|
+
);
|
|
24
|
+
MediaAnnouncer.displayName = "MediaAnnouncer";
|
|
25
|
+
|
|
26
|
+
const ControlsBridge = createReactComponent(ControlsInstance);
|
|
27
|
+
const Root$5 = React.forwardRef(({ children, ...props }, forwardRef) => {
|
|
28
|
+
return /* @__PURE__ */ React.createElement(ControlsBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
29
|
+
Primitive.div,
|
|
30
|
+
{
|
|
31
|
+
...props2,
|
|
32
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
33
|
+
},
|
|
34
|
+
children
|
|
35
|
+
));
|
|
36
|
+
});
|
|
37
|
+
Root$5.displayName = "Controls";
|
|
38
|
+
const ControlsGroupBridge = createReactComponent(ControlsGroupInstance);
|
|
39
|
+
const Group = React.forwardRef(({ children, ...props }, forwardRef) => {
|
|
40
|
+
return /* @__PURE__ */ React.createElement(ControlsGroupBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
41
|
+
Primitive.div,
|
|
42
|
+
{
|
|
43
|
+
...props2,
|
|
44
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
45
|
+
},
|
|
46
|
+
children
|
|
47
|
+
));
|
|
48
|
+
});
|
|
49
|
+
Group.displayName = "ControlsGroup";
|
|
50
|
+
|
|
51
|
+
var controls = /*#__PURE__*/Object.freeze({
|
|
52
|
+
__proto__: null,
|
|
53
|
+
Group: Group,
|
|
54
|
+
Root: Root$5
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
const TooltipBridge = createReactComponent(TooltipInstance);
|
|
58
|
+
function Root$4({ children, ...props }) {
|
|
59
|
+
return /* @__PURE__ */ React.createElement(TooltipBridge, { ...props }, children);
|
|
60
|
+
}
|
|
61
|
+
Root$4.displayName = "Tooltip";
|
|
62
|
+
const TriggerBridge = createReactComponent(TooltipTriggerInstance);
|
|
63
|
+
const Trigger = React.forwardRef(
|
|
64
|
+
({ children, ...props }, forwardRef) => {
|
|
65
|
+
return /* @__PURE__ */ React.createElement(TriggerBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
66
|
+
Primitive.button,
|
|
67
|
+
{
|
|
68
|
+
...props2,
|
|
69
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
70
|
+
},
|
|
71
|
+
children
|
|
72
|
+
));
|
|
73
|
+
}
|
|
74
|
+
);
|
|
75
|
+
Trigger.displayName = "TooltipTrigger";
|
|
76
|
+
const ContentBridge = createReactComponent(TooltipContentInstance);
|
|
77
|
+
const Content = React.forwardRef(
|
|
78
|
+
({ children, ...props }, forwardRef) => {
|
|
79
|
+
return /* @__PURE__ */ React.createElement(ContentBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
80
|
+
Primitive.div,
|
|
81
|
+
{
|
|
82
|
+
...props2,
|
|
83
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
84
|
+
},
|
|
85
|
+
children
|
|
86
|
+
));
|
|
87
|
+
}
|
|
88
|
+
);
|
|
89
|
+
Content.displayName = "TooltipContent";
|
|
90
|
+
|
|
91
|
+
var tooltip = /*#__PURE__*/Object.freeze({
|
|
92
|
+
__proto__: null,
|
|
93
|
+
Content: Content,
|
|
94
|
+
Root: Root$4,
|
|
95
|
+
Trigger: Trigger
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
const GoogleCastButtonBridge = createReactComponent(GoogleCastButtonInstance, {
|
|
99
|
+
domEventsRegex: /^onMedia/
|
|
100
|
+
});
|
|
101
|
+
const GoogleCastButton = React.forwardRef(
|
|
102
|
+
({ children, ...props }, forwardRef) => {
|
|
103
|
+
return /* @__PURE__ */ React.createElement(GoogleCastButtonBridge, { ...props }, (props2) => /* @__PURE__ */ React.createElement(
|
|
104
|
+
Primitive.button,
|
|
105
|
+
{
|
|
106
|
+
...props2,
|
|
107
|
+
ref: composeRefs(props2.ref, forwardRef)
|
|
108
|
+
},
|
|
109
|
+
children
|
|
110
|
+
));
|
|
111
|
+
}
|
|
112
|
+
);
|
|
113
|
+
GoogleCastButton.displayName = "GoogleCastButton";
|
|
114
|
+
|
|
115
|
+
const QualitySliderBridge = createReactComponent(QualitySliderInstance, {
|
|
116
|
+
events: sliderCallbacks,
|
|
117
|
+
domEventsRegex: /^onMedia/
|
|
118
|
+
});
|
|
119
|
+
const Root$3 = React.forwardRef(
|
|
120
|
+
({ children, ...props }, forwardRef) => {
|
|
121
|
+
return /* @__PURE__ */ React.createElement(QualitySliderBridge, { ...props, ref: forwardRef }, (props2) => /* @__PURE__ */ React.createElement(Primitive.div, { ...props2 }, children));
|
|
122
|
+
}
|
|
123
|
+
);
|
|
124
|
+
Root$3.displayName = "QualitySlider";
|
|
125
|
+
|
|
126
|
+
var qualitySlider = /*#__PURE__*/Object.freeze({
|
|
127
|
+
__proto__: null,
|
|
128
|
+
Preview: Preview,
|
|
129
|
+
Root: Root$3,
|
|
130
|
+
Steps: Steps,
|
|
131
|
+
Thumb: Thumb,
|
|
132
|
+
Track: Track$1,
|
|
133
|
+
TrackFill: TrackFill$1,
|
|
134
|
+
Value: Value
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
const AudioGainSliderBridge = createReactComponent(AudioGainSliderInstance, {
|
|
138
|
+
events: sliderCallbacks,
|
|
139
|
+
domEventsRegex: /^onMedia/
|
|
140
|
+
});
|
|
141
|
+
const Root$2 = React.forwardRef(
|
|
142
|
+
({ children, ...props }, forwardRef) => {
|
|
143
|
+
return /* @__PURE__ */ React.createElement(AudioGainSliderBridge, { ...props, ref: forwardRef }, (props2) => /* @__PURE__ */ React.createElement(Primitive.div, { ...props2 }, children));
|
|
144
|
+
}
|
|
145
|
+
);
|
|
146
|
+
Root$2.displayName = "AudioGainSlider";
|
|
147
|
+
|
|
148
|
+
var audioGainSlider = /*#__PURE__*/Object.freeze({
|
|
149
|
+
__proto__: null,
|
|
150
|
+
Preview: Preview,
|
|
151
|
+
Root: Root$2,
|
|
152
|
+
Steps: Steps,
|
|
153
|
+
Thumb: Thumb,
|
|
154
|
+
Track: Track$1,
|
|
155
|
+
TrackFill: TrackFill$1,
|
|
156
|
+
Value: Value
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
const SpeedSliderBridge = createReactComponent(SpeedSliderInstance, {
|
|
160
|
+
events: sliderCallbacks,
|
|
161
|
+
domEventsRegex: /^onMedia/
|
|
162
|
+
});
|
|
163
|
+
const Root$1 = React.forwardRef(
|
|
164
|
+
({ children, ...props }, forwardRef) => {
|
|
165
|
+
return /* @__PURE__ */ React.createElement(SpeedSliderBridge, { ...props, ref: forwardRef }, (props2) => /* @__PURE__ */ React.createElement(Primitive.div, { ...props2 }, children));
|
|
166
|
+
}
|
|
167
|
+
);
|
|
168
|
+
Root$1.displayName = "SpeedSlider";
|
|
169
|
+
|
|
170
|
+
var speedSlider = /*#__PURE__*/Object.freeze({
|
|
171
|
+
__proto__: null,
|
|
172
|
+
Preview: Preview,
|
|
173
|
+
Root: Root$1,
|
|
174
|
+
Steps: Steps,
|
|
175
|
+
Thumb: Thumb,
|
|
176
|
+
Track: Track$1,
|
|
177
|
+
TrackFill: TrackFill$1,
|
|
178
|
+
Value: Value
|
|
179
|
+
});
|
|
180
|
+
|
|
181
|
+
const Title = React.forwardRef(({ children, ...props }, forwardRef) => {
|
|
182
|
+
const $title = useMediaState("title");
|
|
183
|
+
return /* @__PURE__ */ React.createElement(Primitive.span, { ...props, ref: forwardRef }, $title, children);
|
|
184
|
+
});
|
|
185
|
+
Title.displayName = "Title";
|
|
186
|
+
|
|
187
|
+
function useActiveTextCues(track) {
|
|
188
|
+
const [activeCues, setActiveCues] = React.useState([]);
|
|
189
|
+
React.useEffect(() => {
|
|
190
|
+
if (!track) {
|
|
191
|
+
setActiveCues([]);
|
|
192
|
+
return;
|
|
193
|
+
}
|
|
194
|
+
function onCuesChange() {
|
|
195
|
+
if (track) setActiveCues(track.activeCues);
|
|
196
|
+
}
|
|
197
|
+
onCuesChange();
|
|
198
|
+
return listenEvent(track, "cue-change", onCuesChange);
|
|
199
|
+
}, [track]);
|
|
200
|
+
return activeCues;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function useActiveTextTrack(kind) {
|
|
204
|
+
const media = useMediaContext(), [track, setTrack] = React.useState(null);
|
|
205
|
+
React.useEffect(() => {
|
|
206
|
+
return watchActiveTextTrack(media.textTracks, kind, setTrack);
|
|
207
|
+
}, [kind]);
|
|
208
|
+
return track;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
function useChapterTitle() {
|
|
212
|
+
const $track = useActiveTextTrack("chapters"), $cues = useActiveTextCues($track);
|
|
213
|
+
return $cues[0]?.text || "";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
const ChapterTitle = React.forwardRef(
|
|
217
|
+
({ defaultText = "", children, ...props }, forwardRef) => {
|
|
218
|
+
const $chapterTitle = useChapterTitle();
|
|
219
|
+
return /* @__PURE__ */ React.createElement(Primitive.span, { ...props, ref: forwardRef }, $chapterTitle || defaultText, children);
|
|
220
|
+
}
|
|
221
|
+
);
|
|
222
|
+
ChapterTitle.displayName = "ChapterTitle";
|
|
223
|
+
|
|
224
|
+
const CaptionsBridge = createReactComponent(CaptionsInstance);
|
|
225
|
+
const Captions = React.forwardRef(
|
|
226
|
+
({ children, ...props }, forwardRef) => {
|
|
227
|
+
return /* @__PURE__ */ React.createElement(CaptionsBridge, { ...props, ref: forwardRef }, (props2) => /* @__PURE__ */ React.createElement(Primitive.div, { ...props2 }, children));
|
|
228
|
+
}
|
|
229
|
+
);
|
|
230
|
+
Captions.displayName = "Captions";
|
|
231
|
+
|
|
232
|
+
const Root = React.forwardRef(
|
|
233
|
+
({ size = 96, children, ...props }, forwardRef) => {
|
|
234
|
+
return /* @__PURE__ */ React.createElement(
|
|
235
|
+
"svg",
|
|
236
|
+
{
|
|
237
|
+
width: size,
|
|
238
|
+
height: size,
|
|
239
|
+
fill: "none",
|
|
240
|
+
viewBox: "0 0 120 120",
|
|
241
|
+
"aria-hidden": "true",
|
|
242
|
+
"data-part": "root",
|
|
243
|
+
...props,
|
|
244
|
+
ref: forwardRef
|
|
245
|
+
},
|
|
246
|
+
children
|
|
247
|
+
);
|
|
248
|
+
}
|
|
249
|
+
);
|
|
250
|
+
const Track = React.forwardRef(
|
|
251
|
+
({ width = 8, children, ...props }, ref) => /* @__PURE__ */ React.createElement(
|
|
252
|
+
"circle",
|
|
253
|
+
{
|
|
254
|
+
cx: "60",
|
|
255
|
+
cy: "60",
|
|
256
|
+
r: "54",
|
|
257
|
+
stroke: "currentColor",
|
|
258
|
+
strokeWidth: width,
|
|
259
|
+
"data-part": "track",
|
|
260
|
+
...props,
|
|
261
|
+
ref
|
|
262
|
+
},
|
|
263
|
+
children
|
|
264
|
+
)
|
|
265
|
+
);
|
|
266
|
+
const TrackFill = React.forwardRef(
|
|
267
|
+
({ width = 8, fillPercent = 50, children, ...props }, ref) => /* @__PURE__ */ React.createElement(
|
|
268
|
+
"circle",
|
|
269
|
+
{
|
|
270
|
+
cx: "60",
|
|
271
|
+
cy: "60",
|
|
272
|
+
r: "54",
|
|
273
|
+
stroke: "currentColor",
|
|
274
|
+
pathLength: "100",
|
|
275
|
+
strokeWidth: width,
|
|
276
|
+
strokeDasharray: 100,
|
|
277
|
+
strokeDashoffset: 100 - fillPercent,
|
|
278
|
+
"data-part": "track-fill",
|
|
279
|
+
...props,
|
|
280
|
+
ref
|
|
281
|
+
},
|
|
282
|
+
children
|
|
283
|
+
)
|
|
284
|
+
);
|
|
285
|
+
|
|
286
|
+
var spinner = /*#__PURE__*/Object.freeze({
|
|
287
|
+
__proto__: null,
|
|
288
|
+
Root: Root,
|
|
289
|
+
Track: Track,
|
|
290
|
+
TrackFill: TrackFill
|
|
291
|
+
});
|
|
292
|
+
|
|
293
|
+
function createSignal(initialValue, deps = []) {
|
|
294
|
+
const scope = useReactScope();
|
|
295
|
+
return React.useMemo(() => scoped(() => signal(initialValue), scope), [scope, ...deps]);
|
|
296
|
+
}
|
|
297
|
+
function createComputed(compute, deps = []) {
|
|
298
|
+
const scope = useReactScope();
|
|
299
|
+
return React.useMemo(() => scoped(() => computed(compute), scope), [scope, ...deps]);
|
|
300
|
+
}
|
|
301
|
+
function createEffect(compute, deps = []) {
|
|
302
|
+
const scope = useReactScope();
|
|
303
|
+
React.useEffect(() => scoped(() => effect(compute), scope), [scope, ...deps]);
|
|
304
|
+
}
|
|
305
|
+
function useScoped(compute) {
|
|
306
|
+
const scope = useReactScope();
|
|
307
|
+
return React.useMemo(() => scoped(compute, scope), [scope]);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
function useTextCues(track) {
|
|
311
|
+
const [cues, setCues] = React.useState([]);
|
|
312
|
+
React.useEffect(() => {
|
|
313
|
+
if (!track) return;
|
|
314
|
+
function onCuesChange() {
|
|
315
|
+
if (track) setCues([...track.cues]);
|
|
316
|
+
}
|
|
317
|
+
const events = new EventsController(track).add("add-cue", onCuesChange).add("remove-cue", onCuesChange);
|
|
318
|
+
onCuesChange();
|
|
319
|
+
return () => {
|
|
320
|
+
setCues([]);
|
|
321
|
+
events.abort();
|
|
322
|
+
};
|
|
323
|
+
}, [track]);
|
|
324
|
+
return cues;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
function useChapterOptions() {
|
|
328
|
+
const media = useMediaContext(), track = useActiveTextTrack("chapters"), cues = useTextCues(track), $startTime = useSignal(media.$state.seekableStart), $endTime = useSignal(media.$state.seekableEnd);
|
|
329
|
+
useActiveTextCues(track);
|
|
330
|
+
return React.useMemo(() => {
|
|
331
|
+
const options = track ? cues.filter((cue) => cue.startTime <= $endTime && cue.endTime >= $startTime).map((cue, i) => {
|
|
332
|
+
let currentRef = null, stopProgressEffect;
|
|
333
|
+
return {
|
|
334
|
+
cue,
|
|
335
|
+
label: cue.text,
|
|
336
|
+
value: i.toString(),
|
|
337
|
+
startTimeText: formatTime(Math.max(0, cue.startTime - $startTime)),
|
|
338
|
+
durationText: formatSpokenTime(
|
|
339
|
+
Math.min($endTime, cue.endTime) - Math.max($startTime, cue.startTime)
|
|
340
|
+
),
|
|
341
|
+
get selected() {
|
|
342
|
+
return cue === track.activeCues[0];
|
|
343
|
+
},
|
|
344
|
+
setProgressVar(ref) {
|
|
345
|
+
if (!ref || cue !== track.activeCues[0]) {
|
|
346
|
+
stopProgressEffect?.();
|
|
347
|
+
stopProgressEffect = void 0;
|
|
348
|
+
ref?.style.setProperty("--progress", "0%");
|
|
349
|
+
currentRef = null;
|
|
350
|
+
return;
|
|
351
|
+
}
|
|
352
|
+
if (currentRef === ref) return;
|
|
353
|
+
currentRef = ref;
|
|
354
|
+
stopProgressEffect?.();
|
|
355
|
+
stopProgressEffect = effect(() => {
|
|
356
|
+
const { realCurrentTime } = media.$state, time = realCurrentTime(), cueStartTime = Math.max($startTime, cue.startTime), duration = Math.min($endTime, cue.endTime) - cueStartTime, progress = Math.max(0, time - cueStartTime) / duration * 100;
|
|
357
|
+
ref.style.setProperty("--progress", progress.toFixed(3) + "%");
|
|
358
|
+
});
|
|
359
|
+
},
|
|
360
|
+
select(trigger) {
|
|
361
|
+
media.remote.seek(cue.startTime - $startTime, trigger);
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
}) : [];
|
|
365
|
+
Object.defineProperty(options, "selectedValue", {
|
|
366
|
+
get() {
|
|
367
|
+
const index = options.findIndex((option) => option.selected);
|
|
368
|
+
return (index >= 0 ? index : 0).toString();
|
|
369
|
+
}
|
|
370
|
+
});
|
|
371
|
+
return options;
|
|
372
|
+
}, [cues, $startTime, $endTime]);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
export { Captions, ChapterTitle, Content, GoogleCastButton, Group, MediaAnnouncer, Root$4 as Root, Root$2 as Root$1, Root$1 as Root$2, Root$3, Root$5 as Root$4, Root as Root$5, Title, Track, TrackFill, Trigger, audioGainSlider, controls, createComputed, createEffect, createSignal, qualitySlider, speedSlider, spinner, tooltip, useActiveTextCues, useActiveTextTrack, useChapterOptions, useChapterTitle, useScoped, useTextCues };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import { scoped } from './vidstack-D_bWd66h.js';
|
|
4
|
+
import { HTMLMediaProvider, HTMLAirPlayAdapter } from './vidstack-Cb_tNfNU.js';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@floating-ui/dom';
|
|
7
|
+
|
|
8
|
+
class AudioProvider extends HTMLMediaProvider {
|
|
9
|
+
$$PROVIDER_TYPE = "AUDIO";
|
|
10
|
+
get type() {
|
|
11
|
+
return "audio";
|
|
12
|
+
}
|
|
13
|
+
airPlay;
|
|
14
|
+
constructor(audio, ctx) {
|
|
15
|
+
super(audio, ctx);
|
|
16
|
+
scoped(() => {
|
|
17
|
+
this.airPlay = new HTMLAirPlayAdapter(this.media, ctx);
|
|
18
|
+
}, this.scope);
|
|
19
|
+
}
|
|
20
|
+
setup() {
|
|
21
|
+
super.setup();
|
|
22
|
+
if (this.type === "audio") this.ctx.notify("provider-setup", this);
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* The native HTML `<audio>` element.
|
|
26
|
+
*
|
|
27
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement}
|
|
28
|
+
*/
|
|
29
|
+
get audio() {
|
|
30
|
+
return this.media;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export { AudioProvider };
|