[PR #1052] [MERGED] Feat/node transform #4515

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1052
Author: @appflowy
Created: 9/15/2022
Status: Merged
Merged: 9/15/2022
Merged by: @appflowy

Base: mainHead: feat/node_transform


📝 Commits (5)

📊 Changes

34 files changed (+1033 additions, -507 deletions)

View changed files

📝 frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart (+7 -11)
📝 frontend/app_flowy/lib/plugins/doc/application/doc_service.dart (+13 -7)
📝 frontend/rust-lib/flowy-net/src/http_server/document.rs (+5 -5)
📝 frontend/rust-lib/flowy-net/src/local_server/server.rs (+5 -5)
📝 frontend/rust-lib/flowy-sdk/src/deps_resolve/folder_deps.rs (+9 -9)
📝 frontend/rust-lib/flowy-sdk/src/deps_resolve/text_block_deps.rs (+6 -6)
📝 frontend/rust-lib/flowy-sdk/src/lib.rs (+2 -2)
📝 frontend/rust-lib/flowy-sdk/src/module.rs (+3 -3)
📝 frontend/rust-lib/flowy-text-block/src/editor.rs (+3 -4)
📝 frontend/rust-lib/flowy-text-block/src/entities.rs (+46 -0)
📝 frontend/rust-lib/flowy-text-block/src/event_handler.rs (+20 -19)
📝 frontend/rust-lib/flowy-text-block/src/event_map.rs (+8 -8)
📝 frontend/rust-lib/flowy-text-block/src/lib.rs (+4 -4)
📝 frontend/rust-lib/flowy-text-block/src/manager.rs (+63 -56)
📝 frontend/rust-lib/flowy-text-block/src/queue.rs (+3 -3)
📝 frontend/rust-lib/flowy-text-block/tests/document/script.rs (+1 -1)
📝 shared-lib/flowy-sync/src/entities/text_block.rs (+1 -1)
📝 shared-lib/lib-ot/Cargo.toml (+1 -1)
shared-lib/lib-ot/src/core/document/operation.rs (+0 -143)
shared-lib/lib-ot/src/core/document/path.rs (+0 -127)

...and 14 more files

📄 Description

  1. add documentation about the node struct in lib-ot crate
  2. add more unit test

🔄 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/1052 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/15/2022 **Status:** ✅ Merged **Merged:** 9/15/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/node_transform` --- ### 📝 Commits (5) - [`fa2cfd7`](https://github.com/AppFlowy-IO/AppFlowy/commit/fa2cfd7c208b748ad84c48c81a73b19ef8cafd7b) chore: node transform path test - [`2d738fe`](https://github.com/AppFlowy-IO/AppFlowy/commit/2d738fedaa8061fea5b0752ec1f9e6a98f72377c) chore: update test - [`4b654de`](https://github.com/AppFlowy-IO/AppFlowy/commit/4b654de2e6a20b44f4ac16b2edf12c92340a0da6) chore: updata path documentation - [`01589c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/01589c6f941bc296dfec0241d68b06d742c0ad9c) chore: compose operation - [`f88b805`](https://github.com/AppFlowy-IO/AppFlowy/commit/f88b8051f741c6a9f434fc57b06a1a6cba755cb6) chore: rename folder ### 📊 Changes **34 files changed** (+1033 additions, -507 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_bloc.dart` (+7 -11) 📝 `frontend/app_flowy/lib/plugins/doc/application/doc_service.dart` (+13 -7) 📝 `frontend/rust-lib/flowy-net/src/http_server/document.rs` (+5 -5) 📝 `frontend/rust-lib/flowy-net/src/local_server/server.rs` (+5 -5) 📝 `frontend/rust-lib/flowy-sdk/src/deps_resolve/folder_deps.rs` (+9 -9) 📝 `frontend/rust-lib/flowy-sdk/src/deps_resolve/text_block_deps.rs` (+6 -6) 📝 `frontend/rust-lib/flowy-sdk/src/lib.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-sdk/src/module.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-text-block/src/editor.rs` (+3 -4) 📝 `frontend/rust-lib/flowy-text-block/src/entities.rs` (+46 -0) 📝 `frontend/rust-lib/flowy-text-block/src/event_handler.rs` (+20 -19) 📝 `frontend/rust-lib/flowy-text-block/src/event_map.rs` (+8 -8) 📝 `frontend/rust-lib/flowy-text-block/src/lib.rs` (+4 -4) 📝 `frontend/rust-lib/flowy-text-block/src/manager.rs` (+63 -56) 📝 `frontend/rust-lib/flowy-text-block/src/queue.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-text-block/tests/document/script.rs` (+1 -1) 📝 `shared-lib/flowy-sync/src/entities/text_block.rs` (+1 -1) 📝 `shared-lib/lib-ot/Cargo.toml` (+1 -1) ➖ `shared-lib/lib-ot/src/core/document/operation.rs` (+0 -143) ➖ `shared-lib/lib-ot/src/core/document/path.rs` (+0 -127) _...and 14 more files_ </details> ### 📄 Description 1. add documentation about the node struct in lib-ot crate 2. add more unit test --- <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:09 +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#4515
No description provided.