[PR #3142] [CLOSED] feat: init flowy-plugins #5595

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3142
Author: @LucasXu0
Created: 8/8/2023
Status: Closed

Base: mainHead: rustlib_plugins


📝 Commits (1)

  • d89ae1e chore: init flowy-plugins

📊 Changes

16 files changed (+234 additions, -6 deletions)

View changed files

frontend/appflowy_flutter/lib/workspace/application/open_ai/open_ai_service.dart (+18 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart (+20 -5)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart (+2 -0)
📝 frontend/rust-lib/Cargo.lock (+18 -0)
📝 frontend/rust-lib/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-core/Cargo.toml (+3 -1)
📝 frontend/rust-lib/flowy-core/src/module.rs (+2 -0)
frontend/rust-lib/flowy-plugins/Cargo.toml (+26 -0)
frontend/rust-lib/flowy-plugins/Flowy.toml (+3 -0)
frontend/rust-lib/flowy-plugins/build.rs (+10 -0)
frontend/rust-lib/flowy-plugins/src/entities.rs (+71 -0)
frontend/rust-lib/flowy-plugins/src/event_handler.rs (+15 -0)
frontend/rust-lib/flowy-plugins/src/event_map.rs (+18 -0)
frontend/rust-lib/flowy-plugins/src/lib.rs (+7 -0)
frontend/rust-lib/flowy-plugins/src/notification.rs (+20 -0)
frontend/rust-lib/flowy-plugins/src/parse.rs (+0 -0)

📄 Description

Feature Preview

This PR indicates how to create new packages inside the rust-lib and have them referenced by the frontend code.


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/3142 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 8/8/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `rustlib_plugins` --- ### 📝 Commits (1) - [`d89ae1e`](https://github.com/AppFlowy-IO/AppFlowy/commit/d89ae1ed8c0ab97631db9e68a734ff24545f3fb9) chore: init flowy-plugins ### 📊 Changes **16 files changed** (+234 additions, -6 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/workspace/application/open_ai/open_ai_service.dart` (+18 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart` (+20 -5) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart` (+2 -0) 📝 `frontend/rust-lib/Cargo.lock` (+18 -0) 📝 `frontend/rust-lib/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-core/Cargo.toml` (+3 -1) 📝 `frontend/rust-lib/flowy-core/src/module.rs` (+2 -0) ➕ `frontend/rust-lib/flowy-plugins/Cargo.toml` (+26 -0) ➕ `frontend/rust-lib/flowy-plugins/Flowy.toml` (+3 -0) ➕ `frontend/rust-lib/flowy-plugins/build.rs` (+10 -0) ➕ `frontend/rust-lib/flowy-plugins/src/entities.rs` (+71 -0) ➕ `frontend/rust-lib/flowy-plugins/src/event_handler.rs` (+15 -0) ➕ `frontend/rust-lib/flowy-plugins/src/event_map.rs` (+18 -0) ➕ `frontend/rust-lib/flowy-plugins/src/lib.rs` (+7 -0) ➕ `frontend/rust-lib/flowy-plugins/src/notification.rs` (+20 -0) ➕ `frontend/rust-lib/flowy-plugins/src/parse.rs` (+0 -0) </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 This PR indicates how to create new packages inside the rust-lib and have them referenced by the frontend code. <!--- 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 the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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:19:27 +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#5595
No description provided.