File size: 1,141 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 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 <CurrentRefinementsUiComponent {...props} {...uiProps} />;
}
|