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 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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | import React from 'react';
import { AuthenticationProviders } from '@uniquegood/realworld-core-interface';
import { authApi as authProductionApi, authDevelopmentApi } from '@lib/apis/auth';
import {
coreAuthApi as coreAuthProductionApi,
coreAuthDevelopmentApi,
coreDirectApi as coreDirectProductionApi,
coreDirectDevelopmentApi
} from '@lib/apis/core';
import { useAsyncFn } from 'react-use';
import { useRouter } from 'next/navigation';
import { OauthData } from '@lib/models/oauthData';
import axios from 'axios';
import { ActionEventName, PageViewEventName, track } from '@lib/track';
import styled from 'styled-components';
import OAuthButtonBar from '@lib/components/OAuthButtonBar';
import qs from 'qs';
import CheckBoxFormModal from '@lib/components/CheckBoxFormModal';
import SignInForm, { FormFields } from './Form';
export interface SignInPageProps {
redirectUrl: string;
anonymousToken?: string;
oauthData?: OauthData;
isDevelopment: boolean;
}
export interface SignInForm {
nickName?: string;
email?: string;
password: string;
id?: string;
provider?: AuthenticationProviders;
}
export default function SignInPage({
redirectUrl,
anonymousToken,
oauthData,
isDevelopment
}: SignInPageProps) {
const coreAuthApi = isDevelopment ? coreAuthDevelopmentApi : coreAuthProductionApi;
const authApi = isDevelopment ? authDevelopmentApi : authProductionApi;
const coreDirectApi = isDevelopment ? coreDirectDevelopmentApi : coreDirectProductionApi;
const [openModal, setOpenModal] = React.useState(false);
const closeModal = () => {
setOpenModal(false);
};
const router = useRouter();
const signUpFormRef = React.useRef<SignInForm | undefined>(
oauthData
? {
id: oauthData.id,
password: oauthData.token,
provider: oauthData.provider,
email: oauthData.email,
nickName: oauthData.name
}
: undefined
);
const submitFormHandler = (formData: FormFields) => {
doSubmitSignInFormState(formData);
};
const [submitSignUpFormModalState, doSubmitSignUpFormState] = useAsyncFn(
async ({
ageConsent,
useConsent,
userDataConsent,
isMarketingAgree
}: {
ageConsent: boolean;
useConsent: boolean;
userDataConsent: boolean;
isMarketingAgree: boolean;
}) => {
if (!signUpFormRef.current) return;
const id = signUpFormRef.current.id || signUpFormRef.current.email;
const provider = signUpFormRef.current?.provider || AuthenticationProviders.Self;
try {
// 회원 가입
if (anonymousToken) {
await coreAuthApi.migrateAnonymousAccountAsync(
undefined,
{
id,
password: signUpFormRef.current.password,
name: signUpFormRef.current.nickName,
email: signUpFormRef.current.email,
provider
},
{ headers: { Authorization: `Bearer ${anonymousToken}` } }
);
} else {
await coreAuthApi.join(undefined, {
id,
password: signUpFormRef.current.password,
name: signUpFormRef.current.nickName,
email: signUpFormRef.current.email,
provider,
ageConsent,
useConsent,
userDataConsent
});
}
} catch (error) {
if (axios.isAxiosError(error)) {
const errorMessages: string = error.response?.data.message;
if (errorMessages) {
alert(errorMessages);
} else {
alert('회원가입에 실패했습니다. 다시 시도해주세요.');
}
setOpenModal(false);
return;
}
}
// 로그인
try {
const {
data: { token }
} = await coreAuthApi.login(undefined, {
id,
password: signUpFormRef.current.password,
provider
});
if (!token) return;
const data = await coreDirectApi.getMe(token);
if (!data) return;
await Promise.all([
authApi.apiAuthLoginPost({
headers: { Authorization: `Bearer ${token}` }
}),
coreDirectApi.postPreferences(
'pushpreferences',
{
isReceiveMarketingNotification: isMarketingAgree
},
{
headers: { Authorization: `Bearer ${token}` }
}
)
]);
track.onAction({
actionEventName: ActionEventName.action_login,
params: {
userId: data.id,
loginPlatform: provider
}
});
router.replace(redirectUrl);
} catch (error) {
console.log(error);
}
},
[]
);
const [submitSignInFormModalState, doSubmitSignInFormState] = useAsyncFn(
async (formData: SignInForm) => {
const id = formData.id || formData.email;
const provider = formData.provider || AuthenticationProviders.Self;
// 로그인
try {
const {
data: { token }
} = await coreAuthApi.login(undefined, {
id,
password: formData.password,
provider
});
if (!token) return;
const data = await coreDirectApi.getMe(token);
if (!data) return;
await authApi.apiAuthLoginPost({
headers: { Authorization: `Bearer ${token}` }
});
track.onAction({
actionEventName: ActionEventName.action_login,
params: {
userId: data.id,
loginPlatform: provider
}
});
router.replace(redirectUrl);
} catch (error) {
if (axios.isAxiosError(error)) {
if (error.response?.status === 401) {
if (oauthData) {
// TODO: 회원가입 로직 추가
setOpenModal(true);
return;
}
console.log('아이디 또는 비밀번호를 확인해주세요.');
alert('아이디 또는 비밀번호를 확인해주세요.');
}
}
}
},
[]
);
const [isDoingSocialLogin, setIsDoingSocialLogin] = React.useState(
Boolean(signUpFormRef.current)
);
React.useEffect(() => {
track.onPageView({
pageViewEventName: PageViewEventName.view_screen_join
});
if (signUpFormRef.current) {
doSubmitSignInFormState(signUpFormRef.current).finally(() => {
setIsDoingSocialLogin(false);
});
}
}, []);
return (
<>
{isDoingSocialLogin && <LoadingContainer>로그인 중...</LoadingContainer>}
{!isDoingSocialLogin && (
<>
<SignInForm
submitFormHandler={submitFormHandler}
isPendingSubmit={submitSignUpFormModalState.loading}
/>
<SubButtonGroup>
<SubButton
onClick={() => {
router.replace(
`/auth/signup?${qs.stringify({
redirectUrl,
tset: isDevelopment ? 'htua' : undefined
})}`
);
}}
>
이메일로 회원가입
</SubButton>
{/* <SubButton>비밀번호 찾기</SubButton> */}
</SubButtonGroup>
{/* 소셜 로그인 버튼 */}
<OAuthButtonBar type="signin" redirectUrl={redirectUrl} isDevelopment={isDevelopment} />
{/* 이용약관 모달 */}
{openModal && (
<CheckBoxFormModal
isPendingSubmit={submitSignUpFormModalState.loading}
submitFormModal={doSubmitSignUpFormState}
closeModal={closeModal}
/>
)}
</>
)}
</>
);
}
const SubButtonGroup = styled.div`
display: flex;
justify-content: center;
gap: 24px;
margin-bottom: 24px;
text-align: center;
width: 100%;
`;
const SubButton = styled.button`
border: none;
background: none;
cursor: pointer;
padding: 0;
margin: 0;
font-size: 12px;
line-height: 16px;
color: #495057;
font-weight: bold;
`;
const LoadingContainer = styled.div`
margin-top: 24px;
display: flex;
justify-content: center;
align-items: center;
color: #495057;
`;
|