[PR #4684] [CLOSED] feat: support multi workspaces #6387

Closed
opened 2026-03-23 22:23:00 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4684
Author: @LucasXu0
Created: 2/20/2024
Status: Closed

Base: mainHead: multi_workspaces


📝 Commits (9)

  • 7401830 feat: support multi workspaces
  • 0c0ef79 Merge branch 'main' into multi_workspaces
  • c50f68c feat: support deleting and opening a workspace
  • e33eebe Merge branch 'main' into multi_workspaces
  • 923a0bf feat: remove workspace icon
  • 03fc092 Merge branch 'main' into multi_workspaces
  • ca3c701 Merge branch 'main' into multi_workspaces
  • e06df4b feat: fetching the workspaces when open the list
  • 1711358 Merge branch 'main' into multi_workspaces

📊 Changes

13 files changed (+582 additions, -125 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/util/settings.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/application/user_service.dart (+21 -9)
📝 frontend/appflowy_flutter/lib/workspace/application/user/prelude.dart (+1 -0)
frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart (+178 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart (+2 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart (+12 -7)
frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_setting.dart (+104 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart (+5 -101)
frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_workspace.dart (+254 -0)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/button.dart (+1 -1)
📝 frontend/rust-lib/flowy-user/src/event_map.rs (+1 -1)

📄 Description

Feature Preview

  • support multiple workspaces
Screenshot 2024-02-20 at 18 37 25

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/AppFlowy-IO/AppFlowy/pull/4684 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 2/20/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `multi_workspaces` --- ### 📝 Commits (9) - [`7401830`](https://github.com/AppFlowy-IO/AppFlowy/commit/7401830d919d520dc2188019188b559fd4af14bd) feat: support multi workspaces - [`0c0ef79`](https://github.com/AppFlowy-IO/AppFlowy/commit/0c0ef7969596182d7435205227e6ec6305813c97) Merge branch 'main' into multi_workspaces - [`c50f68c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c50f68c34e4f4d3f6802c41f5fe21fa875ecc4bb) feat: support deleting and opening a workspace - [`e33eebe`](https://github.com/AppFlowy-IO/AppFlowy/commit/e33eebe8e9c2fb92faf49500d5299ab632722de4) Merge branch 'main' into multi_workspaces - [`923a0bf`](https://github.com/AppFlowy-IO/AppFlowy/commit/923a0bfd88808d40236a4adf58697f839fcd3731) feat: remove workspace icon - [`03fc092`](https://github.com/AppFlowy-IO/AppFlowy/commit/03fc0924d734af48e423acfe259188c7e6f9e723) Merge branch 'main' into multi_workspaces - [`ca3c701`](https://github.com/AppFlowy-IO/AppFlowy/commit/ca3c70131f9475c403748ba5dbd31fc1571c8a7c) Merge branch 'main' into multi_workspaces - [`e06df4b`](https://github.com/AppFlowy-IO/AppFlowy/commit/e06df4bba840d9764d89b4ebb99c43a68b8a5f58) feat: fetching the workspaces when open the list - [`1711358`](https://github.com/AppFlowy-IO/AppFlowy/commit/17113587d9763960f7d2444ad20cf792f37c8d20) Merge branch 'main' into multi_workspaces ### 📊 Changes **13 files changed** (+582 additions, -125 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/util/settings.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/application/user_service.dart` (+21 -9) 📝 `frontend/appflowy_flutter/lib/workspace/application/user/prelude.dart` (+1 -0) ➕ `frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart` (+178 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/hotkeys.dart` (+2 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart` (+12 -7) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_setting.dart` (+104 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart` (+5 -101) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_workspace.dart` (+254 -0) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/lib/style_widget/button.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-user/src/event_map.rs` (+1 -1) </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview - support multiple workspaces <img width="250" alt="Screenshot 2024-02-20 at 18 37 25" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/186693da-bae2-464f-a6e4-a211316f70be"> <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:23:00 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6387
No description provided.