/** ******************************************************************************************************************* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. * ******************************************************************************************************************** */ import React from 'react'; import { Route, RouteProps } from 'react-router'; import Typography from '@material-ui/core/Typography'; import MaterialBreadcrumbs from '@material-ui/core/Breadcrumbs'; import NavigateNextIcon from '@material-ui/icons/NavigateNext'; import { matchPath } from 'react-router'; import Link from '../Link'; export interface BreadcrumbGroupItem { /** * The text for the Breadcrumb */ text: string; /** * The relative href path for the Breadcrumb */ href: string; } export interface BreadcrumbGroupProps { /** * The name for the first item of your BreadcrumbGroup. If you do not supply items, default's to Home */ rootPath?: string; /** * A list of BreadcrumbGroupItem's to be used in your breadcrumb group.
* If not specified, the breadcrumb group will be generated based on current route. */ items?: BreadcrumbGroupItem[]; /** * All the available routes. If specified, only available routes will be rendered as links. * */ availableRoutes?: RouteProps[]; } const matchRoute = (path: string, availableRoutes: RouteProps[]) => { return availableRoutes.length > 0 ? availableRoutes.some((r) => matchPath(path, r)) : true; }; /** * The Breadcrumb group is rendered as part of AppLayout on top of main content area to provide page navigation information. */ const BreadcrumbGroup = ({ items, rootPath = 'Home', availableRoutes = [], ...props }: BreadcrumbGroupProps) => { const testId = props['data-testid'] || 'breadcrumb'; if (!items) { return ( {({ location }: RouteProps) => { const pathnames = location!.pathname.split('/').filter((e) => e); pathnames.unshift('/'); return ( } aria-label="Breadcrumb" data-testid={testId} > {pathnames.map((value: string, index: number) => { const last = index === pathnames.length - 1; const segment = pathnames.slice(0, index + 1); const to = segment.length === 1 ? '/' : `/${segment.slice(1).join('/')}`; const text = value .split(' ') .map((s) => s.charAt(0).toUpperCase() + s.substring(1)) .join(' '); return last ? ( {pathnames.length === 1 && value === '/' ? rootPath : text} ) : matchRoute(to, availableRoutes) ? ( {value === '/' ? rootPath : text} ) : ( {value === '/' ? rootPath : text} ); })} ); }} ); } return ( } aria-label="Breadcrumb" data-testid={testId} > {items.map((item: BreadcrumbGroupItem, idx: number) => idx === items.length - 1 ? ( {item.text} ) : ( {item.text} ) )} ); }; export default BreadcrumbGroup;