59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
|
|
import styled from '@emotion/styled';
|
|
import type { TechnologyGroup, Technology } from 'web-check-live/utils/result-processor';
|
|
import colors from 'web-check-live/styles/colors';
|
|
import Card from 'web-check-live/components/Form/Card';
|
|
import Heading from 'web-check-live/components/Form/Heading';
|
|
|
|
const Outer = styled(Card)`
|
|
grid-row: span 2
|
|
`;
|
|
|
|
const Row = styled.div`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0.25rem;
|
|
&:not(:last-child) { border-bottom: 1px solid ${colors.primaryTransparent}; }
|
|
span.lbl { font-weight: bold; }
|
|
span.val {
|
|
max-width: 200px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
`;
|
|
|
|
const ListRow = (props: { list: Technology[], title: string }) => {
|
|
const { list, title } = props;
|
|
return (
|
|
<>
|
|
<Heading as="h3" align="left" color={colors.primary}>{title}</Heading>
|
|
{ list.map((entry: Technology, index: number) => {
|
|
return (
|
|
<Row key={`${title.toLocaleLowerCase()}-${index}`}><span>{ entry.Name }</span></Row>
|
|
)}
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
const BuiltWithCard = (props: { data: TechnologyGroup[]}): JSX.Element => {
|
|
// const { created, updated, expires, nameservers } = whois;
|
|
return (
|
|
<Outer>
|
|
<Heading as="h3" align="left" color={colors.primary}>Technologies</Heading>
|
|
{ props.data.map((group: TechnologyGroup) => {
|
|
return (
|
|
<ListRow key={group.tag} title={group.tag} list={group.technologies} />
|
|
);
|
|
})}
|
|
{/* { created && <DataRow lbl="Created" val={formatDate(created)} /> }
|
|
{ updated && <DataRow lbl="Updated" val={formatDate(updated)} /> }
|
|
{ expires && <DataRow lbl="Expires" val={formatDate(expires)} /> }
|
|
{ nameservers && <ListRow title="Name Servers" list={nameservers} /> } */}
|
|
</Outer>
|
|
);
|
|
}
|
|
|
|
export default BuiltWithCard;
|