2022-05-22 05:08:38 +00:00
|
|
|
use crate::entities::{FieldIdentifier, FieldIdentifierPayload};
|
2022-04-07 00:33:10 +00:00
|
|
|
use flowy_derive::ProtoBuf;
|
|
|
|
use flowy_error::ErrorCode;
|
2022-04-11 07:27:03 +00:00
|
|
|
use flowy_grid_data_model::parser::NotEmptyStr;
|
2022-04-07 00:33:10 +00:00
|
|
|
|
|
|
|
#[derive(ProtoBuf, Default)]
|
|
|
|
pub struct CreateSelectOptionPayload {
|
|
|
|
#[pb(index = 1)]
|
2022-04-18 09:17:42 +00:00
|
|
|
pub field_identifier: FieldIdentifierPayload,
|
2022-04-07 00:33:10 +00:00
|
|
|
|
|
|
|
#[pb(index = 2)]
|
|
|
|
pub option_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CreateSelectOptionParams {
|
2022-04-18 09:17:42 +00:00
|
|
|
pub field_identifier: FieldIdentifier,
|
2022-04-07 00:33:10 +00:00
|
|
|
pub option_name: String,
|
|
|
|
}
|
|
|
|
|
2022-04-18 09:17:42 +00:00
|
|
|
impl std::ops::Deref for CreateSelectOptionParams {
|
|
|
|
type Target = FieldIdentifier;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.field_identifier
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 00:33:10 +00:00
|
|
|
impl TryInto<CreateSelectOptionParams> for CreateSelectOptionPayload {
|
|
|
|
type Error = ErrorCode;
|
|
|
|
|
|
|
|
fn try_into(self) -> Result<CreateSelectOptionParams, Self::Error> {
|
|
|
|
let option_name = NotEmptyStr::parse(self.option_name).map_err(|_| ErrorCode::SelectOptionNameIsEmpty)?;
|
2022-04-18 09:17:42 +00:00
|
|
|
let field_identifier = self.field_identifier.try_into()?;
|
2022-04-07 00:33:10 +00:00
|
|
|
Ok(CreateSelectOptionParams {
|
2022-04-18 09:17:42 +00:00
|
|
|
field_identifier,
|
2022-04-07 00:33:10 +00:00
|
|
|
option_name: option_name.0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Default, ProtoBuf)]
|
|
|
|
pub struct CellIdentifierPayload {
|
|
|
|
#[pb(index = 1)]
|
|
|
|
pub grid_id: String,
|
|
|
|
|
|
|
|
#[pb(index = 2)]
|
|
|
|
pub field_id: String,
|
|
|
|
|
|
|
|
#[pb(index = 3)]
|
|
|
|
pub row_id: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CellIdentifier {
|
|
|
|
pub grid_id: String,
|
|
|
|
pub field_id: String,
|
|
|
|
pub row_id: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryInto<CellIdentifier> for CellIdentifierPayload {
|
|
|
|
type Error = ErrorCode;
|
|
|
|
|
|
|
|
fn try_into(self) -> Result<CellIdentifier, Self::Error> {
|
2022-04-11 07:27:03 +00:00
|
|
|
let grid_id = NotEmptyStr::parse(self.grid_id).map_err(|_| ErrorCode::GridIdIsEmpty)?;
|
|
|
|
let field_id = NotEmptyStr::parse(self.field_id).map_err(|_| ErrorCode::FieldIdIsEmpty)?;
|
|
|
|
let row_id = NotEmptyStr::parse(self.row_id).map_err(|_| ErrorCode::RowIdIsEmpty)?;
|
2022-04-07 00:33:10 +00:00
|
|
|
Ok(CellIdentifier {
|
|
|
|
grid_id: grid_id.0,
|
|
|
|
field_id: field_id.0,
|
|
|
|
row_id: row_id.0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|