import React from 'react'; import { useParams } from 'react-router-dom'; import { EntityType } from '../../types.generated'; import { BrowsableEntityPage } from '../browse/BrowsableEntityPage'; import { SearchablePage } from '../search/SearchablePage'; import { useEntityRegistry } from '../useEntityRegistry'; interface RouteParams { urn: string; } interface Props { entityType: EntityType; } /** * Responsible for rendering an Entity Profile */ export const EntityPage = ({ entityType }: Props) => { const { urn } = useParams(); const entityRegistry = useEntityRegistry(); const isBrowsable = entityRegistry.getEntity(entityType).isBrowseEnabled(); const ContainerPage = isBrowsable ? BrowsableEntityPage : SearchablePage; return ( {entityRegistry.renderProfile(entityType, urn)} ); };