-
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] 결과 수정 페이지 api 연동, 기능 구현 #111
Merged
Merged
Changes from 28 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
338a9d2
fix(apps/web): useScroll 버그 수정
minseong0324 ae91471
feat(packages/ui): TextField.Submit disabled 상태 추가
minseong0324 1ca9aa8
feat(apps/web): 게시물 그룹별 게시물 목록 조회 API
minseong0324 aa71d6f
feat(apps/web): 게시물 프롬프트 기반 일괄 수정
minseong0324 91aa11a
feat(apps/web): 게시물 기타 정보 수정 API
minseong0324 f094f50
feat(apps/web): 게시물 개별 삭제 API
minseong0324 d0da5da
feat(apps/web): 게시물 추가 생성 API
minseong0324 65eb046
fix(apps/web): DND 버그 수정
minseong0324 1912ebf
feat(apps/web): 타입 추가
minseong0324 520e708
feat(apps/web): 결과 수정 페이지 기능 구현 완료
minseong0324 87fdcc9
remove(apps/web): 불필요 코드 삭제
minseong0324 fe5c934
refactor(apps/web): SkeletonItems 분리
minseong0324 a228b1b
feat(packages/ui): TextField 'white' variant 추가
minseong0324 4652ee8
feat(packages/ui): TextField 'white' variant 추가
minseong0324 440dba2
Merge branch 'develop' of https://github.com/YAPP-Github/25th-Web-Tea…
minseong0324 31b9b20
fix(apps/web): 자잘한 수정
minseong0324 f5b82d3
fix(apps/web): invalidate 제거. 데이터 패칭으로 인해 버벅임
minseong0324 bcf716a
feat(apps/web): optimistic update 추가
minseong0324 ccd253d
remove(apps/web): SkeletonItems 삭제
minseong0324 a845c00
feat(apps/web): optimistic update 추가
minseong0324 d0000be
fix(apps/web): optimistic update 제거
minseong0324 d23040a
chore(apps/web): 베럴 파일 추가 및 import, export 경로 수정
minseong0324 e7dba51
fix(apps/web): dnd, 정렬 버그 수정
minseong0324 803e6e6
feat(apps/web): 게시글 eof 값에 따라 생성 막기
minseong0324 7381cad
fix(apps/web): 로딩 상태
minseong0324 d888d60
feat(apps/web): 생성 중에 dnd 방지, 예약하러가기 방지
minseong0324 0038e9f
wip
minseong0324 92738a6
fix(apps/web): 상태 업데이트 해결 및 불필요 로직 제거, 리팩토링
minseong0324 40e5a11
fix(apps/web): 불필요 상태 반영 및 드롭 시 콜백 버그 수정
minseong0324 f6471b7
remove(apps/web): 불필요 코드 삭제
minseong0324 617c9f5
fix(apps/web): 불필요 스타일 제거
minseong0324 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
47 changes: 47 additions & 0 deletions
47
.../src/app/(prompt)/edit/[agentId]/[postGroupId]/_components/EditContent/EditContent.css.ts
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,47 @@ | ||
import { style } from '@vanilla-extract/css'; | ||
import { vars } from '@repo/theme'; | ||
|
||
export const contentStyle = style({ | ||
position: 'relative', | ||
width: '100%', | ||
padding: `${vars.space[80]} ${vars.space[24]}`, | ||
margin: '0 auto', | ||
overflowX: 'auto', | ||
}); | ||
|
||
export const submitButtonStyle = style({ | ||
fontSize: vars.typography.fontSize[18], | ||
}); | ||
|
||
export const accordionStyle = style({ | ||
display: 'flex', | ||
gap: vars.space[64], | ||
height: 'fit-content', | ||
minWidth: 'min-content', | ||
padding: `0 ${vars.space[32]}`, | ||
}); | ||
|
||
export const accordionTriggerStyle = style({ | ||
height: '8rem', | ||
padding: `${vars.space[12]} ${vars.space[16]}`, | ||
}); | ||
|
||
export const accordionItemStyle = style({ | ||
width: '51.2rem', | ||
flex: '0 0 auto', | ||
}); | ||
|
||
export const accordionContentStyle = style({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: vars.space[10], | ||
}); | ||
|
||
export const contentInnerWrapper = style({ | ||
height: '100%', | ||
}); | ||
|
||
export const buttonWrapperStyle = style({ | ||
display: 'flex', | ||
justifyContent: 'flex-end', | ||
}); |
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.
로딩 및 에러 상태 처리가 필요합니다.
데이터 페칭 시 로딩 상태와 에러 상태 처리가 누락되어 있습니다.
다음과 같이 개선하세요:
📝 Committable suggestion