216 lines
7.9 KiB
Rust
Raw Normal View History

use crate::entities::FieldType;
2022-07-12 22:24:01 +08:00
use crate::services::cell::{AnyCellData, CellBytes};
use crate::services::field::*;
2022-03-15 11:07:18 +08:00
2022-07-12 22:24:01 +08:00
use flowy_error::{ErrorCode, FlowyError, FlowyResult};
use flowy_grid_data_model::revision::{CellRevision, FieldRevision, FieldTypeRevision};
/// This trait is used when doing filter/search on the grid.
pub trait CellFilterOperation<T> {
/// Return true if any_cell_data match the filter condition.
fn apply_filter(&self, any_cell_data: AnyCellData, filter: &T) -> FlowyResult<bool>;
2022-07-06 10:38:54 +08:00
}
2022-07-12 22:24:01 +08:00
/// Return object that describes the cell.
2022-07-13 11:09:13 +08:00
pub trait CellDisplayable<CD> {
2022-07-12 22:24:01 +08:00
fn display_data(
&self,
cell_data: CellData<CD>,
decoded_field_type: &FieldType,
field_rev: &FieldRevision,
2022-07-13 11:09:13 +08:00
) -> FlowyResult<CellBytes>;
2022-07-12 22:24:01 +08:00
}
// CD: Short for CellData. This type is the type return by apply_changeset function.
// CS: Short for Changeset. Parse the string into specific Changeset type.
pub trait CellDataOperation<CD, CS> {
/// The cell_data is able to parse into the specific data if CD impl the FromCellData trait.
2022-07-08 14:54:11 +08:00
/// For example:
/// URLCellData, DateCellData. etc.
2022-07-08 13:06:06 +08:00
fn decode_cell_data(
2022-04-05 21:25:59 +08:00
&self,
2022-07-12 22:24:01 +08:00
cell_data: CellData<CD>,
2022-05-23 22:53:13 +08:00
decoded_field_type: &FieldType,
field_rev: &FieldRevision,
2022-07-12 22:24:01 +08:00
) -> FlowyResult<CellBytes>;
2022-06-30 23:00:03 +08:00
2022-07-12 22:24:01 +08:00
/// The changeset is able to parse into the specific data if CS impl the FromCellChangeset trait.
2022-07-08 14:54:11 +08:00
/// For example:
/// SelectOptionCellChangeset,DateCellChangeset. etc.
2022-07-12 22:24:01 +08:00
fn apply_changeset(&self, changeset: CellDataChangeset<CS>, cell_rev: Option<CellRevision>) -> FlowyResult<String>;
2022-03-15 11:07:18 +08:00
}
2022-07-12 22:24:01 +08:00
2022-07-12 15:49:14 +08:00
/// changeset: It will be deserialized into specific data base on the FieldType.
/// For example,
/// FieldType::RichText => String
/// FieldType::SingleSelect => SelectOptionChangeset
///
/// cell_rev: It will be None if the cell does not contain any data.
2022-07-08 14:54:11 +08:00
pub fn apply_cell_data_changeset<C: ToString, T: AsRef<FieldRevision>>(
2022-07-01 10:36:07 +08:00
changeset: C,
cell_rev: Option<CellRevision>,
2022-07-01 10:36:07 +08:00
field_rev: T,
2022-04-05 21:25:59 +08:00
) -> Result<String, FlowyError> {
2022-07-01 10:36:07 +08:00
let field_rev = field_rev.as_ref();
2022-07-08 14:54:11 +08:00
let changeset = changeset.to_string();
let field_type = field_rev.field_type_rev.into();
let s = match field_type {
2022-07-08 14:54:11 +08:00
FieldType::RichText => RichTextTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::Number => NumberTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::DateTime => DateTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::SingleSelect => SingleSelectTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::MultiSelect => MultiSelectTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::Checkbox => CheckboxTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
FieldType::URL => URLTypeOption::from(field_rev).apply_changeset(changeset.into(), cell_rev),
2022-05-22 23:33:08 +08:00
}?;
2022-07-06 10:38:54 +08:00
Ok(AnyCellData::new(s, field_type).json())
2022-03-15 11:07:18 +08:00
}
2022-05-09 16:08:27 +08:00
2022-07-12 22:24:01 +08:00
pub fn decode_any_cell_data<T: TryInto<AnyCellData>>(data: T, field_rev: &FieldRevision) -> CellBytes {
2022-07-06 10:38:54 +08:00
if let Ok(any_cell_data) = data.try_into() {
2022-07-12 22:24:01 +08:00
let AnyCellData { data, field_type } = any_cell_data;
let to_field_type = field_rev.field_type_rev.into();
2022-07-12 22:24:01 +08:00
match try_decode_cell_data(data.into(), field_rev, &field_type, &to_field_type) {
Ok(cell_bytes) => cell_bytes,
Err(e) => {
tracing::error!("Decode cell data failed, {:?}", e);
2022-07-12 22:24:01 +08:00
CellBytes::default()
}
}
2022-05-24 14:56:55 +08:00
} else {
tracing::error!("Decode type option data failed");
2022-07-12 22:24:01 +08:00
CellBytes::default()
2022-05-24 14:56:55 +08:00
}
}
2022-06-30 23:00:03 +08:00
pub fn try_decode_cell_data(
2022-07-08 13:06:06 +08:00
cell_data: CellData<String>,
2022-06-24 18:13:40 +08:00
field_rev: &FieldRevision,
2022-05-24 14:56:55 +08:00
s_field_type: &FieldType,
t_field_type: &FieldType,
2022-07-12 22:24:01 +08:00
) -> FlowyResult<CellBytes> {
2022-07-08 13:06:06 +08:00
let cell_data = cell_data.try_into_inner()?;
2022-05-24 14:56:55 +08:00
let get_cell_data = || {
2022-07-06 10:38:54 +08:00
let field_type: FieldTypeRevision = t_field_type.into();
2022-05-24 14:56:55 +08:00
let data = match t_field_type {
FieldType::RichText => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<RichTextTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::Number => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<NumberTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::DateTime => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<DateTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::SingleSelect => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<SingleSelectTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::MultiSelect => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<MultiSelectTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::Checkbox => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<CheckboxTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
FieldType::URL => field_rev
2022-07-06 10:38:54 +08:00
.get_type_option_entry::<URLTypeOption>(field_type)?
2022-07-08 13:06:06 +08:00
.decode_cell_data(cell_data.into(), s_field_type, field_rev),
2022-05-22 23:33:08 +08:00
};
2022-05-24 14:56:55 +08:00
Some(data)
};
match get_cell_data() {
Some(Ok(data)) => Ok(data),
2022-05-24 14:56:55 +08:00
Some(Err(err)) => {
tracing::error!("{:?}", err);
2022-07-12 22:24:01 +08:00
Ok(CellBytes::default())
2022-05-24 14:56:55 +08:00
}
2022-07-12 22:24:01 +08:00
None => Ok(CellBytes::default()),
2022-05-24 14:56:55 +08:00
}
}
2022-07-12 15:49:14 +08:00
/// If the cell data is not String type, it should impl this trait.
/// Deserialize the String into cell specific data type.
2022-07-08 13:06:06 +08:00
pub trait FromCellString {
fn from_cell_str(s: &str) -> FlowyResult<Self>
where
Self: Sized;
}
2022-07-12 15:49:14 +08:00
/// CellData is a helper struct. String will be parser into Option<T> only if the T impl the FromCellString trait.
2022-07-08 13:06:06 +08:00
pub struct CellData<T>(pub Option<T>);
impl<T> CellData<T> {
2022-05-24 14:56:55 +08:00
pub fn try_into_inner(self) -> FlowyResult<T> {
match self.0 {
None => Err(ErrorCode::InvalidData.into()),
Some(data) => Ok(data),
}
}
}
2022-07-08 13:06:06 +08:00
impl<T> std::convert::From<String> for CellData<T>
2022-05-24 14:56:55 +08:00
where
2022-07-08 13:06:06 +08:00
T: FromCellString,
2022-05-24 14:56:55 +08:00
{
fn from(s: String) -> Self {
2022-07-08 13:06:06 +08:00
match T::from_cell_str(&s) {
Ok(inner) => CellData(Some(inner)),
2022-05-24 14:56:55 +08:00
Err(e) => {
tracing::error!("Deserialize Cell Data failed: {}", e);
2022-07-08 13:06:06 +08:00
CellData(None)
2022-05-24 14:56:55 +08:00
}
}
2022-05-22 23:33:08 +08:00
}
2022-03-15 11:07:18 +08:00
}
2022-05-11 11:34:13 +08:00
2022-07-08 13:06:06 +08:00
impl std::convert::From<String> for CellData<String> {
fn from(s: String) -> Self {
CellData(Some(s))
}
}
impl std::convert::From<CellData<String>> for String {
fn from(p: CellData<String>) -> Self {
2022-07-08 14:54:11 +08:00
p.try_into_inner().unwrap_or_else(|_| String::new())
}
}
2022-07-12 15:49:14 +08:00
/// If the changeset applying to the cell is not String type, it should impl this trait.
/// Deserialize the string into cell specific changeset.
2022-07-08 14:54:11 +08:00
pub trait FromCellChangeset {
fn from_changeset(changeset: String) -> FlowyResult<Self>
where
Self: Sized;
}
pub struct CellDataChangeset<T>(pub Option<T>);
impl<T> CellDataChangeset<T> {
pub fn try_into_inner(self) -> FlowyResult<T> {
match self.0 {
None => Err(ErrorCode::InvalidData.into()),
Some(data) => Ok(data),
}
}
}
impl<T, C: ToString> std::convert::From<C> for CellDataChangeset<T>
where
T: FromCellChangeset,
{
fn from(changeset: C) -> Self {
match T::from_changeset(changeset.to_string()) {
Ok(data) => CellDataChangeset(Some(data)),
Err(e) => {
tracing::error!("Deserialize CellDataChangeset failed: {}", e);
CellDataChangeset(None)
}
}
}
}
impl std::convert::From<String> for CellDataChangeset<String> {
fn from(s: String) -> Self {
CellDataChangeset(Some(s))
2022-07-08 13:06:06 +08:00
}
}