import React, { FC } from 'react' import { Navigation } from '@adminjs/design-system' import { useTranslation } from '../../../hooks/use-translation.js' import { ResourceJSON } from '../../../interfaces/index.js' import allowOverride from '../../../hoc/allow-override.js' import { useNavigationResources } from '../../../hooks/index.js' /** * @alias SidebarResourceSectionProps * @memberof SidebarResourceSection */ export type SidebarResourceSectionProps = { /** List of the resources which should be rendered */ resources: Array; } /** * Groups resources by sections and renders the list in {@link Sidebar} * * ### Usage * * ``` * import { SidebarResourceSection } from 'adminjs` * ``` * * @component * @subcategory Application * @name SidebarResourceSection */ const SidebarResourceSectionOriginal: FC = ({ resources }) => { const elements = useNavigationResources(resources) const { translateLabel } = useTranslation() return ( ) } // Rollup cannot handle type exports well - that is why we need to do this hack with // exporting default and named SidebarResourceSection const SidebarResourceSection = allowOverride(SidebarResourceSectionOriginal, 'SidebarResourceSection') export { SidebarResourceSection, SidebarResourceSectionOriginal as OriginalSidebarResourceSection } export default SidebarResourceSection