blob: d020f22c1e435942fd0d3c5185766e45536350f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import React from "react";
import clsx from "clsx";
export interface TimelineLineProps {
current?: boolean;
startSegmentLength?: string | number;
center: "node" | "loading" | "none";
className?: string;
style?: React.CSSProperties;
}
const TimelineLine: React.FC<TimelineLineProps> = ({
startSegmentLength,
center,
current,
className,
style,
}) => {
return (
<div
className={clsx(
"timeline-line",
current && "current",
center === "loading" && "loading",
className
)}
style={style}
>
<div className="segment start" style={{ height: startSegmentLength }} />
{center !== "none" ? (
<div className="node-container">
<div className="node"></div>
{center === "loading" ? (
<svg className="node-loading-edge" viewBox="0 0 100 100">
<path
d="M 50,10 A 40 40 45 0 1 78.28,21.72"
stroke="currentcolor"
strokeLinecap="square"
strokeWidth="8"
/>
</svg>
) : null}
</div>
) : null}
{center !== "loading" ? <div className="segment end"></div> : null}
{current && <div className="segment current-end" />}
</div>
);
};
export default TimelineLine;
|