feat(platform): 도움말 패널 구현 - #93
Merged
Merged
Conversation
사이드바 "? 도움말" 버튼이 TODO(backend) 주석만 있고 클릭해도 아무 반응이 없었다. 공통 Modal 컴포넌트(ESC/바깥 클릭 닫기, 포커스 트랩, body 스크롤 잠금)를 만들고, 자주 쓰는 흐름·FAQ·데모 계정 안내를 담은 HelpModal을 붙였다. Closes #88
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.
개요
사이드바 "? 도움말" 버튼이 클릭해도 아무 반응이 없는 유일한 버튼이었다 (
onClick에 TODO(backend) 주석만 존재). 공통Modal컴포넌트를 만들고 도움말 콘텐츠를 붙였다.변경 사항
Modal.tsx/.module.css/.test.tsx신규: ESC/바깥 클릭 닫기, Tab 포커스 트랩, 열릴 때 첫 포커스 가능 요소 자동 포커스, body 스크롤 잠금HelpModal.tsx/.module.css/helpContent.ts신규: 자주 쓰는 흐름, FAQ, 데모 계정 안내(DEMO_ACCOUNT재사용)AppLayout.tsx: 도움말 버튼에HelpModal연결완료 조건
검증
npm run lintnpm run test(전체 107개 통과)npm run buildCloses #88