1234567891011121314151617181920212223242526272829303132333435 |
- use dart_notify::DartNotifyBuilder;
- use flowy_derive::ProtoBuf_Enum;
- const OBSERVABLE_CATEGORY: &str = "Grid";
- #[derive(ProtoBuf_Enum, Debug)]
- pub enum GridNotification {
- Unknown = 0,
- DidCreateBlock = 11,
- DidUpdateGridBlock = 20,
- DidUpdateGridField = 21,
- DidUpdateRow = 30,
- DidUpdateCell = 40,
- DidUpdateField = 50,
- DidUpdateGroupView = 60,
- DidUpdateGroup = 61,
- DidGroupByNewField = 62,
- DidUpdateGridSetting = 70,
- }
- impl std::default::Default for GridNotification {
- fn default() -> Self {
- GridNotification::Unknown
- }
- }
- impl std::convert::From<GridNotification> for i32 {
- fn from(notification: GridNotification) -> Self {
- notification as i32
- }
- }
- #[tracing::instrument(level = "trace")]
- pub fn send_dart_notification(id: &str, ty: GridNotification) -> DartNotifyBuilder {
- DartNotifyBuilder::new(id, ty, OBSERVABLE_CATEGORY)
- }
|