[PR #815] [MERGED] [STYLE] Implement new side bar menus #3503

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/815
Author: @shatfield4
Created: 2/26/2024
Status: Merged
Merged: 3/6/2024
Merged by: @timothycarambat

Base: masterHead: 809-style-implement-new-side-bar-menus


📝 Commits (10+)

  • 0be5033 WIP main sidebar designs
  • d66d541 hover states and active states for main sidebar
  • 613611c main and settings sidebar UI updates & improve performance using Link instead of
  • ca9e584 update borders to match rest of UI in all pages
  • 0b8084b update borders of all containers to match rest of UI
  • 55206d3 remove unneeded conditional
  • da9533e small changes to UI to conform to designs
  • b3a4634 add check for roles to SettingsButton component and hide button from footer when in mobile
  • ea24d35 Merge branch 'master' into 809-style-implement-new-side-bar-menus
  • e173a7c typo

📊 Changes

22 files changed (+168 additions, -148 deletions)

View changed files

📝 frontend/src/components/DefaultChat/index.jsx (+1 -1)
📝 frontend/src/components/Footer/index.jsx (+10 -3)
frontend/src/components/SettingsButton/index.jsx (+31 -0)
📝 frontend/src/components/SettingsSidebar/index.jsx (+31 -44)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+50 -35)
📝 frontend/src/components/Sidebar/index.jsx (+25 -46)
📝 frontend/src/components/UserMenu/UserButton/index.jsx (+2 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Invitations/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Logging/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/System/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Users/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Workspaces/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/ApiKeys/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/Appearance/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/Chats/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/EmbedChats/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/EmbedConfigs/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/Security/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx (+2 -2)

...and 2 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #809

What is in this change?

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

  • Implement new sidebar designs per internal designs
  • Match borders and border radius to match in the rest of the application

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/815 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/26/2024 **Status:** ✅ Merged **Merged:** 3/6/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `809-style-implement-new-side-bar-menus` --- ### 📝 Commits (10+) - [`0be5033`](https://github.com/Mintplex-Labs/anything-llm/commit/0be503395a4d519407c5b37085c9a363a5055f84) WIP main sidebar designs - [`d66d541`](https://github.com/Mintplex-Labs/anything-llm/commit/d66d54198675d753f0cd24e44ae2ff7f2cc6dfeb) hover states and active states for main sidebar - [`613611c`](https://github.com/Mintplex-Labs/anything-llm/commit/613611cea3df3797cc17e2a547f983f22c2d7be7) main and settings sidebar UI updates & improve performance using Link instead of <a> - [`ca9e584`](https://github.com/Mintplex-Labs/anything-llm/commit/ca9e58417435e21f8157f27c6a4c2e9c8355c616) update borders to match rest of UI in all pages - [`0b8084b`](https://github.com/Mintplex-Labs/anything-llm/commit/0b8084b3c58578ecf8f0c560ec974ae79481cd3a) update borders of all containers to match rest of UI - [`55206d3`](https://github.com/Mintplex-Labs/anything-llm/commit/55206d3462f861324a53c704c98e9bf3e15b216b) remove unneeded conditional - [`da9533e`](https://github.com/Mintplex-Labs/anything-llm/commit/da9533e5526c117798ca465f32818e4f7814234f) small changes to UI to conform to designs - [`b3a4634`](https://github.com/Mintplex-Labs/anything-llm/commit/b3a463415b6a522e4c9d54285d7169494068cca7) add check for roles to SettingsButton component and hide button from footer when in mobile - [`ea24d35`](https://github.com/Mintplex-Labs/anything-llm/commit/ea24d35aaecf798f23563726bc18a7a9558f8ebe) Merge branch 'master' into 809-style-implement-new-side-bar-menus - [`e173a7c`](https://github.com/Mintplex-Labs/anything-llm/commit/e173a7cca28aa1b3edf379bcdb71a22cb23949c3) typo ### 📊 Changes **22 files changed** (+168 additions, -148 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/DefaultChat/index.jsx` (+1 -1) 📝 `frontend/src/components/Footer/index.jsx` (+10 -3) ➕ `frontend/src/components/SettingsButton/index.jsx` (+31 -0) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+31 -44) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+50 -35) 📝 `frontend/src/components/Sidebar/index.jsx` (+25 -46) 📝 `frontend/src/components/UserMenu/UserButton/index.jsx` (+2 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Invitations/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Logging/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/System/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Users/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Workspaces/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/ApiKeys/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/Appearance/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/Chats/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/EmbedChats/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/EmbedConfigs/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/Security/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx` (+2 -2) _...and 2 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [x] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #809 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement new sidebar designs per internal designs - Match borders and border radius to match in the rest of the application ### 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:33:55 -05:00
yindo closed this issue 2026-02-22 18:33:55 -05:00
yindo changed title from [PR #815] [STYLE] Implement new side bar menus to [PR #815] [MERGED] [STYLE] Implement new side bar menus 2026-06-05 15:13:45 -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#3503