[PR #2750] [MERGED] feat: add outline block #5406

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2750
Author: @AmanNegi
Created: 6/9/2023
Status: Merged
Merged: 6/29/2023
Merged by: @LucasXu0

Base: mainHead: create-outline


📝 Commits (10+)

  • a14345f feat: Add Outline Block
  • cc7634f feat: implement outline block component
  • 653bf8b Merge branch 'main' into create-outline
  • 50a1df0 Merge branch 'AppFlowy-IO:main' into create-outline
  • 01ef7df chore: Localize text strings
  • d5a556a chore: Merge branch 'main' into 'create-outline'
  • 7826664 chore: merge into main
  • ee65078 chore: Add tests
  • 54e6b38 fix: Remove irrelevant comments
  • f0cc858 feat: refactor UI issues and add tests

📊 Changes

7 files changed (+328 additions, -3 deletions)

View changed files

📝 frontend/appflowy_flutter/assets/translations/en.json (+3 -0)
frontend/appflowy_flutter/integration_test/plugins/outline_block_test.dart (+114 -0)
📝 frontend/appflowy_flutter/integration_test/util/editor_test_operations.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+4 -2)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_item.dart (+0 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/outline/outline_block_component.dart (+203 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart (+2 -0)

📄 Description

Feature Preview

Fixes: #2688

https://github.com/AppFlowy-IO/AppFlowy/assets/37607224/8304d2da-7790-4613-87ed-b30591993ddf


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2750 **Author:** [@AmanNegi](https://github.com/AmanNegi) **Created:** 6/9/2023 **Status:** ✅ Merged **Merged:** 6/29/2023 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `create-outline` --- ### 📝 Commits (10+) - [`a14345f`](https://github.com/AppFlowy-IO/AppFlowy/commit/a14345f095727a2fc62b01f479e995c3af60739b) feat: Add Outline Block - [`cc7634f`](https://github.com/AppFlowy-IO/AppFlowy/commit/cc7634fa63490d3ba104d81cd2d7c9bd041cb05b) feat: implement outline block component - [`653bf8b`](https://github.com/AppFlowy-IO/AppFlowy/commit/653bf8bd21c73d9cb848a4c7aafff14520714d0c) Merge branch 'main' into create-outline - [`50a1df0`](https://github.com/AppFlowy-IO/AppFlowy/commit/50a1df0820ceea005b8a45ce95af377135ac8e86) Merge branch 'AppFlowy-IO:main' into create-outline - [`01ef7df`](https://github.com/AppFlowy-IO/AppFlowy/commit/01ef7dfe7ddb06c8eded0ac835055db3ef4e1bd9) chore: Localize text strings - [`d5a556a`](https://github.com/AppFlowy-IO/AppFlowy/commit/d5a556ad6e1da109687c7c596743df171b493535) chore: Merge branch 'main' into 'create-outline' - [`7826664`](https://github.com/AppFlowy-IO/AppFlowy/commit/782666430024dfc7ba7e6145fb8f3046691d1a81) chore: merge into main - [`ee65078`](https://github.com/AppFlowy-IO/AppFlowy/commit/ee650788cacd3cc7654169d8e98ee8ce1fe5e639) chore: Add tests - [`54e6b38`](https://github.com/AppFlowy-IO/AppFlowy/commit/54e6b38d2eac5e4ed4f76f11376d6be76f9fb787) fix: Remove irrelevant comments - [`f0cc858`](https://github.com/AppFlowy-IO/AppFlowy/commit/f0cc85891bcd315d50311d93f30c6192dff6b31e) feat: refactor UI issues and add tests ### 📊 Changes **7 files changed** (+328 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+3 -0) ➕ `frontend/appflowy_flutter/integration_test/plugins/outline_block_test.dart` (+114 -0) 📝 `frontend/appflowy_flutter/integration_test/util/editor_test_operations.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+4 -2) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/database/referenced_database_menu_item.dart` (+0 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/outline/outline_block_component.dart` (+203 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart` (+2 -0) </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 Fixes: #2688 https://github.com/AppFlowy-IO/AppFlowy/assets/37607224/8304d2da-7790-4613-87ed-b30591993ddf <!--- 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 the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [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. - [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 22:18:36 +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#5406
No description provided.