[PR #4632] [MERGED] fix: database bugs #6359

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4632
Author: @qinluhe
Created: 2/8/2024
Status: Merged
Merged: 2/26/2024
Merged by: @qinluhe

Base: mainHead: fix/tauri-grid-bugs


📝 Commits (10+)

  • b8b2d31 fix: database bugs
  • 193858b fix: calendar picker
  • c6aafd1 fix: the position of collapse menu button
  • 9a78092 fix: modified some style
  • dbdce03 fix: slash command
  • 3c5fac6 fix: selection style
  • c4d5049 fix: support toggle inline formula
  • fc01d23 fix: block color effect grid block
  • 37b756e fix: if isRange and date is greater than endDate, swap date and endDate
  • 13b8f2c fix: remove sorting before insert row

📊 Changes

130 files changed (+2751 additions, -1241 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/tauri.conf.json (+4 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/AppMain.hooks.ts (+9 -6)
📝 frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx (+2 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/application/database/cell/cell_service.ts (+5 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/application/database/database/database_service.ts (+2 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/application/database/filter/filter_listeners.ts (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/application/database/row/row_listeners.ts (+36 -14)
📝 frontend/appflowy_tauri/src/appflowy_app/application/document/document.types.ts (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/application/notification.ts (+18 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/confirm_dialog/DeleteConfirmDialog.tsx (+29 -18)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.tsx (+8 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerCategories.tsx (+26 -5)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/KeyboardNavigation.tsx (+7 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/notify/index.ts (+0 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/Popover.hooks.ts (+26 -20)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewIcon.tsx (+1 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts (+12 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx (+11 -5)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx (+1 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/LinearProgressWithLabel.tsx (+47 -0)

...and 80 more files

📄 Description

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/4632 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 2/8/2024 **Status:** ✅ Merged **Merged:** 2/26/2024 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `fix/tauri-grid-bugs` --- ### 📝 Commits (10+) - [`b8b2d31`](https://github.com/AppFlowy-IO/AppFlowy/commit/b8b2d31ce13bfe7edf3cd7341be68e99048336ff) fix: database bugs - [`193858b`](https://github.com/AppFlowy-IO/AppFlowy/commit/193858b838bd9851a8eb3b44c5d63d4965c285b7) fix: calendar picker - [`c6aafd1`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6aafd1f960ceeeea703d88ff8e2c227194dca29) fix: the position of collapse menu button - [`9a78092`](https://github.com/AppFlowy-IO/AppFlowy/commit/9a780924e7cb204ccd85ebd11d53836e41263b8f) fix: modified some style - [`dbdce03`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbdce03f7e08649486ad87f353d8c35ad1beba5a) fix: slash command - [`3c5fac6`](https://github.com/AppFlowy-IO/AppFlowy/commit/3c5fac694c5d2a08db43c3dd0a08dee3f91a9fbb) fix: selection style - [`c4d5049`](https://github.com/AppFlowy-IO/AppFlowy/commit/c4d5049ab9220a65b60736cb6aabfc55043da0c3) fix: support toggle inline formula - [`fc01d23`](https://github.com/AppFlowy-IO/AppFlowy/commit/fc01d2312b5553cada4e58e731663681d0a50916) fix: block color effect grid block - [`37b756e`](https://github.com/AppFlowy-IO/AppFlowy/commit/37b756ebcdd3ba5251c5a71f975a41c872e9a3f0) fix: if isRange and date is greater than endDate, swap date and endDate - [`13b8f2c`](https://github.com/AppFlowy-IO/AppFlowy/commit/13b8f2c26b76be8163f1f3e4cb133a5903ce253e) fix: remove sorting before insert row ### 📊 Changes **130 files changed** (+2751 additions, -1241 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/tauri.conf.json` (+4 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/AppMain.hooks.ts` (+9 -6) 📝 `frontend/appflowy_tauri/src/appflowy_app/AppMain.tsx` (+2 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/database/cell/cell_service.ts` (+5 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/database/database/database_service.ts` (+2 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/database/filter/filter_listeners.ts` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/database/row/row_listeners.ts` (+36 -14) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/document/document.types.ts` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/application/notification.ts` (+18 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/confirm_dialog/DeleteConfirmDialog.tsx` (+29 -18) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPicker.tsx` (+8 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/emoji_picker/EmojiPickerCategories.tsx` (+26 -5) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/keyboard_navigation/KeyboardNavigation.tsx` (+7 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/notify/index.ts` (+0 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/popover/Popover.hooks.ts` (+26 -20) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewIcon.tsx` (+1 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.hooks.ts` (+12 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/Database.tsx` (+11 -5) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx` (+1 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/LinearProgressWithLabel.tsx` (+47 -0) _...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. --> ### 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:52 +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#6359
No description provided.