-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHeader.js
More file actions
230 lines (206 loc) · 5.36 KB
/
Header.js
File metadata and controls
230 lines (206 loc) · 5.36 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
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
230
import React from "react";
import styled, { css } from "styled-components";
import { ReactComponent as BackIcon } from "../assets/icon/HeaderIcon/back.svg";
import { ReactComponent as SearchIcon } from "../assets/icon/HeaderIcon/search.svg";
import { ReactComponent as SettingIcon } from "../assets/icon/HeaderIcon/setting.svg";
import { ReactComponent as LogoIcon } from "../assets/icon/HeaderIcon/logo.svg";
import { history } from "../redux/configureStore";
import { useLocation } from "react-router-dom";
import { useDispatch, useSelector } from "react-redux";
import { resetList } from "./../redux/Modules/searchSlice";
const Header = (props) => {
const dispatch = useDispatch();
const location = useLocation().pathname;
const LoginUserInfo = useSelector((state) => state.user);
const loginUserNickname = LoginUserInfo.userInfo.nickname;
if (location === "/main") {
//메인페이지
return (
<HeaderInner flexBetween>
<LogoIcon />
</HeaderInner>
);
}
if (location.includes("/usermain")) {
// 유저메인페이지 & 마이페이지
if (location.includes(loginUserNickname)) {
return (
<HeaderInner flexBetween>
<LeftInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<PageName margin="0px 0px 0px 12px">마이페이지</PageName>
</LeftInner>
<IconInner height="24px">
<SettingIcon
onClick={() => {
history.push("/setting");
}}
/>
</IconInner>
</HeaderInner>
);
} else {
return (
<HeaderInner flexBetween>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<IconInner height="24px">
<SettingIcon
onClick={() => {
history.push("/setting");
}}
/>
</IconInner>
</HeaderInner>
);
}
}
if (location === "/userpageprofileedit") {
// 유저 프로필 수정페이지
return (
<HeaderInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<PageName margin="0px 0px 0px 12px">프로필편집</PageName>
</HeaderInner>
);
}
if (location.includes("/userpagefollowlist")) {
// 유저 팔로우 & 팔로잉 페이지
return (
<HeaderInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
</HeaderInner>
);
}
if (location === "/cafeboard") {
//카페 후기 메인
return (
<HeaderInner flexBetween>
<PageName>카페 후기</PageName>
<IconInner height="24px">
<SearchIcon
onClick={() => {
history.push("/searchmain/cafeboard");
dispatch(resetList());
}}
/>
</IconInner>
</HeaderInner>
);
}
if (location.includes("/cafeboard/detail")) {
//카페 후기 상세
return (
<HeaderInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<PageName margin="0px 0px 0px 12px">카페 후기 보기</PageName>
</HeaderInner>
);
}
if (location === "/bulletinboard") {
//자유게시판
return (
<HeaderInner flexBetween>
<PageName>게시판</PageName>
<IconInner height="24px">
<SearchIcon
onClick={() => {
history.push("/Searchmain/bulletinboard");
dispatch(resetList());
}}
/>
</IconInner>
</HeaderInner>
);
}
if (location.includes("/bulletinboard/detail")) {
//자유게시판 상세
return (
<HeaderInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<PageName margin="0px 0px 0px 12px">게시글 보기</PageName>
</HeaderInner>
);
}
if (location === "/setting") {
//설정페이지
return (
<HeaderInner>
<IconInner height="16px">
<BackIcon
onClick={() => {
history.goBack();
}}
/>
</IconInner>
<PageName margin="0px 0px 0px 12px">설정페이지</PageName>
</HeaderInner>
);
} else return null;
};
const HeaderInner = styled.div`
width: 375px;
height: 48px;
padding: 0px 20px;
z-index: 10;
position: fixed;
top: 0;
background: #fff;
display: flex;
align-items: center;
${(props) =>
props.flexBetween &&
css`
justify-content: space-between;
`}
`;
const PageName = styled.span`
font-size: 16px;
margin: ${(props) => props.margin};
height: 16px;
line-height: 20px;
font-family: "Pretendard-Medium";
`;
const LeftInner = styled.div`
display: flex;
align-items: center;
`;
const IconInner = styled.button`
height: ${(props) => props.height};
`;
export default Header;