-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Refactor/#180: API 연동 작업
- Loading branch information
Showing
21 changed files
with
943 additions
and
255 deletions.
There are no files selected for viewing
62 changes: 7 additions & 55 deletions
62
src/pages/Notification/hooks/queries/usePollingNotification.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 |
---|---|---|
@@ -1,65 +1,17 @@ | ||
import { useSuspenseQuery } from '@tanstack/react-query'; | ||
import { http } from '../../../../api/http'; | ||
import { NotificationDTO } from '../../types'; | ||
|
||
export const NOTIFICATION_LIST_QUERY_KEY = 'NOTIFICATION_LIST_QUERY_KEY'; | ||
|
||
const _getNotificationList = () => http.get<NotificationDTO[]>('/somewhere'); | ||
const _getNotificationList = () => http.get<NotificationDTO[]>('/notifications'); | ||
|
||
export const usePollingNotification = () => { | ||
// const { data: notifications, ...rest } = useSuspenseQuery({ | ||
// queryKey: [NOTIFICATION_LIST_QUERY_KEY], | ||
// queryFn: () => _getNotificationList(), | ||
// refetchInterval: 3600, | ||
// }); | ||
|
||
const notifications = tempData; | ||
const rest = {}; | ||
const { data: notifications, ...rest } = useSuspenseQuery({ | ||
queryKey: [NOTIFICATION_LIST_QUERY_KEY], | ||
queryFn: () => _getNotificationList(), | ||
refetchInterval: 60000, | ||
}); | ||
|
||
return { notifications, ...rest }; | ||
}; | ||
|
||
const tempData = [ | ||
{ | ||
id: 1, | ||
feedId: 39, | ||
title: '글 제목입니다. 두 줄짜리 제목으로 확장합니다. 두 줄짜리 제목으로 확장합니다.', | ||
createAt: '2022.11.18', | ||
badges: [ | ||
'테스트-테스트', | ||
'매우긴놈매우긴놈매우긴놈', | ||
'매우', | ||
'테스트-테스트', | ||
'테스트-테스트', | ||
'테스트-테스트', | ||
'테스트-테스트', | ||
], | ||
}, | ||
{ | ||
id: 2, | ||
feedId: 39, | ||
title: '글 제목입니다. 줄짜리 제목으로 확장합니다.', | ||
createAt: '2022.11.18', | ||
badges: ['테스트-테스트', '테스트', '테스트', '테스트', '테스트테스트'], | ||
}, | ||
{ | ||
id: 3, | ||
feedId: 39, | ||
title: '글 제목입니다. 두 줄짜리 제목으로 확장합니다. 두 줄짜리 제목으로 확장합니다.', | ||
createAt: '2022.11.18', | ||
badges: ['첫번쨰가매우길다면?첫번쨰가매우길다면길다면?', '테스트'], | ||
}, | ||
{ | ||
id: 4, | ||
feedId: 39, | ||
title: '글 제목입니다. 두 줄짜리 제목으로 확장합니다. 두 줄짜리 제목으로 확장합니다.', | ||
createAt: '2022.11.18', | ||
badges: ['매우긴놈매우긴놈매우긴놈매우긴놈', '테스트-테스트', '테스트-테스트', '테스트-테스트'], | ||
}, | ||
{ | ||
id: 5, | ||
feedId: 39, | ||
title: '글 제목입니다. 두 줄짜리 제목으로 확장합니다. 두 줄짜리 제목으로 확장합니다.', | ||
createAt: '2022.11.18', | ||
badges: ['테스트', '테스트', '테스트', '테스트', '테스트', 's테스트', 's테스트', 's테스트'], | ||
}, | ||
]; |
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.