Rename v1 to web-check-live
This commit is contained in:
22
src/web-check-live/components/Results/ServerInfo.tsx
Normal file
22
src/web-check-live/components/Results/ServerInfo.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import type { ServerInfo } from 'web-check-live/utils/result-processor';
|
||||
import { Card } from 'web-check-live/components/Form/Card';
|
||||
import Row from 'web-check-live/components/Form/Row';
|
||||
|
||||
const ServerInfoCard = (props: { data: ServerInfo, title: string, actionButtons: any }): JSX.Element => {
|
||||
const info = props.data;
|
||||
const { org, asn, isp, os, ports, ip, loc, type } = info;
|
||||
return (
|
||||
<Card heading={props.title} actionButtons={props.actionButtons}>
|
||||
{ org && <Row lbl="Organization" val={org} /> }
|
||||
{ (isp && isp !== org) && <Row lbl="Service Provider" val={isp} /> }
|
||||
{ os && <Row lbl="Operating System" val={os} /> }
|
||||
{ asn && <Row lbl="ASN Code" val={asn} /> }
|
||||
{ ports && <Row lbl="Ports" val={ports} /> }
|
||||
{ ip && <Row lbl="IP" val={ip} /> }
|
||||
{ type && <Row lbl="Type" val={type} /> }
|
||||
{ loc && <Row lbl="Location" val={loc} /> }
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
||||
export default ServerInfoCard;
|
||||
Reference in New Issue
Block a user