Skip to content
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

Feature/#152 해커톤 페이지 구현 #158

Merged
merged 19 commits into from
Aug 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
492dea9
feat: 클라이언트 서비스의 페이지네이션 컴포넌트 구현
Aug 13, 2024
dcc23ec
feat: 학생의 마일스톤 획득내역, 실적 목록 페이지네이션 처리
Aug 13, 2024
7d85a78
feat: 나의 마일스톤 획득 내역에 페이지네이션 처리
Aug 13, 2024
8127d7a
fix: 학생의 실적 목록 조회 api의 totalElements가 제대로 불러와지지 않는 문제 해결
Aug 13, 2024
3c4c210
feat: Title 컴포넌트 구현
Aug 14, 2024
9b5c366
Merge branch 'Feature/#150-학생의_마일스톤_획득내역_실적목록_페이지네이션_처리' of https://g…
Aug 14, 2024
107df9d
feat: 해커톤 목록 페이지 구현
Aug 14, 2024
11608ee
refactor: 불필요한 styled comopnent 삭제
Aug 14, 2024
ee540ba
refactor: 파일 다운로드 기능 deprecated
Aug 14, 2024
89625bc
feat: 외부에서 파일 리소스에 직접 접근할 수 있도록 설정
Aug 14, 2024
1747e11
feat: 외부에서 파일 리소스에 직접 접근할 수 있도록 설정
Aug 14, 2024
2a3af0a
Merge branch 'Feature/#155-url로_파일_리소스에_접근할_수_있도록_설정' of https://gith…
Aug 14, 2024
8ebef38
fix: 파일 다운로드 테스트 삭제
Aug 15, 2024
b15dc48
Merge branch 'Feature/#155-url로_파일_리소스에_접근할_수_있도록_설정' of https://gith…
Aug 15, 2024
e54b253
feat: 해커톤 진행 상태를 나타내는 라벨 추가
Aug 25, 2024
c5c8cfd
designed: 해커톤 간 여백 크기 키우기
Aug 25, 2024
a6ee7c5
Merge branch 'main' into Feature/#152-해커톤_페이지_구현
amaran-th Aug 25, 2024
d339775
build: classnames 라이브러리 설치
Aug 25, 2024
a591bdf
Merge branch 'Feature/#152-해커톤_페이지_구현' of https://github.com/SW-CSS/s…
Aug 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into Feature/#152-해커톤_페이지_구현
amaran-th authored Aug 25, 2024
commit a6ee7c5c8051e92b0799851b496bd9e72aa74908
Original file line number Diff line number Diff line change
@@ -19,15 +19,20 @@ const MilestoneHistoryTable = async ({ pageNumber }: MilestoneHistoryTableProp)
const pathname = headersList.get('x-pathname') || '';

const auth = getAuthFromCookie();
const milestoneHistories = await getMilestoneHistoriesOfStudent(
auth.uid,
undefined,
undefined,
undefined,
MilestoneHistorySortCriteria.CREATED_AT,
SortDirection.DESC,
pageNumber - 1,
);
let milestoneHistories;
try {
milestoneHistories = await getMilestoneHistoriesOfStudent(
auth.id,
undefined,
undefined,
undefined,
MilestoneHistorySortCriteria.CREATED_AT,
SortDirection.DESC,
pageNumber - 1,
);
} catch (e) {
// TODO: server api error handling...
}

return (
<div className="flex flex-col gap-4">
You are viewing a condensed version of this merge commit. You can view the full changes here.