[PR #2289] [MERGED] chore: update UIs in document and move plugins out of package #5181

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2289
Author: @hyj1204
Created: 4/18/2023
Status: Merged
Merged: 4/19/2023
Merged by: @a-wallen

Base: mainHead: feat/move_plugins_location


📝 Commits (5)

  • 7332eda chore: move plugins out of package
  • 79c210b chore: update cover image picker style
  • c44edb9 chore: update math equation style
  • 01613e3 chore: rename barrel file
  • ce88e3a chore: add LocaleKeys

📊 Changes

38 files changed (+151 additions, -466 deletions)

View changed files

📝 frontend/appflowy_flutter/assets/translations/en.json (+5 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/document_page.dart (+1 -12)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/callout/callout_node_widget.dart (+7 -6)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/code_block/code_block_node_widget.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/code_block/code_block_shortcut_event.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/change_cover_popover.dart (+3 -6)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/cover_image_picker.dart (+55 -42)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/divider/divider_node_widget.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/divider/divider_shortcut_event.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/emoji_menu_item.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/emoji_picker.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/config.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/default_emoji_picker_view.dart (+7 -7)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_lists.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_picker.dart (+13 -13)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_picker_builder.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_view_state.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/category_models.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/emoji_model.dart (+0 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/recent_emoji_model.dart (+0 -0)

...and 18 more files

📄 Description

  • Move all the plugins from packages/appflowy_editor_plugins/*** to lib/plugins/document/presentation/plugins/**** and delete appflowy_editor_package

  • Update the following UIs in dark mode

  1. Cover image picker

image

image

  1. Math equation

https://user-images.githubusercontent.com/14248245/232938531-db327b69-907e-4cfd-95fe-e7094434228c.mov

Feature Preview


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/2289 **Author:** [@hyj1204](https://github.com/hyj1204) **Created:** 4/18/2023 **Status:** ✅ Merged **Merged:** 4/19/2023 **Merged by:** [@a-wallen](https://github.com/a-wallen) **Base:** `main` ← **Head:** `feat/move_plugins_location` --- ### 📝 Commits (5) - [`7332eda`](https://github.com/AppFlowy-IO/AppFlowy/commit/7332eda96f9835840e0ccc7701ef629c71558194) chore: move plugins out of package - [`79c210b`](https://github.com/AppFlowy-IO/AppFlowy/commit/79c210b2904779cbbfce3b040d6bfb676303bb40) chore: update cover image picker style - [`c44edb9`](https://github.com/AppFlowy-IO/AppFlowy/commit/c44edb93412046ebbf26957c29900a7e5e2db896) chore: update math equation style - [`01613e3`](https://github.com/AppFlowy-IO/AppFlowy/commit/01613e3641aed048008dd712e4eeda216313c480) chore: rename barrel file - [`ce88e3a`](https://github.com/AppFlowy-IO/AppFlowy/commit/ce88e3a28d8c34b162559c93b31e9296c06c7614) chore: add LocaleKeys ### 📊 Changes **38 files changed** (+151 additions, -466 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+5 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/document_page.dart` (+1 -12) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/callout/callout_node_widget.dart` (+7 -6) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/code_block/code_block_node_widget.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/code_block/code_block_shortcut_event.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/change_cover_popover.dart` (+3 -6) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/cover/cover_image_picker.dart` (+55 -42) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/divider/divider_node_widget.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/divider/divider_shortcut_event.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/emoji_menu_item.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/emoji_picker.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/config.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/default_emoji_picker_view.dart` (+7 -7) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_lists.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_picker.dart` (+13 -13) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_picker_builder.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/emoji_view_state.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/category_models.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/emoji_model.dart` (+0 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/emoji_picker/src/models/recent_emoji_model.dart` (+0 -0) _...and 18 more files_ </details> ### 📄 Description - Move all the plugins from `packages/appflowy_editor_plugins/***` to `lib/plugins/document/presentation/plugins/****` and delete appflowy_editor_package - Update the following UIs in dark mode 1. Cover image picker ![image](https://user-images.githubusercontent.com/14248245/232931418-5f86190a-9a90-4287-9ae1-9cccaa18b07b.png) ![image](https://user-images.githubusercontent.com/14248245/232931377-6d412e26-1d26-4002-9d56-2785b4264251.png) 2. Math equation https://user-images.githubusercontent.com/14248245/232938531-db327b69-907e-4cfd-95fe-e7094434228c.mov <!--- 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 <!--- 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. - [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 22:17: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#5181
No description provided.