[PR #6449] [MERGED] feat: support workspace ops on mobile #7387

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6449
Author: @LucasXu0
Created: 10/2/2024
Status: Merged
Merged: 10/2/2024
Merged by: @LucasXu0

Base: mainHead: support_workspace_op_on_mobile


📝 Commits (10+)

  • 24e1722 feat: support workspace ops on mobile
  • 6604cea chore: move the member bloc to workspace menu item widget
  • df88a7f feat: support creating workspace on mobile
  • e04a7c5 chore: add popToHome extension
  • b9b57df fix: flutter analyze
  • e6b4e41 feat: support renaming a workspace
  • 90a4ca9 feat: support deleting a workspace
  • 7fde55f feat: support leaving a workspace
  • 84c683f feat: workspace icon ui revamp
  • 2d885df feat: support updating workspace icon on mobile

📊 Changes

37 files changed (+976 additions, -327 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+18 -18)
frontend/appflowy_flutter/integration_test/cloud/supabase_auth_test.dart (+0 -93)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart (+5 -4)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_delete_block_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_drag_block_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/sidebar/sidebar_move_page_test.dart (+6 -6)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/anon_user_continue_test.dart (+4 -4)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/appflowy_cloud_auth_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/document_sync_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/empty_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/user_setting_sync_test.dart (+6 -6)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/change_name_and_icon_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/collaborative_workspace_test.dart (+5 -5)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_settings_test.dart (+5 -5)
frontend/appflowy_flutter/integration_test/mobile/cloud/cloud_runner.dart (+5 -0)
frontend/appflowy_flutter/integration_test/mobile/cloud/workspace/workspace_operations_test.dart (+67 -0)
📝 frontend/appflowy_flutter/integration_test/mobile/document/page_style_test.dart (+0 -0)
📝 frontend/appflowy_flutter/integration_test/mobile_runner.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/shared/constants.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/shared/expectation.dart (+10 -3)

...and 17 more files

📄 Description

Feature Preview

  • add ... buton in workspace menu
  • create a new workspace
  • delete a workspace
  • leave a workspace
  • show a confirmation toast before deleting or leaving a workspace
  • rename workspace
  • workspace icon ui revamp
  • update workspace icon
  • translations
  • add tests

create a workspace

Screenshot 2024-10-02 at 14 29 07 Screenshot 2024-10-02 at 14 29 43 Screenshot 2024-10-02 at 14 31 48

rename a workspace

Screenshot 2024-10-02 at 14 39 08 Screenshot 2024-10-02 at 14 39 12 Screenshot 2024-10-02 at 14 39 21

new workspace icon

Screenshot 2024-10-02 at 15 30 58

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/6449 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/2/2024 **Status:** ✅ Merged **Merged:** 10/2/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `support_workspace_op_on_mobile` --- ### 📝 Commits (10+) - [`24e1722`](https://github.com/AppFlowy-IO/AppFlowy/commit/24e1722727f2e3e81b2b39dbb3ddf2863670aadf) feat: support workspace ops on mobile - [`6604cea`](https://github.com/AppFlowy-IO/AppFlowy/commit/6604cea94cd0314190ae2850c1f7fc330815b76a) chore: move the member bloc to workspace menu item widget - [`df88a7f`](https://github.com/AppFlowy-IO/AppFlowy/commit/df88a7fd9e76ad5b8ddeae96e946e74b8e82b018) feat: support creating workspace on mobile - [`e04a7c5`](https://github.com/AppFlowy-IO/AppFlowy/commit/e04a7c5acd08c944f5bebb49a5499c91f57eebf2) chore: add popToHome extension - [`b9b57df`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9b57dff375fd71301e58e77c5a9bd853005a9c5) fix: flutter analyze - [`e6b4e41`](https://github.com/AppFlowy-IO/AppFlowy/commit/e6b4e412a0ccab86677862fba87de620f9ebd654) feat: support renaming a workspace - [`90a4ca9`](https://github.com/AppFlowy-IO/AppFlowy/commit/90a4ca98d5c10643ed51a1b6503e313396140c83) feat: support deleting a workspace - [`7fde55f`](https://github.com/AppFlowy-IO/AppFlowy/commit/7fde55f2534e2e3af123ad9af603dd1ac0846978) feat: support leaving a workspace - [`84c683f`](https://github.com/AppFlowy-IO/AppFlowy/commit/84c683fca65ca0912da08892ec1c4f3611d29c16) feat: workspace icon ui revamp - [`2d885df`](https://github.com/AppFlowy-IO/AppFlowy/commit/2d885dfb021744bd09cc88a8e0ee2170977b1c9c) feat: support updating workspace icon on mobile ### 📊 Changes **37 files changed** (+976 additions, -327 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+18 -18) ➖ `frontend/appflowy_flutter/integration_test/cloud/supabase_auth_test.dart` (+0 -93) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart` (+5 -4) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_delete_block_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_drag_block_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/sidebar/sidebar_move_page_test.dart` (+6 -6) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/anon_user_continue_test.dart` (+4 -4) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/appflowy_cloud_auth_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/document_sync_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/empty_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/user_setting_sync_test.dart` (+6 -6) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/change_name_and_icon_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/collaborative_workspace_test.dart` (+5 -5) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_settings_test.dart` (+5 -5) ➕ `frontend/appflowy_flutter/integration_test/mobile/cloud/cloud_runner.dart` (+5 -0) ➕ `frontend/appflowy_flutter/integration_test/mobile/cloud/workspace/workspace_operations_test.dart` (+67 -0) 📝 `frontend/appflowy_flutter/integration_test/mobile/document/page_style_test.dart` (+0 -0) 📝 `frontend/appflowy_flutter/integration_test/mobile_runner.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/constants.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/expectation.dart` (+10 -3) _...and 17 more files_ </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 - [x] add ... buton in workspace menu - [x] create a new workspace - [x] delete a workspace - [x] leave a workspace - [x] show a confirmation toast before deleting or leaving a workspace - [x] rename workspace - [x] workspace icon ui revamp - [x] update workspace icon - [x] translations - [ ] add tests # create a workspace <img width="200" alt="Screenshot 2024-10-02 at 14 29 07" src="https://github.com/user-attachments/assets/30b2fe55-a36d-448f-ad56-f197194e676c"> <img width="200" alt="Screenshot 2024-10-02 at 14 29 43" src="https://github.com/user-attachments/assets/4abd1ec8-c37a-4f1c-97aa-0bf7d67fbbd1"> <img width="200" alt="Screenshot 2024-10-02 at 14 31 48" src="https://github.com/user-attachments/assets/91655e1b-0c39-48af-91d8-9c94c64a6aad"> # rename a workspace <img width="200" alt="Screenshot 2024-10-02 at 14 39 08" src="https://github.com/user-attachments/assets/b872c0bc-fd28-459c-952b-d07493f258da"> <img width="200" alt="Screenshot 2024-10-02 at 14 39 12" src="https://github.com/user-attachments/assets/171f8dcf-1cd4-4dac-be83-65376dfc526c"> <img width="200" alt="Screenshot 2024-10-02 at 14 39 21" src="https://github.com/user-attachments/assets/29115fa2-b7c5-4cc3-9196-2f295d928bd6"> # new workspace icon <img width="200" alt="Screenshot 2024-10-02 at 15 30 58" src="https://github.com/user-attachments/assets/1713a7e1-c648-4aae-acca-b0f2e95f3735"> <!--- 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 - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [x] 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 23:19:23 +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#7387
No description provided.