Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react';
import { cx } from './lib/cx';
import { isModifierClick } from './lib/isModifierClick';
import { ShowMoreButton } from './ShowMoreButton';
import type { ShowMoreButtonTranslations } from './ShowMoreButton';
import type { useHierarchicalMenu } from 'react-instantsearch-hooks';
type HierarchicalMenuClassNames = {
/**
* Class names to apply to the root element
*/
root: string;
/**
* Class names to apply to the root element when there are no refinements possible
*/
noRefinementRoot: string;
/**
* Class names to apply to the list element
*/
list: string;
/**
* Class names to apply to each child list element
*/
childList: string;
/**
* Class names to apply to each item element
*/
item: string;
/**
* Class names to apply to the selected item
*/
selectedItem: string;
/**
* Class names to apply to the parent item of the list
*/
parentItem: string;
/**
* Class names to apply to each link element
*/
link: string;
/**
* Class names to apply to the link of each selected item
*/
selectedItemLink: string;
/**
* Class names to apply to the label of an item element
*/
label: string;
/**
* Class names to apply to the count of an item element
*/
count: string;
/**
* Class names to apply to the "Show more" button
*/
showMore: string;
/**
* Class names to apply to the "Show more" button if it's disabled
*/
disabledShowMore: string;
};
type HierarchicalListProps = Pick<
ReturnType<typeof useHierarchicalMenu>,
'items' | 'createURL'
> & {
className?: string;
classNames?: Partial<HierarchicalMenuClassNames>;
onNavigate: (value: string) => void;
};
export type HierarchicalMenuProps = React.ComponentProps<'div'> &
HierarchicalListProps & {
hasItems: boolean;
showMore?: boolean;
canToggleShowMore: boolean;
onToggleShowMore: () => void;
isShowingMore: boolean;
translations: ShowMoreButtonTranslations;
};
export type HierarchicalMenuTranslations = ShowMoreButtonTranslations;
function HierarchicalList({
className,
classNames = {},
items,
createURL,
onNavigate,
}: HierarchicalListProps) {
return (
<ul className={cx('ais-HierarchicalMenu-list', classNames.list, className)}>
{items.map((item) => (
<li
key={item.value}
className={cx(
'ais-HierarchicalMenu-item',
classNames.item,
item.data &&
cx('ais-HierarchicalMenu-item--parent', classNames.parentItem),
item.isRefined &&
cx('ais-HierarchicalMenu-item--selected', classNames.selectedItem)
)}
>
<a
className={cx(
'ais-HierarchicalMenu-link',
classNames.link,
item.isRefined &&
cx(
'ais-HierarchicalMenu-link--selected',
classNames.selectedItemLink
)
)}
href={createURL(item.value)}
onClick={(event) => {
if (isModifierClick(event)) {
return;
}
event.preventDefault();
onNavigate(item.value);
}}
>
<span
className={cx('ais-HierarchicalMenu-label', classNames.label)}
>
{item.label}
</span>
<span
className={cx('ais-HierarchicalMenu-count', classNames.count)}
>
{item.count}
</span>
</a>
{item.data && (
<HierarchicalList
className={cx(
'ais-HierarchicalMenu-list--child',
classNames.childList
)}
classNames={classNames}
items={item.data!}
onNavigate={onNavigate}
createURL={createURL}
/>
)}
</li>
))}
</ul>
);
}
export function HierarchicalMenu({
classNames = {},
items,
hasItems,
onNavigate,
createURL,
showMore,
canToggleShowMore,
onToggleShowMore,
isShowingMore,
translations,
...props
}: HierarchicalMenuProps) {
return (
<div
{...props}
className={cx(
'ais-HierarchicalMenu',
classNames.root,
!hasItems &&
cx('ais-HierarchicalMenu--noRefinement', classNames.noRefinementRoot),
props.className
)}
>
<HierarchicalList
classNames={classNames}
items={items}
onNavigate={onNavigate}
createURL={createURL}
/>
{showMore && (
<ShowMoreButton
className={cx(
'ais-HierarchicalMenu-showMore',
classNames.showMore,
!canToggleShowMore &&
cx(
'ais-HierarchicalMenu-showMore--disabled',
classNames.disabledShowMore
)
)}
disabled={!canToggleShowMore}
onClick={onToggleShowMore}
isShowingMore={isShowingMore}
translations={translations}
/>
)}
</div>
);
}