-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 낙관적 업데이트 기능 구현, Mutation API 에러 처리 구현 (#123)
* 🎉 제안 카드 낙관적 업데이트 기능 구현 * 🐛 MySuggestionCard 이벤트 버블링 버그 해결 * 🎉 제안 수락/결정 API 에러처리 기능 추가 * 🎉 모두 읽음 처리 API 에러 처리 구현 * 🎉 모두 읽음 처리 버튼 데이터 없는 경우, 지난 소식 탭일 경우 처리 * 🎉 알림 카드 , 읽은 카드의 경우 액티브 표시 삭제 * 🎉 리스트 페이지 staleTime 적용 * ✨ 내 제안 업데이트 뮤테이션 쿼리키 누락 해결 * 🎉 Mutation Error Toast destructive 타입 적용 * 🎉 내 제안 카드 클릭 범위 축소 적용 * ✨ 컴포넌트 추상화 계층 정리
- Loading branch information
1 parent
9943ac7
commit f6b02c1
Showing
25 changed files
with
266 additions
and
198 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
src/app/(root)/(routes)/cards/components/card-filter-section/CardFilterSection.tsx
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,10 @@ | ||
import FilterFormDialog from '../filter-form-dialog' | ||
import SearchInput from '../search-input' | ||
|
||
const CardFilterSection = () => ( | ||
<div className="h-9 flex justify-between items-center mb-6"> | ||
<SearchInput /> | ||
<FilterFormDialog /> | ||
</div> | ||
) | ||
export default CardFilterSection |
3 changes: 3 additions & 0 deletions
3
src/app/(root)/(routes)/cards/components/card-filter-section/index.tsx
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,3 @@ | ||
import CardFilterSection from './CardFilterSection' | ||
|
||
export default CardFilterSection |
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
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
15 changes: 14 additions & 1 deletion
15
...ot)/(routes)/notifications/components/notification-read-button/NotificationReadButton.tsx
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
Oops, something went wrong.