import React from 'react'; import { useCurrentRefinements } from 'react-instantsearch-hooks'; import { CurrentRefinements as CurrentRefinementsUiComponent } from '../ui/CurrentRefinements'; import type { CurrentRefinementsProps as CurrentRefinementsUiComponentProps } from '../ui/CurrentRefinements'; import type { UseCurrentRefinementsProps } from 'react-instantsearch-hooks'; type UiProps = Pick< CurrentRefinementsUiComponentProps, 'items' | 'onRemove' | 'hasRefinements' >; export type CurrentRefinementsProps = Omit< CurrentRefinementsUiComponentProps, keyof UiProps > & UseCurrentRefinementsProps; export function CurrentRefinements({ includedAttributes, excludedAttributes, transformItems, ...props }: CurrentRefinementsProps) { const { items, refine, canRefine } = useCurrentRefinements( { includedAttributes, excludedAttributes, transformItems, }, { $$widgetType: 'ais.currentRefinements', } ); const uiProps: UiProps = { items, onRemove: refine, hasRefinements: canRefine, }; return ; }