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 | 21x 62x | import { Box, Stack, SxProps } from "@mui/material";
import { palette } from "@palette";
import { ReactNode, RefObject } from "react";
interface CommentLayoutProps {
image: ReactNode;
name: ReactNode;
message: ReactNode | string;
action: ReactNode;
time?: ReactNode;
scrollRef?: RefObject<any>;
sx?: SxProps;
isSending?: boolean;
}
const CommentLayout = ({
image,
name,
time,
message,
action,
scrollRef,
isSending,
sx,
}: CommentLayoutProps) => {
return (
<Stack
direction="row"
sx={{
padding: "8px",
"& .mention": {
backgroundColor: "#E6EAF2",
borderRadius: "90px",
color: "#003182",
},
"& .mention-custom": {
backgroundColor: "#f8f8f6",
borderRadius: "90px",
color: palette.givebox[600],
},
"& .comment-markup": {
wordBreak: "break-word",
whiteSpace: "pre-line",
fontSize: "14px",
...(isSending && { opacity: 0.5 }),
},
"& .hashtag": {
cursor: "pointer",
color: "#FF8124",
":hover": {
color: "black !important",
},
},
...sx,
}}
gap={1.5}
ref={scrollRef}
>
<Box>{image}</Box>
<Stack
alignItems="flex-start"
gap={1}
sx={{
maxWidth: "90%",
}}
>
<Stack direction={"row"} gap={1}>
{name}
{time}
</Stack>
{message}
{action}
</Stack>
</Stack>
);
};
export default CommentLayout;
|