-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: 밸런스 게임 수정 및 삭제 로직 구현 #268
Open
WonJuneKim
wants to merge
50
commits into
dev
Choose a base branch
from
feat/231-balancegame-edit
base: dev
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
50 commits
Select commit
Hold shift + click to select a range
0af836b
feat: 라우팅 경로와 URL 생성 경로를 추가 합니다.
WonJuneKim 7cf59d8
feat: 라우팅 경로를 App.tsx에 추가합니다.
WonJuneKim 85705eb
fix: URL의 동적 파라미터를 api와의 일관성을 맞춥니다.
WonJuneKim 10607db
feat: 밸런스게임 수정 api의 호출부를 생성합니다.
WonJuneKim 328f672
feat: 밸런스게임 수정 커스텀 훅을 구현합니다.
WonJuneKim 142b203
feat: 모달 호출을 위한 공용 훅을 생성합니다.
WonJuneKim 8bbee08
feat: 컴포넌트가 이벤트 핸들러를 props로 받도록 합니다.
WonJuneKim 2172ec9
feat: 모달 출력을 위한 태그를 생성합니다.
WonJuneKim 230dc9b
feat: 모달 처리를 위한 이벤트 핸들러를 생성합니다.
WonJuneKim 57648c7
fix: 스타일 파일의 네이밍 컨벤션을 수정합니다.
WonJuneKim 50e9b66
feat: 게임 수정을 위한 데이터의 인터페이스를 관리하는 유틸리티 함수를 구현합니다.
WonJuneKim f2998fd
refactor: 페이지의 모달을 공통 훅을 통해 관리하도록 수정합니다.
WonJuneKim 250dd47
refactor: 이미지 삭제 시 fileId는 0이 아닌 null로 처리합니다.
WonJuneKim 591c48e
feat: 이미지 삭제 취소를 위한 핸들러를 복원합니다.
WonJuneKim 3b4e59e
feat: 밸런스 게임 생성 시 이미지 처리를 담당하는 훅을 생성합니다.
WonJuneKim 9a3a3f5
refactor: 범용성을 위해 공통적이지 않은 props를 옵셔널로 선언합니다.
WonJuneKim 697727d
feat: 수정 기능을 수행하는 props를 옵셔널로 추가합니다.
WonJuneKim 88a2ca8
feat: 수정 기능을 수행하는 버튼을 위한 스타일링을 추가합니다.
WonJuneKim cf4c86d
feat: 수정 시와 생성 시 스토리북 테스트를 수행합니다.
WonJuneKim cff53a0
feat: 밸런스 게임 조회 시 송신 받는 인터페이스 항목을 추가합니다.
WonJuneKim 6685cf9
refactor: 게임 데이터 변환 시 imgUrl과 fileId도 같이 변환하도록 수정합니다.
WonJuneKim eb478d9
refactor: 중복되는 상태 및 useEffect를 제거합니다.
WonJuneKim caa7c96
refactor: 게임이 삭제되는 로직을 명시적으로 수정합니다.
WonJuneKim e470ab1
refactor: 컴포넌트의 이벤트는 더 이상 훅을 통해 관리 되지 않습니다.
WonJuneKim 49aee76
move: 사용하지 않는 커스텀 훅 삭제
WonJuneKim 3779d92
refactor: 게임 관련 상태는 부모인 페이지에서 관리하도록 수정합니다.
WonJuneKim 95a788b
feat: 밸런스 게임 수정 페이지를 구현합니다.
WonJuneKim 0358510
feat: 알림 메시지를 상수화 합니다.
WonJuneKim 1e4812a
refactor: 태그 모달이 기본 상태를 가질 수 있도록 구조를 변경합니다.
WonJuneKim 022eda8
fix: 잘못 선언된 콜백 함수를 외부로 분리합니다.
WonJuneKim c78bc24
feat: 요구되는 토스트 모달 메시지를 상수화합니다.
WonJuneKim 69911a8
fix: 상수화된 메시지 네이밍 수정을 반영합니다.
WonJuneKim 0472717
feat: 밸런스게임 수정 완료 핸들러를 추가합니다.
WonJuneKim f92e414
feat: 게임 삭제 관련 이벤트 메시지를 상수화 합니다.
WonJuneKim d3e4134
feat: 밸런스 게임 삭제 api 호출부를 작성합니다.
WonJuneKim 8b6707c
feat: 밸런스 게임 삭제 커스텀 훅을 작성합니다.
WonJuneKim 4079134
feat: 토스트 모달 출력을 위한 태그를 추가합니다.
WonJuneKim 2b75ce2
feat: 밸런스 게임 삭제 로직을 구현합니다.
WonJuneKim ee4d849
fix: 스토리북 테스트 파일을 변경된 컴포넌트에 맞춰 수정합니다.
WonJuneKim 58211a0
fix: 안전성을 위해 nullish 연산자를 사용합니다.
WonJuneKim aed33b6
fix: 게임 수정 페이지의 라우트를 보호된 영역으로 이동합니다.
WonJuneKim 1afd53c
fix: void를 명시한 부분을 제거합니다.
WonJuneKim 1595b75
refactor: api 요청 함수 네이밍을 HTTP 메서드 기반으로 통일
WonJuneKim 178f4ed
refactor: api response의 데이터를 다루는 커스텀 훅의 이름을 비즈니스 로직에 적합하게 수정합니다.
WonJuneKim 969b9ca
refactor: 전체 게임 스테이지를 관리하는 상수를 분리합니다.
WonJuneKim c0a54ef
refactor: 라우팅 상수를 그룹화하고, 동적 경로로 통일합니다.
WonJuneKim efbfa97
refactor: 변경된 라우팅 경로를 navigate 함수에 적용합니다.
WonJuneKim 10eec60
Merge branch 'dev' into feat/231-balancegame-edit
WonJuneKim c5bedf4
move: 병합 해결시 삭제되지 않았던 불필요한 코드를 제거합니다.
WonJuneKim ce3fe30
feat: 권한이 없는 사용자가 url로 접근 시에도 접근을 차단합니다.
WonJuneKim 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
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
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
Oops, something went wrong.
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.
🛠️ Refactor suggestion
삭제 API의 응답 처리를 명확히 해주세요.
삭제 API의 응답 처리가 불명확합니다. 성공/실패 여부를 명확하게 반환하도록 개선이 필요합니다.
📝 Committable suggestion