Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 7x 24x 36x 36x 24x 12x 8x 36x | import { PropsWithChildren } from 'react'
import { TimelineEntryData, TimelinePosition } from '../lib/types'
import TimelineEntry from './TimelineEntry'
export interface TimelineProps extends PropsWithChildren {
entries: TimelineEntryData[]
className?: string
background?: boolean
}
const Timeline = ({ entries, className }: TimelineProps) => {
return (
<div className={className}>
<div className="flex flex-col">
<div className="m-0">
{entries.map((entry, index) => {
let position: TimelinePosition = 'last'
if (index === 0) {
position = 'first'
} else if (index < entries.length - 1) {
position = 'middle'
}
return (
<TimelineEntry
key={entry.step}
position={position}
type={entry.status}
step={entry.step}
date={entry.date}
subtext={entry.subtext}
/>
)
})}
</div>
</div>
</div>
)
}
export default Timeline
|