Image.js
2.23 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
import { useState } from "react";
import styled from "styled-components";
const Image = () => {
const [file, setFile] = useState(undefined);
const [previewURL, setPreviewURL] = useState("");
// const uploadImage = (file) => {
// if (!file) {
// return;
// }
// };
const selectImg = (e) => {
const reader = new FileReader();
const targetFile = e.target.files[0];
setFile(targetFile);
// uploadImage(targetFile);
reader.onloadend = () => {
setPreviewURL(reader.result);
};
reader.readAsDataURL(targetFile);
};
return (
<Container>
<ImgBox>
{file === undefined ? (
<>
<BlankBox />
<div>Click to add a photo</div>
<input
type="file"
style={{
marginTop: "5px",
position: "absolute",
zIndex: 0,
width: "90%",
height: "100%",
border: "none",
cursor: "pointer",
outline: "none",
}}
onChange={selectImg}
/>
</>
) : (
<img
alt={""}
style={{ objectFit: "cover", display: "flex", margin: "0 auto" }}
src={previewURL}
/>
)}
</ImgBox>
<Menu />
</Container>
);
};
const Menu = () => {
return (
<div style={{ width: "15rem", marginLeft: "2rem" }}>
<Box />
<Box />
<Box />
<Box />
</div>
);
};
const Container = styled.div`
width: 100%;
display: flex;
justify-content: center;
`;
const ImgBox = styled.div`
position: relative;
width: 40rem;
height: 30rem;
background-color: white;
box-shadow: ${({ theme }) => theme.boxShadow.normal};
border-radius: 2rem;
margin-top: 2rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 1rem;
`;
const Box = styled.div`
width: 100%;
height: 10rem;
margin-top: 2rem;
border-radius: 1rem;
background-color: white;
box-shadow: ${({ theme }) => theme.boxShadow.normal};
`;
const BlankBox = styled.div`
z-index: 1;
position: absolute;
top: 0;
width: 90%;
height: 50px;
background-color: white;
`;
export default Image;