Files
2nd/10_Wiki/Topic_Programming/Coding/React_Accessibility_Patterns.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

4.1 KiB
Raw Blame History

id, title, category, status, source_trust_level, verification_status, created_at, updated_at, tags, tech_stack, applied_in, aliases
id title category status source_trust_level verification_status created_at updated_at tags tech_stack applied_in aliases
react-accessibility-patterns React 접근성 (a11y) 실전 Coding draft B conceptual 2026-05-09 2026-05-09
react
accessibility
a11y
aria
vibe-coding
language applicable_to
TypeScript / React
Web
WAI-ARIA
screen reader
focus management
semantic HTML

React 접근성 실전

시멘틱 HTML 우선 → 그래도 부족하면 ARIA. <div onClick> 은 한 번도 정답이 아니다. <button> 으로 시작하라. 그 다음 키보드 / 포커스 / 스크린리더 4가지 점검.

📖 핵심 개념

  • 시멘틱: button / a / input / nav / main / section — 의미 가진 태그.
  • ARIA: 시멘틱이 부족할 때만. role / aria-label / aria-describedby 등.
  • 키보드: Tab / Enter / Space / Esc / Arrow 동작.
  • 포커스 trap: modal 안에 갇히도록.
  • announcement: live region 으로 동적 변화 알림.

💻 코드 패턴

Modal — focus trap + ESC + announcement

import { useEffect, useRef } from 'react';
import FocusTrap from 'focus-trap-react';

function Modal({ open, onClose, title, children }) {
  const triggerRef = useRef<HTMLElement>();

  useEffect(() => {
    if (open) {
      triggerRef.current = document.activeElement as HTMLElement;
      const onKey = (e: KeyboardEvent) => { if (e.key === 'Escape') onClose(); };
      document.addEventListener('keydown', onKey);
      return () => {
        document.removeEventListener('keydown', onKey);
        triggerRef.current?.focus(); // 닫힐 때 trigger 로 포커스 복귀
      };
    }
  }, [open, onClose]);

  if (!open) return null;
  return (
    <FocusTrap>
      <div role="dialog" aria-modal="true" aria-labelledby="dlg-title">
        <h2 id="dlg-title">{title}</h2>
        {children}
        <button onClick={onClose} aria-label="닫기">×</button>
      </div>
    </FocusTrap>
  );
}

Live region — 비동기 변화 알림

const [status, setStatus] = useState('');
return <>
  <button onClick={async () => {
    setStatus('저장 중...');
    await save();
    setStatus('저장 완료');
  }}>저장</button>
  <div role="status" aria-live="polite" className="sr-only">{status}</div>
</>;

Form — label / error / aria-invalid

<label htmlFor="email">이메일</label>
<input
  id="email"
  type="email"
  aria-invalid={!!errors.email}
  aria-describedby={errors.email ? "email-error" : undefined}
/>
{errors.email && <p id="email-error" role="alert">{errors.email}</p>}
<a href="#main" className="skip-link">본문으로 건너뛰기</a>
<main id="main" tabIndex={-1}>...</main>

🤔 의사결정 기준

요소 시멘틱 / ARIA
클릭 가능 <button> (이동은 <a>)
Modal role="dialog" + focus trap
Tab / Tooltip / Combobox Headless UI / Radix UI 사용 권장
동적 토스트 aria-live="polite"
즉시 알림 (에러) role="alert" 또는 aria-live="assertive"
아이콘 버튼 aria-label 필수

안티패턴

  • <div onClick>: 키보드 접근 X. 포커스 X. role 없음. 항상 button/a.
  • placeholder 만 + label 없음: 스크린리더에게 의미 없음.
  • 색상으로만 에러 표시: 색맹 사용자 + 스크린리더 못 봄. 텍스트 + 아이콘.
  • focus indicator outline:none: 키보드 사용자 길 잃음. 커스텀 outline 으로 대체.
  • modal 안 닫힐 때 trigger 로 포커스 안 돌림: 사용자가 어디서 시작했는지 잃음.
  • 랜덤 ARIA roles: role="button"<div>. 그냥 <button> 쓰면 됨.
  • aria-hidden 으로 시각적 hide: 스크린리더도 안 읽음. 시각만 hide 면 CSS clip path / sr-only.
  • 테스트 안 함: VoiceOver / NVDA / 키보드만 정기 테스트.

🤖 LLM 활용 힌트

  • "div onClick 금지, button/a 우선. modal 은 focus trap + ESC + label" 강제.
  • Headless UI 라이브러리 (Radix, ARIA Headless) 적극 활용 권장.

🔗 관련 문서