[PR #3895] [CLOSED] Implement folder management and tagging features in Workspace Directory #4452

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3895
Author: @AshAnand34
Created: 5/27/2025
Status: Closed

Base: masterHead: enhancement/workspace-doc-organization


📝 Commits (1)

  • acb5cc3 Implement folder management and tagging features in Workspace Directory

📊 Changes

23 files changed (+777 additions, -313 deletions)

View changed files

frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/NewFolderModal.jsx (+80 -0)
frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/TagManager.jsx (+75 -0)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx (+44 -36)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx (+91 -25)
📝 frontend/src/locales/ar/common.js (+28 -17)
📝 frontend/src/locales/da/common.js (+16 -7)
📝 frontend/src/locales/de/common.js (+20 -11)
📝 frontend/src/locales/en/common.js (+14 -5)
📝 frontend/src/locales/es/common.js (+28 -17)
📝 frontend/src/locales/fa/common.js (+28 -17)
📝 frontend/src/locales/fr/common.js (+28 -17)
📝 frontend/src/locales/he/common.js (+28 -17)
📝 frontend/src/locales/it/common.js (+28 -17)
📝 frontend/src/locales/ja/common.js (+21 -12)
📝 frontend/src/locales/ko/common.js (+28 -17)
📝 frontend/src/locales/nl/common.js (+28 -17)
📝 frontend/src/locales/pt_BR/common.js (+23 -14)
📝 frontend/src/locales/ru/common.js (+22 -13)
📝 frontend/src/locales/tr/common.js (+28 -17)
📝 frontend/src/locales/vn/common.js (+28 -17)

...and 3 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #3888

What is in this change?

  • Added functionality to create new folders and manage folder expansion in the Workspace Directory.
  • Introduced a modal for creating new folders with input validation.
  • Implemented a TagManager component for adding and removing tags from documents.
  • Updated WorkspaceFileRow to include tag management and improved UI for folder display.
  • Enhanced translations for new features across multiple languages.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/3895 **Author:** [@AshAnand34](https://github.com/AshAnand34) **Created:** 5/27/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `enhancement/workspace-doc-organization` --- ### 📝 Commits (1) - [`acb5cc3`](https://github.com/Mintplex-Labs/anything-llm/commit/acb5cc3231ede139e3a1129b7a0074715014d30c) Implement folder management and tagging features in Workspace Directory ### 📊 Changes **23 files changed** (+777 additions, -313 deletions) <details> <summary>View changed files</summary> ➕ `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/NewFolderModal.jsx` (+80 -0) ➕ `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/TagManager.jsx` (+75 -0) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx` (+44 -36) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx` (+91 -25) 📝 `frontend/src/locales/ar/common.js` (+28 -17) 📝 `frontend/src/locales/da/common.js` (+16 -7) 📝 `frontend/src/locales/de/common.js` (+20 -11) 📝 `frontend/src/locales/en/common.js` (+14 -5) 📝 `frontend/src/locales/es/common.js` (+28 -17) 📝 `frontend/src/locales/fa/common.js` (+28 -17) 📝 `frontend/src/locales/fr/common.js` (+28 -17) 📝 `frontend/src/locales/he/common.js` (+28 -17) 📝 `frontend/src/locales/it/common.js` (+28 -17) 📝 `frontend/src/locales/ja/common.js` (+21 -12) 📝 `frontend/src/locales/ko/common.js` (+28 -17) 📝 `frontend/src/locales/nl/common.js` (+28 -17) 📝 `frontend/src/locales/pt_BR/common.js` (+23 -14) 📝 `frontend/src/locales/ru/common.js` (+22 -13) 📝 `frontend/src/locales/tr/common.js` (+28 -17) 📝 `frontend/src/locales/vn/common.js` (+28 -17) _...and 3 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3888 ### What is in this change? - Added functionality to create new folders and manage folder expansion in the Workspace Directory. - Introduced a modal for creating new folders with input validation. - Implemented a TagManager component for adding and removing tags from documents. - Updated WorkspaceFileRow to include tag management and improved UI for folder display. - Enhanced translations for new features across multiple languages. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <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:35:51 -05:00
yindo closed this issue 2026-02-22 18:35:51 -05:00
yindo changed title from [PR #3895] Implement folder management and tagging features in Workspace Directory to [PR #3895] [CLOSED] Implement folder management and tagging features in Workspace Directory 2026-06-05 15:18:38 -04: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#4452