INtiful / SootheWithMe

같이 달램 | 휴식 소모임 서비스
https://soothe-with-me.vercel.app/
0 stars 0 forks source link

feat: 공동 컴포넌트 - 모달, 팝업 #43

Closed BeMatthewsong closed 2 months ago

BeMatthewsong commented 2 months ago

✏️ 작업 내용

전체적으로 UI 먼저 구현해놓았고 양이 많다 보니 심화적인 부분은 다음 PR에 올리도록 하겠습니다.

📷 스크린샷

https://github.com/user-attachments/assets/583a2c7d-558e-4130-9872-30172c213b20

✍️ 사용법

// 프로필 수정 모달
<ProfileEditModal />

// 리뷰 모달
<ReviewModal
  reviewComment={reviewComment}
  onChangeReviewComment={onChange}
/>

// 팝업 (4가지 버전 : 나가기 팝업, 나가기 팝업 (버튼 1개), 가입완료 팝업, 가입완료 팝업 (버튼 1개)
<Popup
  type='exit'
  hasCancelButton={true}
  onClickClosePopup={모달 닫기 함수}
/>

<Popup
  type='exit'
  hasCancelButton={false}
  onClickClosePopup={모달 닫기 함수}
/>

<Popup
  type='signUpCompleted'
  hasCancelButton={true}
  onClickClosePopup={모달 닫기 함수}
/>

<Popup
  type='signUpCompleted'
  hasCancelButton={false}
  onClickClosePopup={모달 닫기 함수}
/>

// 캘린더 모달
<CalendarModal />

// 모임만들기 모달
<MakeGatheringModal onCloseClick={모달 닫기 함수} />

🎸 기타

close #31

BeMatthewsong commented 2 months ago

커밋 컨벤션 죄송합니다... 한 줄 알았는데... 🥲