-
Notifications
You must be signed in to change notification settings - Fork 4
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
safari에서 작동되지 않거나 의도한대로 보이지 않는 부분 수정 및 기타 이슈 #826
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,131 +1,127 @@ | ||
// import React, { ReactNode } from 'react'; | ||
import React, { ReactNode } from 'react'; | ||
|
||
// import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; | ||
// import { renderHook, waitFor } from '@testing-library/react'; | ||
// import { act } from 'react-dom/test-utils'; | ||
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; | ||
import { renderHook, waitFor } from '@testing-library/react'; | ||
import { act } from 'react-dom/test-utils'; | ||
|
||
// import { usePagination } from '@hooks'; | ||
import { usePagination } from '@hooks'; | ||
|
||
// const queryClient = new QueryClient(); | ||
const queryClient = new QueryClient(); | ||
|
||
// const wrapper = ({ children }: { children: ReactNode }) => ( | ||
// <QueryClientProvider client={queryClient}>{children}</QueryClientProvider> | ||
// ); | ||
const wrapper = ({ children }: { children: ReactNode }) => ( | ||
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider> | ||
); | ||
|
||
describe('페이지 버튼을 눌러 공지 사항 리스트를 불러오는 지 확인한다.', () => { | ||
test('임시 테스트', () => { | ||
const tmp = 1; | ||
expect(tmp).toBe(1); | ||
test('초기 설정으로는 0 페이지를 불러온다.', async () => { | ||
const { result } = renderHook(() => usePagination(), { | ||
wrapper, | ||
}); | ||
|
||
waitFor(() => { | ||
expect(result.current.page).toBe(0); | ||
}); | ||
}); | ||
// test('초기 설정으로는 0 페이지를 불러온다.', async () => { | ||
// const { result } = renderHook(() => usePagination(), { | ||
// wrapper, | ||
// }); | ||
|
||
// waitFor(() => { | ||
// expect(result.current.page).toBe(0); | ||
// }); | ||
// }); | ||
|
||
// test('초기 페이지를 인자를 넣어 설정할 수 있다.', async () => { | ||
// const { result } = renderHook(() => usePagination(5), { | ||
// wrapper, | ||
// }); | ||
|
||
// waitFor(() => { | ||
// expect(result.current.page).toBe(5); | ||
// }); | ||
// }); | ||
|
||
// test('현재 페이지를 3으로 설정했을 때 3페이지를 데이터만 불러온다. 클라이언트 측에서 3으로 설정했어도 서버로는 2를 보내야 하기 때문에 현재 페이지는 2로 설정된다.', async () => { | ||
// const { result } = renderHook(() => usePagination(), { | ||
// wrapper, | ||
// }); | ||
|
||
// act(() => { | ||
// result.current.setPage(3); | ||
// }); | ||
|
||
// waitFor(() => { | ||
// expect(result.current.page).toBe(2); | ||
// }); | ||
// }); | ||
|
||
// test.each([ | ||
// [0, 5, 5], | ||
// [0, 2, 2], | ||
// [0, 8, 8], | ||
// [16, 8, 24], | ||
// ])( | ||
// '현재 페이지가 %s이고, 사이즈가 %s라면 다음 페이지를 불러올 때 현재 페이지의 시작 페이지 번호 + %s 을 하여 불러온다.', | ||
// (currentPage, size, expected) => { | ||
// const { result } = renderHook(() => usePagination(currentPage, size), { | ||
// wrapper, | ||
// }); | ||
|
||
// const totalPage = 10; | ||
|
||
// waitFor(() => { | ||
// result.current.fetchNextPage(totalPage); | ||
|
||
// expect(result.current.page).toBe(expected); | ||
// }); | ||
// } | ||
// ); | ||
|
||
// test.each([ | ||
// [0, 0], | ||
// [7, 0], | ||
// [7, 5], | ||
// [12, 10], | ||
// [15, 15], | ||
// ])( | ||
// '현재 페이지가 %s이고, 이전의 페이지를 불러올 때 현재 시작 페이지 - 5을 한 값이 %s이다.', | ||
// (currentPage, expected) => { | ||
// const { result } = renderHook(() => usePagination(currentPage), { | ||
// wrapper, | ||
// }); | ||
|
||
// waitFor(() => { | ||
// result.current.fetchPrevPage(); | ||
|
||
// expect(result.current.page).toBe(expected); | ||
// }); | ||
// } | ||
// ); | ||
|
||
// test.each([ | ||
// [0, 6, true], | ||
// [5, 15, true], | ||
// [5, 10, false], | ||
// [5, 5, false], | ||
// [0, 5, false], | ||
// ])( | ||
// '현재 페이지 %s이고, 전체 페이지가 %s일 때 결과는 %s이다. 전체 페이지가 현재 페이지 +5를 한 값보다 크다면 true, 작다면 false를 반환한다.', | ||
// (currentPage, totalPage, expected) => { | ||
// const { result } = renderHook(() => usePagination(currentPage), { | ||
// wrapper, | ||
// }); | ||
|
||
// expect(result.current.checkNextPage(totalPage)).toBe(expected); | ||
// } | ||
// ); | ||
|
||
// test.each([ | ||
// [6, 0, [1, 2, 3, 4, 5]], | ||
// [15, 14, [11, 12, 13, 14, 15]], | ||
// [4, 3, [1, 2, 3, 4]], | ||
// [23, 20, [21, 22, 23]], | ||
// [2, 0, [1, 2]], | ||
// [10, 3, [1, 2, 3, 4, 5]], | ||
// ])( | ||
// '전체 페이지가 %s이고, 현재 페이지가 %s라면 페이지 리스트는 %s를 반환한다. 현재 페이지는 0,1,2 와 같이 0으로 시작한다.', | ||
// (totalPage, currentPage, expected) => { | ||
// const { result } = renderHook(() => usePagination(currentPage), { | ||
// wrapper, | ||
// }); | ||
|
||
// expect(result.current.getPageNumberList(totalPage)).toEqual(expected); | ||
// } | ||
// ); | ||
|
||
test('초기 페이지를 인자를 넣어 설정할 수 있다.', async () => { | ||
const { result } = renderHook(() => usePagination(5), { | ||
wrapper, | ||
}); | ||
|
||
waitFor(() => { | ||
expect(result.current.page).toBe(5); | ||
}); | ||
}); | ||
|
||
test('현재 페이지를 3으로 설정했을 때 3페이지를 데이터만 불러온다. 클라이언트 측에서 3으로 설정했어도 서버로는 2를 보내야 하기 때문에 현재 페이지는 2로 설정된다.', async () => { | ||
const { result } = renderHook(() => usePagination(), { | ||
wrapper, | ||
}); | ||
|
||
act(() => { | ||
result.current.setPage(3); | ||
}); | ||
|
||
waitFor(() => { | ||
expect(result.current.page).toBe(2); | ||
}); | ||
}); | ||
|
||
test.each([ | ||
[0, 5, 5], | ||
[0, 2, 2], | ||
[0, 8, 8], | ||
[16, 8, 24], | ||
])( | ||
'현재 페이지가 %s이고, 사이즈가 %s라면 다음 페이지를 불러올 때 현재 페이지의 시작 페이지 번호 + %s 을 하여 불러온다.', | ||
(currentPage, size, expected) => { | ||
const { result } = renderHook(() => usePagination(currentPage, size), { | ||
wrapper, | ||
}); | ||
|
||
const totalPage = 10; | ||
|
||
waitFor(() => { | ||
result.current.fetchNextPage(totalPage); | ||
|
||
expect(result.current.page).toBe(expected); | ||
}); | ||
} | ||
); | ||
|
||
test.each([ | ||
[0, 0], | ||
[7, 0], | ||
[7, 5], | ||
[12, 10], | ||
[15, 15], | ||
])( | ||
'현재 페이지가 %s이고, 이전의 페이지를 불러올 때 현재 시작 페이지 - 5을 한 값이 %s이다.', | ||
(currentPage, expected) => { | ||
const { result } = renderHook(() => usePagination(currentPage), { | ||
wrapper, | ||
}); | ||
|
||
waitFor(() => { | ||
result.current.fetchPrevPage(); | ||
|
||
expect(result.current.page).toBe(expected); | ||
}); | ||
} | ||
); | ||
|
||
test.each([ | ||
[0, 6, true], | ||
[5, 15, true], | ||
[5, 10, false], | ||
[5, 5, false], | ||
[0, 5, false], | ||
])( | ||
'현재 페이지 %s이고, 전체 페이지가 %s일 때 결과는 %s이다. 전체 페이지가 현재 페이지 +5를 한 값보다 크다면 true, 작다면 false를 반환한다.', | ||
(currentPage, totalPage, expected) => { | ||
const { result } = renderHook(() => usePagination(currentPage), { | ||
wrapper, | ||
}); | ||
|
||
expect(result.current.checkNextPage(totalPage)).toBe(expected); | ||
} | ||
); | ||
|
||
test.each([ | ||
[6, 0, [1, 2, 3, 4, 5]], | ||
[15, 14, [11, 12, 13, 14, 15]], | ||
[4, 3, [1, 2, 3, 4]], | ||
[23, 20, [21, 22, 23]], | ||
[2, 0, [1, 2]], | ||
[10, 3, [1, 2, 3, 4, 5]], | ||
])( | ||
'전체 페이지가 %s이고, 현재 페이지가 %s라면 페이지 리스트는 %s를 반환한다. 현재 페이지는 0,1,2 와 같이 0으로 시작한다.', | ||
(totalPage, currentPage, expected) => { | ||
const { result } = renderHook(() => usePagination(currentPage), { | ||
wrapper, | ||
}); | ||
|
||
expect(result.current.getPageNumberList(totalPage)).toEqual(expected); | ||
} | ||
); | ||
}); |
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 |
---|---|---|
|
@@ -14,6 +14,8 @@ export const Container = styled.div` | |
@media (min-width: ${theme.breakpoint.sm}) { | ||
font: var(--text-body); | ||
} | ||
|
||
z-index: 1; | ||
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. 👍👍👍 |
||
`; | ||
|
||
export const Wrapper = styled.div` | ||
|
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.
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.
복구👍