BeforeAdaptableStateChangeInfo

Object returned by the BeforeAdaptableStateChange event, fired before the action is processed by the reducer

TypeScript
export interface BeforeAdaptableStateChangeInfo extends
Extends

BaseContext

Properties

PropertyDescription
actionThe Redux Action that is about to be invoked
actionNameName of the Action about to be performed
stateCurrent Adaptable State (before the Action is applied)
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

action

The Redux Action that is about to be invoked

TypeScript
action: Redux.Action;
Property Value

Redux.Action

actionName

Name of the Action about to be performed

TypeScript
actionName: string;
Property Value

string

state

Current Adaptable State (before the Action is applied)

TypeScript
state: AdaptableState;
Property Value

AdaptableState

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any