[PR #5556] Ai tag feature #6885

Open
opened 2026-03-23 23:17:07 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5556
Author: @appflowy
Created: 6/17/2024
Status: 🔄 Open

Base: mainHead: ai_tag_feature


📝 Commits (4)

📊 Changes

41 files changed (+713 additions, -120 deletions)

View changed files

frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/tag_cell.bloc.dart (+111 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller_builder.dart (+1 -0)
frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_skeleton/tag_card_cell.dart (+62 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_style_maps/mobile_board_card_cell_style.dart (+7 -1)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_type_list.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/builder.dart (+2 -1)
frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/tag.dart (+19 -0)
📝 frontend/appflowy_flutter/lib/util/field_type_extension.dart (+5 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+14 -29)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -1)
📝 frontend/appflowy_web/wasm-libs/Cargo.lock (+13 -42)
📝 frontend/appflowy_web/wasm-libs/Cargo.toml (+1 -1)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+16 -15)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+1 -1)
📝 frontend/resources/translations/en.json (+1 -0)
📝 frontend/rust-lib/Cargo.lock (+29 -15)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs (+10 -0)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+17 -2)
📝 frontend/rust-lib/flowy-database-pub/src/cloud.rs (+11 -1)

...and 21 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/5556 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/17/2024 **Status:** 🔄 Open **Base:** `main` ← **Head:** `ai_tag_feature` --- ### 📝 Commits (4) - [`805cbcb`](https://github.com/AppFlowy-IO/AppFlowy/commit/805cbcb518e8780a7f59a61458359c069ffba42c) chore: integrate ai tag - [`d7fae6f`](https://github.com/AppFlowy-IO/AppFlowy/commit/d7fae6fa7307fef852b03b7167e4a68e97807e4e) chore: update client api - [`fba6106`](https://github.com/AppFlowy-IO/AppFlowy/commit/fba61067878c1886391025b1790f8c25314d585a) Merge branch 'main' into ai_tag_feature - [`87e7c18`](https://github.com/AppFlowy-IO/AppFlowy/commit/87e7c18185766fbc0814df6ccbf01fe368bfc5f2) chore: ai tag ### 📊 Changes **41 files changed** (+713 additions, -120 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/plugins/database/application/cell/bloc/tag_cell.bloc.dart` (+111 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/application/cell/cell_controller_builder.dart` (+1 -0) ➕ `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_skeleton/tag_card_cell.dart` (+62 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/cell/card_cell_style_maps/mobile_board_card_cell_style.dart` (+7 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/field_type_list.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/builder.dart` (+2 -1) ➕ `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/tag.dart` (+19 -0) 📝 `frontend/appflowy_flutter/lib/util/field_type_extension.dart` (+5 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+14 -29) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web/wasm-libs/Cargo.lock` (+13 -42) 📝 `frontend/appflowy_web/wasm-libs/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+16 -15) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/resources/translations/en.json` (+1 -0) 📝 `frontend/rust-lib/Cargo.lock` (+29 -15) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs` (+10 -0) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+17 -2) 📝 `frontend/rust-lib/flowy-database-pub/src/cloud.rs` (+11 -1) _...and 21 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>
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#6885
No description provided.