All files / lib/components/pages/SignUp index.tsx

0% Statements 0/44
0% Branches 0/28
0% Functions 0/6
0% Lines 0/41

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                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
import React from 'react';
import { AuthenticationProviders } from '@uniquegood/realworld-core-interface';
import { useAsyncFn } from 'react-use';
import { useRouter } from 'next/navigation';
import { OauthData } from '@lib/models/oauthData';
import { authApi as authProductionApi, authDevelopmentApi } from '@lib/apis/auth';
import {
  coreAuthApi as coreAuthProductionApi,
  coreAuthDevelopmentApi,
  coreDirectApi as coreDirectProductionApi,
  coreDirectDevelopmentApi
} from '@lib/apis/core';
import axios from 'axios';
import { ActionEventName, PageViewEventName, track } from '@lib/track';
import { getMe } from '@lib/apis/core/getMe';
import styled from 'styled-components';
import OAuthButtonBar from '@lib/components/OAuthButtonBar';
import qs from 'qs';
import CheckBoxFormModal from '../../CheckBoxFormModal';
import SignUpForm, { FormFields } from './Form';
 
export interface SignUpPageProps {
  redirectUrl: string;
  anonymousToken?: string;
  oauthData?: OauthData;
  isDevelopment: boolean;
}
 
export default function SignUpPage({
  redirectUrl,
  anonymousToken,
  oauthData,
  isDevelopment
}: SignUpPageProps) {
  const coreAuthApi = isDevelopment ? coreAuthDevelopmentApi : coreAuthProductionApi;
  const authApi = isDevelopment ? authDevelopmentApi : authProductionApi;
  const coreDirectApi = isDevelopment ? coreDirectDevelopmentApi : coreDirectProductionApi;
 
  const [openModal, setOpenModal] = React.useState<boolean>(Boolean(oauthData));
  const signUpFormRef = React.useRef<
    | {
        nickName?: string;
        email?: string;
        password: string;
        id?: string;
        provider?: AuthenticationProviders;
      }
    | undefined
  >(undefined);
  const router = useRouter();
 
  const submitFormHandler = (formData: FormFields) => {
    signUpFormRef.current = formData;
    setOpenModal(true);
  };
 
  const [submitFormModalState, doSubmitFormState] = 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,
              ageConsent,
              useConsent,
              userDataConsent
            },
            { 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 closeModal = () => {
    setOpenModal(false);
  };
 
  React.useEffect(() => {
    track.onPageView({
      pageViewEventName: PageViewEventName.view_screen_join
    });
  }, []);
 
  return (
    <>
      <SignUpForm submitFormHandler={submitFormHandler} />
 
      {!anonymousToken && (
        <SubButtonGroup>
          <SubButton
            onClick={() => {
              router.replace(
                `/auth/signin?${qs.stringify({
                  redirectUrl,
                  tset: isDevelopment ? 'htua' : undefined
                })}`
              );
            }}
          >
            이메일로 로그인
          </SubButton>
          {/* <SubButton>비밀번호 찾기</SubButton> */}
        </SubButtonGroup>
      )}
      {/* 이용약관 모달 */}
      {openModal && (
        <CheckBoxFormModal
          isPendingSubmit={submitFormModalState.loading}
          submitFormModal={doSubmitFormState}
          closeModal={closeModal}
        />
      )}
    </>
  );
}
 
const SubButtonGroup = styled.div`
  display: flex;
  justify-content: center;
  gap: 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;
`;