[PR #4552] [MERGED] fix: fixed editor bugs #6306

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4552
Author: @qinluhe
Created: 1/30/2024
Status: Merged
Merged: 2/1/2024
Merged by: @appflowy

Base: mainHead: fix/tauri-editor-bugs


📝 Commits (2)

📊 Changes

151 files changed (+5612 additions, -2612 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+1 -1)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+20 -28)
📝 frontend/appflowy_tauri/src/appflowy_app/application/document/document.service.ts (+27 -11)
📝 frontend/appflowy_tauri/src/appflowy_app/application/document/document.types.ts (+12 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.hooks.ts (+1 -15)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.tsx (+4 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerCategories.tsx (+281 -61)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerHeader.tsx (+6 -2)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/error_boundary/withError.tsx (+16 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/katex_math/KatexMath.tsx (+15 -1)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/KeyboardNavigation.tsx (+303 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/utils.ts (+32 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/Popover.hooks.ts (+206 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/utils.ts (+45 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewIcon.tsx (+8 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts (+8 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx (+29 -24)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/tab_bar/ViewActions.tsx (+10 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/grid/grid_table/GridTable.tsx (+7 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/document/document_header/DocumentHeader.tsx (+2 -1)

...and 80 more files

📄 Description

Fixed Issues

https://github.com/AppFlowy-IO/AppFlowy/issues/4457
https://github.com/AppFlowy-IO/AppFlowy/issues/4456
https://github.com/AppFlowy-IO/AppFlowy/issues/4455
https://github.com/AppFlowy-IO/AppFlowy/issues/4454
https://github.com/AppFlowy-IO/AppFlowy/issues/4453
https://github.com/AppFlowy-IO/AppFlowy/issues/4452
https://github.com/AppFlowy-IO/AppFlowy/issues/4451
https://github.com/AppFlowy-IO/AppFlowy/issues/4450
https://github.com/AppFlowy-IO/AppFlowy/issues/4449
https://github.com/AppFlowy-IO/AppFlowy/issues/4448
https://github.com/AppFlowy-IO/AppFlowy/issues/4447
https://github.com/AppFlowy-IO/AppFlowy/issues/4446

Feature Preview


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/4552 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 1/30/2024 **Status:** ✅ Merged **Merged:** 2/1/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix/tauri-editor-bugs` --- ### 📝 Commits (2) - [`3c8bd9e`](https://github.com/AppFlowy-IO/AppFlowy/commit/3c8bd9eb8982f097beb71ceff770fbe717461746) fix: fixed editor bugs - [`df158fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/df158fb5d67fcd348ce8ee795be061c08fa2219b) fix: add error boundary ### 📊 Changes **151 files changed** (+5612 additions, -2612 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+1 -1) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+20 -28) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/document/document.service.ts` (+27 -11) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/document/document.types.ts` (+12 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.hooks.ts` (+1 -15) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.tsx` (+4 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerCategories.tsx` (+281 -61) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerHeader.tsx` (+6 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/error_boundary/withError.tsx` (+16 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/katex_math/KatexMath.tsx` (+15 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/KeyboardNavigation.tsx` (+303 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/utils.ts` (+32 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/Popover.hooks.ts` (+206 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/utils.ts` (+45 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewIcon.tsx` (+8 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts` (+8 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx` (+29 -24) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/tab_bar/ViewActions.tsx` (+10 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/grid/grid_table/GridTable.tsx` (+7 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/document/document_header/DocumentHeader.tsx` (+2 -1) _...and 80 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. --> ### Fixed Issues https://github.com/AppFlowy-IO/AppFlowy/issues/4457 https://github.com/AppFlowy-IO/AppFlowy/issues/4456 https://github.com/AppFlowy-IO/AppFlowy/issues/4455 https://github.com/AppFlowy-IO/AppFlowy/issues/4454 https://github.com/AppFlowy-IO/AppFlowy/issues/4453 https://github.com/AppFlowy-IO/AppFlowy/issues/4452 https://github.com/AppFlowy-IO/AppFlowy/issues/4451 https://github.com/AppFlowy-IO/AppFlowy/issues/4450 https://github.com/AppFlowy-IO/AppFlowy/issues/4449 https://github.com/AppFlowy-IO/AppFlowy/issues/4448 https://github.com/AppFlowy-IO/AppFlowy/issues/4447 https://github.com/AppFlowy-IO/AppFlowy/issues/4446 ### 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 - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:22:38 +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#6306
No description provided.