-
Notifications
You must be signed in to change notification settings - Fork 2
메인 반영 #79
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
Merged
Merged
메인 반영 #79
Conversation
This file contains hidden or 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
- 토스트 컴포넌트(Toast.tsx) 생성, 스타일링(Toast.style.ts), 기능(useToast.ts) 구현 - 토스트 컴포넌트의 상태를 전역으로 관리하는 useToastStore.ts 추가
- 기존 duration이 너무 길어 UX에 부정적인 영향을 주어 조정함
- 이미 존재하는 카테고리 이름으로 요청 시 400에러 반환 - 요청한 부모 카테고리가 존재하지않으면 400 에러 반환 Refs: #8
- 변경할 카테고리 이름이 이미 존재하면 400에러 반환 - 변경할 부모 카테고리가 존재하지않으면 400에러 반환 Refs: #8
Toast 컴포넌트 및 상태 관리 구현 (#4)
- 글 목록 페이지를 왼쪽, 태그 래퍼를 오른쪽으로 배치하도록 레이아웃 수정 - Refs: #69
- 응답 객체에 data 속성이 없는 경우에도 정상적으로 처리되도록 수정 - Refs: #69
- fetchPostList 호출 시 filterUndefined를 사용해 undefined 값 필터링 - useTag의 파라미터로 페이지 크기(pageSize)를 추가 - Refs: #69
글 목록 페이지 로드 시 발생하는 버그 수정 (#69)
글 상세 조회 페이지 구현 (#6)
- 애플리케이션 실행 시 data.sql 실행을 통해 categoryId 가 0이고 이름이 "카테고리 없음"인 카테고리를 db에 저장 Refs: #8
- "vite-plugin-svgr" 버전 ^4.3.0 설치 - Vite 설정에 'svgr' 플러그인 추가
- IconButton 컴포넌트 생성 - IconButtonContainer와 Tooltip 스타일 정의
- 카테고리 이동을 위한 드래그 앤 드롭 기능 구현 - CategoryNode 컴포넌트에 수정, 삭제, 추가 아이콘 버튼 및 tooltip 추가 - Refs: #8
- 카테고리 관리 UI 및 기능 구현 - 카테고리 추가, 이동 기능 추가 - Refs: #8
게시글 상세 조회 api 연동(#6)
카테고리 관련 기능 구현 (#8)
페이징 버그 수정(#69)
카테고리 관리 컴포넌트 구현 (#8)
카테고리 없은 게시글 조회(#8)
데이터베이스 초기화시 사용되는 카테고리 테이블명 수정 (#8)
feat: 브랜치 구별해서 배포 되도록 수정
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🔍 개요
메인 반영하겠습니다.