mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 02:05:36 +00:00
50 lines
2.2 KiB
TypeScript
50 lines
2.2 KiB
TypeScript
import {Timeline, Tooltip, Typography} from "antd";
|
|
import React from "react";
|
|
import {Event} from "../../utils/api";
|
|
import useBreakpoint from "../../hooks/useBreakpoint";
|
|
import {rdapEventDetailTranslation, rdapEventNameTranslation} from "../../utils/functions/rdapTranslation";
|
|
import {actionToColor} from "../../utils/functions/actionToColor";
|
|
import {actionToIcon} from "../../utils/functions/actionToIcon";
|
|
|
|
export function EventTimeline({events}: { events: Event[] }) {
|
|
const sm = useBreakpoint('sm')
|
|
|
|
const locale = navigator.language.split('-')[0]
|
|
const rdapEventNameTranslated = rdapEventNameTranslation()
|
|
const rdapEventDetailTranslated = rdapEventDetailTranslation()
|
|
|
|
return <>
|
|
<Timeline
|
|
mode={sm ? "left" : "right"}
|
|
items={events.map(e => {
|
|
const eventName = <Typography.Text style={{color: e.deleted ? 'grey' : 'default'}}>
|
|
{e.action in rdapEventNameTranslated ? rdapEventNameTranslated[e.action as keyof typeof rdapEventNameTranslated] : e.action}
|
|
</Typography.Text>
|
|
|
|
const dateStr = <Typography.Text
|
|
style={{color: e.deleted ? 'grey' : 'default'}}>{new Date(e.date).toLocaleString(locale)}
|
|
</Typography.Text>
|
|
|
|
const eventDetail = e.action in rdapEventDetailTranslated ? rdapEventDetailTranslated[e.action as keyof typeof rdapEventDetailTranslated] : undefined
|
|
|
|
const text = sm ? {
|
|
children: <Tooltip placement='bottom' title={eventDetail}>
|
|
{eventName} {dateStr}
|
|
</Tooltip>
|
|
} : {
|
|
label: dateStr,
|
|
children: <Tooltip placement='left' title={eventDetail}>{eventName}</Tooltip>,
|
|
}
|
|
|
|
return {
|
|
color: e.deleted ? 'grey' : actionToColor(e.action),
|
|
dot: actionToIcon(e.action),
|
|
pending: new Date(e.date).getTime() > new Date().getTime(),
|
|
...text
|
|
}
|
|
}
|
|
)
|
|
}
|
|
/>
|
|
</>
|
|
} |