[PR #1034] [MERGED] [FEAT] Implement new data connectors UI #3560

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1034
Author: @shatfield4
Created: 4/3/2024
Status: Merged
Merged: 4/5/2024
Merged by: @timothycarambat

Base: masterHead: 1032-feat-implement-data-connector-redesign


📝 Commits (6)

  • 7dcb7e6 WIP data connector redesign
  • a94514d new UI for data connectors complete
  • 46a346d remove old data connector page/cleanup imports
  • 2d0bd9c Merge branch 'master' into 1032-feat-implement-data-connector-redesign
  • e618fd7 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 1032-feat-implement-data-connector-redesign
  • dc7c156 cleanup of UI and imports

📊 Changes

18 files changed (+531 additions, -540 deletions)

View changed files

📝 frontend/src/App.jsx (+0 -15)
📝 frontend/src/components/DataConnectorOption/index.jsx (+0 -22)
frontend/src/components/DataConnectorOption/media/github.png (+0 -0)
frontend/src/components/DataConnectorOption/media/github.svg (+4 -0)
📝 frontend/src/components/DataConnectorOption/media/index.js (+2 -2)
frontend/src/components/DataConnectorOption/media/youtube.png (+0 -0)
frontend/src/components/DataConnectorOption/media/youtube.svg (+10 -0)
frontend/src/components/Modals/MangeWorkspace/DataConnectors/ConnectorOption/index.jsx (+25 -0)
frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/Github/index.jsx (+271 -0)
frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/Youtube/index.jsx (+91 -0)
frontend/src/components/Modals/MangeWorkspace/DataConnectors/index.jsx (+77 -0)
📝 frontend/src/components/Modals/MangeWorkspace/index.jsx (+45 -2)
📝 frontend/src/components/SettingsSidebar/index.jsx (+6 -18)
frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx (+0 -293)
frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Youtube/index.jsx (+0 -113)
frontend/src/pages/GeneralSettings/DataConnectors/Connectors/index.jsx (+0 -21)
frontend/src/pages/GeneralSettings/DataConnectors/index.jsx (+0 -43)
📝 frontend/src/utils/paths.js (+0 -11)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1032

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Implement new data connectors UI
  • Remove old data connectors UI from general settings menu

Additional Information

Add any other context about the Pull Request here that was not captured above.

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/1034 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/3/2024 **Status:** ✅ Merged **Merged:** 4/5/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1032-feat-implement-data-connector-redesign` --- ### 📝 Commits (6) - [`7dcb7e6`](https://github.com/Mintplex-Labs/anything-llm/commit/7dcb7e698f60d693fa573e2fb25a16764c5b66a7) WIP data connector redesign - [`a94514d`](https://github.com/Mintplex-Labs/anything-llm/commit/a94514d283a84c3549d289be8cf9cdbe9eff9eb4) new UI for data connectors complete - [`46a346d`](https://github.com/Mintplex-Labs/anything-llm/commit/46a346d72a011d1de5004fb8a7482c1d4d17b0a4) remove old data connector page/cleanup imports - [`2d0bd9c`](https://github.com/Mintplex-Labs/anything-llm/commit/2d0bd9c7ff039efd7bf550e0a5a57222c8509fd0) Merge branch 'master' into 1032-feat-implement-data-connector-redesign - [`e618fd7`](https://github.com/Mintplex-Labs/anything-llm/commit/e618fd79cbe2a5091e7c612028835c6b8e7c08c9) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 1032-feat-implement-data-connector-redesign - [`dc7c156`](https://github.com/Mintplex-Labs/anything-llm/commit/dc7c1569048d7fa37eea172ac1f1088e082151da) cleanup of UI and imports ### 📊 Changes **18 files changed** (+531 additions, -540 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+0 -15) 📝 `frontend/src/components/DataConnectorOption/index.jsx` (+0 -22) ➖ `frontend/src/components/DataConnectorOption/media/github.png` (+0 -0) ➕ `frontend/src/components/DataConnectorOption/media/github.svg` (+4 -0) 📝 `frontend/src/components/DataConnectorOption/media/index.js` (+2 -2) ➖ `frontend/src/components/DataConnectorOption/media/youtube.png` (+0 -0) ➕ `frontend/src/components/DataConnectorOption/media/youtube.svg` (+10 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/DataConnectors/ConnectorOption/index.jsx` (+25 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/Github/index.jsx` (+271 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/DataConnectors/Connectors/Youtube/index.jsx` (+91 -0) ➕ `frontend/src/components/Modals/MangeWorkspace/DataConnectors/index.jsx` (+77 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/index.jsx` (+45 -2) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+6 -18) ➖ `frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx` (+0 -293) ➖ `frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Youtube/index.jsx` (+0 -113) ➖ `frontend/src/pages/GeneralSettings/DataConnectors/Connectors/index.jsx` (+0 -21) ➖ `frontend/src/pages/GeneralSettings/DataConnectors/index.jsx` (+0 -43) 📝 `frontend/src/utils/paths.js` (+0 -11) </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 #1032 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement new data connectors UI - Remove old data connectors UI from general settings menu ### Additional Information Add any other context about the Pull Request here that was not captured above. ### 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:34:02 -05:00
yindo closed this issue 2026-02-22 18:34:02 -05:00
yindo changed title from [PR #1034] [FEAT] Implement new data connectors UI to [PR #1034] [MERGED] [FEAT] Implement new data connectors UI 2026-06-05 15:14:03 -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#3560