[PR #85] [MERGED] v2 workspace document #137

Closed
opened 2026-02-15 16:30:25 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/85
Author: @shatfield4
Created: 12/7/2023
Status: Merged
Merged: 12/21/2023
Merged by: @timothycarambat

Base: ui-v2Head: v2-workspace-document


📝 Commits (10+)

  • d3f4dbb WIP workspace document
  • c2daeea WIP workspace document UI
  • e906e8a working header for document view
  • 4adb2e5 WIP fixing document search
  • 139a48c Merge branch 'embedding-overview-search-fix' into v2-workspace-document
  • e679037 Add upload document modal for embeddings overview page
  • 6e7df0d working search in document view WIP loading states/no results
  • ccc1409 show no results when no search results and loader for searching
  • a7b8490 Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into v2-workspace-document
  • bf0b067 update dialog styles

📊 Changes

18 files changed (+850 additions, -553 deletions)

View changed files

📝 frontend/src/components/DocumentPaginator/index.tsx (+34 -5)
📝 frontend/src/components/Header/index.tsx (+3 -101)
📝 frontend/src/components/Sidebar/OrganizationTab/index.tsx (+16 -7)
📝 frontend/src/components/Sidebar/index.tsx (+6 -10)
frontend/src/images/logo/logo-sky.svg (+11 -0)
📝 frontend/src/index.css (+34 -1)
📝 frontend/src/layout/AppLayout.tsx (+3 -3)
📝 frontend/src/models/document.ts (+1 -2)
📝 frontend/src/models/workspace.ts (+1 -2)
📝 frontend/src/pages/Dashboard/DocumentsList/index.tsx (+0 -92)
📝 frontend/src/pages/DocumentView/FragmentList/SearchView/index.tsx (+119 -176)
📝 frontend/src/pages/DocumentView/FragmentList/index.tsx (+145 -127)
frontend/src/pages/DocumentView/UploadModal/FileUploadProgress/index.tsx (+84 -0)
frontend/src/pages/DocumentView/UploadModal/UploadModalNoKey.tsx (+68 -0)
frontend/src/pages/DocumentView/UploadModal/index.tsx (+213 -0)
📝 frontend/src/pages/DocumentView/index.tsx (+89 -4)
📝 frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx (+1 -23)
📝 frontend/src/utils/constants.ts (+22 -0)

📄 Description

UI redesign for embeddings overview page.


🔄 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/vector-admin/pull/85 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 12/7/2023 **Status:** ✅ Merged **Merged:** 12/21/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `ui-v2` ← **Head:** `v2-workspace-document` --- ### 📝 Commits (10+) - [`d3f4dbb`](https://github.com/Mintplex-Labs/vector-admin/commit/d3f4dbb267917835ffa4860c6440caf1ce933463) WIP workspace document - [`c2daeea`](https://github.com/Mintplex-Labs/vector-admin/commit/c2daeea0a0fccf17c5ffcc9ae0a09e4acf34e51f) WIP workspace document UI - [`e906e8a`](https://github.com/Mintplex-Labs/vector-admin/commit/e906e8a63a5192dfd6f0f74598eea60429c0c586) working header for document view - [`4adb2e5`](https://github.com/Mintplex-Labs/vector-admin/commit/4adb2e5101d3aed5b22a126f4625a0649cd935b1) WIP fixing document search - [`139a48c`](https://github.com/Mintplex-Labs/vector-admin/commit/139a48c3392b5c42750d4eaf0f266fded5626f0c) Merge branch 'embedding-overview-search-fix' into v2-workspace-document - [`e679037`](https://github.com/Mintplex-Labs/vector-admin/commit/e6790377ce7bdef55f695379fa77377f05f75fc9) Add upload document modal for embeddings overview page - [`6e7df0d`](https://github.com/Mintplex-Labs/vector-admin/commit/6e7df0d513864429938e211a4b7b81667344137c) working search in document view WIP loading states/no results - [`ccc1409`](https://github.com/Mintplex-Labs/vector-admin/commit/ccc1409e67548af93425bdc248ad2ca33de1b176) show no results when no search results and loader for searching - [`a7b8490`](https://github.com/Mintplex-Labs/vector-admin/commit/a7b8490d49f9de06440d25e81b891d0b5d6f96b2) Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into v2-workspace-document - [`bf0b067`](https://github.com/Mintplex-Labs/vector-admin/commit/bf0b067a246cfcc0818af26d70249cd3f805c812) update dialog styles ### 📊 Changes **18 files changed** (+850 additions, -553 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/DocumentPaginator/index.tsx` (+34 -5) 📝 `frontend/src/components/Header/index.tsx` (+3 -101) 📝 `frontend/src/components/Sidebar/OrganizationTab/index.tsx` (+16 -7) 📝 `frontend/src/components/Sidebar/index.tsx` (+6 -10) ➕ `frontend/src/images/logo/logo-sky.svg` (+11 -0) 📝 `frontend/src/index.css` (+34 -1) 📝 `frontend/src/layout/AppLayout.tsx` (+3 -3) 📝 `frontend/src/models/document.ts` (+1 -2) 📝 `frontend/src/models/workspace.ts` (+1 -2) 📝 `frontend/src/pages/Dashboard/DocumentsList/index.tsx` (+0 -92) 📝 `frontend/src/pages/DocumentView/FragmentList/SearchView/index.tsx` (+119 -176) 📝 `frontend/src/pages/DocumentView/FragmentList/index.tsx` (+145 -127) ➕ `frontend/src/pages/DocumentView/UploadModal/FileUploadProgress/index.tsx` (+84 -0) ➕ `frontend/src/pages/DocumentView/UploadModal/UploadModalNoKey.tsx` (+68 -0) ➕ `frontend/src/pages/DocumentView/UploadModal/index.tsx` (+213 -0) 📝 `frontend/src/pages/DocumentView/index.tsx` (+89 -4) 📝 `frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx` (+1 -23) 📝 `frontend/src/utils/constants.ts` (+22 -0) </details> ### 📄 Description UI redesign for embeddings overview page. --- <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-15 16:30:25 -05:00
yindo closed this issue 2026-02-15 16:30:25 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#137