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

Feat: 체험 등록 form 구현 #29

Merged
merged 8 commits into from
Jul 15, 2024
Merged

Feat: 체험 등록 form 구현 #29

merged 8 commits into from
Jul 15, 2024

Conversation

eunji-0623
Copy link
Owner

@eunji-0623 eunji-0623 commented Jul 13, 2024

🔎 작업 내용

  • 체험 등록 form 구현
  • 체험 등록 페이지 반응형 디자인 적용

⚠️ 이슈

  • 카테고리 선택 시 "문화 예술" 항목을 선택하면 오류 발생 -> 해결 완료

📢 전달사항

  • 아직 미구현 된 부분 목록
    1. 모바일 사이즈의 사이드바
    2. 제출 시 제출 완료 모달 창 띄우기
    3. 이미지는 4장까지 첨부 가능하다는 메세지 추가 필요
    4. 날짜나 시간 잘못 선택 / 중복 선택 시 메세지 추가 필요

@eunji-0623 eunji-0623 requested review from MEGUMMY1 and Byukchong July 13, 2024 09:26
@@ -89,7 +92,7 @@ function KategorieDropdown() {
)}
</div>
{isOpen ? (
Copy link
Collaborator

Choose a reason for hiding this comment

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

이 부분 이렇게 조건 넣는 게 좋을 거 같아요!!

{isOpen && (
  <ul className="w-[800px] h-[260px] rounded-md bg-white absolute animate-slideDown bottom-[-266px] flex flex-col items-center justify-center shadow-kategorieDropdown t:w-full m:w-full">
    {Object.values(Kategories).map((category) => (
      <Kategorie key={category} name={category} setIsOpen={setIsOpen} />
    ))}
  </ul>
)}

Copy link
Collaborator

Choose a reason for hiding this comment

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

const Kategories: { [key: string]: string } = {
  '문화 예술': '문화 예술',
  '식음료': '식음료',
  '스포츠': '스포츠',
  '투어': '투어',
  '관광': '관광',
  '웰빙': '웰빙',
};

혹시 이렇게 바꿔보시는건 어떨까요?.. ㅜㅜ

Copy link
Collaborator

@Byukchong Byukchong left a comment

Choose a reason for hiding this comment

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

고생하셨습니다..
카테고리 쪽은 더 봐야겠네요

@eunji-0623 eunji-0623 merged commit 6f24b6b into master Jul 15, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants