forked from qdrant/demo-midlibrary-explorer-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ImageCard.jsx
229 lines (220 loc) · 5.86 KB
/
ImageCard.jsx
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import React from "react";
import PropTypes, { bool } from "prop-types";
import {
Box,
Card,
CardContent,
CardMedia,
IconButton,
Link,
Modal,
Skeleton,
styled,
Tooltip,
tooltipClasses,
Typography,
} from "@mui/material";
import { useTheme } from "@mui/material/styles";
import { Fullscreen } from "@mui/icons-material";
import Image from "next/image";
const ProminentTooltip = styled(({ className, ...props }) => (
<Tooltip {...props} classes={{ popper: className }} />
))(({ theme }) => ({
[`& .${tooltipClasses.tooltip}`]: {
backgroundColor: theme.palette.primary,
color: theme.palette.neutral[900],
boxShadow: theme.shadows[1],
fontSize: 18,
padding: "10px",
},
}));
const ImageCard = ({
imgObject,
onClick,
sx,
tooltip,
showInfo,
withActions,
}) => {
const theme = useTheme();
const [loaded, setLoaded] = React.useState(false);
const [modalOpen, setModalOpen] = React.useState(false);
const actions = [
{
icon: <Fullscreen />,
onClick: () => setModalOpen(true),
tooltip: "Open full page",
},
...(withActions?.length ? withActions : []),
];
return (
<Card elevation={0} sx={{ backgroundColor: "transparent", ...sx }}>
{!loaded && (
<Skeleton
variant="rectangular"
width={"100%"}
height={"auto"}
sx={{ aspectRatio: "1/1", ...sx }}
/>
)}
<ProminentTooltip
title={tooltip}
followCursor
disableInteractive={!tooltip}
>
<CardMedia
component="img"
image={imgObject?.image_url}
onClick={onClick}
onLoad={() => {
setLoaded(true);
}}
sx={{
opacity: loaded ? 1 : 0,
width: "100%",
height: loaded ? "auto" : 0,
overflow: "hidden",
objectFit: "contain",
cursor: "pointer",
"&:hover": {
filter: "brightness(1.05)",
transform: "scale(1.02)",
transaction: "all 0.3s ease-in-out",
},
...sx,
}}
alt={imgObject?.name || "Image represents some artist style"}
/>
</ProminentTooltip>
{showInfo && (
<CardContent sx={{ textAlign: "center", px: 0 }}>
<Box
sx={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
flexDirection: { xs: "column-reverse", md: "row" },
}}
>
<Tooltip title={"Open on MidLibrary"} placement={"top"} arrow>
<Link
href={imgObject?.page_url}
target={"_blank"}
rel={"noopener"}
mr={-1}
textAlign={"center"}
>
<Typography
variant={"h6"}
component={"span"}
sx={{
color: theme.palette.primary.contrastText,
fontSize: { xs: "1rem", md: "1.25rem" },
}}
>
{imgObject?.name}
</Typography>
</Link>
</Tooltip>
{withActions && (
<Box>
{actions?.map((action) => (
<Tooltip
key={action.tooltip}
title={action.tooltip}
placement={"top"}
arrow
>
<IconButton onClick={action.onClick} color={"primary"}>
{action.icon}
</IconButton>
</Tooltip>
))}
</Box>
)}
</Box>
</CardContent>
)}
{withActions && imgObject?.image_url && (
<Modal
open={modalOpen}
onClose={() => setModalOpen(false)}
aria-labelledby={imgObject.name}
aria-describedby="Full screen image modal"
sx={{
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
slotProps={{
backdrop: {
style: {
backgroundColor: "rgba(0, 0, 0, 0.9)",
},
},
}}
>
<Image
src={imgObject.image_url}
alt={imgObject.name}
width={500}
height={500}
/>
</Modal>
)}
</Card>
);
};
ImageCard.propTypes = {
imgObject: PropTypes.object.isRequired,
onClick: PropTypes.func.isRequired,
sx: PropTypes.object,
tooltip: PropTypes.string,
showInfo: PropTypes.bool,
// if withActions is true, then default actions will be shown,
// or you can pass an array of actions to add to the default ones
// if not passed or false, no actions will be shown
withActions: PropTypes.oneOfType([
PropTypes.arrayOf(
PropTypes.shape({
icon: PropTypes.node.isRequired,
onClick: PropTypes.func.isRequired,
tooltip: PropTypes.string,
}),
),
PropTypes.bool,
]),
};
const ImageCardWithInfoOverlay = ({ imgObject, onClick, sx, tooltip }) => {
const styles = {
position: "relative",
".MuiCardContent-root": {
position: "absolute",
bottom: 0,
width: "100%",
backgroundColor: "rgba(0, 0, 0, 0.8)",
},
};
const onClickWithTitleIgnore = (e) => {
if (e.target.className.match(/MuiCardContent-root/)) {
return;
}
onClick();
};
return (
<ImageCard
imgObject={imgObject}
onClick={onClickWithTitleIgnore}
sx={{ ...styles, ...sx }}
tooltip={tooltip}
showInfo={true}
/>
);
};
ImageCardWithInfoOverlay.propTypes = {
imgObject: PropTypes.object.isRequired,
onClick: PropTypes.func.isRequired,
sx: PropTypes.object,
tooltip: PropTypes.string,
};
export { ImageCard, ImageCardWithInfoOverlay };