@ima/core
Version:
IMA.js framework for isomorphic javascript application
34 lines • 1.39 kB
TypeScript
import { ManagedPage, PageAction } from '../PageTypes';
export declare abstract class PageHandler {
/**
* Initializes the page handler.
*/
init(): void;
/**
* Called before a PageManager starts to transition from previous page to
* a new one.
*
* @param managedPage The currently managed page - soon-to-be
* previously managed page.
* @param nextManagedPage The data of the page that's about to
* be managed.
* @param action An action object describing what triggered the routing.
*/
handlePreManagedState(managedPage: ManagedPage | null, nextManagedPage: ManagedPage, action: PageAction): void;
/**
* Called after a PageManager finishes transition from previous page to
* a new one.
*
* @param managedPage The currently managed page.
* @param previousManagedPage The data of the page that was
* previously managed.
* @param action An action object describing what triggered the routing.
*/
handlePostManagedState(managedPage: ManagedPage | null, previousManagedPage: ManagedPage, action: PageAction): void;
/**
* Finalization callback, called when the page manager is being discarded.
* This usually happens when the page is hot-reloaded at the client side.
*/
destroy(): void;
}
//# sourceMappingURL=PageHandler.d.ts.map