[PR #4111] [CLOSED] feat: emoji shortcut feature #6067

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4111
Author: @Tony-MK
Created: 12/6/2023
Status: Closed

Base: mainHead: emoji_shortcut_feature


📝 Commits (10+)

  • ba735ea feat: emoji shortcut feature
  • 831ea48 feat: emoji shortcut command
  • 5d46ec3 refactor: making code prettier
  • 811786c refactor: applying suggestions and optimzing code
  • 88be50d chore: merge branch 'upstream/main' into HEAD
  • 7461b31 fix: close menu after 10 chars + use keyevent
  • 12aa5df fix: improve UI and interactions
  • 1b75da1 test: add withKeyUp
  • 796eb97 test: improve simulateKeyDownEvent
  • b913495 test: fix tests

📊 Changes

7 files changed (+587 additions, -1 deletions)

View changed files

frontend/appflowy_flutter/integration_test/desktop/document/document_emoji_shortcut_test.dart (+161 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_test_runner.dart (+2 -0)
📝 frontend/appflowy_flutter/integration_test/shared/keyboard.dart (+13 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart (+3 -1)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/emoji_shortcut/emoji_shortcut_builder.dart (+309 -0)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/emoji_shortcut/emoji_shortcut_service.dart (+98 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart (+1 -0)

📄 Description

Feature Preview


Closes: https://github.com/AppFlowy-IO/AppFlowy/issues/2797

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/4111 **Author:** [@Tony-MK](https://github.com/Tony-MK) **Created:** 12/6/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `emoji_shortcut_feature` --- ### 📝 Commits (10+) - [`ba735ea`](https://github.com/AppFlowy-IO/AppFlowy/commit/ba735eaf154323181c2d1a9251b2134194080cbd) feat: emoji shortcut feature - [`831ea48`](https://github.com/AppFlowy-IO/AppFlowy/commit/831ea4884e6932ac0c7c9bc2fa15d1f225c3af6b) feat: emoji shortcut command - [`5d46ec3`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d46ec3b6c2957ed7592946cd03b99a644d98be2) refactor: making code prettier - [`811786c`](https://github.com/AppFlowy-IO/AppFlowy/commit/811786cc2adbf81d66310a8dfef98d6dac05f8fc) refactor: applying suggestions and optimzing code - [`88be50d`](https://github.com/AppFlowy-IO/AppFlowy/commit/88be50dc3ca7aaab4ae083fbc19b8c385ef8c820) chore: merge branch 'upstream/main' into HEAD - [`7461b31`](https://github.com/AppFlowy-IO/AppFlowy/commit/7461b318747885b7c95a9a155b2d072ada330766) fix: close menu after 10 chars + use keyevent - [`12aa5df`](https://github.com/AppFlowy-IO/AppFlowy/commit/12aa5dfbed7d5446fff4a0dbf478340fd8ed3b52) fix: improve UI and interactions - [`1b75da1`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b75da1212e6fc4f026f01d62b6ba50265e6dc0f) test: add withKeyUp - [`796eb97`](https://github.com/AppFlowy-IO/AppFlowy/commit/796eb9751235e14ae82fd9d252712ba5f7d69a07) test: improve simulateKeyDownEvent - [`b913495`](https://github.com/AppFlowy-IO/AppFlowy/commit/b9134958d2918535753b8bb203e03284cfe6fb45) test: fix tests ### 📊 Changes **7 files changed** (+587 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/integration_test/desktop/document/document_emoji_shortcut_test.dart` (+161 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_test_runner.dart` (+2 -0) 📝 `frontend/appflowy_flutter/integration_test/shared/keyboard.dart` (+13 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_page.dart` (+3 -1) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/emoji_shortcut/emoji_shortcut_builder.dart` (+309 -0) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/emoji_shortcut/emoji_shortcut_service.dart` (+98 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/plugins.dart` (+1 -0) </details> ### 📄 Description ### 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 --> --- Closes: https://github.com/AppFlowy-IO/AppFlowy/issues/2797 <!--- 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 22:21:34 +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#6067
No description provided.