domain-watchdog/assets/pages/search/DomainSearchPage.tsx

165 lines
7.3 KiB
TypeScript
Raw Normal View History

2024-07-27 01:35:00 +02:00
import React, {useState} from "react";
2024-07-27 13:42:46 +02:00
import {
2024-07-27 15:45:04 +02:00
Avatar,
Badge,
Card,
Divider,
Flex,
Form,
FormProps,
Input,
message,
Segmented,
Space,
Tag,
Timeline,
Typography
} from "antd";
import {
BankOutlined,
2024-07-27 13:42:46 +02:00
ClockCircleOutlined,
DeleteOutlined,
SearchOutlined,
ShareAltOutlined,
SignatureOutlined,
2024-07-27 15:45:04 +02:00
SyncOutlined,
ToolOutlined,
UserOutlined
2024-07-27 13:42:46 +02:00
} from "@ant-design/icons";
2024-07-27 01:35:00 +02:00
import {Domain, getDomain} from "../../utils/api";
import {AxiosError} from "axios"
2024-07-27 14:40:08 +02:00
const {Title} = Typography
2024-07-27 01:35:00 +02:00
type FieldType = {
ldhName: string
}
export default function DomainSearchPage() {
2024-07-27 01:35:00 +02:00
2024-07-27 14:40:08 +02:00
const [domain, setDomain] = useState<Domain | null>(null)
2024-07-27 01:35:00 +02:00
const [messageApi, contextHolder] = message.useMessage()
const onFinish: FormProps<FieldType>['onFinish'] = (values) => {
2024-07-27 14:40:08 +02:00
getDomain(values.ldhName).then(setDomain).catch((e: AxiosError) => {
2024-07-27 01:35:00 +02:00
const data = e?.response?.data as { detail: string }
messageApi.error(data.detail ?? 'An error occurred')
2024-07-27 14:40:08 +02:00
setDomain(null)
2024-07-27 01:35:00 +02:00
})
}
return <Flex gap="middle" align="center" justify="center" vertical>
<Card title="Domain finder">
{contextHolder}
<Form
name="basic"
labelCol={{span: 8}}
wrapperCol={{span: 16}}
style={{width: '50em'}}
onFinish={onFinish}
autoComplete="off"
>
<Form.Item<FieldType>
name="ldhName"
rules={[{
required: true,
message: 'Required'
}, {
pattern: /^(?=.*\.)\S*[^.\s]$/,
message: 'This domain name does not appear to be valid',
max: 63,
min: 2
}]}
>
<Input size="large" prefix={<SearchOutlined/>} placeholder="example.com"/>
</Form.Item>
</Form>
2024-07-27 14:40:08 +02:00
2024-07-27 13:42:46 +02:00
{
2024-07-27 15:26:24 +02:00
domain &&
<Space direction="vertical" size="middle" style={{width: '100%'}}>
<Badge.Ribbon text={`.${domain.tld.tld.toUpperCase()} (${domain.tld.type})`}
color={
domain.tld.type === 'ccTLD' ? 'purple' :
(domain.tld.type === 'gTLD' && domain.tld.specification13) ? "volcano" :
domain.tld.type === 'gTLD' ? "green"
: "cyan"
}>
<Card title={`${domain.ldhName}${domain.handle ? ' (' + domain.handle + ')' : ''}`}
size="small">
{domain.status.length > 0 &&
<>
<Divider orientation="left">EPP Status Codes</Divider>
<Flex gap="4px 0" wrap>
{
domain.status.map(s =>
<Tag color={s === 'active' ? 'green' : 'blue'}>{s}</Tag>
)
}
</Flex>
</>
}
<Divider orientation="left">Timeline</Divider>
<Timeline
mode="right"
items={domain.events
.sort((e1, e2) => new Date(e2.date).getTime() - new Date(e1.date).getTime())
.map(({action, date}) => {
2024-07-27 13:42:46 +02:00
2024-07-27 15:26:24 +02:00
let color, dot
if (action === 'registration') {
color = 'green'
dot = <SignatureOutlined style={{fontSize: '16px'}}/>
} else if (action === 'expiration') {
color = 'red'
dot = <ClockCircleOutlined style={{fontSize: '16px'}}/>
} else if (action === 'transfer') {
color = 'orange'
dot = <ShareAltOutlined style={{fontSize: '16px'}}/>
} else if (action === 'last changed') {
color = 'blue'
dot = <SyncOutlined style={{fontSize: '16px'}}/>
} else if (action === 'deletion') {
color = 'red'
dot = <DeleteOutlined style={{fontSize: '16px'}}/>
}
return {
label: new Date(date).toUTCString(),
children: action,
color,
dot,
pending: new Date(date).getTime() > new Date().getTime()
2024-07-27 14:40:08 +02:00
}
2024-07-27 15:26:24 +02:00
}
)
}
/>
2024-07-27 15:45:04 +02:00
{
domain.entities.length > 0 && <>
<Divider orientation="left">Entities</Divider>
<Segmented
options={domain.entities.map(e => ({
label: (
<div style={{padding: 4}}>
<Avatar style={{backgroundColor: '#87d068'}}
icon={e.roles.includes('registrant') ?
<SignatureOutlined/> : e.roles.includes('registrar') ?
<BankOutlined/> :
e.roles.includes('technical') ? <ToolOutlined/> :
<UserOutlined/>}/>
<div>{e.entity.handle}</div>
</div>
),
value: e.entity.handle
}))}
/>
</>
}
2024-07-27 15:26:24 +02:00
</Card>
</Badge.Ribbon>
</Space>
2024-07-27 13:42:46 +02:00
}
2024-07-27 01:35:00 +02:00
</Card>
</Flex>
}