[PR #1016] [MERGED] Refactor/document node #4499

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

📋 Pull Request Information

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

Base: mainHead: refactor/document_node


📝 Commits (6)

  • 745018c refactor: node attribute
  • 2d44a9a refactor: rename docuemnt tree to node tree
  • 328e0ac refactor: rename && fix potential bugs
  • 387ee91 chore: rename files
  • 41ccd4f chore: move path test to path.rs file
  • 1faf959 chore: fix rename errors

📊 Changes

41 files changed (+651 additions, -569 deletions)

View changed files

📝 frontend/rust-lib/flowy-revision/src/conflict_resolve.rs (+3 -3)
📝 frontend/rust-lib/flowy-text-block/src/editor.rs (+2 -2)
📝 frontend/rust-lib/flowy-text-block/src/queue.rs (+3 -3)
📝 frontend/rust-lib/flowy-text-block/src/web_socket.rs (+2 -2)
📝 frontend/rust-lib/flowy-text-block/tests/editor/mod.rs (+11 -11)
📝 frontend/rust-lib/flowy-text-block/tests/editor/op_test.rs (+32 -32)
📝 frontend/rust-lib/flowy-text-block/tests/editor/serde_test.rs (+11 -11)
📝 shared-lib/flowy-sync/src/client_document/document_pad.rs (+2 -6)
📝 shared-lib/flowy-sync/src/client_document/extensions/format/resolve_block_format.rs (+2 -2)
📝 shared-lib/flowy-sync/src/client_document/extensions/format/resolve_inline_format.rs (+2 -2)
📝 shared-lib/flowy-sync/src/client_document/extensions/helper.rs (+2 -6)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/auto_exit_block.rs (+2 -2)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/auto_format.rs (+3 -3)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/default_insert.rs (+3 -3)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/preserve_block_format.rs (+4 -5)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/preserve_inline_format.rs (+2 -2)
📝 shared-lib/flowy-sync/src/client_document/extensions/insert/reset_format_on_new_line.rs (+4 -4)
📝 shared-lib/flowy-sync/src/client_document/extensions/mod.rs (+2 -2)
📝 shared-lib/flowy-sync/src/client_document/view.rs (+2 -2)
📝 shared-lib/flowy-sync/src/server_document/document_manager.rs (+2 -2)

...and 21 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/1016 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/10/2022 **Status:** ✅ Merged **Merged:** 9/10/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor/document_node` --- ### 📝 Commits (6) - [`745018c`](https://github.com/AppFlowy-IO/AppFlowy/commit/745018cf2262defa0dde4176de85597e755f2118) refactor: node attribute - [`2d44a9a`](https://github.com/AppFlowy-IO/AppFlowy/commit/2d44a9a9566a80d64d0926a13a0a813b8fc953f6) refactor: rename docuemnt tree to node tree - [`328e0ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/328e0ac73afffb706a2f3da46450d6929b541c00) refactor: rename && fix potential bugs - [`387ee91`](https://github.com/AppFlowy-IO/AppFlowy/commit/387ee911a99293efed3cdfd6a79717473182cedb) chore: rename files - [`41ccd4f`](https://github.com/AppFlowy-IO/AppFlowy/commit/41ccd4f59f60f96988441ed79cb5d51eb413c396) chore: move path test to path.rs file - [`1faf959`](https://github.com/AppFlowy-IO/AppFlowy/commit/1faf959e1ea0be9b8e2cad0f653054818accf2db) chore: fix rename errors ### 📊 Changes **41 files changed** (+651 additions, -569 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/flowy-revision/src/conflict_resolve.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-text-block/src/editor.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-text-block/src/queue.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-text-block/src/web_socket.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-text-block/tests/editor/mod.rs` (+11 -11) 📝 `frontend/rust-lib/flowy-text-block/tests/editor/op_test.rs` (+32 -32) 📝 `frontend/rust-lib/flowy-text-block/tests/editor/serde_test.rs` (+11 -11) 📝 `shared-lib/flowy-sync/src/client_document/document_pad.rs` (+2 -6) 📝 `shared-lib/flowy-sync/src/client_document/extensions/format/resolve_block_format.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/client_document/extensions/format/resolve_inline_format.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/client_document/extensions/helper.rs` (+2 -6) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/auto_exit_block.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/auto_format.rs` (+3 -3) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/default_insert.rs` (+3 -3) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/preserve_block_format.rs` (+4 -5) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/preserve_inline_format.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/client_document/extensions/insert/reset_format_on_new_line.rs` (+4 -4) 📝 `shared-lib/flowy-sync/src/client_document/extensions/mod.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/client_document/view.rs` (+2 -2) 📝 `shared-lib/flowy-sync/src/server_document/document_manager.rs` (+2 -2) _...and 21 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:05 +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#4499
No description provided.