Class BaseFormStepperAbstract

Displays a grouped form with many steps *

Hierarchy

  • default
    • BaseFormStepper

Constructors

Properties

context: MetaForm
fields: {
    fields: undefined | IField[];
    meta: IMeta;
    name: string;
}[]
props: Readonly<{
    fields: IField[];
    theme: string;
}>
refs: {
    [key: string]: ReactInstance;
}

Type declaration

  • [key: string]: ReactInstance
state: IState
theme: string
contextType: Context<MetaForm> = FormContext

Methods

  • Called when the component may be receiving new props. React may call this even if props have not changed, so be sure to compare new and existing props if you only want to handle changes.

    Calling Component#setState generally does not trigger this method.

    This method will not stop working in React 17.

    Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps prevents this from being invoked.

    Deprecated

    16.3, use static getDerivedStateFromProps instead

    See

    Parameters

    • nextProps: Readonly<{
          fields: IField[];
          theme: string;
      }>
    • nextContext: any

    Returns void

  • Catches exceptions generated in descendant components. Unhandled exceptions will cause the entire component tree to unmount.

    Parameters

    • error: Error
    • errorInfo: ErrorInfo

    Returns void

  • Called immediately after updating occurs. Not called for the initial render.

    The snapshot is only present if getSnapshotBeforeUpdate is present and returns non-null.

    Parameters

    • prevProps: Readonly<{
          fields: IField[];
          theme: string;
      }>
    • prevState: Readonly<{}>
    • Optional snapshot: any

    Returns void

  • Called when the component may be receiving new props. React may call this even if props have not changed, so be sure to compare new and existing props if you only want to handle changes.

    Calling Component#setState generally does not trigger this method.

    Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps prevents this from being invoked.

    Deprecated

    16.3, use static getDerivedStateFromProps instead; will stop working in React 17

    See

    Parameters

    • nextProps: Readonly<{
          fields: IField[];
          theme: string;
      }>
    • nextContext: any

    Returns void

  • Parameters

    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • Runs before React applies the result of render to the document, and returns an object to be given to componentDidUpdate. Useful for saving things such as scroll position before render causes changes to it.

    Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated lifecycle events from running.

    Parameters

    • prevProps: Readonly<{
          fields: IField[];
          theme: string;
      }>
    • prevState: Readonly<{}>

    Returns any

  • Type Parameters

    • K extends never

    Parameters

    • state: null | {} | ((prevState: Readonly<{}>, props: Readonly<{
          fields: IField[];
          theme: string;
      }>) => null | {} | Pick<{}, K>) | Pick<{}, K>
    • Optional callback: (() => void)
        • (): void
        • Returns void

    Returns void

  • Called to determine whether the change in props and state should trigger a re-render.

    Component always returns true. PureComponent implements a shallow comparison on props and state and returns true if any props or states have changed.

    If false is returned, Component#render, componentWillUpdate and componentDidUpdate will not be called.

    Parameters

    • nextProps: Readonly<{
          fields: IField[];
          theme: string;
      }>
    • nextState: Readonly<{}>
    • nextContext: any

    Returns boolean

Generated using TypeDoc