Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import {
getHighlightedParts,
getPropertyByPath,
unescape,
} from 'instantsearch.js/es/lib/utils';
import React from 'react';
import { Snippet as SnippetUiComponent } from '../ui/Snippet';
import type { PartialKeys } from '../types';
import type { SnippetProps as SnippetUiComponentProps } from '../ui/Snippet';
import type { BaseHit, Hit } from 'instantsearch.js';
export type SnippetProps<THit extends Hit<BaseHit>> = {
hit: THit;
attribute: keyof THit | string[];
} & PartialKeys<
Omit<SnippetUiComponentProps, 'parts'>,
'highlightedTagName' | 'nonHighlightedTagName' | 'separator'
>;
export function Snippet<THit extends Hit<BaseHit>>({
hit,
attribute,
highlightedTagName,
nonHighlightedTagName,
separator,
...props
}: SnippetProps<THit>) {
const property =
getPropertyByPath(hit._snippetResult, attribute as string) || [];
const properties = Array.isArray(property) ? property : [property];
const parts = properties.map((singleValue) =>
getHighlightedParts(unescape(singleValue.value || ''))
);
return (
<SnippetUiComponent
{...props}
parts={parts}
highlightedTagName={highlightedTagName}
nonHighlightedTagName={nonHighlightedTagName}
separator={separator}
/>
);
}