116 lines
2.6 KiB
Rust
Raw Normal View History

2022-06-14 23:11:48 +08:00
use crate::entities::{RepeatedView, ViewDataType};
use crate::parser::view::ViewIdentify;
2022-06-15 11:43:24 +08:00
use crate::parser::view_info::{ViewFilterParser, ViewGroupParser, ViewSortParser};
2022-06-14 23:11:48 +08:00
use flowy_derive::ProtoBuf;
use flowy_error_code::ErrorCode;
use std::convert::TryInto;
#[derive(Eq, PartialEq, ProtoBuf, Debug, Default, Clone)]
pub struct ViewInfo {
#[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)]
pub data_type: ViewDataType,
#[pb(index = 6)]
pub belongings: RepeatedView,
#[pb(index = 7)]
pub ext_data: ViewExtData,
}
#[derive(Eq, PartialEq, ProtoBuf, Debug, Default, Clone)]
pub struct ViewExtData {
#[pb(index = 1)]
pub filter: ViewFilter,
#[pb(index = 2)]
pub group: ViewGroup,
#[pb(index = 3)]
pub sort: ViewSort,
}
#[derive(Eq, PartialEq, ProtoBuf, Debug, Default, Clone)]
pub struct ViewFilter {
#[pb(index = 1)]
2022-06-15 11:43:24 +08:00
pub object_id: String,
2022-06-14 23:11:48 +08:00
}
#[derive(Eq, PartialEq, ProtoBuf, Debug, Default, Clone)]
pub struct ViewGroup {
#[pb(index = 1)]
2022-06-15 11:43:24 +08:00
pub group_object_id: String,
2022-06-14 23:11:48 +08:00
#[pb(index = 2, one_of)]
2022-06-15 11:43:24 +08:00
pub sub_group_object_id: Option<String>,
2022-06-14 23:11:48 +08:00
}
#[derive(Eq, PartialEq, ProtoBuf, Debug, Default, Clone)]
pub struct ViewSort {
#[pb(index = 1)]
2022-06-15 11:43:24 +08:00
pub object_id: String,
2022-06-14 23:11:48 +08:00
}
#[derive(Default, ProtoBuf)]
pub struct UpdateViewInfoPayload {
#[pb(index = 1)]
pub view_id: String,
#[pb(index = 2, one_of)]
pub filter: Option<ViewFilter>,
#[pb(index = 3, one_of)]
pub group: Option<ViewGroup>,
#[pb(index = 4, one_of)]
pub sort: Option<ViewSort>,
}
pub struct UpdateViewInfoParams {
pub view_id: String,
pub filter: Option<ViewFilter>,
pub group: Option<ViewGroup>,
pub sort: Option<ViewSort>,
}
2022-06-15 11:43:24 +08:00
impl TryInto<UpdateViewInfoParams> for UpdateViewInfoPayload {
type Error = ErrorCode;
fn try_into(self) -> Result<UpdateViewInfoParams, Self::Error> {
let view_id = ViewIdentify::parse(self.view_id)?.0;
let filter = match self.filter {
None => None,
Some(filter) => Some(ViewFilterParser::parse(filter)?),
};
let group = match self.group {
None => None,
Some(group) => Some(ViewGroupParser::parse(group)?),
};
let sort = match self.sort {
None => None,
Some(sort) => Some(ViewSortParser::parse(sort)?),
};
Ok(UpdateViewInfoParams {
view_id,
filter,
group,
sort,
})
}
}