mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
40 lines
846 B
TypeScript
40 lines
846 B
TypeScript
"use client";
|
|
|
|
import { TIMELINE_CONSTANTS } from "@/constants/timeline-constants";
|
|
import { formatRulerLabel } from "@/lib/timeline/ruler-utils";
|
|
|
|
interface TimelineTickProps {
|
|
time: number;
|
|
zoomLevel: number;
|
|
fps: number;
|
|
showLabel: boolean;
|
|
}
|
|
|
|
export function TimelineTick({
|
|
time,
|
|
zoomLevel,
|
|
fps,
|
|
showLabel,
|
|
}: TimelineTickProps) {
|
|
const leftPosition = time * TIMELINE_CONSTANTS.PIXELS_PER_SECOND * zoomLevel;
|
|
|
|
if (showLabel) {
|
|
const label = formatRulerLabel({ timeInSeconds: time, fps });
|
|
return (
|
|
<span
|
|
className="text-muted-foreground/85 absolute bottom-0 select-none text-[10px] leading-none"
|
|
style={{ left: `${leftPosition}px` }}
|
|
>
|
|
{label}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="border-muted-foreground/25 absolute bottom-0.5 h-1.5 border-l"
|
|
style={{ left: `${leftPosition}px` }}
|
|
/>
|
|
);
|
|
}
|