Interface PagedPaginationContentFeatures<RT>
interface PagedPaginationContentFeatures<RT> extends SharedPaginationContentFeatures<RT> {
abort?: () => void;
isHidden: boolean;
isNavigating: boolean;
isOnline: boolean;
isRefreshing: boolean;
latestRequest?: Future<RT>;
loadPage: (url: string) => Promise<RT | null>;
refresh: () => Promise<void>;
reload: () => Promise<void>;
}The content features yielded in 'paged' mode: navigation happens by loading a specific page.
Extends
Type Parameters
RT
RT
Properties
abort?
optional abort?: () => void;Returns
void
Inherited from
SharedPaginationContentFeatures.abort
isHidden
isHidden: boolean;Inherited from
SharedPaginationContentFeatures.isHidden
isNavigating
isNavigating: boolean;Whether a changed @request arg is currently resolving against the loaded collection — e.g. a route-driven navigation (browser back button). The existing content stays rendered while this is true; once the request resolves it either becomes the active page (same collection) or the component resets to the new collection.
Inherited from
SharedPaginationContentFeatures.isNavigating
isOnline
isOnline: boolean;Inherited from
SharedPaginationContentFeatures.isOnline
isRefreshing
isRefreshing: boolean;Inherited from
SharedPaginationContentFeatures.isRefreshing
latestRequest?
optional latestRequest?: Future<RT>;Inherited from
SharedPaginationContentFeatures.latestRequest
loadPage
loadPage: (url: string) => Promise<RT | null>;Parameters
url
string
Returns
Promise<RT | null>
refresh
refresh: () => Promise<void>;Returns
Promise<void>
Inherited from
SharedPaginationContentFeatures.refresh
reload
reload: () => Promise<void>;Returns
Promise<void>