215 lines
7.5 KiB
Rust
Raw Normal View History

use crate::entities::{GroupRowsChangesetPB, RowPB};
2022-08-12 16:05:56 +08:00
use crate::services::cell::{decode_any_cell_data, CellBytesParser};
use crate::services::group::action::GroupAction;
use crate::services::group::configuration::{GenericGroupConfiguration, GroupConfigurationReader};
use crate::services::group::entities::Group;
2022-08-14 15:15:56 +08:00
use flowy_error::FlowyResult;
2022-08-12 09:49:07 +08:00
use flowy_grid_data_model::revision::{
FieldRevision, GroupConfigurationContentSerde, GroupConfigurationRevision, RowChangeset, RowRevision,
TypeOptionDataDeserializer,
2022-08-12 09:49:07 +08:00
};
2022-08-12 16:05:56 +08:00
use indexmap::IndexMap;
use lib_infra::future::AFFuture;
2022-08-12 09:49:07 +08:00
use std::marker::PhantomData;
use std::sync::Arc;
const DEFAULT_GROUP_ID: &str = "default_group";
// Each kind of group must implement this trait to provide custom group
// operations. For example, insert cell data to the row_rev when creating
// a new row.
pub trait GroupController: GroupControllerSharedAction + Send + Sync {
fn will_create_row(&mut self, row_rev: &mut RowRevision, field_rev: &FieldRevision, group_id: &str);
}
2022-08-12 16:05:56 +08:00
pub trait GroupGenerator {
type ConfigurationType;
type TypeOptionType;
fn generate_groups(
field_id: &str,
configuration: &Self::ConfigurationType,
2022-08-12 16:05:56 +08:00
type_option: &Option<Self::TypeOptionType>,
) -> Vec<Group>;
2022-08-12 09:49:07 +08:00
}
// Defines the shared actions each group controller can perform.
2022-08-17 14:33:45 +08:00
pub trait GroupControllerSharedAction: Send + Sync {
// The field that is used for grouping the rows
fn field_id(&self) -> &str;
fn fill_groups(&mut self, row_revs: &[Arc<RowRevision>], field_rev: &FieldRevision) -> FlowyResult<Vec<Group>>;
2022-08-17 14:33:45 +08:00
fn did_update_row(
&mut self,
row_rev: &RowRevision,
field_rev: &FieldRevision,
) -> FlowyResult<Vec<GroupRowsChangesetPB>>;
fn did_delete_row(
&mut self,
row_rev: &RowRevision,
field_rev: &FieldRevision,
) -> FlowyResult<Vec<GroupRowsChangesetPB>>;
2022-08-17 19:29:14 +08:00
fn did_move_row(
&mut self,
row_rev: &RowRevision,
row_changeset: &mut RowChangeset,
2022-08-17 19:29:14 +08:00
field_rev: &FieldRevision,
to_row_id: &str,
) -> FlowyResult<Vec<GroupRowsChangesetPB>>;
}
/// C: represents the group configuration that impl [GroupConfigurationSerde]
/// T: the type option data deserializer that impl [TypeOptionDataDeserializer]
2022-08-17 14:33:45 +08:00
/// G: the group generator, [GroupGenerator]
/// P: the parser that impl [CellBytesParser] for the CellBytes
2022-08-17 14:33:45 +08:00
pub struct GenericGroupController<C, T, G, P> {
pub field_id: String,
pub groups_map: IndexMap<String, Group>,
/// default_group is used to store the rows that don't belong to any groups.
default_group: Group,
2022-08-12 16:05:56 +08:00
pub type_option: Option<T>,
pub configuration: GenericGroupConfiguration<C>,
2022-08-12 10:41:46 +08:00
group_action_phantom: PhantomData<G>,
cell_parser_phantom: PhantomData<P>,
2022-08-12 09:49:07 +08:00
}
2022-08-17 14:33:45 +08:00
impl<C, T, G, P> GenericGroupController<C, T, G, P>
2022-08-12 09:49:07 +08:00
where
C: GroupConfigurationContentSerde,
2022-08-12 09:49:07 +08:00
T: TypeOptionDataDeserializer,
G: GroupGenerator<ConfigurationType = GenericGroupConfiguration<C>, TypeOptionType = T>,
2022-08-12 09:49:07 +08:00
{
pub async fn new(
field_rev: &Arc<FieldRevision>,
configuration_reader: Arc<dyn GroupConfigurationReader>,
configuration_writer: Arc<dyn GroupConfigurationReader>,
) -> FlowyResult<Self> {
let configuration =
GenericGroupConfiguration::<C>::new(field_rev.clone(), configuration_reader, configuration_writer).await?;
let field_type_rev = field_rev.ty;
2022-08-12 09:49:07 +08:00
let type_option = field_rev.get_type_option_entry::<T>(field_type_rev);
let groups = G::generate_groups(&field_rev.id, &configuration, &type_option);
2022-08-17 14:33:45 +08:00
let default_group = Group::new(
DEFAULT_GROUP_ID.to_owned(),
field_rev.id.clone(),
2022-08-17 14:33:45 +08:00
format!("No {}", field_rev.name),
"".to_string(),
);
2022-08-12 09:49:07 +08:00
Ok(Self {
field_id: field_rev.id.clone(),
groups_map: groups.into_iter().map(|group| (group.id.clone(), group)).collect(),
default_group,
2022-08-12 09:49:07 +08:00
type_option,
configuration,
2022-08-12 10:41:46 +08:00
group_action_phantom: PhantomData,
cell_parser_phantom: PhantomData,
2022-08-12 09:49:07 +08:00
})
}
2022-08-17 14:33:45 +08:00
}
2022-08-12 16:05:56 +08:00
2022-08-17 14:33:45 +08:00
impl<C, T, G, P> GroupControllerSharedAction for GenericGroupController<C, T, G, P>
where
P: CellBytesParser,
Self: GroupAction<CellDataType = P::Object>,
2022-08-17 14:33:45 +08:00
{
fn field_id(&self) -> &str {
&self.field_id
}
fn fill_groups(&mut self, row_revs: &[Arc<RowRevision>], field_rev: &FieldRevision) -> FlowyResult<Vec<Group>> {
// if self.configuration.is_none() {
// return Ok(vec![]);
// }
2022-08-17 14:33:45 +08:00
for row_rev in row_revs {
if let Some(cell_rev) = row_rev.cells.get(&self.field_id) {
let mut group_rows: Vec<GroupRow> = vec![];
2022-08-14 15:15:56 +08:00
let cell_bytes = decode_any_cell_data(cell_rev.data.clone(), field_rev);
let cell_data = cell_bytes.parser::<P>()?;
for group in self.groups_map.values() {
if self.can_group(&group.content, &cell_data) {
group_rows.push(GroupRow {
2022-08-17 14:33:45 +08:00
row: row_rev.into(),
group_id: group.id.clone(),
});
}
2022-08-12 16:05:56 +08:00
}
if group_rows.is_empty() {
self.default_group.add_row(row_rev.into());
} else {
for group_row in group_rows {
if let Some(group) = self.groups_map.get_mut(&group_row.group_id) {
group.add_row(group_row.row);
}
2022-08-12 16:05:56 +08:00
}
}
} else {
self.default_group.add_row(row_rev.into());
2022-08-12 10:41:46 +08:00
}
2022-08-12 09:49:07 +08:00
}
2022-08-12 16:05:56 +08:00
let default_group = self.default_group.clone();
let mut groups: Vec<Group> = self.groups_map.values().cloned().collect();
if !default_group.number_of_row() == 0 {
groups.push(default_group);
}
Ok(groups)
2022-08-12 09:49:07 +08:00
}
2022-08-17 14:33:45 +08:00
fn did_update_row(
&mut self,
row_rev: &RowRevision,
field_rev: &FieldRevision,
) -> FlowyResult<Vec<GroupRowsChangesetPB>> {
if let Some(cell_rev) = row_rev.cells.get(&self.field_id) {
let cell_bytes = decode_any_cell_data(cell_rev.data.clone(), field_rev);
let cell_data = cell_bytes.parser::<P>()?;
Ok(self.add_row_if_match(row_rev, &cell_data))
} else {
Ok(vec![])
}
}
fn did_delete_row(
&mut self,
row_rev: &RowRevision,
field_rev: &FieldRevision,
) -> FlowyResult<Vec<GroupRowsChangesetPB>> {
if let Some(cell_rev) = row_rev.cells.get(&self.field_id) {
let cell_bytes = decode_any_cell_data(cell_rev.data.clone(), field_rev);
let cell_data = cell_bytes.parser::<P>()?;
Ok(self.remove_row_if_match(row_rev, &cell_data))
2022-08-17 14:33:45 +08:00
} else {
Ok(vec![])
}
}
2022-08-17 19:29:14 +08:00
fn did_move_row(
&mut self,
row_rev: &RowRevision,
row_changeset: &mut RowChangeset,
2022-08-17 19:29:14 +08:00
field_rev: &FieldRevision,
to_row_id: &str,
) -> FlowyResult<Vec<GroupRowsChangesetPB>> {
if let Some(cell_rev) = row_rev.cells.get(&self.field_id) {
let cell_bytes = decode_any_cell_data(cell_rev.data.clone(), field_rev);
let cell_data = cell_bytes.parser::<P>()?;
2022-08-18 17:40:23 +08:00
tracing::trace!("Move row:{} to row:{}", row_rev.id, to_row_id);
Ok(self.move_row_if_match(field_rev, row_rev, row_changeset, &cell_data, to_row_id))
2022-08-17 19:29:14 +08:00
} else {
Ok(vec![])
}
}
2022-08-12 09:49:07 +08:00
}
2022-08-12 16:05:56 +08:00
struct GroupRow {
2022-08-12 16:05:56 +08:00
row: RowPB,
group_id: String,
}