Skip to content
module@warp-drive/core/signals/-leaked

Interface PagedPaginationContentFeatures<RT>

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:43

The content features yielded in 'paged' mode: navigation happens by loading a specific page.

Extends

Type Parameters

RT

RT

Properties

abort?

ts
optional abort?: () => void;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:35

Returns

void

Inherited from

SharedPaginationContentFeatures.abort


isHidden

ts
isHidden: boolean;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:23

Inherited from

SharedPaginationContentFeatures.isHidden


isNavigating

ts
isNavigating: boolean;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:32

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

ts
isOnline: boolean;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:22

Inherited from

SharedPaginationContentFeatures.isOnline


isRefreshing

ts
isRefreshing: boolean;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:24

Inherited from

SharedPaginationContentFeatures.isRefreshing


latestRequest?

ts
optional latestRequest?: Future<RT>;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:36

Inherited from

SharedPaginationContentFeatures.latestRequest


loadPage

ts
loadPage: (url) => Promise<RT | null>;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:44

Parameters

url

string

Returns

Promise<RT | null>


refresh

ts
refresh: () => Promise<void>;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:33

Returns

Promise<void>

Inherited from

SharedPaginationContentFeatures.refresh


reload

ts
reload: () => Promise<void>;

Defined in: warp-drive-packages/core/src/signals/pagination-subscription.ts:34

Returns

Promise<void>

Inherited from

SharedPaginationContentFeatures.reload

Released under the MIT License.