Skip to main content
Version: 2.0.0-beta

Interface: EntityCallbacks<M, UserType>

This interface defines all the callbacks that can be used when an entity is being created, updated or deleted. Useful for adding your own logic or blocking the execution of the operation.

Type parameters

NameType
Mextends Record<string, any> = any
UserTypeextends User = User

Methods

onDelete

Optional onDelete(entityDeleteProps): void

Callback used after the entity is deleted.

Parameters

NameType
entityDeletePropsEntityOnDeleteProps<M, UserType>

Returns

void

Defined in

lib/src/types/entity_callbacks.ts:59


onFetch

Optional onFetch(entityFetchProps): Entity<M> | Promise<Entity<M>>

Callback used after fetching data

Parameters

NameType
entityFetchPropsEntityOnFetchProps<M, UserType>

Returns

Entity<M> | Promise<Entity<M>>

Defined in

lib/src/types/entity_callbacks.ts:19


onIdUpdate

Optional onIdUpdate(idUpdateProps): string

Callback fired when any value in the form changes. You can use it to define the ID of a new entity based on the current values.

Parameters

NameType
idUpdatePropsEntityIdUpdateProps<M>

Returns

string

Defined in

lib/src/types/entity_callbacks.ts:67


onPreDelete

Optional onPreDelete(entityDeleteProps): void

Callback used after the entity is deleted. If you throw an error in this method the process stops, and an error snackbar gets displayed.

Parameters

NameType
entityDeletePropsEntityOnDeleteProps<M, UserType>

Returns

void

Defined in

lib/src/types/entity_callbacks.ts:52


onPreSave

Optional onPreSave(entitySaveProps): Partial<M> | Promise<Partial<M>>

Callback used before saving, you need to return the values that will get saved. If you throw an error in this method the process stops, and an error snackbar gets displayed.

Parameters

NameType
entitySavePropsEntityOnSaveProps<M, UserType>

Returns

Partial<M> | Promise<Partial<M>>

Defined in

lib/src/types/entity_callbacks.ts:42


onSaveFailure

Optional onSaveFailure(entitySaveProps): void | Promise<void>

Callback used when saving fails

Parameters

NameType
entitySavePropsEntityOnSaveProps<M, UserType>

Returns

void | Promise<void>

Defined in

lib/src/types/entity_callbacks.ts:33


onSaveSuccess

Optional onSaveSuccess(entitySaveProps): void | Promise<void>

Callback used when save is successful

Parameters

NameType
entitySavePropsEntityOnSaveProps<M, UserType>

Returns

void | Promise<void>

Defined in

lib/src/types/entity_callbacks.ts:26

Enterprise?

Learn how to get the most out of your project with the help of our consulting team.
Get in touch
Sign up to our newsletter to get the latest news and updates. No spam!