Skip to content

Commit

Permalink
fix(demo): change kakao login method (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
stakbucks authored Nov 10, 2024
1 parent bd649af commit 93a7e15
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
3 changes: 3 additions & 0 deletions apps/demo/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ module.exports = {
parserOptions: {
project: true,
},
globals: {
Kakao: 'readonly',
},
};
7 changes: 7 additions & 0 deletions apps/demo/global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
declare const Kakao: {
isInitialized: () => boolean;
init: (key: string) => void;
Auth: {
authorize: ({ redirectUri: string }) => void;
};
};
19 changes: 16 additions & 3 deletions apps/demo/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,25 @@ import LoginBackground from '@/assets/images/login-background.webp';
import { KakaoButton } from '@/components/kakao-button';
import { Asset, Paragraph, spacings } from '@bottlesteam/ui';
import Image from 'next/image';
import { useEffect } from 'react';

const CLIENT_ID = process.env.NEXT_PUBLIC_KAKAO_CLIENT_ID;
const JAVASCRIPT_KEY = `${process.env.NEXT_PUBLIC_KAKAO_JAVASCRIPT_KEY}`;
const REDIRECT_URI = `${process.env.NEXT_PUBLIC_MODE === 'DEVELOPMENT' ? 'http://localhost:3000' : 'https://demo.bottles.asia'}/kakao`;
const kakaoLoginUrl = `https://kauth.kakao.com/oauth/authorize?client_id=${CLIENT_ID}&redirect_uri=${REDIRECT_URI}&response_type=code`;

export default function Home() {
useEffect(() => {
if (!Kakao?.isInitialized()) {
Kakao.init(JAVASCRIPT_KEY); //SDK 초기화 함수
}
}, []);

return (
<div style={{ position: 'relative', width: '100%', height: '100%', padding: `0 ${spacings.md}` }}>
<script
src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.3/kakao.min.js"
integrity="sha384-kLbo2SvoNtOFiniJ1EQ9o2iDA8i3xp+O6Cns+L5cd4RsOJfl+43z5pvieT2ayq3C"
crossOrigin="anonymous"
/>
<Image src={LoginBackground} alt="login background" fill style={{ objectFit: 'cover' }} />
<div
style={{
Expand All @@ -34,7 +45,9 @@ export default function Home() {
</div>
<KakaoButton
onClick={() => {
window.location.href = kakaoLoginUrl;
Kakao.Auth.authorize({
redirectUri: REDIRECT_URI,
});
}}
/>
</div>
Expand Down
3 changes: 2 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"NEXT_PUBLIC_ADMIN_ID_1",
"NEXT_PUBLIC_ADMIN_ID_2",
"NEXT_PUBLIC_ADMIN_PASSWORD",
"NEXT_PUBLIC_KAKAO_CLIENT_ID"
"NEXT_PUBLIC_KAKAO_CLIENT_ID",
"NEXT_PUBLIC_KAKAO_JAVASCRIPT_KEY"
],
"tasks": {
"build": {
Expand Down

0 comments on commit 93a7e15

Please sign in to comment.