@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.
Files changed (61) hide show
  1. package/dev/chunks/vidstack-3rdEWplD.js +189 -0
  2. package/dev/chunks/vidstack-BRTBRJ_I.js +288 -0
  3. package/dev/chunks/vidstack-C56TjAKZ.js +61 -0
  4. package/dev/chunks/vidstack-C5tZAkKo.js +11694 -0
  5. package/dev/chunks/vidstack-CXjRKTos.js +401 -0
  6. package/dev/chunks/vidstack-C_xw7iZ2.js +34 -0
  7. package/dev/chunks/vidstack-CaaASbOf.js +476 -0
  8. package/dev/chunks/vidstack-D2Bi2Td9.js +1537 -0
  9. package/dev/chunks/vidstack-D95QIbAo.js +551 -0
  10. package/dev/chunks/vidstack-DnmOVAbr.js +643 -0
  11. package/dev/chunks/vidstack-Dnoefs4z.js +180 -0
  12. package/dev/chunks/vidstack-S_S6XDnL.js +375 -0
  13. package/dev/chunks/vidstack-oOGofWSl.js +668 -0
  14. package/dev/chunks/vidstack-vh0BKYWJ.js +84 -0
  15. package/dev/player/vidstack-default-components.js +8 -9
  16. package/dev/player/vidstack-default-icons.js +1 -1
  17. package/dev/player/vidstack-default-layout.js +8 -9
  18. package/dev/player/vidstack-plyr-layout.js +63 -77
  19. package/dev/player/vidstack-remotion.js +6 -6
  20. package/dev/vidstack.js +133 -22
  21. package/package.json +1 -1
  22. package/prod/chunks/vidstack-B0SSIHIv.js +1537 -0
  23. package/prod/chunks/vidstack-B3E9kXKq.js +34 -0
  24. package/prod/chunks/vidstack-BLWRqo3I.js +470 -0
  25. package/prod/chunks/vidstack-BXAOpsiW.js +61 -0
  26. package/prod/chunks/vidstack-BzPma_p3.js +288 -0
  27. package/prod/chunks/vidstack-C48MQkXV.js +11199 -0
  28. package/prod/chunks/vidstack-CKBLQMZi.js +159 -0
  29. package/prod/chunks/vidstack-CwlfLr4v.js +504 -0
  30. package/prod/chunks/vidstack-DVMwXUgY.js +189 -0
  31. package/prod/chunks/vidstack-D_Sd7838.js +663 -0
  32. package/prod/chunks/vidstack-DgsBXr1J.js +84 -0
  33. package/prod/chunks/vidstack-DhSvljmQ.js +375 -0
  34. package/prod/chunks/vidstack-DlPpeEXU.js +545 -0
  35. package/prod/chunks/vidstack-xwdT591E.js +386 -0
  36. package/prod/player/vidstack-default-components.js +8 -9
  37. package/prod/player/vidstack-default-icons.js +1 -1
  38. package/prod/player/vidstack-default-layout.js +8 -9
  39. package/prod/player/vidstack-plyr-layout.js +63 -77
  40. package/prod/player/vidstack-remotion.js +6 -6
  41. package/prod/vidstack.js +204 -22
  42. package/server/chunks/vidstack--ufi23Q6.js +1537 -0
  43. package/server/chunks/vidstack-3hd9uS5U.js +386 -0
  44. package/server/chunks/vidstack-B_l_DXPI.js +61 -0
  45. package/server/chunks/vidstack-Bb44UuL8.js +470 -0
  46. package/server/chunks/vidstack-Bu9QXEz1.js +159 -0
  47. package/server/chunks/vidstack-Cb_tNfNU.js +11199 -0
  48. package/server/chunks/vidstack-D9vUNwri.js +288 -0
  49. package/server/chunks/vidstack-DM-5dPT-.js +663 -0
  50. package/server/chunks/vidstack-DWfS9vAY.js +84 -0
  51. package/server/chunks/vidstack-DY51lx0R.js +189 -0
  52. package/server/chunks/vidstack-VGPw_CQP.js +375 -0
  53. package/server/chunks/vidstack-dz2TmHzm.js +34 -0
  54. package/server/chunks/vidstack-e0ZPAI-d.js +504 -0
  55. package/server/chunks/vidstack-zzooMghu.js +545 -0
  56. package/server/player/vidstack-default-components.js +8 -9
  57. package/server/player/vidstack-default-icons.js +1 -1
  58. package/server/player/vidstack-default-layout.js +8 -9
  59. package/server/player/vidstack-plyr-layout.js +63 -77
  60. package/server/player/vidstack-remotion.js +6 -6
  61. 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-CZgUA94N.js';
5
+ import { useMediaPlayer } from './vidstack-D_Sd7838.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,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-CZgUA94N.js';
5
+ import { MediaAnnouncerInstance, Primitive, ControlsInstance, ControlsGroupInstance, TooltipInstance, TooltipTriggerInstance, TooltipContentInstance, GoogleCastButtonInstance, QualitySliderInstance, AudioGainSliderInstance, SpeedSliderInstance, useMediaState, watchActiveTextTrack, CaptionsInstance, formatSpokenTime, formatTime } from './vidstack-C48MQkXV.js';
6
+ import { sliderCallbacks, Preview, Steps, Thumb, Track as Track$1, TrackFill as TrackFill$1, Value, useMediaContext } from './vidstack-D_Sd7838.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 };