mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 22:57:12 -04:00
* chore: remove update attributes * chore: format code * chore: extension for transaction * refactor: add document editor trait * chore: add appflowy_document editor * chore: add document serde * chore: add new document editor * chore: add tests * chore: add more test * chore: add test Co-authored-by: nathan <nathan@appflowy.io>
102 lines
2 KiB
Rust
102 lines
2 KiB
Rust
use crate::errors::ErrorCode;
|
|
use flowy_derive::{ProtoBuf, ProtoBuf_Enum};
|
|
use std::convert::TryInto;
|
|
|
|
#[derive(PartialEq, Debug, ProtoBuf_Enum, Clone)]
|
|
pub enum ExportType {
|
|
Text = 0,
|
|
Markdown = 1,
|
|
Link = 2,
|
|
}
|
|
|
|
impl Default for ExportType {
|
|
fn default() -> Self {
|
|
ExportType::Text
|
|
}
|
|
}
|
|
|
|
impl From<i32> for ExportType {
|
|
fn from(val: i32) -> Self {
|
|
match val {
|
|
0 => ExportType::Text,
|
|
1 => ExportType::Markdown,
|
|
2 => ExportType::Link,
|
|
_ => {
|
|
log::error!("Invalid export type: {}", val);
|
|
ExportType::Text
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct EditPayloadPB {
|
|
#[pb(index = 1)]
|
|
pub doc_id: String,
|
|
|
|
// Encode in JSON format
|
|
#[pb(index = 2)]
|
|
pub operations: String,
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct EditParams {
|
|
pub doc_id: String,
|
|
|
|
// Encode in JSON format
|
|
pub operations: String,
|
|
}
|
|
|
|
impl TryInto<EditParams> for EditPayloadPB {
|
|
type Error = ErrorCode;
|
|
fn try_into(self) -> Result<EditParams, Self::Error> {
|
|
Ok(EditParams {
|
|
doc_id: self.doc_id,
|
|
operations: self.operations,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct DocumentSnapshotPB {
|
|
#[pb(index = 1)]
|
|
pub doc_id: String,
|
|
|
|
/// Encode in JSON format
|
|
#[pb(index = 2)]
|
|
pub snapshot: String,
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct ExportPayloadPB {
|
|
#[pb(index = 1)]
|
|
pub view_id: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub export_type: ExportType,
|
|
}
|
|
|
|
#[derive(Default, Debug)]
|
|
pub struct ExportParams {
|
|
pub view_id: String,
|
|
pub export_type: ExportType,
|
|
}
|
|
|
|
impl TryInto<ExportParams> for ExportPayloadPB {
|
|
type Error = ErrorCode;
|
|
fn try_into(self) -> Result<ExportParams, Self::Error> {
|
|
Ok(ExportParams {
|
|
view_id: self.view_id,
|
|
export_type: self.export_type,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[derive(Default, ProtoBuf)]
|
|
pub struct ExportDataPB {
|
|
#[pb(index = 1)]
|
|
pub data: String,
|
|
|
|
#[pb(index = 2)]
|
|
pub export_type: ExportType,
|
|
}
|