React Corsair - v0.0.12
    Preparing search index...

    Interface NavigateEvent

    An event published by a Router after a navigation occurs.

    interface NavigateEvent {
        controller: RouteController;
        isIntercepted: boolean;
        location: Location;
        prevController: RouteController<any, any, any> | null;
        prevLocation: Location;
        type: "navigate";
    }
    Index

    Properties

    controller: RouteController

    The controller to which router was navigated.

    isIntercepted: boolean

    true if the controller rendering was intercepted.

    location: Location

    A location to which a router was navigated.

    prevController: RouteController<any, any, any> | null

    The controller from which router was navigated to another controller. This can be null if a route navigation was intercepted but there is no rendered intercepted route.

    prevLocation: Location

    A location from which a router was navigated to a location.

    type: "navigate"

    The event type.