[PR #1320] [MERGED] Feat: add appflowy editor in backend #4660

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1320
Author: @appflowy
Created: 10/20/2022
Status: Merged
Merged: 10/20/2022
Merged by: @appflowy

Base: mainHead: feat/new_editor


📝 Commits (10+)

📊 Changes

81 files changed (+2342 additions, -877 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/doc/application/doc_service.dart (+2 -4)
📝 frontend/rust-lib/Cargo.lock (+1 -0)
📝 frontend/rust-lib/dart-ffi/src/lib.rs (+1 -1)
frontend/rust-lib/flowy-document/src/editor/document.rs (+99 -0)
frontend/rust-lib/flowy-document/src/editor/document_serde.rs (+247 -0)
frontend/rust-lib/flowy-document/src/editor/editor.rs (+92 -0)
frontend/rust-lib/flowy-document/src/editor/mod.rs (+8 -0)
frontend/rust-lib/flowy-document/src/editor/queue.rs (+78 -0)
📝 frontend/rust-lib/flowy-document/src/entities.rs (+2 -10)
📝 frontend/rust-lib/flowy-document/src/event_handler.rs (+2 -2)
📝 frontend/rust-lib/flowy-document/src/lib.rs (+3 -3)
📝 frontend/rust-lib/flowy-document/src/manager.rs (+71 -30)
frontend/rust-lib/flowy-document/src/old_editor/conflict.rs (+1 -0)
📝 frontend/rust-lib/flowy-document/src/old_editor/editor.rs (+62 -51)
frontend/rust-lib/flowy-document/src/old_editor/mod.rs (+4 -0)
📝 frontend/rust-lib/flowy-document/src/old_editor/queue.rs (+10 -8)
frontend/rust-lib/flowy-document/src/old_editor/util.rs (+0 -0)
📝 frontend/rust-lib/flowy-document/src/old_editor/web_socket.rs (+4 -12)
frontend/rust-lib/flowy-document/tests/document/mod.rs (+0 -2)

...and 61 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/1320 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/20/2022 **Status:** ✅ Merged **Merged:** 10/20/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/new_editor` --- ### 📝 Commits (10+) - [`1fc2dce`](https://github.com/AppFlowy-IO/AppFlowy/commit/1fc2dceef9e83a8cd2fd64a3fe4634c79a8d731d) chore: remove update attributes - [`c1ed5c9`](https://github.com/AppFlowy-IO/AppFlowy/commit/c1ed5c97ee97eb867caca0b1f24313e374bc4f24) chore: format code - [`ec574c4`](https://github.com/AppFlowy-IO/AppFlowy/commit/ec574c413a3c4b4f89067a869ea629df9f3165c6) chore: extension for transaction - [`177908d`](https://github.com/AppFlowy-IO/AppFlowy/commit/177908db5b6346de2ed1b9effa893810d628f138) refactor: add document editor trait - [`a562395`](https://github.com/AppFlowy-IO/AppFlowy/commit/a562395eb16fab373c7b634f21e2afcd8945f172) chore: add appflowy_document editor - [`88942ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/88942ab82695f77c8b0d0df29410d05ebce31cd5) chore: add document serde - [`fd38122`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd3812201e5aacc7f2d065deda510e7d21f2d24b) chore: add new document editor - [`49b003b`](https://github.com/AppFlowy-IO/AppFlowy/commit/49b003b579f9d5bf75df89d0e0e37a816c34facf) chore: add tests - [`b6d03f4`](https://github.com/AppFlowy-IO/AppFlowy/commit/b6d03f4b2bbcf8f4204eef87b50b632d5a97e01e) chore: add more test - [`a07a486`](https://github.com/AppFlowy-IO/AppFlowy/commit/a07a4869ac224af5dbcdd143e66279dc72704577) chore: add test ### 📊 Changes **81 files changed** (+2342 additions, -877 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_service.dart` (+2 -4) 📝 `frontend/rust-lib/Cargo.lock` (+1 -0) 📝 `frontend/rust-lib/dart-ffi/src/lib.rs` (+1 -1) ➕ `frontend/rust-lib/flowy-document/src/editor/document.rs` (+99 -0) ➕ `frontend/rust-lib/flowy-document/src/editor/document_serde.rs` (+247 -0) ➕ `frontend/rust-lib/flowy-document/src/editor/editor.rs` (+92 -0) ➕ `frontend/rust-lib/flowy-document/src/editor/mod.rs` (+8 -0) ➕ `frontend/rust-lib/flowy-document/src/editor/queue.rs` (+78 -0) 📝 `frontend/rust-lib/flowy-document/src/entities.rs` (+2 -10) 📝 `frontend/rust-lib/flowy-document/src/event_handler.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-document/src/lib.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-document/src/manager.rs` (+71 -30) ➕ `frontend/rust-lib/flowy-document/src/old_editor/conflict.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-document/src/old_editor/editor.rs` (+62 -51) ➕ `frontend/rust-lib/flowy-document/src/old_editor/mod.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-document/src/old_editor/queue.rs` (+10 -8) ➕ `frontend/rust-lib/flowy-document/src/old_editor/util.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-document/src/old_editor/web_socket.rs` (+4 -12) ➖ `frontend/rust-lib/flowy-document/tests/document/mod.rs` (+0 -2) _...and 61 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:38:47 +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#4660
No description provided.