mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-22 16:23:56 +01:00
Re-usable expandable row component
This commit is contained in:
parent
2adbd097a1
commit
14432c665b
114
src/components/Form/Row.tsx
Normal file
114
src/components/Form/Row.tsx
Normal file
@ -0,0 +1,114 @@
|
||||
import styled from 'styled-components';
|
||||
import colors from 'styles/colors';
|
||||
|
||||
interface RowProps {
|
||||
lbl: string,
|
||||
val: string,
|
||||
key?: string,
|
||||
rowList?: RowProps[],
|
||||
}
|
||||
|
||||
const StyledRow = styled.div`
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 0.25rem;
|
||||
&:not(:last-child) { border-bottom: 1px solid ${colors.primary}; }
|
||||
span.lbl { font-weight: bold; }
|
||||
span.val {
|
||||
max-width: 200px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
`;
|
||||
|
||||
const StyledExpandableRow = styled(StyledRow).attrs({
|
||||
as: "summary"
|
||||
})``;
|
||||
|
||||
const Details = styled.details`
|
||||
transition: all 0.2s ease-in-out;
|
||||
summary {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
summary:before {
|
||||
content: "►";
|
||||
position: absolute;
|
||||
margin-left: -1rem;
|
||||
color: ${colors.primary};
|
||||
cursor: pointer;
|
||||
}
|
||||
&[open] summary:before {
|
||||
content: "▼";
|
||||
}
|
||||
`;
|
||||
|
||||
const SubRowList = styled.ul`
|
||||
margin: 0;
|
||||
padding: 0.25rem;
|
||||
background: ${colors.primaryTransparent};
|
||||
`;
|
||||
|
||||
const SubRow = styled(StyledRow).attrs({
|
||||
as: "li"
|
||||
})`
|
||||
border-bottom: 1px dashed ${colors.primaryTransparent} !important;
|
||||
`;
|
||||
|
||||
const formatDate = (dateString: string): string => {
|
||||
return new Intl.DateTimeFormat('en-GB', {
|
||||
day: 'numeric', month: 'long', year: 'numeric'
|
||||
}).format(new Date(dateString));
|
||||
}
|
||||
|
||||
const formatValue = (value: any): string => {
|
||||
const isValidDate = (date: any) => date instanceof Date && !isNaN(date as any as number);
|
||||
if (isValidDate(new Date(value))) return formatDate(value);
|
||||
if (typeof value === 'object') return JSON.stringify(value);
|
||||
if (typeof value === 'boolean') return value ? '✅' : '❌';
|
||||
return value;
|
||||
};
|
||||
|
||||
const copyToClipboard = (text: string) => {
|
||||
navigator.clipboard.writeText(text);
|
||||
}
|
||||
|
||||
export const ExpandableRow = (props: RowProps) => {
|
||||
const { lbl, val, rowList } = props;
|
||||
return (
|
||||
<Details>
|
||||
<StyledExpandableRow>
|
||||
<span className="lbl">{lbl}</span>
|
||||
<span className="val" title={val}>{val}</span>
|
||||
</StyledExpandableRow>
|
||||
{ rowList &&
|
||||
<SubRowList>
|
||||
{ rowList?.map((row: RowProps, index: number) => {
|
||||
return (
|
||||
<SubRow key={row.key || `${row.lbl}-${index}`}>
|
||||
<span className="lbl">{row.lbl}</span>
|
||||
<span className="val" title={row.val} onClick={() => copyToClipboard(row.val)}>
|
||||
{formatValue(row.val)}
|
||||
</span>
|
||||
</SubRow>
|
||||
)
|
||||
})}
|
||||
</SubRowList>
|
||||
}
|
||||
</Details>
|
||||
);
|
||||
};
|
||||
|
||||
const Row = (props: RowProps) => {
|
||||
const { lbl, val, key } = props;
|
||||
return (
|
||||
<StyledRow key={key}>
|
||||
<span className="lbl">{lbl}</span>
|
||||
<span className="val" title={val} onClick={() => copyToClipboard(val)}>
|
||||
{formatValue(val)}
|
||||
</span>
|
||||
</StyledRow>
|
||||
);
|
||||
};
|
||||
|
||||
export default Row;
|
Loading…
Reference in New Issue
Block a user