interface CoreQuickview {
    state: CoreQuickviewState;
    fetchResultContent(): void;
    next(): void;
    previous(): void;
    subscribe(listener: () => void): Unsubscribe;
}

Hierarchy (View Summary)

Methods

  • Retrieves the preview content for the next available result in the current result set.

    If it reaches the last available result in the current result set, it will not perform an additional query to fetch new results.

    Instead, it will loop back to the first available result.

    If options.onlyContentURL is true this will update the contentURL state property rather than content.

    Returns void

  • Retrieves the preview content for the previous available result in the current result set.

    If it reaches the first available result in the current result set, it will not perform an additional query to fetch new results.

    Instead, it will loop back to the last available result.

    If options.onlyContentURL is true this will update the contentURL state property rather than content.

    Returns void

Properties

The state for the Quickview controller.