[Feat] 백엔드 API 연동 프론트엔드 및 오류 복구 개선 - #176
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (36)
📝 WalkthroughWalkthroughDocGrid 프런트엔드를 인증 기반 애플리케이션으로 교체했습니다. 백엔드에는 문서 조회 범위 조정, RAG fallback 응답, Ollama 제한 시간 설정을 적용했습니다. Next.js 백엔드 프록시와 문서·컬렉션·권한·관리자 기능을 추가했습니다. Changes백엔드 조회 및 RAG 처리
DocGrid 프런트엔드 애플리케이션
Estimated code review effort: 5 (Critical) | ~120 minutes Sequence Diagram(s)sequenceDiagram
participant User
participant AuthProvider
participant DocGridApp
participant apiRequest
participant BackendProxy
User->>DocGridApp: 경로 접근
DocGridApp->>AuthProvider: 세션 상태 확인
AuthProvider->>apiRequest: /auth/me 요청
apiRequest->>BackendProxy: 인증 API 요청
BackendProxy-->>apiRequest: 사용자 응답
apiRequest-->>AuthProvider: 인증 사용자 반환
AuthProvider-->>DocGridApp: 인증 상태 제공
DocGridApp-->>User: 보호된 화면 또는 인증 화면 렌더링
Possibly related PRs
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Gimini-3
marked this pull request as ready for review
August 13, 2026 15:10
12 tasks
kangcheolung
added a commit
that referenced
this pull request
Aug 15, 2026
DashboardPage에 useDashboardSocket을 연결해 /topic/dashboard push가 오면 30초를 기다리지 않고 즉시 재조회하도록 하고(WS 끊기면 기존 폴링이 fallback), Outbox 이벤트·정합성 Issue 요약과 목록, 재시도·복구·무시·reconcile 액션을 포함한 동기화 원장 현황 섹션을 기존 문서/Job 메트릭 아래에 추가한다. #165(953b4e9)에서 구현됐다가 #176(a212c91) 리팩터링 중 유실된 화면을 현재 구조(apiRequest, /api/backend 프록시)에 맞게 복구한 것이다. closes #193 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
6 tasks
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.
변경 내용
/api/backend/*서버 프록시를 통해 요청하도록 구성했습니다.원인
검증
cd frontend && npm testcd frontend && npm run lintcd backend && env DB_PORT=5432 DB_SSLMODE=disable JWT_SECRET=docgrid-local-full-suite-secret-key-2026 ./gradlew test배포 참고
BACKEND_API_URL을 사용합니다. 로컬 기본값은http://localhost:8080입니다.Summary by CodeRabbit
새로운 기능
개선 사항
문서