Open
Conversation
- Project 섹션에 All Files / Related 탭 추가 - Related 모드: 활성 파일과 관련된 파일만 트리에 표시 - Dependencies: 현재 파일이 import하는 파일들 (상단) - Dependents: 현재 파일을 import하는 파일들 (하단) - getDependents() 함수 구현 (getters.ts) - fullNodeMap을 순회하며 targetFilePath를 import하는 파일 찾기 - RelatedFilesView 위젯 생성 - Dependencies/Dependents를 접을 수 있는 섹션으로 분리 - 각 섹션에 파일 개수 표시 - FolderView 형식 그대로 유지 (TreeView 재사용) - FileExplorer에 filteredFiles props 추가 - 외부에서 필터링된 파일 목록 전달 가능 - fileTreeModeAtom 추가 (all | related) - AppSidebar가 모드에 따라 FileExplorer / RelatedFilesView 전환 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- WorkspacePanel 위젯 생성 - 열린 파일 목록 표시 - 파일 클릭 시 해당 파일로 이동 - Close 버튼으로 패널 닫기 - AppSidebar에서 Workspace 섹션 제거 - Project 섹션만 남김 (All Files / Related 탭) - 불필요한 import 및 상태 제거 - rightPanelTypeAtom에 'workspace' 타입 추가 - workspace: 열린 파일 목록 (새로운 기본값) - definition, related: 레거시 (삭제됨) - AppTitleBar에 Workspace 탭 추가 - Definition, Related 탭 제거 - Workspace 탭만 표시 - App.tsx에서 WorkspacePanel 렌더링 - 오른쪽 패널 위치에 배치 - rightPanelOpen && rightPanelType === 'workspace' 조건부 렌더링 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
전체 파일에서 텍스트를 검색하는 Content Search 기능 구현: - Grep 스타일 검색 로직 (대소문자 구분, 단어 단위, 정규식 지원) - ContentSearchModal UI 컴포넌트 (검색 결과 트리 뷰) - Cmd+Shift+F 단축키로 모달 열기 - 파일별 매칭 결과 그룹화 및 하이라이트 - Shift+Shift (UnifiedSearch)와 별도 scope로 분리 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
워크플로우 흐름을 방해하지 않도록 검색을 메인 뷰로 전환: - ContentSearchModal 제거 → ContentSearchView 위젯으로 변경 - viewModeAtom에 'contentSearch' 타입 추가 - Cmd+Shift+F로 viewMode를 'contentSearch'로 전환 - contentSearchModalOpenAtom 제거 (viewMode로 표시/숨김 제어) - IDE/CodeDoc처럼 메인 콘텐츠 영역에서 탭 전환 방식으로 동작 - ESC로 IDE 모드로 복귀 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
재사용 가능한 hooks로 키보드 네비게이션 통합: - useListKeyboardNavigation 적용으로 ~80줄 코드 감소 - 클릭 시 선택만 (setFocusedIndex), Enter로 파일 열기 - Auto-scroll 자동 활성화 (itemRefs + scrollContainerRef) - 기존 수동 구현 useHotkeys 4개 제거 - Scope 관리 자동화 UX 개선: - 클릭: 항목 선택 (focus) - Enter: 선택된 파일 열기 + IDE 모드 전환 - ESC: IDE 모드 복귀 - 키보드 이동 시 자동 스크롤 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
좌우 분할 레이아웃으로 검색 UX 개선: - 좌측: 검색 결과 리스트 (400px) - 우측: 선택된 파일 preview 패널 - 선택된 항목의 파일 내용 자동 표시 - 매칭된 라인으로 자동 스크롤 및 하이라이트 - 라인 번호 표시 및 매칭 라인 강조 (warm-300) Preview 기능: - focusedIndex 변경 시 실시간 preview 업데이트 - 파일 경로 및 이름 표시 - 매칭된 라인은 배경색 및 텍스트 색상 강조 - scrollIntoView로 매칭 라인 중앙 정렬 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- TabContainer 컴포넌트로 IDE와 Search를 가로 탭으로 통합 - 동적 탭 열기/닫기 기능 (X 버튼, 마지막 탭 보호) - Cmd+Shift+Tab 단축키로 Search 탭 열기/전환 - ContentSearchView 좌우 패널 스크롤 독립화 - 탭 atoms: openedTabsAtom, activeTabIdAtom 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Content Search (Cmd+Shift+F) - MainContent Tab
Related Files Mode
Workspace Panel
기타 개선사항
Test plan
🤖 Generated with Claude Code