@tempots/ui

ResourceDisplayOptions interface

Options for displaying the different states of an asynchronous resource.

V - The type of the value when the resource is successfully loaded. E - The type of the error when the resource fails to load.

Signature:

export interface ResourceDisplayOptions<V, E> 

Properties

Property

Modifiers

Type

Description

error?

(error: Signal<E>, reload: () => void) => TNode

(Optional) Function to render when the resource has failed to load.

loading?

(previous: Signal<V | undefined>, reload: () => void) => TNode

(Optional) Function to render when the resource is loading.

notAsked?

(reload: () => void) => TNode

(Optional) Function to render when the resource has not been requested yet.

success

(value: Signal<V>, reload: () => void) => TNode

Function to render when the resource has successfully loaded.