[PR #6496] [MERGED] fix: ignore same workspace icon update #7422

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

📋 Pull Request Information

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

Base: mainHead: cover_title_improvement


📝 Commits (10+)

  • 22479fd fix: ignore same workspace icon update
  • 79a7994 feat: pressing esc to exit editing mode in cover title
  • f423644 fix: integration test
  • 7ee2adf fix: unable to use redo/undo in cover title
  • 713907c chore: update collab version b56d051
  • a1f1a95 feat: show add emoji & add cover button when hovering on the title
  • caeb6dd test: add hover on title test
  • 072ae7e fix: unable to use arrow right in cover title
  • 6a4a2da fix: unable to select title sometimes
  • bf4fe64 fix: integration test

📊 Changes

21 files changed (+374 additions, -100 deletions)

View changed files

frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_icon_test.dart (+68 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_test_runner.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_title_test.dart (+99 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_cover_image_test.dart (+2 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart (+1 -5)
📝 frontend/appflowy_flutter/integration_test/shared/document_test_operations.dart (+5 -1)
📝 frontend/appflowy_flutter/lib/mobile/application/page_style/document_page_style_bloc.dart (+11 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/cover_title.dart (+18 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_cover_widget.dart (+54 -8)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/command_shortcuts.dart (+4 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/exit_edit_mode_command.dart (+24 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/undo_redo/custom_undo_redo_commands.dart (+8 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart (+8 -0)
📝 frontend/appflowy_flutter/pubspec.lock (+6 -6)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+22 -20)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+8 -20)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+8 -8)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+8 -8)
📝 frontend/rust-lib/Cargo.lock (+8 -8)
📝 frontend/rust-lib/Cargo.toml (+8 -8)

...and 1 more files

📄 Description

Feature Preview

  • ignore same workspace icon update
  • test
  • press esc key to exit editing mode in cover title
  • test
  • unable to use redo/undo in cover title
  • test
  • hover on cover title, the add icon and the add cover button are shown
  • test
  • can't use cursor to select text in title in some cases

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/6496 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 10/7/2024 **Status:** ✅ Merged **Merged:** 10/8/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `cover_title_improvement` --- ### 📝 Commits (10+) - [`22479fd`](https://github.com/AppFlowy-IO/AppFlowy/commit/22479fd574710f1f440faaf016db0565a58d9928) fix: ignore same workspace icon update - [`79a7994`](https://github.com/AppFlowy-IO/AppFlowy/commit/79a7994a2aec0a08e0dfa87d985c3c0263a77cbb) feat: pressing esc to exit editing mode in cover title - [`f423644`](https://github.com/AppFlowy-IO/AppFlowy/commit/f423644a0c02deb0485d1736b7d0d49dd6d160d5) fix: integration test - [`7ee2adf`](https://github.com/AppFlowy-IO/AppFlowy/commit/7ee2adfa7c66482ac6bcb436c9ea5bbaab150c29) fix: unable to use redo/undo in cover title - [`713907c`](https://github.com/AppFlowy-IO/AppFlowy/commit/713907c1def1489d40bd75477c7331fe88e8e20e) chore: update collab version b56d051 - [`a1f1a95`](https://github.com/AppFlowy-IO/AppFlowy/commit/a1f1a9507d86c9dc5bd790a2883262dae61639e6) feat: show add emoji & add cover button when hovering on the title - [`caeb6dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/caeb6dd555983547f5e1fc9dca14a12898c4a3cd) test: add hover on title test - [`072ae7e`](https://github.com/AppFlowy-IO/AppFlowy/commit/072ae7e65923f106d4823845a924a093e15a6479) fix: unable to use arrow right in cover title - [`6a4a2da`](https://github.com/AppFlowy-IO/AppFlowy/commit/6a4a2daf2907b0b29d14ee28933d8257d4b544dc) fix: unable to select title sometimes - [`bf4fe64`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf4fe6442fd6e33c0b30fbd6e5ab85e5e72db516) fix: integration test ### 📊 Changes **21 files changed** (+374 additions, -100 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_icon_test.dart` (+68 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/workspace/workspace_test_runner.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_title_test.dart` (+99 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_cover_image_test.dart` (+2 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_image_block_test.dart` (+1 -5) 📝 `frontend/appflowy_flutter/integration_test/shared/document_test_operations.dart` (+5 -1) 📝 `frontend/appflowy_flutter/lib/mobile/application/page_style/document_page_style_bloc.dart` (+11 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/cover_title.dart` (+18 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/header/document_cover_widget.dart` (+54 -8) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/command_shortcuts.dart` (+4 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/shortcuts/exit_edit_mode_command.dart` (+24 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/undo_redo/custom_undo_redo_commands.dart` (+8 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart` (+8 -0) 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -6) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+22 -20) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+8 -20) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+8 -8) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/Cargo.lock` (+8 -8) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) _...and 1 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] ignore same workspace icon update - [x] test - [x] press esc key to exit editing mode in cover title - [x] test - [x] unable to use redo/undo in cover title - [x] test - [x] hover on cover title, the add icon and the add cover button are shown - [x] test - [x] can't use cursor to select text in title in some cases <!--- 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:32 +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#7422
No description provided.