[PR #275] [MERGED] v2 document picker #3279

Closed
opened 2026-02-22 18:33:26 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/275
Author: @shatfield4
Created: 10/10/2023
Status: Merged
Merged: 10/20/2023
Merged by: @timothycarambat

Base: ui-v2Head: v2-document-picker


📝 Commits (10+)

  • 2181774 remove unneeded comments
  • 19e0002 WIP document picker UI
  • 0e65c5c WIP basic UI complete for document picker tab and settings tab
  • 04edc70 linting
  • b588906 settings menu complete, document row WIP
  • d5106d4 WIP document picker loading from localFiles
  • edf53f6 WIP file picker logic
  • 965fd7a refactoring document picker to work with backend
  • 9ae0152 WIP refactoring document picker
  • 54f4fdd WIP refactor document picker to work with backend

📊 Changes

27 files changed (+1229 additions, -978 deletions)

View changed files

📝 frontend/package.json (+1 -0)
📝 frontend/src/components/DefaultChat/index.jsx (+1 -1)
📝 frontend/src/components/Modals/LegacySettings/LLMSelection/index.jsx (+1 -4)
frontend/src/components/Modals/MangeWorkspace/Documents/ConfirmationModal/index.jsx (+0 -89)
frontend/src/components/Modals/MangeWorkspace/Documents/Directory/FileRow/index.jsx (+106 -0)
frontend/src/components/Modals/MangeWorkspace/Documents/Directory/FolderRow/index.jsx (+86 -0)
📝 frontend/src/components/Modals/MangeWorkspace/Documents/Directory/index.jsx (+124 -149)
📝 frontend/src/components/Modals/MangeWorkspace/Documents/UploadFile/FileUploadProgress/index.jsx (+15 -19)
frontend/src/components/Modals/MangeWorkspace/Documents/UploadFile/index.jsx (+111 -0)
frontend/src/components/Modals/MangeWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx (+99 -0)
frontend/src/components/Modals/MangeWorkspace/Documents/WorkspaceDirectory/index.jsx (+122 -0)
📝 frontend/src/components/Modals/MangeWorkspace/Documents/index.jsx (+164 -179)
📝 frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx (+181 -148)
frontend/src/components/Modals/MangeWorkspace/Upload/index.jsx (+0 -202)
📝 frontend/src/components/Modals/MangeWorkspace/index.jsx (+81 -100)
📝 frontend/src/components/Preloader.jsx (+4 -2)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+5 -2)
📝 frontend/src/components/Sidebar/index.jsx (+25 -47)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+32 -24)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+4 -3)

...and 7 more files

📄 Description

Changes Made
• Revamped document picker UI


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/275 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 10/10/2023 **Status:** ✅ Merged **Merged:** 10/20/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `ui-v2` ← **Head:** `v2-document-picker` --- ### 📝 Commits (10+) - [`2181774`](https://github.com/Mintplex-Labs/anything-llm/commit/21817746d36f55854fc737adcd5d4043dc3ff576) remove unneeded comments - [`19e0002`](https://github.com/Mintplex-Labs/anything-llm/commit/19e0002e02dfbe213ef618124078b0f6f8639766) WIP document picker UI - [`0e65c5c`](https://github.com/Mintplex-Labs/anything-llm/commit/0e65c5c81b005ea1317ee7491e29b93e1616d3d1) WIP basic UI complete for document picker tab and settings tab - [`04edc70`](https://github.com/Mintplex-Labs/anything-llm/commit/04edc70ebdb3c4f20ada7fb41f6e9ce2f560237a) linting - [`b588906`](https://github.com/Mintplex-Labs/anything-llm/commit/b58890666e5957a2091b8d9552e99d7d2524e6dc) settings menu complete, document row WIP - [`d5106d4`](https://github.com/Mintplex-Labs/anything-llm/commit/d5106d46ce4f237c2b94769c36f40b95482ad7ae) WIP document picker loading from localFiles - [`edf53f6`](https://github.com/Mintplex-Labs/anything-llm/commit/edf53f65ff027b10715711e7fa301e65578b86e1) WIP file picker logic - [`965fd7a`](https://github.com/Mintplex-Labs/anything-llm/commit/965fd7a524dc72cca076f9ab4564793fc3f1e805) refactoring document picker to work with backend - [`9ae0152`](https://github.com/Mintplex-Labs/anything-llm/commit/9ae01520223d4b8a8be3de6939815c65db4abc5c) WIP refactoring document picker - [`54f4fdd`](https://github.com/Mintplex-Labs/anything-llm/commit/54f4fddca864f57bbbc21899210a6257e4f71a51) WIP refactor document picker to work with backend ### 📊 Changes **27 files changed** (+1229 additions, -978 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package.json` (+1 -0) 📝 `frontend/src/components/DefaultChat/index.jsx` (+1 -1) 📝 `frontend/src/components/Modals/LegacySettings/LLMSelection/index.jsx` (+1 -4) ➖ `frontend/src/components/Modals/MangeWorkspace/Documents/ConfirmationModal/index.jsx` (+0 -89) ➕ `frontend/src/components/Modals/MangeWorkspace/Documents/Directory/FileRow/index.jsx` (+106 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/Documents/Directory/FolderRow/index.jsx` (+86 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/Documents/Directory/index.jsx` (+124 -149) 📝 `frontend/src/components/Modals/MangeWorkspace/Documents/UploadFile/FileUploadProgress/index.jsx` (+15 -19) ➕ `frontend/src/components/Modals/MangeWorkspace/Documents/UploadFile/index.jsx` (+111 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx` (+99 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/Documents/WorkspaceDirectory/index.jsx` (+122 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/Documents/index.jsx` (+164 -179) 📝 `frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx` (+181 -148) ➖ `frontend/src/components/Modals/MangeWorkspace/Upload/index.jsx` (+0 -202) 📝 `frontend/src/components/Modals/MangeWorkspace/index.jsx` (+81 -100) 📝 `frontend/src/components/Preloader.jsx` (+4 -2) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+5 -2) 📝 `frontend/src/components/Sidebar/index.jsx` (+25 -47) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+32 -24) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+4 -3) _...and 7 more files_ </details> ### 📄 Description Changes Made • Revamped document picker UI --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:33:26 -05:00
yindo closed this issue 2026-02-22 18:33:27 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3279