diff --git a/src/actions/auth.ts b/src/actions/auth.ts
index 434c93e..131f3f2 100644
--- a/src/actions/auth.ts
+++ b/src/actions/auth.ts
@@ -34,3 +34,17 @@ export const getLoginByGoogle = (locale: string, accesstoken: string): Promise<{
},
locale
});
+
+export const getRegisterByApple = (locale: string, code: string): Promise<{ jwtToken: string }> => apiRequest({
+ url: '/auth/registerexternalappleweb',
+ method: 'post',
+ data: { code },
+ locale
+});
+
+export const getLoginByApple = (locale: string, code: string): Promise<{ jwtToken: string }> => apiRequest({
+ url: '/auth/tryloginexternalappleweb',
+ method: 'post',
+ data: { code },
+ locale
+});
diff --git a/src/actions/stripe.ts b/src/actions/stripe.ts
index 989796d..ea5e9cb 100644
--- a/src/actions/stripe.ts
+++ b/src/actions/stripe.ts
@@ -13,7 +13,6 @@ export async function createCheckoutSession(
const ui_mode = data.get(
"uiMode",
) as Stripe.Checkout.SessionCreateParams.UiMode;
- console.log('DATA', data)
const origin: string = headers().get("origin") as string;
const checkoutSession: Stripe.Checkout.Session =
diff --git a/src/app/[locale]/apple-registration/page.tsx b/src/app/[locale]/apple-registration/page.tsx
deleted file mode 100644
index 70e4564..0000000
--- a/src/app/[locale]/apple-registration/page.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-'use client'
-
-import React from 'react';
-import { useEffect, useRef } from 'react';
-import { apiClient } from '../../../lib/apiClient';
-
-export default function BbAppleLogIn() {
-
- const urlParams = new URLSearchParams(location.search);
- var code = urlParams.getAll('code')[0];
- const ref = useRef(false);
-
- var makeRequest = async (c) => {
-
- if(ref.current) {
- return;
- }
- ref.current = true;
-
- try {
- var result = await apiClient.post('http://192.168.0.106:5090/api/auth/registerexternalappleweb', {
- code: c
- });
- localStorage.setItem('bbuddy_token_test', result.data.jwtToken);
- window.location.href="/";
- }
- catch (err) {
- /*process*/
- }
-
- }
-
- useEffect(() => {
- makeRequest(code);
- },[code]);
- return (
- <>
- >
- );
-};
diff --git a/src/app/[locale]/apple-sign-in/page.tsx b/src/app/[locale]/apple-sign-in/page.tsx
deleted file mode 100644
index d5196ec..0000000
--- a/src/app/[locale]/apple-sign-in/page.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-'use client'
-
-import React from 'react';
-import { useEffect, useRef } from 'react';
-import { apiClient } from '../../../lib/apiClient';
-
-export default function BbAppleLogIn() {
-
- const urlParams = new URLSearchParams(location.search);
- var code = urlParams.getAll('code')[0];
- const ref = useRef(false);
-
- var makeRequest = async (c) => {
-
- if(ref.current) {
- return;
- }
- ref.current = true;
-
- try {
- var result = await apiClient.post('http://192.168.0.106:5090/api/auth/tryloginexternalappleweb', {
- code: c
- });
- localStorage.setItem('bbuddy_token_test', result.data.jwtToken);
- window.location.href="/";
- }
- catch (err) {
- /*process*/
- }
-
- }
-
- useEffect(() => {
- makeRequest(code);
- },[code]);
- return (
- <>
- >
- );
-};
diff --git a/src/app/[locale]/blog/[slug]/page.tsx b/src/app/[locale]/blog/[slug]/page.tsx
index df0e865..c66b7d4 100644
--- a/src/app/[locale]/blog/[slug]/page.tsx
+++ b/src/app/[locale]/blog/[slug]/page.tsx
@@ -50,7 +50,6 @@ function renderWidget (widget: Widget, index: number) {
export default async function BlogItem({params}: { params: BlogPostPageParams }) {
const item = await fetchBlogPost({slug: params.slug, preview: draftMode().isEnabled })
- console.log('BLOG POST')
console.log(Util.inspect(item, {showHidden: false, depth: null, colors: true}))
if (!item) notFound();
diff --git a/src/app/[locale]/temp/login/page.tsx b/src/app/[locale]/temp/login/page.tsx
new file mode 100644
index 0000000..33a30d0
--- /dev/null
+++ b/src/app/[locale]/temp/login/page.tsx
@@ -0,0 +1,50 @@
+'use client'
+
+import React, { useEffect } from 'react';
+import { notification } from 'antd';
+import { useSearchParams } from 'next/navigation';
+import { CustomSpin } from '../../../../components/view/CustomSpin';
+import { getLoginByApple } from '../../../../actions/auth';
+import { getUserData } from '../../../../actions/profile';
+import { AUTH_TOKEN_KEY, AUTH_USER } from '../../../../constants/common';
+import { useLocalStorage } from '../../../../hooks/useLocalStorage';
+import { useRouter } from '../../../../navigation';
+
+export default function AppleLoginPage({ params: { locale } }: { params: { locale: string } }) {
+ const params = useSearchParams();
+ const router = useRouter();
+ const [, setToken] = useLocalStorage(AUTH_TOKEN_KEY, '');
+
+ useEffect(() => {
+ const code = params.get('code');
+ if (code) {
+ getLoginByApple(locale, code)
+ .then((data) => {
+ if (data.jwtToken) {
+ getUserData(locale, data.jwtToken)
+ .then((profile) => {
+ localStorage.setItem(AUTH_USER, JSON.stringify(profile));
+ setToken(data.jwtToken);
+ })
+ } else {
+ notification.error({
+ message: 'Error',
+ description: 'Access denied'
+ });
+ }
+ })
+ .catch((error) => {
+ const err = error?.message ? JSON.parse(error.message) : {};
+ notification.error({
+ message: 'Error',
+ description: err?.details?.errMessage || undefined
+ });
+ })
+ .finally(() => {
+ router.push('/');
+ });
+ }
+ }, [params]);
+
+ return ;
+}
diff --git a/src/app/[locale]/temp/register/page.tsx b/src/app/[locale]/temp/register/page.tsx
new file mode 100644
index 0000000..c4df2c9
--- /dev/null
+++ b/src/app/[locale]/temp/register/page.tsx
@@ -0,0 +1,45 @@
+'use client'
+
+import React, { useEffect } from 'react';
+import { notification } from 'antd';
+import { useSearchParams } from 'next/navigation';
+import { CustomSpin } from '../../../../components/view/CustomSpin';
+import { getRegisterByApple } from '../../../../actions/auth';
+import { getUserData } from '../../../../actions/profile';
+import { AUTH_TOKEN_KEY, AUTH_USER } from '../../../../constants/common';
+import { useLocalStorage } from "../../../../hooks/useLocalStorage";
+import { useRouter } from '../../../../navigation';
+
+export default function AppleRegisterPage({ params: { locale } }: { params: { locale: string } }) {
+ const params = useSearchParams();
+ const router = useRouter();
+ const [, setToken] = useLocalStorage(AUTH_TOKEN_KEY, '');
+
+ useEffect(() => {
+ const code = params.get('code');
+ if (code) {
+ getRegisterByApple(locale, code)
+ .then((data) => {
+ if (data.jwtToken) {
+ getUserData(locale, data.jwtToken)
+ .then((profile) => {
+ localStorage.setItem(AUTH_USER, JSON.stringify(profile));
+ setToken(data.jwtToken);
+ })
+ }
+ })
+ .catch((error) => {
+ const err = error?.message ? JSON.parse(error.message) : {};
+ notification.error({
+ message: 'Error',
+ description: err?.details?.errMessage || undefined
+ });
+ })
+ .finally(() => {
+ router.push('/');
+ });
+ }
+ }, [params]);
+
+ return ;
+}
diff --git a/src/components/Modals/AuthModal.tsx b/src/components/Modals/AuthModal.tsx
index 034225c..a9c24da 100644
--- a/src/components/Modals/AuthModal.tsx
+++ b/src/components/Modals/AuthModal.tsx
@@ -1,12 +1,16 @@
'use client';
import React, { Dispatch, FC, SetStateAction, useEffect } from 'react';
-import { usePathname } from 'next/navigation';
+import { usePathname, useSearchParams } from 'next/navigation';
import Link from 'next/link';
-import { Modal, Form } from 'antd';
+import { Modal, Form, notification } from 'antd';
import { CloseOutlined } from '@ant-design/icons';
import { RegisterContent, ResetContent, FinishContent, EnterContent } from './authModalContent';
import { i18nText } from '../../i18nKeys';
+import { useRouter } from '../../navigation';
+import { AUTH_USER} from '../../constants/common';
+import { getRegisterByApple, getLoginByApple } from '../../actions/auth';
+import { getUserData } from '../../actions/profile';
type AuthModalProps = {
open: boolean;
@@ -27,6 +31,47 @@ export const AuthModal: FC = ({
}) => {
const [form] = Form.useForm<{ login: string, password: string, confirmPassword: string }>();
const paths = usePathname().split('/');
+ const params = useSearchParams();
+ const router = useRouter();
+
+ const onUpdateToken = (token: string) => {
+ if (updateToken && typeof updateToken !== 'string') {
+ updateToken(token);
+ }
+ };
+
+ useEffect(() => {
+ const code = params.get('code');
+ const type = params.get('state');
+ if (code && type) {
+ const appleFunc = type === 'bbregister' ? getRegisterByApple : getLoginByApple;
+ appleFunc(locale, code)
+ .then((data) => {
+ if (data.jwtToken) {
+ getUserData(locale, data.jwtToken)
+ .then((profile) => {
+ localStorage.setItem(AUTH_USER, JSON.stringify(profile));
+ onUpdateToken(data.jwtToken);
+ })
+ } else {
+ notification.error({
+ message: 'Error',
+ description: 'Access denied'
+ });
+ }
+ })
+ .catch((error) => {
+ const err = error?.message ? JSON.parse(error.message) : {};
+ notification.error({
+ message: 'Error',
+ description: err?.details?.errMessage || undefined
+ });
+ })
+ .finally(() => {
+ router.push('/');
+ });
+ }
+ }, [params]);
const onAfterClose = () => {
form.resetFields();
@@ -38,12 +83,6 @@ export const AuthModal: FC = ({
}
}, [mode]);
- const onUpdateToken = (token: string) => {
- if (updateToken && typeof updateToken !== 'string') {
- updateToken(token);
- }
- };
-
return (
= ({
getSchedulerSession(parseData as SignupSessionData, locale || 'en', jwt)
.then((session) => {
setSessionId(session?.sessionId);
- console.log(session?.sessionId);
})
.catch((err) => {
console.log(err);
diff --git a/src/components/Modals/authModalContent/EnterContent.tsx b/src/components/Modals/authModalContent/EnterContent.tsx
index 0b1d625..99effe4 100644
--- a/src/components/Modals/authModalContent/EnterContent.tsx
+++ b/src/components/Modals/authModalContent/EnterContent.tsx
@@ -1,6 +1,8 @@
import React, { FC, useState } from 'react';
import { Form, FormInstance, notification } from 'antd';
import Image from 'next/image';
+import { useGoogleLogin } from '@react-oauth/google';
+import AppleLogin from 'react-apple-login';
import { AUTH_USER } from '../../../constants/common';
import { getAuth, getLoginByGoogle } from '../../../actions/auth';
import { getUserData } from '../../../actions/profile';
@@ -10,8 +12,6 @@ import { FilledButton } from '../../view/FilledButton';
import { OutlinedButton } from '../../view/OutlinedButton';
import { LinkButton } from '../../view/LinkButton';
import { i18nText } from '../../../i18nKeys';
-import { useGoogleLogin } from '@react-oauth/google';
-import AppleLogin from 'react-apple-login'
type EnterProps = {
form: FormInstance;
@@ -76,6 +76,11 @@ export const EnterContent: FC = ({
updateToken(data.jwtToken);
handleCancel();
})
+ } else {
+ notification.error({
+ message: 'Error',
+ description: 'Access denied'
+ });
}
})
.catch((error) => {
@@ -148,8 +153,9 @@ export const EnterContent: FC = ({
(
}
diff --git a/src/components/Modals/authModalContent/RegisterContent.tsx b/src/components/Modals/authModalContent/RegisterContent.tsx
index 64c69cf..ed2231e 100644
--- a/src/components/Modals/authModalContent/RegisterContent.tsx
+++ b/src/components/Modals/authModalContent/RegisterContent.tsx
@@ -2,6 +2,7 @@ import React, { FC, useState } from 'react';
import { Form, FormInstance, notification } from 'antd';
import Image from 'next/image';
import { useGoogleLogin } from '@react-oauth/google';
+import AppleLogin from 'react-apple-login';
import { AUTH_USER } from '../../../constants/common';
import { getRegister, getRegisterByGoogle } from '../../../actions/auth';
import { getUserData, setPersonData } from '../../../actions/profile';
@@ -10,7 +11,6 @@ import { CustomInputPassword } from '../../view/CustomInputPassword';
import { FilledButton } from '../../view/FilledButton';
import { OutlinedButton } from '../../view/OutlinedButton';
import { i18nText } from '../../../i18nKeys';
-import AppleLogin from 'react-apple-login';
type RegisterProps = {
form: FormInstance;
@@ -169,8 +169,9 @@ export const RegisterContent: FC = ({
(
}
diff --git a/src/components/Page/Header/HeaderAuthLinks.tsx b/src/components/Page/Header/HeaderAuthLinks.tsx
index 269ce98..ffa7bf0 100644
--- a/src/components/Page/Header/HeaderAuthLinks.tsx
+++ b/src/components/Page/Header/HeaderAuthLinks.tsx
@@ -1,6 +1,6 @@
'use client'
-import React, { FC, useState, useEffect } from 'react';
+import React, { useState, useEffect } from 'react';
import { Button } from 'antd';
import { useSelectedLayoutSegment } from 'next/navigation';
import { Link } from '../../../navigation';