style: replace track color circle with icon in timeline

This commit is contained in:
Maze Winther
2025-07-09 22:17:05 +02:00
parent 27d65ca7c5
commit db8cd93a99
2 changed files with 21 additions and 15 deletions

View File

@ -10,10 +10,11 @@ import {
Snowflake,
Copy,
SplitSquareHorizontal,
Volume2,
VolumeX,
Pause,
Play,
Video,
Music,
TypeIcon,
} from "lucide-react";
import {
Tooltip,
@ -25,7 +26,6 @@ import {
ContextMenu,
ContextMenuContent,
ContextMenuItem,
ContextMenuSeparator,
ContextMenuTrigger,
} from "../ui/context-menu";
import { useTimelineStore } from "@/stores/timeline-store";
@ -44,9 +44,8 @@ import {
SelectValue,
} from "../ui/select";
import { TimelineTrackContent } from "./timeline-track";
import type { DragData } from "@/types/timeline";
import type { DragData, TimelineTrack } from "@/types/timeline";
import {
getTrackLabelColor,
getTrackHeight,
getCumulativeHeightBefore,
getTotalTracksHeight,
@ -1008,12 +1007,7 @@ export function Timeline() {
style={{ height: `${getTrackHeight(track.type)}px` }}
>
<div className="flex items-center flex-1 min-w-0">
<div
className={`w-3 h-3 rounded-full flex-shrink-0 ${getTrackLabelColor(track.type)}`}
/>
<span className="ml-2 text-sm font-medium truncate">
{track.name}
</span>
<TrackIcon track={track} />
</div>
{track.muted && (
<span className="ml-2 text-xs text-red-500 font-semibold flex-shrink-0">
@ -1100,3 +1094,19 @@ export function Timeline() {
</div>
);
}
function TrackIcon({ track }: { track: TimelineTrack }) {
return (
<>
{track.type === "media" && (
<Video className="w-4 h-4 flex-shrink-0 text-muted-foreground" />
)}
{track.type === "text" && (
<TypeIcon className="w-4 h-4 flex-shrink-0 text-muted-foreground" />
)}
{track.type === "audio" && (
<Music className="w-4 h-4 flex-shrink-0 text-muted-foreground" />
)}
</>
);
}

View File

@ -32,10 +32,6 @@ export function getTrackElementClasses(type: TrackType) {
return `${colors.background} ${colors.border}`;
}
export function getTrackLabelColor(type: TrackType) {
return getTrackColors(type).solid;
}
// Track height definitions
export const TRACK_HEIGHTS: Record<TrackType, number> = {
media: 65,