-
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
[회비 생성] - 회비 생성 기능 리팩토링 #198
Open
dooohun
wants to merge
25
commits into
main
Choose a base branch
from
feature/make_dues
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
aac55ea
fix: routeParam을 추가하여 잘못된 페이지 이동 에러 수정
dooohun 5e7fff6
feat: 엑셀 파일 읽기 추가
dooohun 6819022
feat: members 타입에 isFeeExempt 추가
dooohun 08a8277
feat: 멤버의 회비 정로를 가져오는 함수 추가
dooohun 52c5609
feat: 회비를 업데이트 하는 함수 추가
dooohun 3c339ce
feat: 엑셀 워크시트에 미납 정보를 업데이트
dooohun 918e9e8
feat: 전체 리팩토링 및 필요없는 기능 삭제
dooohun 4bf42d2
Merge branch 'main' into feature/make_dues
dooohun 75a6cfa
feat: 에러 시 스낵바를 출력하도록 변경
dooohun 6fd7244
fix: YearPagination에서 빼먹은 routeParam 추가
dooohun 92889a7
feat: 직책생성시 동명이인방지, 이메일기반 검색
MinGu-Jeong 25b4c47
chore: yarn
MinGu-Jeong 3264be0
refactor: 불필요 타입 제거
MinGu-Jeong 3485d88
fix: 페이지네이션 navigate 시 pageName에 속한 페이지로 이동하도록 변경
dooohun bfa10da
fix: 각 페이지네이션에 속한 페이지명 문자열 추가
dooohun 16a14d2
feat: 회비 내역 동기화 api 및 커스텀 훅 추가
dooohun ad784ff
feat: 경고 모달에 sheet-sync 기능 추가
dooohun 736c2b5
feat: 회비 내역 동기화 기능 추가
dooohun 992274d
style: 모달 width 450px에서 550px로 수정
dooohun 355293b
Merge branch 'main' into feature/make_dues
dooohun 8842c42
chore: 불필요한 훅 삭제
dooohun 1ad7953
feat: 엑셀 데이터 중 필요한 데이터를 정제하는 parseExcelData 훅 추가
dooohun f3a2aec
feat: 회비 적용, 회비 면제자 적용, 회비 미납자 적용하는 훅 추가
dooohun 2a1e902
feat: 엑셀 파일 읽기, 엑셀 파일 정제하기, 엑셀 파일을 DB에 적용하기 순서대로 작동하는 워크 플로우 훅 추가
dooohun ac7c1d8
refactor: useWorkflowPipeline 훅 적용, 이전에 사용한 훅 삭제
dooohun 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
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 |
---|---|---|
|
@@ -42,6 +42,7 @@ export interface Member { | |
updatedAt: string; | ||
isAuthed: boolean; | ||
isDeleted: boolean; | ||
isFeeExempt: boolean; | ||
deleteReason: string; | ||
birthday: string; | ||
} | ||
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. 주어진 코드에서 아래는 개선이 필요한 부분을 diff 형식으로 제안합니다. @@ -42,6 +42,8 @@ export interface Member {
isDeleted: boolean;
+ /** 사용자가 수수료 면제 상태인지 여부 */
isFeeExempt: boolean;
deleteReason: string;
birthday: string;
} 주요 사항 및 개선 제안:
|
||
|
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.
주요 사항:
개선 제안 사항:
const param = useQueryParam('page'); + const param = useQueryParam("page");
이 외에도, 코드 라인의 일관성을 위해 모든 문자열을 큰 따옴표로 통일하는 것을 추천합니다. 또는 팀의 코드 스타일 가이드에 따라 따옴표 사용을 통일하는 것이 좋습니다.