mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-07 00:12:16 +00:00

* fix: add method * fix: update text block and doc title * fix: support ui update when receive doc changes * fix: modify the subscribe change * chore: add test for document manager * chore: add test for document manager * chore: add insert and update test for document manager * fix: load document data * fix: add update page block test * fix: try fix again * fix: node can not rerender when the node data change * fix: it should cover all content when the text delta updated * fix: add insert and delete operation in left menu * fix: put the UI Actions in async thunks * fix: remove log * fix: split text block * fix: review code --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io> Co-authored-by: nathan <nathan@appflowy.io>
154 lines
2.6 KiB
Rust
154 lines
2.6 KiB
Rust
use std::collections::HashMap;
|
|
|
|
use flowy_derive::{ProtoBuf, ProtoBuf_Enum};
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct OpenDocumentPayloadPBV2 {
|
|
#[pb(index = 1)]
|
|
pub document_id: String,
|
|
// Support customize initial data
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct CreateDocumentPayloadPBV2 {
|
|
#[pb(index = 1)]
|
|
pub document_id: String,
|
|
// Support customize initial data
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct CloseDocumentPayloadPBV2 {
|
|
#[pb(index = 1)]
|
|
pub document_id: String,
|
|
// Support customize initial data
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf, Debug)]
|
|
pub struct ApplyActionPayloadPBV2 {
|
|
#[pb(index = 1)]
|
|
pub document_id: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub actions: Vec<BlockActionPB>,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct DocumentDataPB2 {
|
|
#[pb(index = 1)]
|
|
pub page_id: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub blocks: HashMap<String, BlockPB>,
|
|
|
|
#[pb(index = 3)]
|
|
pub meta: MetaPB,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf, Debug)]
|
|
pub struct BlockPB {
|
|
#[pb(index = 1)]
|
|
pub id: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub ty: String,
|
|
|
|
#[pb(index = 3)]
|
|
pub data: String,
|
|
|
|
#[pb(index = 4)]
|
|
pub parent_id: String,
|
|
|
|
#[pb(index = 5)]
|
|
pub children_id: String,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct MetaPB {
|
|
#[pb(index = 1)]
|
|
pub children_map: HashMap<String, ChildrenPB>,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct ChildrenPB {
|
|
#[pb(index = 1)]
|
|
pub children: Vec<String>,
|
|
}
|
|
|
|
// Actions
|
|
#[derive(Default, ProtoBuf, Debug)]
|
|
pub struct BlockActionPB {
|
|
#[pb(index = 1)]
|
|
pub action: BlockActionTypePB,
|
|
|
|
#[pb(index = 2)]
|
|
pub payload: BlockActionPayloadPB,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf, Debug)]
|
|
pub struct BlockActionPayloadPB {
|
|
#[pb(index = 1)]
|
|
pub block: BlockPB,
|
|
|
|
#[pb(index = 2, one_of)]
|
|
pub prev_id: Option<String>,
|
|
|
|
#[pb(index = 3, one_of)]
|
|
pub parent_id: Option<String>,
|
|
}
|
|
|
|
#[derive(ProtoBuf_Enum, Debug)]
|
|
pub enum BlockActionTypePB {
|
|
Insert = 0,
|
|
Update = 1,
|
|
Delete = 2,
|
|
Move = 3,
|
|
}
|
|
|
|
impl Default for BlockActionTypePB {
|
|
fn default() -> Self {
|
|
Self::Insert
|
|
}
|
|
}
|
|
|
|
#[derive(ProtoBuf_Enum)]
|
|
pub enum DeltaTypePB {
|
|
Inserted = 0,
|
|
Updated = 1,
|
|
Removed = 2,
|
|
}
|
|
impl Default for DeltaTypePB {
|
|
fn default() -> Self {
|
|
Self::Inserted
|
|
}
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct DocEventPB {
|
|
#[pb(index = 1)]
|
|
pub events: Vec<BlockEventPB>,
|
|
|
|
#[pb(index = 2)]
|
|
pub is_remote: bool,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct BlockEventPB {
|
|
#[pb(index = 1)]
|
|
pub event: Vec<BlockEventPayloadPB>,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct BlockEventPayloadPB {
|
|
#[pb(index = 1)]
|
|
pub command: DeltaTypePB,
|
|
|
|
#[pb(index = 2)]
|
|
pub path: Vec<String>,
|
|
|
|
#[pb(index = 3)]
|
|
pub id: String,
|
|
|
|
#[pb(index = 4)]
|
|
pub value: String,
|
|
}
|