import React from 'react'; import { useSortBy } from 'react-instantsearch-hooks'; import { SortBy as SortByUiComponent } from '../ui/SortBy'; import type { SortByProps as SortByUiComponentProps } from '../ui/SortBy'; import type { UseSortByProps } from 'react-instantsearch-hooks'; type UiProps = Pick; export type SortByProps = Omit & UseSortByProps; export function SortBy({ items, transformItems, ...props }: SortByProps) { const { currentRefinement, options, refine } = useSortBy( { items, transformItems, }, { $$widgetType: 'ais.sortBy', } ); const uiProps: UiProps = { items: options, value: currentRefinement, onChange: refine, }; return ; }