feat(history): 점수 추이 멀티 지표 + 지난번 대비 델타#121
Merged
Merged
Conversation
성장 추적 강화. 기존 ScoreTrend 는 종합 점수 한 줄만 그렸는데, recent[] 가 이미 싣고 있던 기술·논리·전달력을 함께 멀티 라인으로 시각화하고, 범례에 지표별 최신 점수 + 지난번 대비 델타(▲/▼)를 보여준다. "어떤 역량이 늘고 있는지"가 드러난다. 데이터는 이미 /api/users/me/stats 로 오므로 백엔드 변경 없음. - ScoreTrend: 4개 지표(종합/기술/논리/전달력) polyline + 색상 범례(최신값·델타). - 라이브러리 없이 기존 직접 SVG 패턴 확장. 테스트 추가. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
변경 사항
성장 추적(③)을 강화합니다.
문제는
ScoreTrend가 종합 한 줄만 그렸다는 것. 기술·논리·전달력은 데이터에 있는데 시각화가 안 됐습니다. 그래서:테스트
ScoreTrend.test.tsx추가(멀티 지표 라벨·최신값·델타·빈 상태) → 통과tsc+ eslint 통과비고
의존성(recharts 등) 추가 없이, 코드베이스에 이미 있던 직접 SVG 차트 패턴을 멀티라인으로 확장했습니다.
🤖 Generated with Claude Code