AppFlowy/frontend/rust-lib/flowy-grid/src/event_map.rs

110 lines
3.7 KiB
Rust
Raw Normal View History

2022-03-02 14:43:04 +00:00
use crate::event_handler::*;
2022-03-04 14:09:16 +00:00
use crate::manager::GridManager;
2022-03-02 14:43:04 +00: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-03-06 13:22:42 +00:00
.event(GridEvent::GetGridData, get_grid_data_handler)
2022-03-17 09:25:43 +00:00
.event(GridEvent::GetGridBlocks, get_grid_blocks_handler)
2022-04-05 13:25:59 +00:00
// Field
2022-03-03 14:17:07 +00:00
.event(GridEvent::GetFields, get_fields_handler)
.event(GridEvent::UpdateField, update_field_handler)
.event(GridEvent::InsertField, insert_field_handler)
2022-05-10 01:33:34 +00:00
.event(GridEvent::UpdateFieldTypeOption, update_field_type_option_handler)
2022-03-27 03:14:21 +00:00
.event(GridEvent::DeleteField, delete_field_handler)
.event(GridEvent::SwitchToField, switch_to_field_handler)
2022-03-27 03:14:21 +00:00
.event(GridEvent::DuplicateField, duplicate_field_handler)
2022-04-13 06:24:54 +00:00
.event(GridEvent::GetEditFieldContext, get_field_context_handler)
.event(GridEvent::MoveItem, move_item_handler)
.event(GridEvent::GetFieldTypeOption, get_field_type_option_data_handler)
2022-04-05 13:25:59 +00:00
// Row
2022-03-09 08:11:24 +00:00
.event(GridEvent::CreateRow, create_row_handler)
2022-03-18 09:14:46 +00:00
.event(GridEvent::GetRow, get_row_handler)
2022-04-09 14:07:48 +00:00
.event(GridEvent::DeleteRow, delete_row_handler)
.event(GridEvent::DuplicateRow, duplicate_row_handler)
2022-04-05 13:25:59 +00:00
// Cell
2022-04-07 12:15:00 +00:00
.event(GridEvent::GetCell, get_cell_handler)
2022-04-05 06:25:07 +00:00
.event(GridEvent::UpdateCell, update_cell_handler)
2022-04-05 13:25:59 +00:00
// SelectOption
2022-04-07 00:33:10 +00:00
.event(GridEvent::NewSelectOption, new_select_option_handler)
.event(GridEvent::UpdateSelectOption, update_select_option_handler)
2022-04-07 00:33:10 +00:00
.event(GridEvent::GetSelectOptionContext, get_select_option_handler)
2022-04-13 06:24:54 +00:00
.event(GridEvent::UpdateCellSelectOption, update_cell_select_option_handler);
2022-03-02 14:43:04 +00:00
module
}
#[derive(Clone, Copy, PartialEq, Eq, Debug, Display, Hash, ProtoBuf_Enum, Flowy_Event)]
#[event_err = "FlowyError"]
pub enum GridEvent {
#[event(input = "GridId", output = "Grid")]
2022-03-06 13:22:42 +00:00
GetGridData = 0,
2022-03-03 14:17:07 +00:00
2022-03-17 09:25:43 +00:00
#[event(input = "QueryGridBlocksPayload", output = "RepeatedGridBlock")]
GetGridBlocks = 1,
2022-03-03 14:17:07 +00:00
2022-03-05 09:52:25 +00:00
#[event(input = "QueryFieldPayload", output = "RepeatedField")]
2022-03-18 09:14:46 +00:00
GetFields = 10,
2022-03-03 14:17:07 +00:00
2022-03-27 03:14:21 +00:00
#[event(input = "FieldChangesetPayload")]
UpdateField = 11,
2022-05-10 01:33:34 +00:00
#[event(input = "UpdateFieldTypeOptionPayload")]
UpdateFieldTypeOption = 12,
#[event(input = "InsertFieldPayload")]
2022-05-10 01:33:34 +00:00
InsertField = 13,
2022-03-27 03:14:21 +00:00
#[event(input = "FieldIdentifierPayload")]
2022-05-10 01:33:34 +00:00
DeleteField = 14,
2022-03-27 01:35:10 +00:00
#[event(input = "EditFieldPayload", output = "EditFieldContext")]
2022-05-10 01:33:34 +00:00
SwitchToField = 20,
2022-03-27 03:14:21 +00:00
#[event(input = "FieldIdentifierPayload")]
2022-05-10 01:33:34 +00:00
DuplicateField = 21,
2022-03-27 03:14:21 +00:00
2022-05-09 06:59:26 +00:00
#[event(input = "EditFieldPayload", output = "EditFieldContext")]
2022-05-10 01:33:34 +00:00
GetEditFieldContext = 22,
2022-03-24 09:09:05 +00:00
2022-04-13 06:24:54 +00:00
#[event(input = "MoveItemPayload")]
2022-05-10 01:33:34 +00:00
MoveItem = 23,
2022-04-13 06:24:54 +00:00
2022-05-09 06:59:26 +00:00
#[event(input = "EditFieldPayload", output = "FieldTypeOptionData")]
2022-05-10 01:33:34 +00:00
GetFieldTypeOption = 24,
#[event(input = "CreateSelectOptionPayload", output = "SelectOption")]
2022-04-07 00:33:10 +00:00
NewSelectOption = 30,
2022-03-29 14:58:38 +00:00
2022-04-05 13:25:59 +00:00
#[event(input = "CellIdentifierPayload", output = "SelectOptionContext")]
2022-04-07 00:33:10 +00:00
GetSelectOptionContext = 31,
#[event(input = "SelectOptionChangesetPayload")]
UpdateSelectOption = 32,
2022-04-05 06:25:07 +00:00
#[event(input = "CreateRowPayload", output = "Row")]
2022-03-29 14:58:38 +00:00
CreateRow = 50,
2022-03-18 09:14:46 +00:00
2022-04-07 00:33:10 +00:00
#[event(input = "RowIdentifierPayload", output = "Row")]
2022-03-29 14:58:38 +00:00
GetRow = 51,
2022-03-09 08:11:24 +00:00
2022-04-09 14:07:48 +00:00
#[event(input = "RowIdentifierPayload")]
DeleteRow = 52,
#[event(input = "RowIdentifierPayload")]
DuplicateRow = 53,
2022-04-07 12:15:00 +00:00
#[event(input = "CellIdentifierPayload", output = "Cell")]
GetCell = 70,
#[event(input = "CellChangeset")]
2022-04-07 12:15:00 +00:00
UpdateCell = 71,
2022-04-05 06:25:07 +00:00
2022-04-07 00:33:10 +00:00
#[event(input = "SelectOptionCellChangesetPayload")]
UpdateCellSelectOption = 72,
2022-03-02 14:43:04 +00:00
}