xertica-ui 2.9.9 → 3.0.0

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.
@@ -0,0 +1,1282 @@
1
+ 'use strict';
2
+
3
+ const jsxRuntime = require('react/jsx-runtime');
4
+ const React = require('react');
5
+ const reactI18next = require('react-i18next');
6
+ const lucideReact = require('lucide-react');
7
+ const slider = require('./slider-BKV_vvsh.cjs');
8
+ const button = require('./button-BMDlWZR8.cjs');
9
+ const reactDom = require('react-dom');
10
+ const tooltip = require('./tooltip-CIKRzQqE.cjs');
11
+ const dropdownMenu = require('./dropdown-menu-ChQa9zW3.cjs');
12
+ const useAudioPlayer = require('./use-audio-player-BjC4swHi.cjs');
13
+
14
+ function FloatingMediaWrapper({
15
+ children,
16
+ isFloating,
17
+ setIsFloating,
18
+ title,
19
+ onClose,
20
+ onCloseMedia,
21
+ aspectRatio = 16 / 9,
22
+ className,
23
+ minWidth = 320,
24
+ minHeight = 110,
25
+ colorVariant = "default",
26
+ playerId = "default",
27
+ enablePadding = false
28
+ }) {
29
+ const { t } = reactI18next.useTranslation();
30
+ const [isMounted, setIsMounted] = React.useState(false);
31
+ React.useEffect(() => {
32
+ setIsMounted(true);
33
+ return () => setIsMounted(false);
34
+ }, []);
35
+ if (isFloating) {
36
+ return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
37
+ /* @__PURE__ */ jsxRuntime.jsxs(
38
+ "div",
39
+ {
40
+ className: button.cn(
41
+ "w-full rounded-[var(--radius-card)] bg-muted/20 border border-dashed border-muted-foreground/20 flex items-center justify-center flex-col gap-2 p-8 text-muted-foreground transition-all",
42
+ className
43
+ ),
44
+ style: { aspectRatio },
45
+ children: [
46
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Maximize2, { className: "w-8 h-8 opacity-50" }),
47
+ /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm font-medium", children: t("media.playingFloating") }),
48
+ /* @__PURE__ */ jsxRuntime.jsx(button.Button, { variant: "outline", size: "sm", onClick: () => setIsFloating(false), children: t("media.restoreToPage") })
49
+ ]
50
+ }
51
+ ),
52
+ isMounted && reactDom.createPortal(
53
+ /* @__PURE__ */ jsxRuntime.jsx(
54
+ FloatingContainer,
55
+ {
56
+ setIsFloating,
57
+ onClose,
58
+ onCloseMedia,
59
+ title,
60
+ aspectRatio,
61
+ minWidth,
62
+ minHeight,
63
+ colorVariant,
64
+ playerId,
65
+ enablePadding,
66
+ children
67
+ }
68
+ ),
69
+ document.body
70
+ )
71
+ ] });
72
+ }
73
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: button.cn("relative w-full overflow-hidden rounded-[var(--radius-card)]", className), children });
74
+ }
75
+ function FloatingContainer({
76
+ children,
77
+ setIsFloating,
78
+ onClose,
79
+ onCloseMedia,
80
+ title,
81
+ aspectRatio,
82
+ minWidth,
83
+ minHeight,
84
+ colorVariant,
85
+ playerId = "default",
86
+ enablePadding = false
87
+ }) {
88
+ const { t } = reactI18next.useTranslation();
89
+ const minPlayerHeight = minWidth / aspectRatio;
90
+ const containerRef = React.useRef(null);
91
+ const resizeHandleRef = React.useRef(null);
92
+ const getInitialState = React.useCallback(() => {
93
+ const storageKey = `xertica-media-player-${playerId}`;
94
+ const stored = typeof window !== "undefined" ? window.localStorage?.getItem(storageKey) : null;
95
+ if (stored) {
96
+ try {
97
+ return JSON.parse(stored);
98
+ } catch {
99
+ }
100
+ }
101
+ return {
102
+ position: {
103
+ x: typeof window !== "undefined" ? window.innerWidth - minWidth - 24 : 0,
104
+ y: typeof window !== "undefined" ? window.innerHeight - minPlayerHeight - 24 : 0
105
+ },
106
+ size: {
107
+ width: minWidth,
108
+ height: minPlayerHeight
109
+ }
110
+ };
111
+ }, [minWidth, minPlayerHeight, playerId]);
112
+ const [state, setState] = React.useState(getInitialState);
113
+ const { position, size } = state;
114
+ const [isDragging, setIsDragging] = React.useState(false);
115
+ const [isResizing, setIsResizing] = React.useState(false);
116
+ const dragStartPos = React.useRef({ x: 0, y: 0 });
117
+ const dragStartOffset = React.useRef({ x: 0, y: 0 });
118
+ const resizeStartState = React.useRef({ position: { x: 0, y: 0 }, size: { width: 0, height: 0 } });
119
+ const saveState = React.useCallback(
120
+ (newPosition, newSize) => {
121
+ if (typeof window === "undefined") return;
122
+ const storageKey = `xertica-media-player-${playerId}`;
123
+ window.localStorage?.setItem(
124
+ storageKey,
125
+ JSON.stringify({ position: newPosition, size: newSize })
126
+ );
127
+ },
128
+ [playerId]
129
+ );
130
+ const handleMouseDown = (e) => {
131
+ setIsDragging(true);
132
+ dragStartPos.current = { x: e.clientX, y: e.clientY };
133
+ dragStartOffset.current = { x: position.x, y: position.y };
134
+ };
135
+ const handleResizeStart = (e, direction) => {
136
+ e.stopPropagation();
137
+ setIsResizing(true);
138
+ resizeHandleRef.current = direction;
139
+ dragStartPos.current = { x: e.clientX, y: e.clientY };
140
+ resizeStartState.current = { position: { ...position }, size: { ...size } };
141
+ };
142
+ const handleMouseMove = React.useCallback(
143
+ (e) => {
144
+ if (isDragging) {
145
+ const deltaX = e.clientX - dragStartPos.current.x;
146
+ const deltaY = e.clientY - dragStartPos.current.y;
147
+ const newPos = {
148
+ x: dragStartOffset.current.x + deltaX,
149
+ y: dragStartOffset.current.y + deltaY
150
+ };
151
+ setState((prev) => ({ ...prev, position: newPos }));
152
+ saveState(newPos, state.size);
153
+ }
154
+ if (isResizing && resizeHandleRef.current) {
155
+ const deltaX = e.clientX - dragStartPos.current.x;
156
+ const deltaY = e.clientY - dragStartPos.current.y;
157
+ const direction = resizeHandleRef.current;
158
+ let newPos = { ...resizeStartState.current.position };
159
+ let newSize = { ...resizeStartState.current.size };
160
+ if (direction.includes("right")) {
161
+ newSize.width = Math.max(minWidth, resizeStartState.current.size.width + deltaX);
162
+ }
163
+ if (direction.includes("left")) {
164
+ const newW = Math.max(minWidth, resizeStartState.current.size.width - deltaX);
165
+ newPos.x = resizeStartState.current.position.x + (resizeStartState.current.size.width - newW);
166
+ newSize.width = newW;
167
+ }
168
+ if (direction.includes("bottom")) {
169
+ newSize.height = Math.max(minHeight, resizeStartState.current.size.height + deltaY);
170
+ }
171
+ if (direction.includes("top")) {
172
+ const newH = Math.max(minHeight, resizeStartState.current.size.height - deltaY);
173
+ newPos.y = resizeStartState.current.position.y + (resizeStartState.current.size.height - newH);
174
+ newSize.height = newH;
175
+ }
176
+ setState({ position: newPos, size: newSize });
177
+ saveState(newPos, newSize);
178
+ }
179
+ },
180
+ [isDragging, isResizing, state.size, minWidth, minHeight, saveState]
181
+ );
182
+ const handleMouseUp = React.useCallback(() => {
183
+ setIsDragging(false);
184
+ setIsResizing(false);
185
+ resizeHandleRef.current = null;
186
+ }, []);
187
+ React.useEffect(() => {
188
+ if (!isDragging && !isResizing) return;
189
+ document.addEventListener("mousemove", handleMouseMove);
190
+ document.addEventListener("mouseup", handleMouseUp);
191
+ return () => {
192
+ document.removeEventListener("mousemove", handleMouseMove);
193
+ document.removeEventListener("mouseup", handleMouseUp);
194
+ };
195
+ }, [isDragging, isResizing, handleMouseMove, handleMouseUp]);
196
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "fixed inset-0 pointer-events-none z-50 overflow-hidden", children: /* @__PURE__ */ jsxRuntime.jsx(
197
+ "div",
198
+ {
199
+ ref: containerRef,
200
+ className: "pointer-events-auto absolute",
201
+ style: {
202
+ transform: `translate(${position.x}px, ${position.y}px)`,
203
+ width: size.width,
204
+ height: size.height
205
+ },
206
+ role: "dialog",
207
+ "aria-label": title || t("media.playingMedia"),
208
+ children: /* @__PURE__ */ jsxRuntime.jsxs(
209
+ "div",
210
+ {
211
+ className: button.cn(
212
+ "shadow-2xl rounded-[var(--radius-card)] overflow-hidden border backdrop-blur-sm",
213
+ colorVariant === "primary" ? "bg-primary border-primary-foreground/20 text-primary-foreground" : "border-border bg-card/95 text-card-foreground"
214
+ ),
215
+ children: [
216
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col h-full w-full", children: [
217
+ /* @__PURE__ */ jsxRuntime.jsxs(
218
+ "div",
219
+ {
220
+ className: button.cn(
221
+ "h-9 backdrop-blur-sm border-b flex items-center justify-between px-2 cursor-move select-none",
222
+ colorVariant === "primary" ? "bg-primary-foreground/10 border-primary-foreground/10" : "bg-muted/20 border-border/40"
223
+ ),
224
+ onMouseDown: handleMouseDown,
225
+ style: { touchAction: "none", userSelect: "none" },
226
+ children: [
227
+ /* @__PURE__ */ jsxRuntime.jsxs(
228
+ "div",
229
+ {
230
+ className: button.cn(
231
+ "flex items-center gap-2 text-[10px] uppercase tracking-wider font-bold truncate flex-1",
232
+ colorVariant === "primary" ? "text-primary-foreground" : "text-muted-foreground"
233
+ ),
234
+ children: [
235
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.GripHorizontal, { className: "w-3.5 h-3.5" }),
236
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate max-w-[150px]", children: title || t("media.playingMedia") })
237
+ ]
238
+ }
239
+ ),
240
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-1", children: /* @__PURE__ */ jsxRuntime.jsx(
241
+ button.Button,
242
+ {
243
+ variant: "ghost",
244
+ size: "icon",
245
+ className: button.cn(
246
+ "h-7 w-7 rounded-full transition-colors",
247
+ colorVariant === "primary" ? "text-primary-foreground/70 hover:bg-destructive/20 hover:text-destructive-foreground" : "text-muted-foreground hover:bg-destructive/10 hover:text-destructive"
248
+ ),
249
+ onClick: onCloseMedia || onClose,
250
+ title: t("common.close"),
251
+ "aria-label": t("media.closePlayer"),
252
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.X, { className: "w-4 h-4" })
253
+ }
254
+ ) })
255
+ ]
256
+ }
257
+ ),
258
+ /* @__PURE__ */ jsxRuntime.jsx(
259
+ "div",
260
+ {
261
+ className: button.cn(
262
+ "flex-1 relative overflow-hidden group",
263
+ enablePadding && "p-2",
264
+ colorVariant === "primary" ? "bg-primary" : "bg-card"
265
+ ),
266
+ children
267
+ }
268
+ )
269
+ ] }),
270
+ /* @__PURE__ */ jsxRuntime.jsx(
271
+ "div",
272
+ {
273
+ "aria-hidden": "true",
274
+ className: "absolute top-0 left-0 w-2 h-full cursor-ew-resize hover:bg-primary/20 transition-colors",
275
+ onMouseDown: (e) => handleResizeStart(e, "left")
276
+ }
277
+ ),
278
+ /* @__PURE__ */ jsxRuntime.jsx(
279
+ "div",
280
+ {
281
+ "aria-hidden": "true",
282
+ className: "absolute top-0 right-0 w-2 h-full cursor-ew-resize hover:bg-primary/20 transition-colors",
283
+ onMouseDown: (e) => handleResizeStart(e, "right")
284
+ }
285
+ ),
286
+ /* @__PURE__ */ jsxRuntime.jsx(
287
+ "div",
288
+ {
289
+ "aria-hidden": "true",
290
+ className: "absolute top-0 left-0 w-full h-2 cursor-ns-resize hover:bg-primary/20 transition-colors",
291
+ onMouseDown: (e) => handleResizeStart(e, "top")
292
+ }
293
+ ),
294
+ /* @__PURE__ */ jsxRuntime.jsx(
295
+ "div",
296
+ {
297
+ "aria-hidden": "true",
298
+ className: "absolute bottom-0 left-0 w-full h-2 cursor-ns-resize hover:bg-primary/20 transition-colors",
299
+ onMouseDown: (e) => handleResizeStart(e, "bottom")
300
+ }
301
+ ),
302
+ /* @__PURE__ */ jsxRuntime.jsx(
303
+ "div",
304
+ {
305
+ "aria-hidden": "true",
306
+ className: "absolute top-0 left-0 w-4 h-4 cursor-nwse-resize hover:bg-primary/20 transition-colors",
307
+ onMouseDown: (e) => handleResizeStart(e, "top-left")
308
+ }
309
+ ),
310
+ /* @__PURE__ */ jsxRuntime.jsx(
311
+ "div",
312
+ {
313
+ "aria-hidden": "true",
314
+ className: "absolute top-0 right-0 w-4 h-4 cursor-nesw-resize hover:bg-primary/20 transition-colors",
315
+ onMouseDown: (e) => handleResizeStart(e, "top-right")
316
+ }
317
+ ),
318
+ /* @__PURE__ */ jsxRuntime.jsx(
319
+ "div",
320
+ {
321
+ "aria-hidden": "true",
322
+ className: "absolute bottom-0 left-0 w-4 h-4 cursor-nesw-resize hover:bg-primary/20 transition-colors",
323
+ onMouseDown: (e) => handleResizeStart(e, "bottom-left")
324
+ }
325
+ ),
326
+ /* @__PURE__ */ jsxRuntime.jsx(
327
+ "div",
328
+ {
329
+ "aria-hidden": "true",
330
+ className: "absolute bottom-0 right-0 w-4 h-4 cursor-nwse-resize hover:bg-primary/20 transition-colors",
331
+ onMouseDown: (e) => handleResizeStart(e, "bottom-right")
332
+ }
333
+ )
334
+ ]
335
+ }
336
+ )
337
+ }
338
+ ) });
339
+ }
340
+
341
+ function VideoPlayer({
342
+ src,
343
+ poster,
344
+ title,
345
+ autoPlay = false,
346
+ enableAutoFloat = true,
347
+ className
348
+ }) {
349
+ const { t } = reactI18next.useTranslation();
350
+ const videoRef = React.useRef(null);
351
+ const containerRef = React.useRef(null);
352
+ const [isPlaying, setIsPlaying] = React.useState(false);
353
+ const [progress, setProgress] = React.useState(0);
354
+ const [volume, setVolume] = React.useState(1);
355
+ const [isMuted, setIsMuted] = React.useState(false);
356
+ const [currentTime, setCurrentTime] = React.useState(0);
357
+ const [duration, setDuration] = React.useState(0);
358
+ const [isFloating, setIsFloating] = React.useState(false);
359
+ const [isManualFloating, setIsManualFloating] = React.useState(false);
360
+ const [showControls, setShowControls] = React.useState(true);
361
+ const [enableAutoFloatLocal, setEnableAutoFloatLocal] = React.useState(enableAutoFloat);
362
+ let controlsTimeout;
363
+ const handleSetFloating = (floating) => {
364
+ if (videoRef.current) {
365
+ setCurrentTime(videoRef.current.currentTime);
366
+ }
367
+ setIsFloating(floating);
368
+ if (!floating) {
369
+ setIsManualFloating(false);
370
+ }
371
+ };
372
+ React.useEffect(() => {
373
+ const video = videoRef.current;
374
+ if (video) {
375
+ if (Math.abs(video.currentTime - currentTime) > 0.5) {
376
+ video.currentTime = currentTime;
377
+ }
378
+ if (isPlaying) {
379
+ const playPromise = video.play();
380
+ if (playPromise !== void 0) {
381
+ playPromise.catch((error) => {
382
+ console.log("Playback interrupted during switch:", error);
383
+ });
384
+ }
385
+ }
386
+ }
387
+ }, [isFloating]);
388
+ React.useEffect(() => {
389
+ const container = containerRef.current;
390
+ if (!container || !enableAutoFloatLocal) return;
391
+ const observer = new IntersectionObserver(
392
+ (entries) => {
393
+ const entry = entries[0];
394
+ if (!entry) return;
395
+ if (isPlaying && !entry.isIntersecting && !isFloating) {
396
+ if (videoRef.current) setCurrentTime(videoRef.current.currentTime);
397
+ setIsFloating(true);
398
+ } else if (entry.isIntersecting && isFloating && !isManualFloating) {
399
+ if (videoRef.current) setCurrentTime(videoRef.current.currentTime);
400
+ handleSetFloating(false);
401
+ }
402
+ },
403
+ { threshold: 0.2 }
404
+ );
405
+ observer.observe(container);
406
+ return () => observer.disconnect();
407
+ }, [isPlaying, isFloating, isManualFloating, enableAutoFloatLocal]);
408
+ React.useEffect(() => {
409
+ const video = videoRef.current;
410
+ if (!video) return;
411
+ const updateTime = () => {
412
+ setCurrentTime(video.currentTime);
413
+ };
414
+ const updateDuration = () => setDuration(video.duration);
415
+ const onPlay = () => setIsPlaying(true);
416
+ const onPause = () => setIsPlaying(false);
417
+ video.addEventListener("timeupdate", updateTime);
418
+ video.addEventListener("loadedmetadata", updateDuration);
419
+ video.addEventListener("play", onPlay);
420
+ video.addEventListener("pause", onPause);
421
+ video.volume = volume;
422
+ video.muted = isMuted;
423
+ return () => {
424
+ video.removeEventListener("timeupdate", updateTime);
425
+ video.removeEventListener("loadedmetadata", updateDuration);
426
+ video.removeEventListener("play", onPlay);
427
+ video.removeEventListener("pause", onPause);
428
+ };
429
+ }, [isFloating]);
430
+ const togglePlay = () => {
431
+ if (videoRef.current) {
432
+ if (isPlaying) {
433
+ videoRef.current.pause();
434
+ } else {
435
+ videoRef.current.play();
436
+ }
437
+ }
438
+ };
439
+ const handleSeek = (value) => {
440
+ if (videoRef.current) {
441
+ videoRef.current.currentTime = value[0];
442
+ setCurrentTime(value[0]);
443
+ }
444
+ };
445
+ const handleVolumeChange = (value) => {
446
+ const newVolume = value[0];
447
+ if (videoRef.current) {
448
+ videoRef.current.volume = newVolume;
449
+ setVolume(newVolume);
450
+ setIsMuted(newVolume === 0);
451
+ }
452
+ };
453
+ const toggleMute = () => {
454
+ if (videoRef.current) {
455
+ const newMutedState = !isMuted;
456
+ videoRef.current.muted = newMutedState;
457
+ setIsMuted(newMutedState);
458
+ if (newMutedState) {
459
+ setVolume(0);
460
+ } else {
461
+ setVolume(1);
462
+ videoRef.current.volume = 1;
463
+ }
464
+ }
465
+ };
466
+ const handleMouseMove = () => {
467
+ setShowControls(true);
468
+ clearTimeout(controlsTimeout);
469
+ controlsTimeout = setTimeout(() => {
470
+ if (isPlaying) setShowControls(false);
471
+ }, 2500);
472
+ };
473
+ const formatTime = (time) => {
474
+ const minutes = Math.floor(time / 60);
475
+ const seconds = Math.floor(time % 60);
476
+ return `${minutes}:${seconds < 10 ? "0" : ""}${seconds}`;
477
+ };
478
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { ref: containerRef, className, children: /* @__PURE__ */ jsxRuntime.jsx(
479
+ FloatingMediaWrapper,
480
+ {
481
+ isFloating,
482
+ setIsFloating: handleSetFloating,
483
+ onClose: () => handleSetFloating(false),
484
+ onCloseMedia: () => {
485
+ setIsFloating(false);
486
+ setEnableAutoFloatLocal(false);
487
+ },
488
+ title: title || t("media.untitledVideo"),
489
+ aspectRatio: 16 / 9,
490
+ className: "w-full h-full",
491
+ playerId: "video-player",
492
+ children: /* @__PURE__ */ jsxRuntime.jsxs(
493
+ "div",
494
+ {
495
+ className: "relative w-full h-full bg-black group overflow-hidden",
496
+ onMouseMove: handleMouseMove,
497
+ onMouseLeave: () => isPlaying && setShowControls(false),
498
+ children: [
499
+ /* @__PURE__ */ jsxRuntime.jsx(
500
+ "video",
501
+ {
502
+ ref: videoRef,
503
+ src,
504
+ poster,
505
+ className: "w-full h-full object-contain",
506
+ onClick: togglePlay,
507
+ autoPlay,
508
+ title: title || t("media.video")
509
+ }
510
+ ),
511
+ !isPlaying && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center pointer-events-none", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-16 h-16 rounded-full bg-black/40 backdrop-blur-sm flex items-center justify-center border border-white/20 shadow-2xl", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Play, { className: "w-8 h-8 text-white ml-1", fill: "white" }) }) }),
512
+ /* @__PURE__ */ jsxRuntime.jsxs(
513
+ "div",
514
+ {
515
+ className: button.cn(
516
+ "absolute inset-x-0 bottom-0 bg-gradient-to-t from-black/60 via-black/30 to-transparent pt-12 pb-4 px-4 transition-opacity duration-300",
517
+ showControls ? "opacity-100" : "opacity-0"
518
+ ),
519
+ children: [
520
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mb-4 group/slider", children: /* @__PURE__ */ jsxRuntime.jsx(
521
+ slider.Slider,
522
+ {
523
+ value: [currentTime],
524
+ max: duration || 100,
525
+ step: 1,
526
+ onValueChange: handleSeek,
527
+ className: "cursor-pointer [&_[data-slot=slider-track]]:bg-white/30 [&_[data-slot=slider-range]]:bg-white [&_[data-slot=slider-thumb]]:bg-white [&_[data-slot=slider-thumb]]:border-white",
528
+ "aria-label": t("media.videoProgress")
529
+ }
530
+ ) }),
531
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between", children: [
532
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-4", children: [
533
+ /* @__PURE__ */ jsxRuntime.jsx(
534
+ button.Button,
535
+ {
536
+ variant: "ghost",
537
+ size: "icon",
538
+ className: "text-white hover:text-white hover:bg-black/50 h-8 w-8",
539
+ onClick: togglePlay,
540
+ "aria-label": isPlaying ? t("media.pause") : t("media.play"),
541
+ children: isPlaying ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Pause, { className: "w-5 h-5", fill: "currentColor" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Play, { className: "w-5 h-5", fill: "currentColor" })
542
+ }
543
+ ),
544
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 group/vol", children: [
545
+ /* @__PURE__ */ jsxRuntime.jsx(
546
+ button.Button,
547
+ {
548
+ variant: "ghost",
549
+ size: "icon",
550
+ className: "text-white hover:text-white hover:bg-black/50 h-8 w-8",
551
+ onClick: toggleMute,
552
+ "aria-label": isMuted || volume === 0 ? t("media.unmute") : t("media.mute"),
553
+ children: isMuted || volume === 0 ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.VolumeX, { className: "w-5 h-5" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Volume2, { className: "w-5 h-5" })
554
+ }
555
+ ),
556
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-0 overflow-hidden group-hover/vol:w-20 transition-all duration-300", children: /* @__PURE__ */ jsxRuntime.jsx(
557
+ slider.Slider,
558
+ {
559
+ value: [isMuted ? 0 : volume],
560
+ max: 1,
561
+ step: 0.01,
562
+ onValueChange: handleVolumeChange,
563
+ className: "w-20 [&_[data-slot=slider-track]]:bg-white/30 [&_[data-slot=slider-range]]:bg-white [&_[data-slot=slider-thumb]]:bg-white [&_[data-slot=slider-thumb]]:border-white",
564
+ "aria-label": t("media.volume")
565
+ }
566
+ ) })
567
+ ] }),
568
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-white text-xs font-medium tabular-nums select-none drop-shadow-md", children: [
569
+ formatTime(currentTime),
570
+ " / ",
571
+ formatTime(duration)
572
+ ] })
573
+ ] }),
574
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-2", children: /* @__PURE__ */ jsxRuntime.jsx(
575
+ button.Button,
576
+ {
577
+ variant: "ghost",
578
+ size: "icon",
579
+ className: "text-white hover:text-white hover:bg-black/50 h-8 w-8",
580
+ onClick: () => {
581
+ setEnableAutoFloatLocal(true);
582
+ if (!isFloating) setIsManualFloating(true);
583
+ handleSetFloating(!isFloating);
584
+ },
585
+ title: isFloating ? t("media.restore") : t("media.popOut"),
586
+ "aria-label": isFloating ? t("media.restore") : t("media.popOut"),
587
+ children: isFloating ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Maximize, { className: "w-4 h-4" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.PictureInPicture, { className: "w-4 h-4" })
588
+ }
589
+ ) })
590
+ ] })
591
+ ]
592
+ }
593
+ )
594
+ ]
595
+ }
596
+ )
597
+ }
598
+ ) });
599
+ }
600
+
601
+ function AudioPlayer({
602
+ src,
603
+ title,
604
+ artist,
605
+ subtitle,
606
+ autoPlay = false,
607
+ className,
608
+ variant = "card",
609
+ isOpen = true,
610
+ onClose,
611
+ duration: initialDuration,
612
+ currentTime: initialTime = 0,
613
+ colorVariant = "default",
614
+ enableAutoFloat = true,
615
+ onCloseFloating
616
+ }) {
617
+ const { t } = reactI18next.useTranslation();
618
+ const {
619
+ audioRef,
620
+ containerRef,
621
+ isPlaying,
622
+ currentTime,
623
+ duration,
624
+ volume,
625
+ isMuted,
626
+ playbackSpeed,
627
+ isFloating,
628
+ isManualFloating,
629
+ isVisible,
630
+ isMobile,
631
+ enableAutoFloatLocal,
632
+ sidebarExpanded,
633
+ sidebarWidth,
634
+ assistenteExpanded,
635
+ togglePlay,
636
+ toggleMute,
637
+ handleSeek,
638
+ handleVolumeChange,
639
+ handleSetFloating,
640
+ handleEnableManualFloat,
641
+ setPlaybackSpeed,
642
+ resetAudio,
643
+ formatTime,
644
+ onPlay,
645
+ onPause,
646
+ onEnded,
647
+ onTimeUpdate,
648
+ onLoadedMetadata
649
+ } = useAudioPlayer.useAudioPlayer({
650
+ src,
651
+ autoPlay,
652
+ initialTime,
653
+ initialDuration,
654
+ variant,
655
+ isOpen,
656
+ enableAutoFloat,
657
+ onCloseFloating
658
+ });
659
+ const audioElement = /* @__PURE__ */ jsxRuntime.jsx(
660
+ "audio",
661
+ {
662
+ ref: audioRef,
663
+ src,
664
+ autoPlay,
665
+ className: "hidden",
666
+ onTimeUpdate,
667
+ onLoadedMetadata,
668
+ onPlay,
669
+ onPause,
670
+ onEnded
671
+ }
672
+ );
673
+ const desktopLayout = /* @__PURE__ */ jsxRuntime.jsxs(
674
+ "div",
675
+ {
676
+ className: button.cn(
677
+ "px-6 flex items-center justify-between gap-4",
678
+ colorVariant === "primary" ? "h-[80px] gap-6" : "h-[80px]"
679
+ ),
680
+ children: [
681
+ /* @__PURE__ */ jsxRuntime.jsxs(
682
+ "div",
683
+ {
684
+ className: button.cn(
685
+ "flex flex-col min-w-0 shrink-0 relative z-10",
686
+ colorVariant === "primary" ? "w-[280px]" : "w-[280px]"
687
+ ),
688
+ children: [
689
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 mb-0.5", children: [
690
+ colorVariant === "primary" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-2 h-2 rounded-full bg-[var(--chart-4)] animate-pulse shrink-0" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Radio, { className: "w-3 h-3 text-[var(--chart-4)] animate-pulse shrink-0" }),
691
+ /* @__PURE__ */ jsxRuntime.jsx(
692
+ "h4",
693
+ {
694
+ className: button.cn(
695
+ "truncate",
696
+ colorVariant === "primary" ? "font-semibold text-base tracking-tight" : "font-medium text-base"
697
+ ),
698
+ title: title || t("media.audioTitle"),
699
+ children: title || t("media.audioTitle")
700
+ }
701
+ )
702
+ ] }),
703
+ /* @__PURE__ */ jsxRuntime.jsxs(
704
+ "div",
705
+ {
706
+ className: button.cn(
707
+ "flex items-center gap-1 text-xs text-muted-foreground",
708
+ colorVariant === "primary" && "opacity-80"
709
+ ),
710
+ children: [
711
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate", children: subtitle || artist }),
712
+ /* @__PURE__ */ jsxRuntime.jsx(
713
+ lucideReact.ExternalLink,
714
+ {
715
+ className: button.cn(
716
+ "w-3 h-3 cursor-pointer hover:text-foreground ml-1 transition-opacity",
717
+ colorVariant === "primary" ? "opacity-60 hover:opacity-100" : "opacity-70 hover:opacity-100"
718
+ )
719
+ }
720
+ )
721
+ ]
722
+ }
723
+ )
724
+ ]
725
+ }
726
+ ),
727
+ /* @__PURE__ */ jsxRuntime.jsxs(
728
+ "div",
729
+ {
730
+ className: button.cn(
731
+ "flex-1 flex items-center justify-center gap-4 min-w-0 max-w-xl relative z-10",
732
+ colorVariant === "primary" && "gap-4"
733
+ ),
734
+ children: [
735
+ /* @__PURE__ */ jsxRuntime.jsx(
736
+ "button",
737
+ {
738
+ onClick: togglePlay,
739
+ "aria-label": isPlaying ? t("media.pause") : t("media.play"),
740
+ className: button.cn(
741
+ "transition-all focus:outline-none shrink-0",
742
+ colorVariant === "primary" ? "hover:scale-110" : "text-muted-foreground hover:text-foreground hover:scale-110 active:scale-95 transform duration-100"
743
+ ),
744
+ children: isPlaying ? /* @__PURE__ */ jsxRuntime.jsx(
745
+ lucideReact.PauseCircle,
746
+ {
747
+ className: button.cn(colorVariant === "primary" ? "w-12 h-12" : "w-10 h-10"),
748
+ strokeWidth: colorVariant === "primary" ? 1 : 1.5
749
+ }
750
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
751
+ lucideReact.PlayCircle,
752
+ {
753
+ className: button.cn(colorVariant === "primary" ? "w-12 h-12" : "w-10 h-10"),
754
+ strokeWidth: colorVariant === "primary" ? 1 : 1.5
755
+ }
756
+ )
757
+ }
758
+ ),
759
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1 flex items-center gap-3 max-w-lg", children: [
760
+ /* @__PURE__ */ jsxRuntime.jsx(
761
+ "span",
762
+ {
763
+ className: button.cn(
764
+ "text-xs font-mono shrink-0 w-10 text-right",
765
+ colorVariant === "primary" ? "text-[11px] w-12 opacity-80" : "text-muted-foreground"
766
+ ),
767
+ children: formatTime(currentTime)
768
+ }
769
+ ),
770
+ /* @__PURE__ */ jsxRuntime.jsx(
771
+ slider.Slider,
772
+ {
773
+ value: [currentTime],
774
+ max: duration || 100,
775
+ onValueChange: handleSeek,
776
+ className: "cursor-pointer"
777
+ }
778
+ ),
779
+ /* @__PURE__ */ jsxRuntime.jsx(
780
+ "span",
781
+ {
782
+ className: button.cn(
783
+ "text-xs font-mono shrink-0 w-10",
784
+ colorVariant === "primary" ? "text-[11px] w-12 opacity-80" : "text-muted-foreground"
785
+ ),
786
+ children: formatTime(duration)
787
+ }
788
+ )
789
+ ] })
790
+ ]
791
+ }
792
+ ),
793
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 shrink-0 relative z-10", children: [
794
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "hidden lg:flex items-center gap-2 w-28 mr-2 group", children: [
795
+ /* @__PURE__ */ jsxRuntime.jsx(
796
+ "button",
797
+ {
798
+ onClick: toggleMute,
799
+ className: "text-muted-foreground hover:text-foreground",
800
+ "aria-label": isMuted || volume === 0 ? t("media.unmute") : t("media.mute"),
801
+ children: isMuted || volume === 0 ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.VolumeX, { className: "w-5 h-5" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Volume2, { className: "w-5 h-5" })
802
+ }
803
+ ),
804
+ /* @__PURE__ */ jsxRuntime.jsx(
805
+ slider.Slider,
806
+ {
807
+ value: [isMuted ? 0 : volume * 100],
808
+ max: 100,
809
+ onValueChange: (val) => handleVolumeChange([val[0] / 100]),
810
+ className: "w-full opacity-60 group-hover:opacity-100 transition-opacity"
811
+ }
812
+ )
813
+ ] }),
814
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1", children: [
815
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "hidden md:flex", children: [
816
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipProvider, { children: /* @__PURE__ */ jsxRuntime.jsxs(tooltip.Tooltip, { children: [
817
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
818
+ button.Button,
819
+ {
820
+ variant: "ghost",
821
+ size: "icon",
822
+ className: "rounded-full h-9 w-9",
823
+ onClick: resetAudio,
824
+ "aria-label": t("media.restart"),
825
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.RotateCcw, { className: "w-4 h-4" })
826
+ }
827
+ ) }),
828
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipContent, { className: "z-[1001]", children: t("media.restart") })
829
+ ] }) }),
830
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipProvider, { children: /* @__PURE__ */ jsxRuntime.jsxs(tooltip.Tooltip, { children: [
831
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
832
+ button.Button,
833
+ {
834
+ variant: "ghost",
835
+ size: "icon",
836
+ className: "text-[var(--chart-3)] hover:bg-accent rounded-full h-9 w-9",
837
+ "aria-label": t("media.audioInfo"),
838
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Info, { className: "w-4 h-4 fill-current" })
839
+ }
840
+ ) }),
841
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipContent, { className: "z-[1001]", children: t("media.info") })
842
+ ] }) })
843
+ ] }),
844
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "hidden xl:flex items-center gap-1", children: [
845
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenu, { children: [
846
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
847
+ button.Button,
848
+ {
849
+ variant: "ghost",
850
+ size: "icon",
851
+ className: "rounded-full h-9 w-9",
852
+ "aria-label": t("media.selectSpeed"),
853
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Gauge, { className: "w-4 h-4" })
854
+ }
855
+ ) }),
856
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuContent, { align: "center", className: "w-32 z-[1001]", children: [0.5, 1, 1.5, 2].map((speed) => /* @__PURE__ */ jsxRuntime.jsxs(
857
+ dropdownMenu.DropdownMenuItem,
858
+ {
859
+ onClick: () => setPlaybackSpeed(speed),
860
+ className: button.cn(
861
+ "cursor-pointer",
862
+ playbackSpeed === speed && "bg-accent font-bold"
863
+ ),
864
+ children: [
865
+ speed,
866
+ "x"
867
+ ]
868
+ },
869
+ speed
870
+ )) })
871
+ ] }),
872
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipProvider, { children: /* @__PURE__ */ jsxRuntime.jsxs(tooltip.Tooltip, { children: [
873
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
874
+ button.Button,
875
+ {
876
+ variant: "ghost",
877
+ size: "icon",
878
+ className: "rounded-full h-9 w-9",
879
+ "aria-label": t("media.downloadAudio"),
880
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Download, { className: "w-4 h-4" })
881
+ }
882
+ ) }),
883
+ /* @__PURE__ */ jsxRuntime.jsx(tooltip.TooltipContent, { className: "z-[1001]", children: t("media.downloadAudio") })
884
+ ] }) })
885
+ ] }),
886
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "xl:hidden", children: /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenu, { children: [
887
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
888
+ button.Button,
889
+ {
890
+ variant: "ghost",
891
+ size: "icon",
892
+ className: "rounded-full h-9 w-9",
893
+ "aria-label": t("media.moreOptions"),
894
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.MoreHorizontal, { className: "w-5 h-5" })
895
+ }
896
+ ) }),
897
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuContent, { align: "end", className: "w-56 p-2 z-[1001]", children: [
898
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "lg:hidden", children: [
899
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "px-2 py-3", children: [
900
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-between mb-3 px-1", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
901
+ isMuted || volume === 0 ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.VolumeX, { className: "w-4 h-4 text-muted-foreground" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Volume2, { className: "w-4 h-4 text-muted-foreground" }),
902
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-[11px] font-medium uppercase tracking-wider text-muted-foreground/70", children: "Volume" })
903
+ ] }) }),
904
+ /* @__PURE__ */ jsxRuntime.jsx(
905
+ slider.Slider,
906
+ {
907
+ value: [isMuted ? 0 : volume * 100],
908
+ max: 100,
909
+ onValueChange: (val) => handleVolumeChange([val[0] / 100])
910
+ }
911
+ )
912
+ ] }),
913
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuSeparator, { className: "my-1" })
914
+ ] }),
915
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:hidden", children: [
916
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuItem, { onClick: resetAudio, className: "cursor-pointer py-2.5", children: [
917
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.RotateCcw, { className: "w-4 h-4 mr-3 text-muted-foreground" }),
918
+ " ",
919
+ t("media.restart")
920
+ ] }),
921
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuItem, { className: "cursor-pointer py-2.5", children: [
922
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Info, { className: "w-4 h-4 mr-3 text-muted-foreground" }),
923
+ " ",
924
+ t("media.info")
925
+ ] }),
926
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuSeparator, { className: "my-1" })
927
+ ] }),
928
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "xl:hidden", children: [
929
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "px-3 py-2 flex flex-col gap-2", children: [
930
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
931
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Gauge, { className: "w-4 h-4 text-muted-foreground" }),
932
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium", children: t("media.speed") })
933
+ ] }),
934
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1", children: [0.5, 1, 1.5, 2].map((speed) => /* @__PURE__ */ jsxRuntime.jsxs(
935
+ "button",
936
+ {
937
+ onClick: () => setPlaybackSpeed(speed),
938
+ className: button.cn(
939
+ "px-2 py-0.5 text-[10px] rounded border transition-colors",
940
+ playbackSpeed === speed ? "bg-primary text-primary-foreground border-primary" : "bg-transparent border-border hover:bg-accent"
941
+ ),
942
+ children: [
943
+ speed,
944
+ "x"
945
+ ]
946
+ },
947
+ speed
948
+ )) })
949
+ ] }),
950
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuSeparator, { className: "my-1" }),
951
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuItem, { className: "cursor-pointer py-2.5", children: [
952
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Download, { className: "w-4 h-4 mr-3 text-muted-foreground" }),
953
+ " ",
954
+ t("media.downloadAudio")
955
+ ] })
956
+ ] })
957
+ ] })
958
+ ] }) }),
959
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-px h-8 bg-border mx-1" }),
960
+ /* @__PURE__ */ jsxRuntime.jsx(
961
+ button.Button,
962
+ {
963
+ onClick: onClose,
964
+ variant: "ghost",
965
+ size: "icon",
966
+ className: "rounded-full h-9 w-9",
967
+ "aria-label": t("media.closePlayer"),
968
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.X, { className: "w-5 h-5" })
969
+ }
970
+ )
971
+ ] })
972
+ ] })
973
+ ]
974
+ }
975
+ );
976
+ const mobileLayout = /* @__PURE__ */ jsxRuntime.jsxs(
977
+ "div",
978
+ {
979
+ className: button.cn(
980
+ "flex flex-col py-3 px-4 gap-3",
981
+ colorVariant === "primary" && "py-4 px-5 gap-4"
982
+ ),
983
+ children: [
984
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between gap-3", children: [
985
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col min-w-0 flex-1", children: [
986
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 mb-1", children: [
987
+ colorVariant === "primary" ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-2 h-2 rounded-full bg-[var(--chart-4)] animate-pulse shrink-0" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Radio, { className: "w-3 h-3 text-[var(--chart-4)] animate-pulse shrink-0" }),
988
+ /* @__PURE__ */ jsxRuntime.jsx(
989
+ "h4",
990
+ {
991
+ className: button.cn(
992
+ "truncate",
993
+ colorVariant === "primary" ? "font-semibold text-sm tracking-tight" : "font-medium text-sm"
994
+ ),
995
+ children: title
996
+ }
997
+ )
998
+ ] }),
999
+ /* @__PURE__ */ jsxRuntime.jsx(
1000
+ "div",
1001
+ {
1002
+ className: button.cn(
1003
+ "flex items-center gap-1.5 text-xs text-muted-foreground",
1004
+ colorVariant === "primary" && "opacity-70"
1005
+ ),
1006
+ children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate", children: subtitle || artist })
1007
+ }
1008
+ )
1009
+ ] }),
1010
+ /* @__PURE__ */ jsxRuntime.jsx(
1011
+ button.Button,
1012
+ {
1013
+ onClick: onClose,
1014
+ variant: "ghost",
1015
+ size: "icon",
1016
+ className: "rounded-full h-8 w-8 shrink-0",
1017
+ "aria-label": t("media.closePlayer"),
1018
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.X, { className: "w-4 h-4" })
1019
+ }
1020
+ )
1021
+ ] }),
1022
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
1023
+ /* @__PURE__ */ jsxRuntime.jsx(
1024
+ "button",
1025
+ {
1026
+ onClick: togglePlay,
1027
+ "aria-label": isPlaying ? t("media.pause") : t("media.play"),
1028
+ className: "shrink-0 transition-transform active:scale-95",
1029
+ children: isPlaying ? /* @__PURE__ */ jsxRuntime.jsx(
1030
+ lucideReact.PauseCircle,
1031
+ {
1032
+ className: button.cn(colorVariant === "primary" ? "w-12 h-12" : "w-10 h-10"),
1033
+ strokeWidth: colorVariant === "primary" ? 1 : 1.5
1034
+ }
1035
+ ) : /* @__PURE__ */ jsxRuntime.jsx(
1036
+ lucideReact.PlayCircle,
1037
+ {
1038
+ className: button.cn(colorVariant === "primary" ? "w-12 h-12" : "w-10 h-10"),
1039
+ strokeWidth: colorVariant === "primary" ? 1 : 1.5
1040
+ }
1041
+ )
1042
+ }
1043
+ ),
1044
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 flex items-center gap-2", children: /* @__PURE__ */ jsxRuntime.jsx(
1045
+ slider.Slider,
1046
+ {
1047
+ value: [currentTime],
1048
+ max: duration || 100,
1049
+ onValueChange: handleSeek,
1050
+ className: "cursor-pointer",
1051
+ "aria-label": t("media.playbackProgress")
1052
+ }
1053
+ ) }),
1054
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenu, { children: [
1055
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
1056
+ button.Button,
1057
+ {
1058
+ variant: "ghost",
1059
+ size: "icon",
1060
+ className: "h-9 w-9 rounded-full",
1061
+ "aria-label": t("media.moreOptions"),
1062
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.MoreVertical, { className: "w-5 h-5" })
1063
+ }
1064
+ ) }),
1065
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuContent, { align: "end", className: "w-56 p-2 z-[1001]", children: [
1066
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuItem, { onClick: resetAudio, children: t("media.restart") }),
1067
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuItem, { children: t("media.speedLabel", { speed: playbackSpeed }) })
1068
+ ] })
1069
+ ] })
1070
+ ] })
1071
+ ]
1072
+ }
1073
+ );
1074
+ const desktopLayoutCompact = /* @__PURE__ */ jsxRuntime.jsxs(
1075
+ "div",
1076
+ {
1077
+ className: button.cn(
1078
+ "flex items-center gap-3 w-full",
1079
+ isFloating ? "px-3 py-1 text-foreground" : "px-4 py-3"
1080
+ ),
1081
+ children: [
1082
+ /* @__PURE__ */ jsxRuntime.jsx(
1083
+ button.Button,
1084
+ {
1085
+ onClick: togglePlay,
1086
+ size: "icon",
1087
+ variant: "outline",
1088
+ className: button.cn(
1089
+ "shrink-0 rounded-full border-border text-foreground hover:bg-accent transition-colors",
1090
+ colorVariant === "primary" && "border-primary-foreground/20 hover:bg-primary-foreground/10 text-primary-foreground",
1091
+ isFloating ? "h-8 w-8" : "h-10 w-10"
1092
+ ),
1093
+ "aria-label": isPlaying ? t("media.pause") : t("media.play"),
1094
+ children: isPlaying ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Pause, { className: button.cn(isFloating ? "w-3 h-3" : "w-4 h-4", "fill-current") }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Play, { className: button.cn(isFloating ? "w-3 h-3" : "w-4 h-4", "fill-current ml-0.5") })
1095
+ }
1096
+ ),
1097
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex-1 min-w-0 flex flex-col justify-center gap-1.5", children: [
1098
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between text-xs leading-none", children: [
1099
+ /* @__PURE__ */ jsxRuntime.jsx(
1100
+ "span",
1101
+ {
1102
+ className: button.cn(
1103
+ "font-medium truncate",
1104
+ colorVariant === "primary" ? "text-primary-foreground" : "text-foreground"
1105
+ ),
1106
+ children: title
1107
+ }
1108
+ ),
1109
+ /* @__PURE__ */ jsxRuntime.jsxs(
1110
+ "span",
1111
+ {
1112
+ className: button.cn(
1113
+ "font-medium tabular-nums text-[10px] sm:text-xs",
1114
+ colorVariant === "primary" ? "text-primary-foreground/70" : "text-muted-foreground"
1115
+ ),
1116
+ children: [
1117
+ formatTime(currentTime),
1118
+ " / ",
1119
+ formatTime(duration)
1120
+ ]
1121
+ }
1122
+ )
1123
+ ] }),
1124
+ /* @__PURE__ */ jsxRuntime.jsx(
1125
+ slider.Slider,
1126
+ {
1127
+ value: [currentTime],
1128
+ max: duration || 100,
1129
+ step: 1,
1130
+ onValueChange: handleSeek,
1131
+ className: "w-full",
1132
+ "aria-label": t("media.playbackProgress")
1133
+ }
1134
+ )
1135
+ ] }),
1136
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1 shrink-0", children: [
1137
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenu, { children: [
1138
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
1139
+ button.Button,
1140
+ {
1141
+ variant: "ghost",
1142
+ size: "icon",
1143
+ className: button.cn(
1144
+ "rounded-full",
1145
+ colorVariant === "primary" ? "text-primary-foreground/80 hover:text-primary-foreground hover:bg-primary-foreground/10" : "text-muted-foreground hover:text-foreground",
1146
+ isFloating ? "h-7 w-7" : "h-8 w-8"
1147
+ ),
1148
+ "aria-label": "Mais opções",
1149
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.MoreVertical, { className: isFloating ? "w-4 h-4" : "w-5 h-5" })
1150
+ }
1151
+ ) }),
1152
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuContent, { align: "end", className: "w-56 p-2 z-[1001]", children: [
1153
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "px-2 py-3", children: [
1154
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-between mb-3 px-1", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
1155
+ isMuted || volume === 0 ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.VolumeX, { className: "w-4 h-4 text-muted-foreground" }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Volume2, { className: "w-4 h-4 text-muted-foreground" }),
1156
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-[11px] font-medium uppercase tracking-wider text-muted-foreground/70", children: "Volume" })
1157
+ ] }) }),
1158
+ /* @__PURE__ */ jsxRuntime.jsx(
1159
+ slider.Slider,
1160
+ {
1161
+ value: [isMuted ? 0 : volume * 100],
1162
+ max: 100,
1163
+ onValueChange: (val) => handleVolumeChange([val[0] / 100]),
1164
+ "aria-label": "Volume"
1165
+ }
1166
+ )
1167
+ ] }),
1168
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuSeparator, { className: "my-2" }),
1169
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "px-2 py-1 flex flex-col gap-2", children: [
1170
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
1171
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Gauge, { className: "w-4 h-4 text-muted-foreground" }),
1172
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium", children: t("media.speed") })
1173
+ ] }),
1174
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1", children: [0.5, 1, 1.5, 2].map((speed) => /* @__PURE__ */ jsxRuntime.jsxs(
1175
+ "button",
1176
+ {
1177
+ onClick: () => setPlaybackSpeed(speed),
1178
+ className: button.cn(
1179
+ "px-2 py-1 text-[10px] rounded border transition-colors",
1180
+ playbackSpeed === speed ? "bg-primary text-primary-foreground border-primary" : "bg-transparent border-border hover:bg-accent"
1181
+ ),
1182
+ children: [
1183
+ speed,
1184
+ "x"
1185
+ ]
1186
+ },
1187
+ speed
1188
+ )) })
1189
+ ] }),
1190
+ /* @__PURE__ */ jsxRuntime.jsx(dropdownMenu.DropdownMenuSeparator, { className: "my-2" }),
1191
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuItem, { onClick: resetAudio, className: "cursor-pointer py-2.5", children: [
1192
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.RotateCcw, { className: "w-4 h-4 mr-3 text-muted-foreground" }),
1193
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm", children: t("media.restart") })
1194
+ ] }),
1195
+ /* @__PURE__ */ jsxRuntime.jsxs(dropdownMenu.DropdownMenuItem, { className: "cursor-pointer py-2.5", children: [
1196
+ /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Download, { className: "w-4 h-4 mr-3 text-muted-foreground" }),
1197
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm", children: t("media.downloadFile") })
1198
+ ] })
1199
+ ] })
1200
+ ] }),
1201
+ !isFloating && /* @__PURE__ */ jsxRuntime.jsx(
1202
+ button.Button,
1203
+ {
1204
+ variant: "ghost",
1205
+ size: "icon",
1206
+ className: button.cn(
1207
+ "h-8 w-8",
1208
+ colorVariant === "primary" ? "text-primary-foreground/80 hover:text-primary-foreground hover:bg-primary-foreground/10" : "text-muted-foreground hover:text-foreground"
1209
+ ),
1210
+ onClick: handleEnableManualFloat,
1211
+ title: t("media.floatingMode"),
1212
+ "aria-label": t("media.openFloatingMode"),
1213
+ children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Maximize2, { className: "w-4 h-4" })
1214
+ }
1215
+ )
1216
+ ] })
1217
+ ]
1218
+ }
1219
+ );
1220
+ if (!isVisible) return null;
1221
+ if (variant === "bar" && isVisible && typeof document !== "undefined") {
1222
+ return reactDom.createPortal(
1223
+ /* @__PURE__ */ jsxRuntime.jsxs(
1224
+ "div",
1225
+ {
1226
+ className: button.cn(
1227
+ "fixed bottom-0 z-[100] border-t transition-all duration-300 ease-in-out",
1228
+ colorVariant === "primary" ? "bg-primary/95 text-primary-foreground border-primary/20 backdrop-blur-sm [&_.text-muted-foreground]:text-primary-foreground/70 [&_.text-foreground]:text-primary-foreground [&_button]:text-primary-foreground [&_[data-slot=slider-track]]:bg-primary-foreground/30 [&_[data-slot=slider-range]]:bg-primary-foreground [&_[data-slot=slider-thumb]]:border-primary-foreground [&_[data-slot=slider-thumb]]:bg-primary-foreground" : "bg-card/95 text-card-foreground border-border backdrop-blur-md shadow-[var(--elevation-sm)]",
1229
+ isOpen ? "translate-y-0 opacity-100" : "translate-y-full opacity-0",
1230
+ className
1231
+ ),
1232
+ style: {
1233
+ left: isMobile ? 0 : sidebarExpanded ? sidebarWidth : 80,
1234
+ right: isMobile ? 0 : assistenteExpanded ? 420 : 80
1235
+ },
1236
+ children: [
1237
+ audioElement,
1238
+ !isMobile ? desktopLayout : mobileLayout
1239
+ ]
1240
+ }
1241
+ ),
1242
+ document.body
1243
+ );
1244
+ }
1245
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { ref: containerRef, className, children: [
1246
+ audioElement,
1247
+ /* @__PURE__ */ jsxRuntime.jsx(
1248
+ FloatingMediaWrapper,
1249
+ {
1250
+ isFloating,
1251
+ setIsFloating: handleSetFloating,
1252
+ onClose: () => handleSetFloating(false),
1253
+ onCloseMedia: () => {
1254
+ handleSetFloating(false);
1255
+ },
1256
+ title: t("media.playingMedia"),
1257
+ aspectRatio: 320 / 110,
1258
+ minHeight: 110,
1259
+ minWidth: 320,
1260
+ colorVariant,
1261
+ className: "w-full",
1262
+ playerId: "audio-player",
1263
+ enablePadding: true,
1264
+ children: /* @__PURE__ */ jsxRuntime.jsx(
1265
+ "div",
1266
+ {
1267
+ className: button.cn(
1268
+ "w-full overflow-hidden flex flex-col justify-center",
1269
+ colorVariant === "primary" ? "bg-primary text-primary-foreground [&_[data-slot=slider-track]]:bg-white/20 [&_[data-slot=slider-range]]:bg-white [&_[data-slot=slider-thumb]]:border-white [&_[data-slot=slider-thumb]]:bg-white" : "bg-card text-card-foreground",
1270
+ isFloating ? "h-full bg-transparent" : "border rounded-md shadow-sm"
1271
+ ),
1272
+ children: desktopLayoutCompact
1273
+ }
1274
+ )
1275
+ }
1276
+ )
1277
+ ] });
1278
+ }
1279
+
1280
+ exports.AudioPlayer = AudioPlayer;
1281
+ exports.FloatingMediaWrapper = FloatingMediaWrapper;
1282
+ exports.VideoPlayer = VideoPlayer;