123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- use crate::event_handler::*;
- use crate::manager::GridManager;
- use flowy_derive::{Flowy_Event, ProtoBuf_Enum};
- use lib_dispatch::prelude::*;
- use std::sync::Arc;
- use strum_macros::Display;
- pub fn create(grid_manager: Arc<GridManager>) -> Module {
- let mut module = Module::new().name(env!("CARGO_PKG_NAME")).data(grid_manager);
- module = module
- .event(GridEvent::GetGrid, get_grid_handler)
- .event(GridEvent::GetGridBlocks, get_grid_blocks_handler)
- .event(GridEvent::GetGridSetting, get_grid_setting_handler)
- .event(GridEvent::UpdateGridSetting, update_grid_setting_handler)
- // Field
- .event(GridEvent::GetFields, get_fields_handler)
- .event(GridEvent::UpdateField, update_field_handler)
- .event(GridEvent::UpdateFieldTypeOption, update_field_type_option_handler)
- .event(GridEvent::DeleteField, delete_field_handler)
- .event(GridEvent::SwitchToField, switch_to_field_handler)
- .event(GridEvent::DuplicateField, duplicate_field_handler)
- .event(GridEvent::MoveField, move_field_handler)
- .event(GridEvent::GetFieldTypeOption, get_field_type_option_data_handler)
- .event(GridEvent::CreateFieldTypeOption, create_field_type_option_data_handler)
- // Row
- .event(GridEvent::CreateTableRow, create_table_row_handler)
- .event(GridEvent::GetRow, get_row_handler)
- .event(GridEvent::DeleteRow, delete_row_handler)
- .event(GridEvent::DuplicateRow, duplicate_row_handler)
- .event(GridEvent::MoveRow, move_row_handler)
- // Cell
- .event(GridEvent::GetCell, get_cell_handler)
- .event(GridEvent::UpdateCell, update_cell_handler)
- // SelectOption
- .event(GridEvent::NewSelectOption, new_select_option_handler)
- .event(GridEvent::UpdateSelectOption, update_select_option_handler)
- .event(GridEvent::GetSelectOptionCellData, get_select_option_handler)
- .event(GridEvent::UpdateSelectOptionCell, update_select_option_cell_handler)
- // Date
- .event(GridEvent::UpdateDateCell, update_date_cell_handler)
- // Group
- .event(GridEvent::CreateBoardCard, create_board_card_handler)
- .event(GridEvent::MoveGroup, move_group_handler)
- .event(GridEvent::MoveGroupRow, move_group_row_handler)
- .event(GridEvent::GetGroup, get_groups_handler);
- module
- }
- /// [GridEvent] defines events that are used to interact with the Grid. You could check [this](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/architecture/backend/protobuf)
- /// out, it includes how to use these annotations: input, output, etc.
- #[derive(Clone, Copy, PartialEq, Eq, Debug, Display, Hash, ProtoBuf_Enum, Flowy_Event)]
- #[event_err = "FlowyError"]
- pub enum GridEvent {
- /// [GetGrid] event is used to get the [GridPB]
- ///
- /// The event handler accepts a [GridIdPB] and returns a [GridPB] if there are no errors.
- #[event(input = "GridIdPB", output = "GridPB")]
- GetGrid = 0,
- /// [GetGridBlocks] event is used to get the grid's block.
- ///
- /// The event handler accepts a [QueryBlocksPayloadPB] and returns a [RepeatedBlockPB]
- /// if there are no errors.
- #[event(input = "QueryBlocksPayloadPB", output = "RepeatedBlockPB")]
- GetGridBlocks = 1,
- /// [GetGridSetting] event is used to get the grid's settings.
- ///
- /// The event handler accepts [GridIdPB] and return [GridSettingPB]
- /// if there is no errors.
- #[event(input = "GridIdPB", output = "GridSettingPB")]
- GetGridSetting = 2,
- /// [UpdateGridSetting] event is used to update the grid's settings.
- ///
- /// The event handler accepts [GridSettingChangesetPB] and return errors if failed to modify the grid's settings.
- #[event(input = "GridSettingChangesetPB")]
- UpdateGridSetting = 3,
- /// [GetFields] event is used to get the grid's settings.
- ///
- /// The event handler accepts a [GetFieldPayloadPB] and returns a [RepeatedFieldPB]
- /// if there are no errors.
- #[event(input = "GetFieldPayloadPB", output = "RepeatedFieldPB")]
- GetFields = 10,
- /// [UpdateField] event is used to update a field's attributes.
- ///
- /// The event handler accepts a [FieldChangesetPB] and returns errors if failed to modify the
- /// field.
- #[event(input = "FieldChangesetPB")]
- UpdateField = 11,
- /// [UpdateFieldTypeOption] event is used to update the field's type-option data. Certain field
- /// types have user-defined options such as color, date format, number format, or a list of values
- /// for a multi-select list. These options are defined within a specialization of the
- /// FieldTypeOption class.
- ///
- /// Check out [this](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/architecture/frontend/grid#fieldtype)
- /// for more information.
- ///
- /// The event handler accepts a [TypeOptionChangesetPB] and returns errors if failed to modify the
- /// field.
- #[event(input = "TypeOptionChangesetPB")]
- UpdateFieldTypeOption = 12,
- /// [DeleteField] event is used to delete a Field. [DeleteFieldPayloadPB] is the context that
- /// is used to delete the field from the Grid.
- #[event(input = "DeleteFieldPayloadPB")]
- DeleteField = 14,
- /// [SwitchToField] event is used to update the current Field's type.
- /// It will insert a new FieldTypeOptionData if the new FieldType doesn't exist before, otherwise
- /// reuse the existing FieldTypeOptionData. You could check the [GridRevisionPad] for more details.
- #[event(input = "EditFieldChangesetPB")]
- SwitchToField = 20,
- /// [DuplicateField] event is used to duplicate a Field. The duplicated field data is kind of
- /// deep copy of the target field. The passed in [DuplicateFieldPayloadPB] is the context that is
- /// used to duplicate the field.
- ///
- /// Return errors if failed to duplicate the field.
- ///
- #[event(input = "DuplicateFieldPayloadPB")]
- DuplicateField = 21,
- /// [MoveItem] event is used to move an item. For the moment, Item has two types defined in
- /// [MoveItemTypePB].
- #[event(input = "MoveFieldPayloadPB")]
- MoveField = 22,
- /// [TypeOptionPathPB] event is used to get the FieldTypeOption data for a specific field type.
- ///
- /// Check out the [TypeOptionPB] for more details. If the [FieldTypeOptionData] does exist
- /// for the target type, the [TypeOptionBuilder] will create the default data for that type.
- ///
- /// Return the [TypeOptionPB] if there are no errors.
- #[event(input = "TypeOptionPathPB", output = "TypeOptionPB")]
- GetFieldTypeOption = 23,
- /// [CreateFieldTypeOption] event is used to create a new FieldTypeOptionData.
- #[event(input = "CreateFieldPayloadPB", output = "TypeOptionPB")]
- CreateFieldTypeOption = 24,
- /// [NewSelectOption] event is used to create a new select option. Returns a [SelectOptionPB] if
- /// there are no errors.
- #[event(input = "CreateSelectOptionPayloadPB", output = "SelectOptionPB")]
- NewSelectOption = 30,
- /// [GetSelectOptionCellData] event is used to get the select option data for cell editing.
- /// [CellPathPB] locate which cell data that will be read from. The return value, [SelectOptionCellDataPB]
- /// contains the available options and the currently selected options.
- #[event(input = "CellPathPB", output = "SelectOptionCellDataPB")]
- GetSelectOptionCellData = 31,
- /// [UpdateSelectOption] event is used to update a FieldTypeOptionData whose field_type is
- /// FieldType::SingleSelect or FieldType::MultiSelect.
- ///
- /// This event may trigger the GridNotification::DidUpdateCell event.
- /// For example, GridNotification::DidUpdateCell will be triggered if the [SelectOptionChangesetPB]
- /// carries a change that updates the name of the option.
- #[event(input = "SelectOptionChangesetPB")]
- UpdateSelectOption = 32,
- #[event(input = "CreateTableRowPayloadPB", output = "RowPB")]
- CreateTableRow = 50,
- /// [GetRow] event is used to get the row data,[RowPB]. [OptionalRowPB] is a wrapper that enables
- /// to return a nullable row data.
- #[event(input = "RowIdPB", output = "OptionalRowPB")]
- GetRow = 51,
- #[event(input = "RowIdPB")]
- DeleteRow = 52,
- #[event(input = "RowIdPB")]
- DuplicateRow = 53,
- #[event(input = "MoveRowPayloadPB")]
- MoveRow = 54,
- #[event(input = "CellPathPB", output = "CellPB")]
- GetCell = 70,
- /// [UpdateCell] event is used to update the cell content. The passed in data, [CellChangesetPB],
- /// carries the changes that will be applied to the cell content by calling `update_cell` function.
- ///
- /// The 'content' property of the [CellChangesetPB] is a String type. It can be used directly if the
- /// cell uses string data. For example, the TextCell or NumberCell.
- ///
- /// But,it can be treated as a generic type, because we can use [serde] to deserialize the string
- /// into a specific data type. For the moment, the 'content' will be deserialized to a concrete type
- /// when the FieldType is SingleSelect, DateTime, and MultiSelect. Please see
- /// the [UpdateSelectOptionCell] and [UpdateDateCell] events for more details.
- #[event(input = "CellChangesetPB")]
- UpdateCell = 71,
- /// [UpdateSelectOptionCell] event is used to update a select option cell's data. [SelectOptionCellChangesetPB]
- /// contains options that will be deleted or inserted. It can be cast to [CellChangesetPB] that
- /// will be used by the `update_cell` function.
- #[event(input = "SelectOptionCellChangesetPB")]
- UpdateSelectOptionCell = 72,
- /// [UpdateDateCell] event is used to update a date cell's data. [DateChangesetPB]
- /// contains the date and the time string. It can be cast to [CellChangesetPB] that
- /// will be used by the `update_cell` function.
- #[event(input = "DateChangesetPB")]
- UpdateDateCell = 80,
- #[event(input = "GridIdPB", output = "RepeatedGridGroupPB")]
- GetGroup = 100,
- #[event(input = "CreateBoardCardPayloadPB", output = "RowPB")]
- CreateBoardCard = 110,
- #[event(input = "MoveGroupPayloadPB")]
- MoveGroup = 111,
- #[event(input = "MoveGroupRowPayloadPB")]
- MoveGroupRow = 112,
- #[event(input = "MoveGroupRowPayloadPB")]
- GroupByField = 113,
- }
|