✨ 관리자 페이지 한국어화 및 편집 기능 개선 - #33
Merged
Merged
Conversation
Codex PR ReviewPR 요약요약관리자 페이지를 편집·외부 API 동기화·로그 화면으로 분리하고 전체 UI를 한국어화했습니다. 경기장 한글 이름 관리와 이벤트 선수 선택 검증을 추가해 관리자 편집 흐름과 데이터 일관성을 개선했습니다. 주요 변경사항
영향 범위
검증
시니어 개발자 리뷰
보안 리뷰
중대한 보안 문제 없음 |
This file contains hidden or 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.
변경 사항
관리자 페이지 구조 및 한국어화
/admin/editor,/admin/sync,/admin/logs로 분리했습니다.동기화 및 관리자 로그 사용성 개선
연속 실패 수로 정리했습니다.팀·선수·경기 편집 기능 보완
venueNameKo를 추가하고, 사용자 화면에서는 한글 이름을 우선 표시하되 값이 없으면 기존 영문 이름을 사용합니다.subst와substitution을교체로 표시합니다.선수와도움 선수필드를 각각교체 아웃,교체 인으로 표시합니다.변경 이유
기존 관리자 페이지는 데이터 편집, 외부 API 동기화와 로그가 한 화면에 집중되어 세로 길이가 길고 필요한 기능을 빠르게 찾기 어려웠습니다. 또한 영어와 한국어가 혼재하고 요청 결과가 여러 위치에 중복 표시되어 작업 성공 여부와 장애 상태를 직관적으로 확인하기 어려웠습니다.
데이터 편집 측면에서는 경기장 한글 이름을 별도로 관리할 수 없었고, 경기 이벤트에서 선택한 팀과 관계없는 선수도 지정할 수 있어 잘못된 데이터가 저장될 가능성이 있었습니다. 관리자 화면의 사용 흐름을 정리하고 화면과 서버 양쪽에서 편집 데이터의 일관성을 보장하도록 개선했습니다.
API 및 스키마 변경
venue와fixture에 nullablevenue_name_ko컬럼이 추가됩니다.venueNameKo가 추가됩니다.venueName필드는 유지하며 한글 이름이 없을 때 fallback으로 사용합니다./admin/*구조로 확장됩니다.검증
npm run build통과git diff --cached --check통과contextLoads()1개는 로컬 환경에서 Docker/Testcontainers를 사용할 수 없어 실패했습니다.로그인된 관리자 환경의 브라우저 직접 검증은 수행하지 않았습니다.