diff --git a/editor.planx.uk/src/@planx/components/List/Public/index.tsx b/editor.planx.uk/src/@planx/components/List/Public/index.tsx index 87dced62e0..8b581068bc 100644 --- a/editor.planx.uk/src/@planx/components/List/Public/index.tsx +++ b/editor.planx.uk/src/@planx/components/List/Public/index.tsx @@ -27,12 +27,12 @@ import { ListProvider, useListContext } from "./Context"; export type Props = PublicProps; const ListCard = styled(Box)(({ theme }) => ({ - padding: theme.spacing(2), + padding: theme.spacing(2.5), backgroundColor: theme.palette.background.paper, - border: "1px solid darkgray", + border: `1px solid ${theme.palette.border.main}`, display: "flex", flexDirection: "column", - gap: theme.spacing(2), + gap: theme.spacing(3), marginBottom: theme.spacing(2), "& label, & table": { maxWidth: theme.breakpoints.values.formWrap, @@ -40,8 +40,17 @@ const ListCard = styled(Box)(({ theme }) => ({ })); const CardButton = styled(Button)(({ theme }) => ({ - fontWeight: FONT_WEIGHT_SEMI_BOLD, + gap: theme.spacing(1), + background: theme.palette.common.white, +})); + +const InactiveListCardLayout = styled(Box)(({ theme }) => ({ + display: "flex", + flexDirection: "column", gap: theme.spacing(2), + [theme.breakpoints.up("md")]: { + flexDirection: "row", + }, })); const ActiveListCard: React.FC<{ @@ -96,12 +105,12 @@ const ActiveListCard: React.FC<{ Save {!isPageComponent && !isInitialCard && ( - + )} @@ -115,39 +124,56 @@ const InactiveListCard: React.FC<{ const { schema, formik, removeItem, editItem, isPageComponent } = useListContext(); + const mapPreview = schema.fields.find((field) => field.type === "map"); + return ( {schema.type} {!isPageComponent && ` ${i + 1}`} - - - {schema.fields.map((field, j) => ( - - - {field.data.title} - - - {formatSchemaDisplayValue( - formik.values.schemaData[i][field.data.fn], - schema.fields[j], - )} - - - ))} - -
+ + {mapPreview && ( + + {formatSchemaDisplayValue( + formik.values.schemaData[i][mapPreview.data.fn], + mapPreview, + )} + + )} + + + {schema.fields.map( + (field, j) => + field.type !== "map" && ( + + + {field.data.title} + + + {formatSchemaDisplayValue( + formik.values.schemaData[i][field.data.fn], + schema.fields[j], + )} + + + ), + )} + +
+
removeItem(i)}> Remove editItem(i)}> - {/* TODO: Is primary colour really right here? */} - + Edit