-
Notifications
You must be signed in to change notification settings - Fork 0
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
[#50][#51] 어드민 페이지 팀 관리 및 페이지네이션 #52
Merged
The head ref may contain hidden characters: "feat-\uC5B4\uB4DC\uBBFC\uD300\uAD00\uB9AC"
Merged
Conversation
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
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.
## #️⃣ 연관된 이슈
[#50][#51]
## 📝 작업 내용
어드민 사이드 메뉴에 팀 관리 항목을 추가하였습니다.
팀 관리 항목에는 팀 승인과 팀 목록이 있습니다.
팀 승인
팀 승인 항목에서는 미승인 된 팀에대한 데이터를 받아와서 클라이언트에게 보여줍니다. table 의 마지막 항목인 'actions' cell 에서 팀 승인과 팀 거절을 할 수 있습니다. 팀 승인, 혹은 팀 거절이 성공적으로 되었을 시에 테이블에서 해당 row 가 사라집니다.팀 목록
팀 목록 항목에서는 승인된 팀에 대한 데이터를 10개 단위로 받아와서 클라이언트에게 보여줍니다. 페이지네이션을 이용해 원하는 순번의 데이터를 받아올 수 있습니다. action cell 에있는 버튼을 클릭하면 "삭제" 항목이 있는 dropdown menu 가 활성화 됩니다. "삭제" 버튼을 누르게 되면 삭제 재확인을 하는 모달창이 나타나게됩니다. 확인 버튼을 누르게 되면 팀 삭제 api 를 요청하게 됩니다. 성공적으로 팀 삭제가 되면 해당 page에 대한 데이터를 refetch하여 테이블을 최신상태로 갱신하게 됩니다.공통 페이지네이션
숫자 페이지 버튼을 누르면 해당 페이지로 이동합니다. 현재 페이지가 1보다 크면 다음 버튼이 활성화 됩니다. 다음 버튼을 클릭하면 현재 페이지 +1 로 이동합니다. 현재 페이지가 전체 페이지수보다 작으면 이전 버튼이 활성화 됩니다. 이전 버튼을 클릭하면 현재 페이지 -1 로 이동합니다.## 📢 참고사항
멤버 관리 항목의 "멤버 승인"과 "멤버 목록"에 해당하는 page의 route 가 변경되었습니다. (기존: /admin/assign -> 수정: /admin/member/assign)
어드민 사이드 메뉴에 멤버 관리의 항목이 선택되었을 때 backGround 색이 바뀌는 조건을 변경하였습니다.
pagination 스토리 미작성