Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | import { KeyVal } from "@common/KeyVal";
import { Grid } from "@mui/material";
import { palette } from "@palette";
import { Text } from "@common/Text";
type transactionMonetaryDetails = {
total: string,
giveboxFee: string,
visaFee: string,
charged: string,
}
type PaymentDetailsProps = {
paymentData: transactionMonetaryDetails,
amount?: boolean,
};
function AmountsCard({ amount, paymentData }: PaymentDetailsProps) {
return (
<Grid container rowGap={2} sx={gridStyle}>
{
Object.keys(paymentData).map((fieldKey, index) => {
let fieldName = "";
switch (fieldKey) {
case "total":
fieldName = amount ? "Amount" : "Donation";
break;
case "giveboxFee":
fieldName = "Givebox Fee";
break;
case "visaFee":
fieldName = "Visa Fee";
break;
case "charged":
fieldName = "Charged";
break;
default:
break;
}
const fieldValue: string = fieldKey === "visaFee"
? `*${paymentData[fieldKey as keyof transactionMonetaryDetails]}`
: paymentData[fieldKey as keyof transactionMonetaryDetails]
return (
<Grid item xs={12} key={index}>
<KeyVal
sx={{ color: palette.neutral[600] }}
keyName={
<Text
variant="body"
fontWeight="regular"
color={palette.neutral[500]}
sx={{ alignSelf: "center" }}
>
{fieldName}
</Text>
}
value={
<Text fontWeight="medium">
{fieldValue}
</Text>
}
mobileView={true}
></KeyVal>
</Grid>
)
})
}
</Grid>
);
}
const gridStyle = {
background: "#FFFFFF",
boxShadow:
"inset -4px -4px 9px rgba(255, 255, 255, 0.88), inset 0px 2px 14px rgba(193, 208, 238, 0.5)",
borderRadius: "4px",
}
export default AmountsCard;
|