You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
942 B
43 lines
942 B
import { useMemo } from 'react';
|
|
import type { BreadcrumbItemType, BreadcrumbSeparatorType, ItemType } from './Breadcrumb';
|
|
|
|
type MergedType = BreadcrumbItemType & {
|
|
children?: ItemType['children'];
|
|
};
|
|
|
|
function route2item(route: ItemType): MergedType {
|
|
const { breadcrumbName, children, ...rest } = route;
|
|
|
|
const clone: MergedType = {
|
|
title: breadcrumbName,
|
|
...rest,
|
|
};
|
|
|
|
if (children) {
|
|
clone.menu = {
|
|
items: children.map(({ breadcrumbName: itemBreadcrumbName, ...itemProps }) => ({
|
|
...itemProps,
|
|
title: itemBreadcrumbName,
|
|
})),
|
|
};
|
|
}
|
|
|
|
return clone;
|
|
}
|
|
|
|
export default function useItems(
|
|
items?: ItemType[],
|
|
routes?: ItemType[],
|
|
): Partial<MergedType & BreadcrumbSeparatorType>[] | null {
|
|
return useMemo<ItemType[] | null>(() => {
|
|
if (items) {
|
|
return items;
|
|
}
|
|
|
|
if (routes) {
|
|
return routes.map(route2item);
|
|
}
|
|
|
|
return null;
|
|
}, [items, routes]);
|
|
}
|
|
|