-
Notifications
You must be signed in to change notification settings - Fork 0
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: 리뷰 작성 폼 개편 #77
Merged
Merged
feat: 리뷰 작성 폼 개편 #77
Changes from 17 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
e3ce366
feat: 사진 아이콘 추가
Leejin-Yang 3ed0173
feat: 이미지 업로더 개편
Leejin-Yang d23ce06
feat: 별점 작성 개편
Leejin-Yang 5d15c1a
feat: 리뷰 설명 개편
Leejin-Yang b52185d
refactor: 안 쓰는 스타일 파일 삭제
Leejin-Yang 4de7de7
feat: 재구매 체크박스 개편
Leejin-Yang ab164c6
feat: 재구매 타이틀 추가
Leejin-Yang c07090d
feat: 태그 선택 바텀시트 열기 버튼 추가
Leejin-Yang 1bdbe2b
feat: 태그 선택 구현
Leejin-Yang 1406cd2
feat: 태그 최대 3개 선택 구현
Leejin-Yang 799d27c
feat: 체크 되어 있는 태그 스타일
Leejin-Yang 965ec0e
feat: 선택 태그 폼에서 렌더링
Leejin-Yang 1bd6ac9
feat: 폼에서 태그 삭제
Leejin-Yang 13d95f6
refactor: 안 쓰는 컴포넌트 삭제
Leejin-Yang 33a8460
feat: 태그 선택 바텀시트 컴포넌트 추가
Leejin-Yang f82ce90
feat: 리뷰 등록 페이지 추가
Leejin-Yang f69dd1f
feat: 태그 바텀시트 prop 추가
Leejin-Yang 66bdc9c
Merge branch 'feat/v2' into feat/issue-76
Leejin-Yang cb12015
refactor: 리뷰 태그 바텀시트 index export
Leejin-Yang 6b75925
refactor: Text 컴포넌트 사용
Leejin-Yang 52b8820
style: 태그 조건 이름 수정
Leejin-Yang b5885e3
feat: 태그 선택 최소 조건 추가
Leejin-Yang 504fe9f
feat: 태그 선택 바텀시트 높이 추가
Leejin-Yang 635a3a5
refactor: Text 컴포넌트 사용
Leejin-Yang c6e707f
feat: 이미지 업로더 스타일 개편
Leejin-Yang 1415476
feat: 리뷰 설명 에러 처리
Leejin-Yang bb068d2
feat: 설명 에러 메시지 추가 구현
Leejin-Yang 37176a1
feat: 리뷰 태그 바텀시트 스토리 추가
Leejin-Yang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { vars } from '@/styles/theme.css'; | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const uploadLabel = style({ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
width: 80, | ||
height: 80, | ||
backgroundColor: vars.colors.background.category, | ||
borderRadius: 6, | ||
cursor: 'pointer', | ||
}); | ||
|
||
export const uploadInput = style({ | ||
display: 'none', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { vars } from '@/styles/theme.css'; | ||
import { style, styleVariants } from '@vanilla-extract/css'; | ||
|
||
export const container = style({ | ||
display: 'inline-flex', | ||
alignItems: 'center', | ||
gap: 8, | ||
cursor: 'pointer', | ||
}); | ||
|
||
export const checkbox = style({ | ||
display: 'none', | ||
}); | ||
|
||
const checkBase = style({ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
width: 17, | ||
height: 17, | ||
borderRadius: '50%', | ||
}); | ||
|
||
export const check = styleVariants({ | ||
default: [checkBase, { backgroundColor: vars.colors.icon.light }], | ||
checked: [checkBase, { backgroundColor: vars.colors.black }], | ||
}); | ||
|
||
export const label = style({ | ||
fontWeight: 600, | ||
}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Text 컴포넌트를 쓸 수 있을 것 같아요 참고로 크기도 body입니다! |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요거 피그마에 올라왔네용