[PR #337] [MERGED] Auto gen dart event #4077

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/337
Author: @appflowy
Created: 2/16/2022
Status: Merged
Merged: 2/16/2022
Merged by: @appflowy

Base: mainHead: auto_gen_dart_event


📝 Commits (9)

  • 0933935 refactor: add code_gen crate
  • bf3a0b6 feat: add flowy_clean command to remove the build.rs cache
  • cd01352 chore: write dart_event file
  • afd8335 chore: cache dart_event.dart file
  • 0aed867 feat: add dart_event.dart to gitignore
  • 2a6ce12 ci: fix ci errors
  • 5a0f87f ci: add missing file
  • c760ca6 chore: update unit test
  • 6061dc1 chore: update unit test

📊 Changes

66 files changed (+583 additions, -224 deletions)

View changed files

📝 .github/workflows/rust_lint.yml (+0 -3)
📝 .run/dart-event.run.xml (+1 -1)
📝 frontend/Makefile (+5 -1)
📝 frontend/Makefile.toml (+3 -3)
📝 frontend/app_flowy/.vscode/launch.json (+7 -0)
📝 frontend/app_flowy/.vscode/tasks.json (+21 -0)
📝 frontend/app_flowy/packages/flowy_sdk/.gitignore (+2 -1)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event.dart (+1 -2)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dispatch.dart (+1 -1)
frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pb.dart (+11 -0)
frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbenum.dart (+24 -0)
frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbjson.dart (+20 -0)
frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbserver.dart (+9 -0)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/protobuf.dart (+1 -1)
📝 frontend/rust-lib/dart-ffi/Cargo.toml (+2 -2)
📝 frontend/rust-lib/dart-ffi/build.rs (+14 -2)
📝 frontend/rust-lib/dart-notify/build.rs (+2 -2)
📝 frontend/rust-lib/flowy-error/build.rs (+2 -2)
📝 frontend/rust-lib/flowy-folder/build.rs (+4 -2)
📝 frontend/rust-lib/flowy-folder/tests/workspace/folder_test.rs (+1 -15)

...and 46 more files

📄 Description

No description provided


🔄 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/337 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/16/2022 **Status:** ✅ Merged **Merged:** 2/16/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `auto_gen_dart_event` --- ### 📝 Commits (9) - [`0933935`](https://github.com/AppFlowy-IO/AppFlowy/commit/0933935071ca64b95976399ef4ad41ed36d2b714) refactor: add code_gen crate - [`bf3a0b6`](https://github.com/AppFlowy-IO/AppFlowy/commit/bf3a0b6e5b5832116a23fd77c545d33fed3e7577) feat: add flowy_clean command to remove the build.rs cache - [`cd01352`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd013529d4c76b80b57210450f1996f4977ddf1f) chore: write dart_event file - [`afd8335`](https://github.com/AppFlowy-IO/AppFlowy/commit/afd8335e9573b96abcf6b969d1e69461c1ff22c9) chore: cache dart_event.dart file - [`0aed867`](https://github.com/AppFlowy-IO/AppFlowy/commit/0aed86737ff044b8bfed3744117faa4c0434ca47) feat: add dart_event.dart to gitignore - [`2a6ce12`](https://github.com/AppFlowy-IO/AppFlowy/commit/2a6ce12a5546aafa3f6d0ed390a651eb7edd3dc6) ci: fix ci errors - [`5a0f87f`](https://github.com/AppFlowy-IO/AppFlowy/commit/5a0f87fe0255f0c6cf5c55fa1c35aa911f6f5d6f) ci: add missing file - [`c760ca6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c760ca67888594b15f2971f64dffc8803585b8bf) chore: update unit test - [`6061dc1`](https://github.com/AppFlowy-IO/AppFlowy/commit/6061dc19899d1eb91c6e42f0f3121cf0123415f0) chore: update unit test ### 📊 Changes **66 files changed** (+583 additions, -224 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_lint.yml` (+0 -3) 📝 `.run/dart-event.run.xml` (+1 -1) 📝 `frontend/Makefile` (+5 -1) 📝 `frontend/Makefile.toml` (+3 -3) 📝 `frontend/app_flowy/.vscode/launch.json` (+7 -0) 📝 `frontend/app_flowy/.vscode/tasks.json` (+21 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/.gitignore` (+2 -1) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event.dart` (+1 -2) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dispatch.dart` (+1 -1) ➕ `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pb.dart` (+11 -0) ➕ `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbenum.dart` (+24 -0) ➕ `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbjson.dart` (+20 -0) ➕ `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/event_map.pbserver.dart` (+9 -0) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-net/protobuf.dart` (+1 -1) 📝 `frontend/rust-lib/dart-ffi/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/dart-ffi/build.rs` (+14 -2) 📝 `frontend/rust-lib/dart-notify/build.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-error/build.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-folder/build.rs` (+4 -2) 📝 `frontend/rust-lib/flowy-folder/tests/workspace/folder_test.rs` (+1 -15) _...and 46 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:36:11 +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#4077
No description provided.