mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
2202326278
* feat: update editor * feat: integrate new editor * feat: integrate the document2 into folder2 * feat: integrate the new editor * chore: cargo fix * chore: active document feature for flowy-error * feat: convert the editor action to collab action * feat: migrate the grid and board * feat: migrate the callout block * feat: migrate the divider * chore: migrate the callout and math equation * feat: migrate the code block * feat: add shift + enter command in code block * feat: support tab and shift+tab in code block * fix: cursor error after inserting divider * feat: migrate the grid and board * feat: migrate the emoji picker * feat: migrate openai * feat: integrate floating toolbar * feat: migrate the smart editor * feat: migrate the cover * feat: add option block action * chore: implement block selection and delete option * feat: support background color * feat: dismiss color picker afer setting color * feat: migrate the cover block * feat: resize the font * chore: cutomsize the padding * chore: wrap the option button with ignore widget * feat: customize the heading style * chore: optimize the divider line height * fix: the option button can't dismiss * ci: rust test * chore: flutter analyze * fix: code block selection * fix: dismiss the emoji picker after selecting one * chore: optimize the transaction adapter * fix: can't save the new content * feat: show export page when some errors happen * feat: implement get_view_data for document --------- Co-authored-by: nathan <nathan@appflowy.io>
73 lines
2.0 KiB
Rust
73 lines
2.0 KiB
Rust
use crate::entities::{CreateViewParams, ViewLayoutPB};
|
|
use bytes::Bytes;
|
|
use collab_folder::core::{View, ViewLayout};
|
|
use flowy_error::FlowyError;
|
|
use lib_infra::future::FutureResult;
|
|
use lib_infra::util::timestamp;
|
|
use nanoid::nanoid;
|
|
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
|
|
pub trait ViewDataProcessor {
|
|
/// Closes the view and releases the resources that this view has in
|
|
/// the backend
|
|
fn close_view(&self, view_id: &str) -> FutureResult<(), FlowyError>;
|
|
|
|
/// Gets the data of the this view.
|
|
/// For example, the data can be used to duplicate the view.
|
|
fn get_view_data(&self, view_id: &str) -> FutureResult<Bytes, FlowyError>;
|
|
|
|
/// Create a view with the pre-defined data.
|
|
/// For example, the initial data of the grid/calendar/kanban board when
|
|
/// you create a new view.
|
|
fn create_view_with_built_in_data(
|
|
&self,
|
|
user_id: i64,
|
|
view_id: &str,
|
|
name: &str,
|
|
layout: ViewLayout,
|
|
ext: HashMap<String, String>,
|
|
) -> FutureResult<(), FlowyError>;
|
|
|
|
/// Create a view with custom data
|
|
fn create_view_with_custom_data(
|
|
&self,
|
|
user_id: i64,
|
|
view_id: &str,
|
|
name: &str,
|
|
data: Vec<u8>,
|
|
layout: ViewLayout,
|
|
ext: HashMap<String, String>,
|
|
) -> FutureResult<(), FlowyError>;
|
|
}
|
|
|
|
pub type ViewDataProcessorMap = Arc<HashMap<ViewLayout, Arc<dyn ViewDataProcessor + Send + Sync>>>;
|
|
|
|
impl From<ViewLayoutPB> for ViewLayout {
|
|
fn from(pb: ViewLayoutPB) -> Self {
|
|
match pb {
|
|
ViewLayoutPB::Document => ViewLayout::Document,
|
|
ViewLayoutPB::Grid => ViewLayout::Grid,
|
|
ViewLayoutPB::Board => ViewLayout::Board,
|
|
ViewLayoutPB::Calendar => ViewLayout::Calendar,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn view_from_create_view_params(params: CreateViewParams, layout: ViewLayout) -> View {
|
|
let time = timestamp();
|
|
View {
|
|
id: params.view_id,
|
|
bid: params.belong_to_id,
|
|
name: params.name,
|
|
desc: params.desc,
|
|
belongings: Default::default(),
|
|
created_at: time,
|
|
layout,
|
|
database_id: None,
|
|
}
|
|
}
|
|
pub fn gen_view_id() -> String {
|
|
format!("v:{}", nanoid!(10))
|
|
}
|