[PR #80] [MERGED] v2 onboarding #291

Closed
opened 2026-02-23 17:21:07 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/80
Author: @shatfield4
Created: 11/20/2023
Status: Merged
Merged: 12/3/2023
Merged by: @timothycarambat

Base: ui-v2Head: v2-onboarding


📝 Commits (10+)

  • 2ce8d44 WIP onboarding flow skeleton
  • 45522a1 Merge branch 'ui-v2' into v2-onboarding
  • 8201058 onboarding flow UI complete WIP connect to backend
  • fad45c5 fully functional VA onboarding flow
  • 216b4a3 add types for TS errors
  • d889b2d styling changes for bg and illustration
  • e07b891 redirect the user to onboarding if no organizations are found
  • 1c61059 move system-setup to onboard-setup
  • 8637bdc Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into v2-onboarding
  • 1ab15cc Merge branch 'ui-v2' of github.com:Mintplex-Labs/vector-admin into v2-onboarding

📊 Changes

15 files changed (+865 additions, -237 deletions)

View changed files

📝 frontend/src/App.tsx (+5 -2)
📝 frontend/src/components/Preloader.tsx (+1 -1)
frontend/src/components/VectorDBOption/index.tsx (+57 -0)
frontend/src/images/undraws/onboarding.png (+0 -0)
📝 frontend/src/layout/DefaultLayout.tsx (+1 -1)
📝 frontend/src/pages/Authentication/SignIn.tsx (+1 -1)
frontend/src/pages/Authentication/SystemSetup.tsx (+0 -228)
📝 frontend/src/pages/Onboarding/index.tsx (+2 -1)
frontend/src/pages/OnboardingFlow/Steps/ConnectVectorDB/index.tsx (+287 -0)
frontend/src/pages/OnboardingFlow/Steps/CreateOrganization/index.tsx (+75 -0)
frontend/src/pages/OnboardingFlow/Steps/CustomLogin/index.tsx (+94 -0)
frontend/src/pages/OnboardingFlow/Steps/SecuritySettings/index.tsx (+95 -0)
frontend/src/pages/OnboardingFlow/Steps/SyncVectorDB/index.tsx (+134 -0)
frontend/src/pages/OnboardingFlow/index.tsx (+110 -0)
📝 frontend/src/utils/paths.ts (+3 -3)

📄 Description

Create onboarding flow to help guide user through setup.


🔄 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/80 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 11/20/2023 **Status:** ✅ Merged **Merged:** 12/3/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `ui-v2` ← **Head:** `v2-onboarding` --- ### 📝 Commits (10+) - [`2ce8d44`](https://github.com/Mintplex-Labs/vector-admin/commit/2ce8d44664488b946bbdcaa8bb9e89ac88b210d3) WIP onboarding flow skeleton - [`45522a1`](https://github.com/Mintplex-Labs/vector-admin/commit/45522a12c8343cda9eaf19681a5733180ff00cfd) Merge branch 'ui-v2' into v2-onboarding - [`8201058`](https://github.com/Mintplex-Labs/vector-admin/commit/82010585b0311fd8a06acfc8d37f928b94c39967) onboarding flow UI complete WIP connect to backend - [`fad45c5`](https://github.com/Mintplex-Labs/vector-admin/commit/fad45c57ce3c196a745e1baa86ef055c8a17697c) fully functional VA onboarding flow - [`216b4a3`](https://github.com/Mintplex-Labs/vector-admin/commit/216b4a35bb468bd5a706ffa600fbf642b92791ac) add types for TS errors - [`d889b2d`](https://github.com/Mintplex-Labs/vector-admin/commit/d889b2deb56b1c556496dba5dbf59837f56764f7) styling changes for bg and illustration - [`e07b891`](https://github.com/Mintplex-Labs/vector-admin/commit/e07b8913dfa2da8ae239a1e3f3919bf00da86bec) redirect the user to onboarding if no organizations are found - [`1c61059`](https://github.com/Mintplex-Labs/vector-admin/commit/1c6105917c1f7ab4d269c5797d5f6d4dad7d636f) move system-setup to onboard-setup - [`8637bdc`](https://github.com/Mintplex-Labs/vector-admin/commit/8637bdc64ac290be837e835bfe316557b7f251e4) Merge branch 'master' of github.com:Mintplex-Labs/vector-admin into v2-onboarding - [`1ab15cc`](https://github.com/Mintplex-Labs/vector-admin/commit/1ab15ccb91925a47e42323e8fd13ae53d12c98bb) Merge branch 'ui-v2' of github.com:Mintplex-Labs/vector-admin into v2-onboarding ### 📊 Changes **15 files changed** (+865 additions, -237 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.tsx` (+5 -2) 📝 `frontend/src/components/Preloader.tsx` (+1 -1) ➕ `frontend/src/components/VectorDBOption/index.tsx` (+57 -0) ➕ `frontend/src/images/undraws/onboarding.png` (+0 -0) 📝 `frontend/src/layout/DefaultLayout.tsx` (+1 -1) 📝 `frontend/src/pages/Authentication/SignIn.tsx` (+1 -1) ➖ `frontend/src/pages/Authentication/SystemSetup.tsx` (+0 -228) 📝 `frontend/src/pages/Onboarding/index.tsx` (+2 -1) ➕ `frontend/src/pages/OnboardingFlow/Steps/ConnectVectorDB/index.tsx` (+287 -0) ➕ `frontend/src/pages/OnboardingFlow/Steps/CreateOrganization/index.tsx` (+75 -0) ➕ `frontend/src/pages/OnboardingFlow/Steps/CustomLogin/index.tsx` (+94 -0) ➕ `frontend/src/pages/OnboardingFlow/Steps/SecuritySettings/index.tsx` (+95 -0) ➕ `frontend/src/pages/OnboardingFlow/Steps/SyncVectorDB/index.tsx` (+134 -0) ➕ `frontend/src/pages/OnboardingFlow/index.tsx` (+110 -0) 📝 `frontend/src/utils/paths.ts` (+3 -3) </details> ### 📄 Description Create onboarding flow to help guide user through setup. --- <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-23 17:21:07 -05:00
yindo closed this issue 2026-02-23 17:21:07 -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#291