Interface for the loader component that is loaded when the app starts

Hierarchy

Properties

The context this component belongs to

Reference to the platform

Methods

  • The component has loaded and has already rendered.

    Updating data in this method will cause the component to re-render.

    componentDidLoad will only be called once.

    Returns void

  • The component has just re-rendered.

    Called multiple times throughout the life of the component as it updates.

    componentWillUpdate is not called on the first render.

    Returns void

  • A @Prop or @State property changed and a rerender is about to be requested.

    Called multiple times throughout the life of the component as its properties change.

    componentShouldUpdate is not called on the first render.

    Parameters

    • newVal: any
    • oldVal: any
    • propName: string

    Returns boolean | void

  • This method will never be called since the component will never be updated. It must still be present on the component though.

    Returns any

  • This method will be invoked every time the component is inserted into the DOM. For a plugin loader component, it should happen only once. The method must be present on the component for technical reasons.

    Returns any

  • This method will be invoked every time the component is removed from the DOM. For a plugin loader component, it should never happen since the component will live during the whole lifespan of the application. The method must be present on the component for technical reasons.

    Returns any