-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCardList.js
More file actions
129 lines (126 loc) · 3.52 KB
/
CardList.js
File metadata and controls
129 lines (126 loc) · 3.52 KB
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
import React from "react";
import EhsaanDrawPicture from "../../assets/EhsaanDrawPicture.png";
import { Trash2 } from "lucide-react";
const CardList = ({ values, handleDelete, handleEdit, id }) => {
return (
<div
style={{
display: "grid",
gridTemplateColumns: "repeat(4, 1fr)",
gap: "20px",
padding: "20px",
}}
>
{values.map((item) => (
<div
key={item.id}
style={{
backgroundColor: "#fff",
borderRadius: "8px",
border: "1px solid #e0e0e0",
overflow: "hidden",
boxShadow: "0 4px 8px rgba(0, 0, 0, 0.1)",
transition: "transform 0.3s, box-shadow 0.3s",
maxWidth: "100%",
width: "100%",
}}
onMouseEnter={(e) => {
e.currentTarget.style.transform = "translateY(-5px)";
e.currentTarget.style.boxShadow = "0 8px 16px rgba(0, 0, 0, 0.15)";
}}
onMouseLeave={(e) => {
e.currentTarget.style.transform = "translateY(0)";
e.currentTarget.style.boxShadow = "0 4px 8px rgba(0, 0, 0, 0.1)";
}}
>
<div
style={{
width: "100%",
padding: "8px",
}}
>
<button
onClick={() => handleEdit(item.id, item.userName1, item.scenes1)}
style={{
width: "100%",
padding: 0,
border: "none",
background: "none",
cursor: "pointer",
}}
>
<div
style={{
padding: "20px",
}}
>
<img
src={EhsaanDrawPicture}
style={{
width: "100%",
height: "auto",
objectFit: "cover",
borderRadius: "4px",
display: "block",
}}
alt="No pict"
/>
</div>
</button>
<div
style={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
marginTop: "8px",
}}
>
<p
style={{
margin: 0,
color: "#36454F",
fontWeight: "500",
padding: "5px",
}}
>
{item.userName1}
</p>
<button
onClick={() => handleDelete(item.id)}
style={{
background: "none",
border: "none",
cursor: "pointer",
padding: 0,
marginRight: "10px",
padding: "10px",
}}
>
<Trash2 color="#000000" />
</button>
</div>
</div>
</div>
))}
<style jsx>{`
@media (min-width: 768px) {
div[style] {
grid-template-columns: repeat(
3,
1fr
); /* 3 cards on medium (iPad) screens */
}
}
@media (min-width: 1024px) {
div[style] {
grid-template-columns: repeat(
4,
1fr
); /* 4 cards on large (desktop) screens */
}
}
`}</style>
</div>
);
};
export default CardList;