123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- use crate::{
- entities::trash::{Trash, TrashType},
- errors::ErrorCode,
- impl_def_and_def_mut,
- parser::{
- app::AppIdentify,
- view::{ViewDesc, ViewIdentify, ViewName, ViewThumbnail},
- },
- };
- use flowy_derive::{ProtoBuf, ProtoBuf_Enum};
- use nanoid::nanoid;
- use serde::{Deserialize, Serialize};
- use serde_repr::*;
- use std::convert::TryInto;
- pub fn gen_view_id() -> String {
- nanoid!(10)
- }
- #[derive(Eq, PartialEq, ProtoBuf, Default, Debug, Clone, Serialize, Deserialize)]
- pub struct View {
- #[pb(index = 1)]
- pub id: String,
- #[pb(index = 2)]
- pub belong_to_id: String,
- #[pb(index = 3)]
- pub name: String,
- #[pb(index = 4)]
- pub desc: String,
- #[pb(index = 5)]
- #[serde(default)]
- pub data_type: ViewDataType,
- #[pb(index = 6)]
- pub version: i64,
- #[pb(index = 7)]
- pub belongings: RepeatedView,
- #[pb(index = 8)]
- pub modified_time: i64,
- #[pb(index = 9)]
- pub create_time: i64,
- #[pb(index = 10)]
- #[serde(default)]
- pub ext_data: String,
- #[pb(index = 11)]
- #[serde(default)]
- pub thumbnail: String,
- #[pb(index = 12)]
- #[serde(default = "default_plugin_type")]
- pub plugin_type: i32,
- }
- fn default_plugin_type() -> i32 {
- 0
- }
- #[derive(Eq, PartialEq, Debug, Default, ProtoBuf, Clone, Serialize, Deserialize)]
- #[serde(transparent)]
- pub struct RepeatedView {
- #[pb(index = 1)]
- pub items: Vec<View>,
- }
- impl_def_and_def_mut!(RepeatedView, View);
- impl std::convert::From<View> for Trash {
- fn from(view: View) -> Self {
- Trash {
- id: view.id,
- name: view.name,
- modified_time: view.modified_time,
- create_time: view.create_time,
- ty: TrashType::TrashView,
- }
- }
- }
- #[derive(Eq, PartialEq, Hash, Debug, ProtoBuf_Enum, Clone, Serialize_repr, Deserialize_repr)]
- #[repr(u8)]
- pub enum ViewDataType {
- TextBlock = 0,
- Grid = 1,
- }
- impl std::default::Default for ViewDataType {
- fn default() -> Self {
- ViewDataType::TextBlock
- }
- }
- impl std::convert::From<i32> for ViewDataType {
- fn from(val: i32) -> Self {
- match val {
- 0 => ViewDataType::TextBlock,
- 1 => ViewDataType::Grid,
- _ => {
- log::error!("Invalid view type: {}", val);
- ViewDataType::TextBlock
- }
- }
- }
- }
- #[derive(Default, ProtoBuf)]
- pub struct CreateViewPayload {
- #[pb(index = 1)]
- pub belong_to_id: String,
- #[pb(index = 2)]
- pub name: String,
- #[pb(index = 3)]
- pub desc: String,
- #[pb(index = 4, one_of)]
- pub thumbnail: Option<String>,
- #[pb(index = 5)]
- pub data_type: ViewDataType,
- #[pb(index = 6)]
- pub plugin_type: i32,
- #[pb(index = 7)]
- pub data: Vec<u8>,
- }
- #[derive(Default, ProtoBuf, Debug, Clone)]
- pub struct CreateViewParams {
- #[pb(index = 1)]
- pub belong_to_id: String,
- #[pb(index = 2)]
- pub name: String,
- #[pb(index = 3)]
- pub desc: String,
- #[pb(index = 4)]
- pub thumbnail: String,
- #[pb(index = 5)]
- pub data_type: ViewDataType,
- #[pb(index = 6)]
- pub view_id: String,
- #[pb(index = 7)]
- pub data: Vec<u8>,
- #[pb(index = 8)]
- pub plugin_type: i32,
- }
- impl TryInto<CreateViewParams> for CreateViewPayload {
- type Error = ErrorCode;
- fn try_into(self) -> Result<CreateViewParams, Self::Error> {
- let name = ViewName::parse(self.name)?.0;
- let belong_to_id = AppIdentify::parse(self.belong_to_id)?.0;
- let view_id = gen_view_id();
- let thumbnail = match self.thumbnail {
- None => "".to_string(),
- Some(thumbnail) => ViewThumbnail::parse(thumbnail)?.0,
- };
- Ok(CreateViewParams {
- belong_to_id,
- name,
- desc: self.desc,
- data_type: self.data_type,
- thumbnail,
- view_id,
- data: self.data,
- plugin_type: self.plugin_type,
- })
- }
- }
- #[derive(Default, ProtoBuf, Clone, Debug)]
- pub struct ViewId {
- #[pb(index = 1)]
- pub value: String,
- }
- impl std::convert::From<&str> for ViewId {
- fn from(value: &str) -> Self {
- ViewId {
- value: value.to_string(),
- }
- }
- }
- impl std::ops::Deref for ViewId {
- type Target = str;
- fn deref(&self) -> &Self::Target {
- &self.value
- }
- }
- #[derive(Default, ProtoBuf)]
- pub struct RepeatedViewId {
- #[pb(index = 1)]
- pub items: Vec<String>,
- }
- #[derive(Default, ProtoBuf)]
- pub struct UpdateViewPayload {
- #[pb(index = 1)]
- pub view_id: String,
- #[pb(index = 2, one_of)]
- pub name: Option<String>,
- #[pb(index = 3, one_of)]
- pub desc: Option<String>,
- #[pb(index = 4, one_of)]
- pub thumbnail: Option<String>,
- }
- #[derive(Default, ProtoBuf, Clone, Debug)]
- pub struct UpdateViewParams {
- #[pb(index = 1)]
- pub view_id: String,
- #[pb(index = 2, one_of)]
- pub name: Option<String>,
- #[pb(index = 3, one_of)]
- pub desc: Option<String>,
- #[pb(index = 4, one_of)]
- pub thumbnail: Option<String>,
- }
- impl UpdateViewParams {
- pub fn new(view_id: &str) -> Self {
- Self {
- view_id: view_id.to_owned(),
- ..Default::default()
- }
- }
- pub fn name(mut self, name: &str) -> Self {
- self.name = Some(name.to_owned());
- self
- }
- pub fn desc(mut self, desc: &str) -> Self {
- self.desc = Some(desc.to_owned());
- self
- }
- }
- impl TryInto<UpdateViewParams> for UpdateViewPayload {
- type Error = ErrorCode;
- fn try_into(self) -> Result<UpdateViewParams, Self::Error> {
- let view_id = ViewIdentify::parse(self.view_id)?.0;
- let name = match self.name {
- None => None,
- Some(name) => Some(ViewName::parse(name)?.0),
- };
- let desc = match self.desc {
- None => None,
- Some(desc) => Some(ViewDesc::parse(desc)?.0),
- };
- let thumbnail = match self.thumbnail {
- None => None,
- Some(thumbnail) => Some(ViewThumbnail::parse(thumbnail)?.0),
- };
- Ok(UpdateViewParams {
- view_id,
- name,
- desc,
- thumbnail,
- })
- }
- }
- #[derive(ProtoBuf_Enum)]
- pub enum MoveFolderItemType {
- MoveApp = 0,
- MoveView = 1,
- }
- impl std::default::Default for MoveFolderItemType {
- fn default() -> Self {
- MoveFolderItemType::MoveApp
- }
- }
- #[derive(Default, ProtoBuf)]
- pub struct MoveFolderItemPayload {
- #[pb(index = 1)]
- pub item_id: String,
- #[pb(index = 2)]
- pub from: i32,
- #[pb(index = 3)]
- pub to: i32,
- #[pb(index = 4)]
- pub ty: MoveFolderItemType,
- }
- pub struct MoveFolderItemParams {
- pub item_id: String,
- pub from: usize,
- pub to: usize,
- pub ty: MoveFolderItemType,
- }
- impl TryInto<MoveFolderItemParams> for MoveFolderItemPayload {
- type Error = ErrorCode;
- fn try_into(self) -> Result<MoveFolderItemParams, Self::Error> {
- let view_id = ViewIdentify::parse(self.item_id)?.0;
- Ok(MoveFolderItemParams {
- item_id: view_id,
- from: self.from as usize,
- to: self.to as usize,
- ty: self.ty,
- })
- }
- }
- // impl<'de> Deserialize<'de> for ViewDataType {
- // fn deserialize<D>(deserializer: D) -> Result<Self, <D as Deserializer<'de>>::Error>
- // where
- // D: Deserializer<'de>,
- // {
- // struct ViewTypeVisitor();
- //
- // impl<'de> Visitor<'de> for ViewTypeVisitor {
- // type Value = ViewDataType;
- // fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
- // formatter.write_str("RichText, PlainText")
- // }
- //
- // fn visit_u8<E>(self, v: u8) -> Result<Self::Value, E>
- // where
- // E: de::Error,
- // {
- // let data_type;
- // match v {
- // 0 => {
- // data_type = ViewDataType::RichText;
- // }
- // 1 => {
- // data_type = ViewDataType::PlainText;
- // }
- // _ => {
- // return Err(de::Error::invalid_value(Unexpected::Unsigned(v as u64), &self));
- // }
- // }
- // Ok(data_type)
- // }
- //
- // fn visit_str<E>(self, s: &str) -> Result<Self::Value, E>
- // where
- // E: de::Error,
- // {
- // let data_type;
- // match s {
- // "Doc" | "RichText" => {
- // // Rename ViewDataType::Doc to ViewDataType::RichText, So we need to migrate the ViewType manually.
- // data_type = ViewDataType::RichText;
- // }
- // "PlainText" => {
- // data_type = ViewDataType::PlainText;
- // }
- // unknown => {
- // return Err(de::Error::invalid_value(Unexpected::Str(unknown), &self));
- // }
- // }
- // Ok(data_type)
- // }
- // }
- // deserializer.deserialize_any(ViewTypeVisitor())
- // }
- // }
|