[PR #7423] [MERGED] Refactor/test/databse #7876

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7423
Author: @asjqkkkk
Created: 2/27/2025
Status: Merged
Merged: 2/27/2025
Merged by: @asjqkkkk

Base: launch-review-0.8.5Head: refactor/test/databse


📝 Commits (5)

  • 132d91e feat: refactor databse styles
  • f4335ae Merge branch 'main' into refactor/database
  • 8ed11c9 feat: support compact mode for databse
  • 6f69b34 feat: support dynamic height for board
  • 6cc90a4 Merge branch 'launch-review-0.8.5' into refactor/test/databse

📊 Changes

198 files changed (+4132 additions, -5135 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_ai_writer_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_option_actions_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_alignment_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_math_equation_test.dart (+0 -51)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_with_multi_image_block_test.dart (+2 -2)
frontend/appflowy_flutter/integration_test/shared/mock/mock_openai_repository.dart (+81 -0)
📝 frontend/appflowy_flutter/lib/ai/ai.dart (+1 -5)
frontend/appflowy_flutter/lib/ai/service/ai_client.dart (+34 -0)
frontend/appflowy_flutter/lib/ai/service/ai_entities.dart (+0 -85)
📝 frontend/appflowy_flutter/lib/ai/service/appflowy_ai_service.dart (+104 -68)
📝 frontend/appflowy_flutter/lib/ai/service/error.dart (+1 -1)
frontend/appflowy_flutter/lib/ai/service/openai_client.dart (+173 -0)
frontend/appflowy_flutter/lib/ai/service/text_completion.dart (+27 -0)
📝 frontend/appflowy_flutter/lib/ai/widgets/loading_indicator.dart (+44 -41)
frontend/appflowy_flutter/lib/ai/widgets/prompt_input/desktop_input_text_field.dart (+53 -0)
📝 frontend/appflowy_flutter/lib/ai/widgets/prompt_input/file_attachment_list.dart (+6 -1)
📝 frontend/appflowy_flutter/lib/ai/widgets/prompt_input/predefined_format_buttons.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/ai/widgets/prompt_input/select_sources_bottom_sheet.dart (+53 -53)
📝 frontend/appflowy_flutter/lib/ai/widgets/prompt_input/select_sources_menu.dart (+39 -51)

...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/7423 **Author:** [@asjqkkkk](https://github.com/asjqkkkk) **Created:** 2/27/2025 **Status:** ✅ Merged **Merged:** 2/27/2025 **Merged by:** [@asjqkkkk](https://github.com/asjqkkkk) **Base:** `launch-review-0.8.5` ← **Head:** `refactor/test/databse` --- ### 📝 Commits (5) - [`132d91e`](https://github.com/AppFlowy-IO/AppFlowy/commit/132d91e3e831cc0151c53a443bd641a174fa8c2f) feat: refactor databse styles - [`f4335ae`](https://github.com/AppFlowy-IO/AppFlowy/commit/f4335ae3e3f4e17a1befb07aac72b17bb7f84364) Merge branch 'main' into refactor/database - [`8ed11c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/8ed11c960b9bccd5cecaf011fe5972c6101e9cd8) feat: support compact mode for databse - [`6f69b34`](https://github.com/AppFlowy-IO/AppFlowy/commit/6f69b342de54625cea3f27644201923ec4cb3719) feat: support dynamic height for board - [`6cc90a4`](https://github.com/AppFlowy-IO/AppFlowy/commit/6cc90a47567938ceb0429252c4628139d603e0a2) Merge branch 'launch-review-0.8.5' into refactor/test/databse ### 📊 Changes **198 files changed** (+4132 additions, -5135 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_ai_writer_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/document/document_option_actions_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_alignment_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_inline_math_equation_test.dart` (+0 -51) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_with_multi_image_block_test.dart` (+2 -2) ➕ `frontend/appflowy_flutter/integration_test/shared/mock/mock_openai_repository.dart` (+81 -0) 📝 `frontend/appflowy_flutter/lib/ai/ai.dart` (+1 -5) ➕ `frontend/appflowy_flutter/lib/ai/service/ai_client.dart` (+34 -0) ➖ `frontend/appflowy_flutter/lib/ai/service/ai_entities.dart` (+0 -85) 📝 `frontend/appflowy_flutter/lib/ai/service/appflowy_ai_service.dart` (+104 -68) 📝 `frontend/appflowy_flutter/lib/ai/service/error.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/ai/service/openai_client.dart` (+173 -0) ➕ `frontend/appflowy_flutter/lib/ai/service/text_completion.dart` (+27 -0) 📝 `frontend/appflowy_flutter/lib/ai/widgets/loading_indicator.dart` (+44 -41) ➕ `frontend/appflowy_flutter/lib/ai/widgets/prompt_input/desktop_input_text_field.dart` (+53 -0) 📝 `frontend/appflowy_flutter/lib/ai/widgets/prompt_input/file_attachment_list.dart` (+6 -1) 📝 `frontend/appflowy_flutter/lib/ai/widgets/prompt_input/predefined_format_buttons.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/ai/widgets/prompt_input/select_sources_bottom_sheet.dart` (+53 -53) 📝 `frontend/appflowy_flutter/lib/ai/widgets/prompt_input/select_sources_menu.dart` (+39 -51) _...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 23:21:35 +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#7876
No description provided.