Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK-39] style: 전역적으로 사용될 폰트, 색상 토큰 적용 / Navbar, Footer 생성 및 반응형 적용 #7

Merged
merged 28 commits into from
Dec 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fc543c2
setting: Storybook 설치 및 세팅
dahyeo-n Dec 10, 2024
4f5cb54
feat: 폰트, 행간/자간을 전역적으로 적용
dahyeo-n Dec 11, 2024
a15215f
style: 전역적으로 사용될 색상 토큰 적용
dahyeo-n Dec 11, 2024
09ba9da
style: 일관된 아이콘 디자인 시스템 스타일 추가
dahyeo-n Dec 11, 2024
63586ec
chore: 로고와 심볼 파일 추가
dahyeo-n Dec 12, 2024
f92dde4
style: Navbar, Footer 생성
dahyeo-n Dec 13, 2024
b17ada3
style: 스크롤을 내려도 Navbar가 보이도록 화면 상단에 고정
dahyeo-n Dec 13, 2024
66bdc77
style: Navbar 반응형 적용
dahyeo-n Dec 13, 2024
effe5f4
style: Footer 반응형 적용
dahyeo-n Dec 13, 2024
5bd70b9
chore: Prettier 설정 업데이트 (JSX 속성에 작은따옴표 사용)
dahyeo-n Dec 13, 2024
c77bf1f
chore: 모든 파일에 Prettier 규칙 적용 (작은 따옴표로 수정)
dahyeo-n Dec 14, 2024
f62cb4a
chore: background 색상과 title 색상을 따로 구분
dahyeo-n Dec 15, 2024
7e8724c
style: title-l 스타일 추가
dahyeo-n Dec 15, 2024
d778416
move: AppShell 관련된 파일의 폴더 구조 변경
dahyeo-n Dec 15, 2024
c13a30e
chore: 메인 페이지에서 디자인 시스템 관련 테스트 한 코드 삭제
dahyeo-n Dec 15, 2024
eb317ff
setting: NextUI 설치 및 세팅
dahyeo-n Dec 16, 2024
b9d61d7
style: 다크모드 색상 커스텀 및 적용
dahyeo-n Dec 16, 2024
2bb2103
style: Navbar, Footer 배경 색상 변경
dahyeo-n Dec 16, 2024
7f1cb62
chore: rafce 스니펫 형태로 변경
dahyeo-n Dec 17, 2024
5e2cfef
style: Input 컴포넌트에 사용할 custom-label 스타일 추가
dahyeo-n Dec 17, 2024
1308ad7
style: EmailInput CSS 추가
dahyeo-n Dec 17, 2024
176fc6f
feat: EmailInput에 유효성 검사 로직 추가
dahyeo-n Dec 17, 2024
e2bbcef
feat: mode가 sign-up이면 이메일 중복 여부 검사, sign-in이면 가입 여부 확인
dahyeo-n Dec 17, 2024
72ca9a6
feat: EmailInput 입력 필드 내용을 전부 지울 수 있는 onClear 기능 추가
dahyeo-n Dec 17, 2024
11b161b
style: Navbar, Footer에 적용된 폰트와 아이콘 스타일 수정
dahyeo-n Dec 17, 2024
ed6550b
feat: Icon이 onClick 이벤트도 prop으로 받을 수 있도록 수정
dahyeo-n Dec 17, 2024
4f5c277
chore: <메인 페이지> 컴포넌트를 rafce 스니펫 형태로 변경
dahyeo-n Dec 17, 2024
8448053
Merge branch 'dev' into feature/design-system
dahyeo-n Dec 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 22 additions & 11 deletions src/components/Input/EmailInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import React, { useEffect, useState } from 'react';

import Icon from '../Icon/Icon';

const EmailInput = () => {
export interface EmailInputProps {
mode: 'sign-up' | 'sign-in';
}

const EmailInput = ({ mode }: EmailInputProps) => {
const [value, setValue] = useState('');
const [message, setMessage] = useState('');
const [messageColor, setMessageColor] = useState('');
Expand All @@ -16,15 +20,22 @@ const EmailInput = () => {

const checkEmailStatus = (email: string) => {
// TODO: 여기에 이메일 상태를 확인하는 API 호출 로직 추가
if (email === '[email protected]') {
setMessage('이미 가입된 계정입니다.');
setMessageColor('text-system-error');
} else if (email === '[email protected]') {
setMessage('사용 가능한 이메일입니다.');
setMessageColor('text-system-success');
} else {
setMessage('가입되어 있지 않은 이메일입니다.');
setMessageColor('text-system-error');

if (mode === 'sign-up') {
if (email === '[email protected]') {
setMessage('이미 가입된 계정입니다.');
setMessageColor('text-system-error');
} else {
setMessage('사용 가능한 이메일입니다.');
setMessageColor('text-system-success');
}
} else if (mode === 'sign-in') {
if (email === '[email protected]') {
setMessage('');
} else {
setMessage('가입되어 있지 않은 이메일입니다.');
setMessageColor('text-system-error');
}
}
};

Expand All @@ -43,7 +54,7 @@ const EmailInput = () => {
} else {
setMessage('');
}
}, [value, isInvalid]);
}, [value, isInvalid, mode]);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mode가 의존성 배열에 포함되는 이유가 있을까요? 현재 컴포넌트 내에서 별도 조작이 있지않아보이고, props기 때문에 변할 염려가 없어 보입니다..!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

앗 ㅠ 네 잘못 넣었네요. 빼도록 할게요!


return (
<>
Expand Down