123 lines
4.3 KiB
Rust
Raw Normal View History

2022-03-02 22:43:04 +08:00
use crate::event_handler::*;
2022-03-04 22:09:16 +08:00
use crate::manager::GridManager;
2022-03-02 22:43:04 +08:00
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
2022-06-24 18:13:40 +08:00
.event(GridEvent::GetGrid, get_grid_handler)
2022-03-17 17:25:43 +08:00
.event(GridEvent::GetGridBlocks, get_grid_blocks_handler)
2022-06-19 21:10:07 +08:00
.event(GridEvent::GetGridSetting, get_grid_setting_handler)
2022-06-21 16:56:50 +08:00
.event(GridEvent::UpdateGridSetting, update_grid_setting_handler)
2022-04-05 21:25:59 +08:00
// Field
2022-03-03 22:17:07 +08:00
.event(GridEvent::GetFields, get_fields_handler)
.event(GridEvent::UpdateField, update_field_handler)
.event(GridEvent::InsertField, insert_field_handler)
2022-05-10 09:33:34 +08:00
.event(GridEvent::UpdateFieldTypeOption, update_field_type_option_handler)
2022-03-27 11:14:21 +08:00
.event(GridEvent::DeleteField, delete_field_handler)
.event(GridEvent::SwitchToField, switch_to_field_handler)
2022-03-27 11:14:21 +08:00
.event(GridEvent::DuplicateField, duplicate_field_handler)
2022-04-13 14:24:54 +08:00
.event(GridEvent::MoveItem, move_item_handler)
.event(GridEvent::GetFieldTypeOption, get_field_type_option_data_handler)
2022-05-19 10:41:00 +08:00
.event(GridEvent::CreateFieldTypeOption, create_field_type_option_data_handler)
2022-04-05 21:25:59 +08:00
// Row
2022-03-09 16:11:24 +08:00
.event(GridEvent::CreateRow, create_row_handler)
2022-03-18 17:14:46 +08:00
.event(GridEvent::GetRow, get_row_handler)
2022-04-09 22:07:48 +08:00
.event(GridEvent::DeleteRow, delete_row_handler)
.event(GridEvent::DuplicateRow, duplicate_row_handler)
2022-04-05 21:25:59 +08:00
// Cell
2022-04-07 20:15:00 +08:00
.event(GridEvent::GetCell, get_cell_handler)
2022-04-05 14:25:07 +08:00
.event(GridEvent::UpdateCell, update_cell_handler)
2022-04-05 21:25:59 +08:00
// SelectOption
2022-04-07 08:33:10 +08:00
.event(GridEvent::NewSelectOption, new_select_option_handler)
.event(GridEvent::UpdateSelectOption, update_select_option_handler)
2022-05-12 22:36:39 +08:00
.event(GridEvent::GetSelectOptionCellData, get_select_option_handler)
2022-05-11 11:34:13 +08:00
.event(GridEvent::UpdateSelectOptionCell, update_select_option_cell_handler)
// Date
.event(GridEvent::UpdateDateCell, update_date_cell_handler);
2022-03-02 22:43:04 +08:00
module
}
#[derive(Clone, Copy, PartialEq, Eq, Debug, Display, Hash, ProtoBuf_Enum, Flowy_Event)]
#[event_err = "FlowyError"]
pub enum GridEvent {
2022-07-17 14:13:12 +08:00
#[event(input = "GridIdPB", output = "GridPB")]
2022-06-24 18:13:40 +08:00
GetGrid = 0,
2022-03-03 22:17:07 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "QueryGridBlocksPayloadPB", output = "RepeatedGridBlockPB")]
2022-03-17 17:25:43 +08:00
GetGridBlocks = 1,
2022-03-03 22:17:07 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "GridIdPB", output = "GridSettingPB")]
2022-06-19 21:10:07 +08:00
GetGridSetting = 2,
2022-07-17 14:13:12 +08:00
#[event(input = "GridIdPB", input = "GridSettingChangesetPayloadPB")]
2022-06-20 09:37:52 +08:00
UpdateGridSetting = 3,
2022-07-17 14:13:12 +08:00
#[event(input = "QueryFieldPayloadPB", output = "RepeatedGridFieldPB")]
2022-03-18 17:14:46 +08:00
GetFields = 10,
2022-03-03 22:17:07 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "FieldChangesetPayloadPB")]
UpdateField = 11,
2022-07-17 14:13:12 +08:00
#[event(input = "UpdateFieldTypeOptionPayloadPB")]
2022-05-10 09:33:34 +08:00
UpdateFieldTypeOption = 12,
2022-07-17 14:13:12 +08:00
#[event(input = "InsertFieldPayloadPB")]
2022-05-10 09:33:34 +08:00
InsertField = 13,
2022-07-17 14:13:12 +08:00
#[event(input = "GridFieldIdentifierPayloadPB")]
2022-05-10 09:33:34 +08:00
DeleteField = 14,
2022-03-27 09:35:10 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "EditFieldPayloadPB", output = "FieldTypeOptionDataPB")]
2022-05-10 09:33:34 +08:00
SwitchToField = 20,
2022-07-17 14:13:12 +08:00
#[event(input = "GridFieldIdentifierPayloadPB")]
2022-05-10 09:33:34 +08:00
DuplicateField = 21,
2022-03-27 11:14:21 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "MoveItemPayloadPB")]
MoveItem = 22,
2022-04-13 14:24:54 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "EditFieldPayloadPB", output = "FieldTypeOptionDataPB")]
GetFieldTypeOption = 23,
2022-07-17 14:13:12 +08:00
#[event(input = "EditFieldPayloadPB", output = "FieldTypeOptionDataPB")]
2022-05-19 10:41:00 +08:00
CreateFieldTypeOption = 24,
2022-07-17 14:13:12 +08:00
#[event(input = "CreateSelectOptionPayloadPB", output = "SelectOptionPB")]
2022-04-07 08:33:10 +08:00
NewSelectOption = 30,
2022-03-29 22:58:38 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "GridCellIdentifierPayloadPB", output = "SelectOptionCellDataPB")]
2022-05-12 22:36:39 +08:00
GetSelectOptionCellData = 31,
2022-04-07 08:33:10 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "SelectOptionChangesetPayloadPB")]
UpdateSelectOption = 32,
2022-04-05 14:25:07 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "CreateRowPayloadPB", output = "GridRowPB")]
2022-03-29 22:58:38 +08:00
CreateRow = 50,
2022-03-18 17:14:46 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "GridRowIdPayloadPB", output = "OptionalRowPB")]
2022-03-29 22:58:38 +08:00
GetRow = 51,
2022-03-09 16:11:24 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "GridRowIdPayloadPB")]
2022-04-09 22:07:48 +08:00
DeleteRow = 52,
2022-07-17 14:13:12 +08:00
#[event(input = "GridRowIdPayloadPB")]
2022-04-09 22:07:48 +08:00
DuplicateRow = 53,
2022-07-17 14:13:12 +08:00
#[event(input = "GridCellIdentifierPayloadPB", output = "GridCellPB")]
2022-04-07 20:15:00 +08:00
GetCell = 70,
2022-07-17 14:13:12 +08:00
#[event(input = "CellChangesetPB")]
2022-04-07 20:15:00 +08:00
UpdateCell = 71,
2022-04-05 14:25:07 +08:00
2022-07-17 14:13:12 +08:00
#[event(input = "SelectOptionCellChangesetPayloadPB")]
2022-05-11 11:34:13 +08:00
UpdateSelectOptionCell = 72,
2022-07-17 14:13:12 +08:00
#[event(input = "DateChangesetPayloadPB")]
2022-05-11 11:34:13 +08:00
UpdateDateCell = 80,
2022-03-02 22:43:04 +08:00
}