[PR #6798] [MERGED] feat: support editing path name on mobile #7584

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6798
Author: @LucasXu0
Created: 11/15/2024
Status: Merged
Merged: 11/18/2024
Merged by: @LucasXu0

Base: mainHead: support_editing_path_name_on_mobile


📝 Commits (7)

  • a479ebc feat: support editing path name on mobile
  • 81c36de chore: format code
  • 019fc3f chore: update publish toast
  • 7a7e6ec feat: optimize the toast for mobile more actions menu
  • 3607bba feat: optimize update path name logic
  • 7e4f4dd test: add update path name test
  • 3973d05 fix: integration test

📊 Changes

8 files changed (+362 additions, -90 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/mobile/cloud/document/publish_test.dart (+52 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/base/view_page/more_bottom_sheet.dart (+221 -71)
📝 frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_page.dart (+10 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/space/mobile_space_menu.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/workspaces/create_workspace_menu.dart (+19 -6)
📝 frontend/appflowy_flutter/lib/plugins/shared/share/share_bloc.dart (+8 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart (+49 -11)
📝 frontend/resources/translations/en.json (+2 -1)

📄 Description

Feature Preview

  • support editing path name for published page on mobile
  • tests

https://github.com/user-attachments/assets/30175f77-139d-4617-96e4-853d3262f547


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/6798 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 11/15/2024 **Status:** ✅ Merged **Merged:** 11/18/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `support_editing_path_name_on_mobile` --- ### 📝 Commits (7) - [`a479ebc`](https://github.com/AppFlowy-IO/AppFlowy/commit/a479ebc99702708970a52f34a365aed89ceabe5f) feat: support editing path name on mobile - [`81c36de`](https://github.com/AppFlowy-IO/AppFlowy/commit/81c36de719dda899d26df19d455188b6866bd3b0) chore: format code - [`019fc3f`](https://github.com/AppFlowy-IO/AppFlowy/commit/019fc3f637c58c4d7a7d85d54a30c21d2d99bfb0) chore: update publish toast - [`7a7e6ec`](https://github.com/AppFlowy-IO/AppFlowy/commit/7a7e6ec61626e9ebca62cde93dd7b5085e8d5cc0) feat: optimize the toast for mobile more actions menu - [`3607bba`](https://github.com/AppFlowy-IO/AppFlowy/commit/3607bba334e35b8eb8fb9d9c6e2d2f27b08df9d1) feat: optimize update path name logic - [`7e4f4dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/7e4f4ddc80b81fac1fe5dcdc4d80ec0435e957f1) test: add update path name test - [`3973d05`](https://github.com/AppFlowy-IO/AppFlowy/commit/3973d05678cedffca6f2b0a89a311d388ddb4f3d) fix: integration test ### 📊 Changes **8 files changed** (+362 additions, -90 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/mobile/cloud/document/publish_test.dart` (+52 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/base/view_page/more_bottom_sheet.dart` (+221 -71) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/bottom_sheet/bottom_sheet_view_page.dart` (+10 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/space/mobile_space_menu.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/workspaces/create_workspace_menu.dart` (+19 -6) 📝 `frontend/appflowy_flutter/lib/plugins/shared/share/share_bloc.dart` (+8 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart` (+49 -11) 📝 `frontend/resources/translations/en.json` (+2 -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 - [x] support editing path name for published page on mobile - [x] tests https://github.com/user-attachments/assets/30175f77-139d-4617-96e4-853d3262f547 <!--- 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. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] 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:20:18 +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#7584
No description provided.