mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
ec89e9517b
* feat: init flowy document 2 * feat: convert inner document to document PB * feat: integrate colla document into Flutter * feat: integrate colla document into tauri * fix: cargo clippy
36 lines
1.0 KiB
Rust
36 lines
1.0 KiB
Rust
use std::sync::Arc;
|
|
use strum_macros::Display;
|
|
|
|
use flowy_derive::{Flowy_Event, ProtoBuf_Enum};
|
|
use lib_dispatch::prelude::AFPlugin;
|
|
|
|
use crate::{
|
|
event_handler::{apply_action_handler, close_document_handler, open_document_handler},
|
|
manager::DocumentManager,
|
|
};
|
|
|
|
pub fn init(document_manager: Arc<DocumentManager>) -> AFPlugin {
|
|
let mut plugin = AFPlugin::new()
|
|
.name(env!("CARGO_PKG_NAME"))
|
|
.state(document_manager);
|
|
|
|
plugin = plugin.event(DocumentEvent2::OpenDocument, open_document_handler);
|
|
plugin = plugin.event(DocumentEvent2::CloseDocument, close_document_handler);
|
|
plugin = plugin.event(DocumentEvent2::ApplyAction, apply_action_handler);
|
|
|
|
plugin
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, Display, ProtoBuf_Enum, Flowy_Event)]
|
|
#[event_err = "FlowyError"]
|
|
pub enum DocumentEvent2 {
|
|
#[event(input = "OpenDocumentPayloadPBV2", output = "DocumentDataPB2")]
|
|
OpenDocument = 0,
|
|
|
|
#[event(input = "CloseDocumentPayloadPBV2")]
|
|
CloseDocument = 1,
|
|
|
|
#[event(input = "ApplyActionPayloadPBV2")]
|
|
ApplyAction = 2,
|
|
}
|