No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Results per page

Shows results count per page.

Properties

Property NameDescriptionTypeRequired
defaultItemsPerPageItems set for per pagenumbertrue

Example


// First, import what we need from React SDK.
  import { PageController, WidgetDataType, useSearchResults, widget } from '@sitecore-search/react';

  // Import the component generated by the CLI.
  import ResultsPerPage from '@/components/ResultsPerPage';

  function SearchResultsWrapper() {
    const {
      queryResult: { data },
    } = useSearchResults({
      state: {
        itemsPerPage: 24, // Set the default items per page, you can change this value or omit it.
      },
    });
    return (
      <>
        <ul>{data?.content?.map((content) => <li>{content.title}</li>)}</ul>
        <ResultsPerPage defaultItemsPerPage={24} />
      </>
    );
  };

  // Convert the regular component to a compatible widget.
  const SearchResultsWrapperWidget = widget(SearchResultsWrapper, WidgetDataType.SEARCH_RESULTS, 'content');

  // Then we can use the widget.
  function MyApp() {
    return (
      <WidgetsProvider {...CONFIG}>
        <SearchResultsWrapperWidget rfkId="rfkid_7" />
      </WidgetsProvider>
    )
  }
  

Also showing articles returned per page

  1. Future
  2. Cloud SDK Demo
  3. About
  4. News Area
  5. Contact Form
  6. Search

Installation

npx sc-search new-component -w -s styled -l typescript -n ResultsPerPage -o <destination/path>