refactor(workspace): migrate from per-folder windows to single-window workspace
Replace the legacy folder + welcome routes with a unified /workspace route that hosts all folders, conversations, tabs, and terminals in one window. - Persist opened tabs to the database (opened_tabs entity + migration) so tab layout survives restarts and deep-link bootstrap restores state - Replace FolderContext shim with AppWorkspaceProvider, ActiveFolderProvider, and TabProvider; expose both opened (folders) and full DB (allFolders) listings via list_all_folder_details - Return conversations across all non-deleted folders from list_all when no folder filter is given, so the sidebar can show every folder's history - Add ConversationContextBar above the chat input with folder picker (auto-opens unopened folders on select), branch picker, and commit / push / merge / stash entries to restore BranchDropdown functionality - Rework sidebar with stats header, search, flat / folder-grouped view modes (localStorage-persisted), reveal-in-sidebar event subscriber, and per-folder context menu (focus, close tabs, remove from workspace); indent conversations under folder headers in grouped mode - Gate terminal creation on active folder and show folder context - Remove deprecated BranchDropdown, FolderNameDropdown, welcome route, and per-folder window commands - Localize all new strings across 10 locales
This commit is contained in:
@@ -825,7 +825,24 @@
|
||||
"noNewSessionsFound": "새 세션이 없습니다 ({skipped}개 건너뜀)",
|
||||
"importFailed": "가져오기 실패: {message}",
|
||||
"reviewCompleted": "{count, plural, one {#개 검토 세션} other {#개 검토 세션}}을 완료로 표시했습니다",
|
||||
"completeReviewFailed": "검토 세션 완료 처리 실패: {message}"
|
||||
"completeReviewFailed": "검토 세션 완료 처리 실패: {message}",
|
||||
"folderOpened": "폴더 {name}을(를) 열었습니다",
|
||||
"folderRemoved": "폴더 {name}을(를) 제거했습니다",
|
||||
"openFolderFailed": "폴더를 열 수 없습니다",
|
||||
"removeFolderFailed": "폴더 제거 실패: {message}"
|
||||
},
|
||||
"statsLabel": "{folders}개 폴더 · {convos}개 대화",
|
||||
"openFolder": "폴더 열기",
|
||||
"searchPlaceholder": "대화 검색...",
|
||||
"viewFlat": "평면 보기",
|
||||
"viewGrouped": "폴더별 그룹",
|
||||
"noMatchingConversations": "일치하는 대화가 없습니다",
|
||||
"removeFolderConfirmTitle": "이 폴더를 워크스페이스에서 제거하시겠습니까?",
|
||||
"removeFolderConfirmDescription": "워크스페이스에서 \"{name}\"을(를) 제거하시겠습니까? 관련 탭과 터미널이 닫힙니다.",
|
||||
"folderHeaderMenu": {
|
||||
"focus": "포커스",
|
||||
"closeFolderTabs": "이 폴더의 모든 탭 닫기",
|
||||
"removeFromWorkspace": "워크스페이스에서 제거"
|
||||
}
|
||||
},
|
||||
"conversation": {
|
||||
@@ -960,7 +977,9 @@
|
||||
"closeOthers": "다른 항목 닫기",
|
||||
"closeAll": "모두 닫기",
|
||||
"tileDisplay": "타일 표시",
|
||||
"untileDisplay": "타일 해제"
|
||||
"untileDisplay": "타일 해제",
|
||||
"closeFolderTabs": "{folder}의 모든 탭 닫기",
|
||||
"revealInSidebar": "사이드바에서 표시"
|
||||
},
|
||||
"fileWorkspace": {
|
||||
"files": "파일",
|
||||
@@ -976,7 +995,8 @@
|
||||
"close": "닫기",
|
||||
"closeOthers": "다른 항목 닫기",
|
||||
"closeAll": "모두 닫기",
|
||||
"hideTerminal": "터미널 숨기기 ({shortcut})"
|
||||
"hideTerminal": "터미널 숨기기 ({shortcut})",
|
||||
"openFolderFirst": "먼저 폴더를 여세요"
|
||||
},
|
||||
"sessionFiles": {
|
||||
"currentResponse": "현재 응답",
|
||||
@@ -1792,6 +1812,25 @@
|
||||
"hunkLabel": "청크 {index}",
|
||||
"loadingHunk": "Hunk 로딩 중...",
|
||||
"noDiffData": "Diff 데이터 없음"
|
||||
},
|
||||
"conversationContextBar": {
|
||||
"searchFolder": "Search folder...",
|
||||
"searchBranch": "Search branch...",
|
||||
"noFolders": "No folders",
|
||||
"noBranches": "No branches",
|
||||
"noBranch": "(no branch)",
|
||||
"openNewFolder": "Open folder from disk...",
|
||||
"cancel": "Cancel",
|
||||
"create": "Create",
|
||||
"commit": "Commit",
|
||||
"push": "Push",
|
||||
"merge": "Merge",
|
||||
"toasts": {
|
||||
"folderChanged": "Switched to {name}",
|
||||
"openFolderFailed": "Failed to open folder",
|
||||
"openStashFailed": "Failed to open stash window",
|
||||
"openMergeFailed": "Failed to open merge window"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ProjectBoot": {
|
||||
|
||||
Reference in New Issue
Block a user