Interface QuickviewState

The state of the Quickview controller.

interface QuickviewState {
    contentURL?: string;
    isLoading: boolean;
    resultHasPreview: boolean;
}

Properties

contentURL?: string

The src path to use if rendering the quickview in an iframe.

isLoading: boolean

true if content is being fetched, and false otherwise.

resultHasPreview: boolean

true if the configured result has a preview, and false otherwise.