회의 전까지 해야할 일(1월 3일 오후2시)
Modify
게시글 수정 (은영)
좋아요 기능 (은영)
홈피드에서 게시글 신고 시 user_profile/undefined로 이동 (은영)
value 에러 (은영)
앨범형 이미지 세로 길게 보임 (혜빈) 앨범 리스트 상세페이지 이동 추가?
팔로잉 페이지에서 페이지를 찾을 수 없습니다 유저프로필 어카운트 주석? 없는 유저? (풍윤)
이메일 회원가입 → 회원가입 하면 프로필 설정이 나오는데 새로고침 하면 이메일 회원가입으로 다시 로드되는 문제 (풍윤)
input custom require (풍윤)
실시간 폼 유효성 검증 (풍윤)
폰트 해결 (여러 이미지 캐러셀 엑박)
데이터 없을 때 ⇒ 아직 작업 중 (미경)
상품 미리보기 매~우 느림 뭔가 잘못된듯 (미경)
캐러셀 버튼 수정, 아이콘으로 변경하기 (후순위 - 미경)
폰트 문제, 로딩페이지 이미지 깨짐 (핸드폰 사이즈에선 괜찮아서 시간되는데로 바로 고칠 예정 후순위), 모달에서 계정을 바로 못읽어와서 작동이 안되는 이슈~~~
README.md
기획 작성 : 혜빈
역할 담당 각자 써오기
풍이가 팔로우 하는 사람들 글, 댓글 정리 (미경)
gif 각자 따오기 (아이폰 12 pro 버전)
https://www.screentogif.com/ (맥에 없습니다)
https://giphy.com/apps/giphycapture (아래 설정으로 해주세요)
1. {: width="100" height="100"}
맥 미리보기 → 도구 → 크기조절 → 너비 360px
발표 준비 회의 (3시)
리드미 live share로 gif, 역할 담당 추가
PPT 초안
netlify
vercel
배포방법
수동배포
지속적인 배포(깃/깃헙사용) 셋업만 해놓으면 새로운 변경사항 있으면 계속 배포됨
넷틀리파이 깃헙 로그인
대시보드 ⇒ add new site 클릭 ⇒ import exsting project
공통
API 분리
common 재사용 컴포넌트 분리
Base Url 이미지 파일 주소 `https://mandarin.api.weniv.co.kr/${res.data.filename}`
프로필 전역
폴더트리
📦public
├─ 📃index.html
📦src
├─ 📃API.jsx
├─ 📃App.jsx
├─ 📃index.js
├─ 📂_state
│ └─ 📃auth.js
├─ 📂assets
│ └─ 📁img
├─ 📂components
│ ├─ 📁AlbumIcon
│ ├─ 📁Blank
│ ├─ 📁Button
│ │ ├─ 📃Button.jsx
│ │ └─ 📁UploadFileBtn
│ ├─ 📁Chat
│ │ ├─ 📁ChatListItem
│ │ └─ 📁ChatRoom
│ │ ├─ 📁ChatComment
│ │ └─ 📁ChatItem
│ ├─ 📁ChatIcon
│ ├─ 📁Comment
│ ├─ 📁CommentInput
│ ├─ 📁CommentsIcon
│ ├─ 📁Follow
│ ├─ 📁FollowUserList
│ ├─ 📁FollowersCount
│ ├─ 📁Header
│ ├─ 📁HomeRender
│ ├─ 📁Input
│ ├─ 📁LikeBtn
│ ├─ 📁ListIcon
│ ├─ 📁ListOrAlbum
│ ├─ 📁Modal
│ │ ├─ 📁LoginModalAlert
│ │ ├─ 📁PostModalAlert
│ │ └─ 📁ProductModalAlert
│ ├─ 📁Nav
│ ├─ 📁PostAlbum
│ ├─ 📁PostAlbumList
│ ├─ 📁PostCard
│ ├─ 📁PostCardList
│ ├─ 📁PostTxt
│ ├─ 📁Product
│ ├─ 📁ProductList
│ ├─ 📁Profile
│ ├─ 📁ProfileAccount
│ ├─ 📁ProfileImg
│ ├─ 📁ProfileImgAccount
│ ├─ 📁ShareIcon
│ └─ 📁UploadProfileImg
├─ 📂pages
│ ├─ 📁Login
│ │ ├─ 📃Login.jsx
│ │ ├─ 📁LoginEmail
│ ├─ 📁Main
│ │ ├─ 📁Chat
│ │ │ ├─ 📃Chat.jsx
│ │ │ └─ 📁ChatRoom
│ │ ├─ 📁Home
│ │ │ ├─ 📃Home.jsx
│ │ │ └─ 📁Search
│ │ ├─📁 Post
│ │ │ ├─ 📃Post.jsx
│ │ │ ├─ 📁PostEdit
│ │ │ └─ 📁PostUpload
│ │ └─ 📁Profile
│ │ ├─ 📁MyProfile
│ │ │ ├─ 📁FollowList
│ │ │ ├─ 📃MyProfile.jsx
│ │ │ ├─ 📁Product
│ │ │ │ ├─ 📁ProductEdit
│ │ │ │ └─ 📁ProductUpload
│ │ │ └─ 📁ProfileEdit
│ │ └─ 📁UserProfile
│ │ ├─📁 FollowList
│ │ └─ 📃UserProfile.jsx
│ ├─ 📁NotFound
│ ├─ 📃Root.jsx
│ ├─ 📁Signup
│ │ ├─ 📃Register.jsx
│ │ ├─ 📃Signup.jsx
│ │ ├─ 📃SignupStyle.jsx
│ │ ├─ 📃SignupUserProfile.jsx
│ │ └─ 📃SignupUserProfileStyle.jsx
│ └─ 📁Splash
└─ 📂styles
└─ 📃GlobalStyles.jsx
Plain Text
복사