2026-01-07 09:31:02 +00:00
|
|
|
import React, { useState } from 'react';
|
2026-01-13 18:47:57 +00:00
|
|
|
import {
|
|
|
|
|
Play,
|
|
|
|
|
Pause,
|
|
|
|
|
SkipBack,
|
|
|
|
|
SkipForward,
|
|
|
|
|
Shuffle,
|
|
|
|
|
Repeat,
|
|
|
|
|
Volume2,
|
|
|
|
|
VolumeX,
|
|
|
|
|
Gauge,
|
|
|
|
|
SlidersHorizontal,
|
|
|
|
|
} from 'lucide-react';
|
2026-01-07 09:31:02 +00:00
|
|
|
import { useAudio } from '../../context/AudioContext';
|
|
|
|
|
import { PlaybackSpeedModal } from './PlaybackSpeedModal';
|
|
|
|
|
import { VisualizerSettingsModal } from './VisualizerSettingsModal';
|
|
|
|
|
|
|
|
|
|
interface PlayerControlsProps {
|
|
|
|
|
layout?: 'compact' | 'full';
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-13 18:47:57 +00:00
|
|
|
export const PlayerControls: React.FC<PlayerControlsProps> = ({
|
|
|
|
|
layout = 'compact',
|
|
|
|
|
}) => {
|
|
|
|
|
const {
|
|
|
|
|
isPlaying,
|
|
|
|
|
togglePlay,
|
|
|
|
|
nextTrack,
|
|
|
|
|
prevTrack,
|
|
|
|
|
shuffle,
|
|
|
|
|
toggleShuffle,
|
|
|
|
|
repeatMode,
|
|
|
|
|
toggleRepeat,
|
|
|
|
|
volume,
|
|
|
|
|
setVolume,
|
|
|
|
|
isMuted,
|
|
|
|
|
toggleMute,
|
|
|
|
|
playbackRate: _playbackRate,
|
2026-01-07 09:31:02 +00:00
|
|
|
} = useAudio();
|
|
|
|
|
|
|
|
|
|
const [showSpeed, setShowSpeed] = useState(false);
|
|
|
|
|
const [showVisualizer, setShowVisualizer] = useState(false);
|
|
|
|
|
|
|
|
|
|
return (
|
2026-01-13 18:47:57 +00:00
|
|
|
<div
|
|
|
|
|
className={`flex items-center ${layout === 'full' ? 'justify-between w-full max-w-4xl' : 'justify-center gap-4'}`}
|
|
|
|
|
>
|
2026-01-07 09:31:02 +00:00
|
|
|
{/* 1. Playback Modifiers */}
|
|
|
|
|
<div className="flex items-center gap-4 relative">
|
2026-01-13 18:47:57 +00:00
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className={`transition-colors hover:text-foreground ${shuffle ? 'text-primary' : 'text-muted-foreground'}`}
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={toggleShuffle}
|
|
|
|
|
title="Shuffle"
|
|
|
|
|
>
|
|
|
|
|
<Shuffle className={layout === 'full' ? 'w-5 h-5' : 'w-4 h-4'} />
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className={`transition-colors hover:text-foreground relative ${repeatMode !== 'off' ? 'text-primary' : 'text-muted-foreground'}`}
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={toggleRepeat}
|
|
|
|
|
title="Repeat"
|
|
|
|
|
>
|
|
|
|
|
<Repeat className={layout === 'full' ? 'w-5 h-5' : 'w-4 h-4'} />
|
|
|
|
|
{repeatMode === 'one' && (
|
|
|
|
|
<span className="absolute -top-1 -right-1 text-[8px] font-bold">
|
|
|
|
|
1
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
2026-01-07 09:31:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 2. Main Transport */}
|
|
|
|
|
<div className="flex items-center gap-6">
|
2026-01-13 18:47:57 +00:00
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className="text-muted-foreground hover:text-foreground transition-colors"
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={prevTrack}
|
|
|
|
|
>
|
|
|
|
|
<SkipBack
|
|
|
|
|
className={
|
|
|
|
|
layout === 'full'
|
|
|
|
|
? 'w-8 h-8 fill-current'
|
|
|
|
|
: 'w-5 h-5 fill-current'
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
onClick={togglePlay}
|
feat(web): UI premium Discord/Spotify-like — tokens, shadows, focus, layout
Plan UI premium 6–8 semaines (design system, shell, Storybook, a11y):
- Design system: DESIGN_TOKENS.md, APP_SHELL.md, FULL_LAYOUT_PAGE.md. Single source
for layout/shell (index.css), shadows (design-system.css), durations/easing.
- Tokens: shadow-cover-depth, shadow-gold-glow, shadow-fab-glow; layout max-height
(max-h-layout-drawer, max-h-layout-panel, max-h-layout-list). All duration-200/300/500
replaced by --duration-fast/normal/slow. Arbitrary shadows replaced by token classes.
- Shell & player: Sidebar, Header, GlobalPlayer, MiniPlayer, PlayerQueue, PlayerControls,
AudioPlayer use tokens; focus-visible on Sidebar, PlayerQueue, DropdownMenuTrigger/Item,
TabsTrigger. Typography: text-[10px]/[9px] → text-xs where applicable.
- ESLint: no-restricted-syntax (warn) for w-/h-/rounded-/shadow-/text-/spacing arbitrary.
- Scripts: report-arbitrary-values.mjs, capture/compare/generate visual; visual-complete.spec.ts.
- Stories full layout: Dashboard, Playlists, Library, Settings, Profile in DashboardLayout.stories.
- .cursorrules + README: DESIGN_TOKENS, APP_SHELL, visual commands, no arbitrary without justification.
- apps/web/.gitignore: e2e test artifacts (test-results-visual, playwright-report-visual).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 16:15:58 +00:00
|
|
|
className={`${layout === 'full' ? 'w-14 h-14' : 'w-9 h-9'} rounded-full bg-primary text-primary-foreground flex items-center justify-center transition-all duration-[var(--duration-immersive)] ease-in-out hover:opacity-90 shadow-button-primary-glow`}
|
2026-01-13 18:47:57 +00:00
|
|
|
>
|
|
|
|
|
{isPlaying ? (
|
|
|
|
|
<Pause
|
|
|
|
|
className={
|
|
|
|
|
layout === 'full'
|
|
|
|
|
? 'w-6 h-6 fill-current'
|
2026-02-07 18:30:13 +00:00
|
|
|
: 'w-4 h-4 fill-current'
|
2026-01-13 18:47:57 +00:00
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<Play
|
|
|
|
|
className={
|
|
|
|
|
layout === 'full'
|
|
|
|
|
? 'w-6 h-6 fill-current ml-1'
|
2026-02-07 18:30:13 +00:00
|
|
|
: 'w-4 h-4 fill-current ml-0.5'
|
2026-01-13 18:47:57 +00:00
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className="text-muted-foreground hover:text-foreground transition-colors"
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={nextTrack}
|
|
|
|
|
>
|
|
|
|
|
<SkipForward
|
|
|
|
|
className={
|
|
|
|
|
layout === 'full'
|
|
|
|
|
? 'w-8 h-8 fill-current'
|
|
|
|
|
: 'w-5 h-5 fill-current'
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
2026-01-07 09:31:02 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* 3. Volume & Speed */}
|
aesthetic-improvements: align spacing to 8px grid (Action 11.2.1.3)
- Created automated script (scripts/align-8px-grid.py) to align all spacing to 8px grid
- Replaced non-8px-aligned spacing: gap-3/p-3/m-3 (12px) → gap-4/p-4/m-4 (16px), gap-5/p-5/m-5 (20px) → gap-6/p-6/m-6 (24px), gap-10/p-10/m-10 (40px) → gap-12/p-12/m-12 (48px), gap-20/p-20/m-20 (80px) → gap-24/p-24/m-24 (96px)
- Preserved: 4px values (gap-1, p-1, m-1) as they may be intentional fine-tuning, responsive breakpoints (sm:, md:, lg:), test files, documentation
- Modified files across all components to ensure consistent 8px grid alignment
- Action 11.2.1.3: Align all elements to 8px grid - COMPLETE
2026-01-16 10:50:46 +00:00
|
|
|
<div className="flex items-center gap-4 relative">
|
2026-01-13 18:47:57 +00:00
|
|
|
{layout === 'full' && (
|
|
|
|
|
<>
|
|
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className={`text-muted-foreground hover:text-warning transition-colors ${showSpeed ? 'text-warning' : ''}`}
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={() => {
|
|
|
|
|
setShowSpeed(!showSpeed);
|
|
|
|
|
setShowVisualizer(false);
|
|
|
|
|
}}
|
|
|
|
|
title="Playback Speed"
|
|
|
|
|
>
|
|
|
|
|
<Gauge className="w-5 h-5" />
|
2026-01-07 09:31:02 +00:00
|
|
|
</button>
|
2026-01-13 18:47:57 +00:00
|
|
|
<button
|
2026-02-07 15:01:56 +00:00
|
|
|
className={`text-muted-foreground hover:text-foreground transition-colors ${showVisualizer ? 'text-primary' : ''}`}
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={() => {
|
|
|
|
|
setShowVisualizer(!showVisualizer);
|
|
|
|
|
setShowSpeed(false);
|
|
|
|
|
}}
|
|
|
|
|
title="Visualizer Settings"
|
|
|
|
|
>
|
|
|
|
|
<SlidersHorizontal className="w-5 h-5" />
|
|
|
|
|
</button>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Volume */}
|
|
|
|
|
<div className="flex items-center gap-2 group w-24">
|
|
|
|
|
<button
|
|
|
|
|
onClick={toggleMute}
|
2026-02-07 15:01:56 +00:00
|
|
|
className="text-muted-foreground hover:text-foreground"
|
2026-01-13 18:47:57 +00:00
|
|
|
>
|
|
|
|
|
{isMuted || volume === 0 ? (
|
|
|
|
|
<VolumeX className="w-4 h-4" />
|
|
|
|
|
) : (
|
|
|
|
|
<Volume2 className="w-4 h-4" />
|
|
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
<div
|
2026-02-07 14:33:31 +00:00
|
|
|
className="flex-1 h-1 bg-muted rounded-full cursor-pointer relative"
|
2026-01-13 18:47:57 +00:00
|
|
|
onClick={(e) => {
|
|
|
|
|
const rect = e.currentTarget.getBoundingClientRect();
|
|
|
|
|
setVolume(((e.clientX - rect.left) / rect.width) * 100);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
className={`absolute top-0 left-0 h-full bg-white rounded-full ${isMuted ? 'opacity-50' : 'opacity-100'}`}
|
|
|
|
|
style={{ width: `${isMuted ? 0 : volume}%` }}
|
|
|
|
|
></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-07 09:31:02 +00:00
|
|
|
|
2026-01-13 18:47:57 +00:00
|
|
|
{/* Modals Positioned Relative */}
|
|
|
|
|
{showSpeed && (
|
|
|
|
|
<PlaybackSpeedModal onClose={() => setShowSpeed(false)} />
|
|
|
|
|
)}
|
|
|
|
|
{showVisualizer && (
|
|
|
|
|
<VisualizerSettingsModal onClose={() => setShowVisualizer(false)} />
|
|
|
|
|
)}
|
2026-01-07 09:31:02 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|