mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-14 02:01:29 +08:00

* feat: update the SideNav component * feat: add the Trace Explorer page with Query Builder * chore: build is fixed * chore: tsc build is fixed * chore: menu items is updated --------- Co-authored-by: Nazarenko19 <danil.nazarenko2000@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { Breadcrumb } from 'antd';
|
|
import ROUTES from 'constants/routes';
|
|
import { Link, RouteComponentProps, withRouter } from 'react-router-dom';
|
|
|
|
const breadcrumbNameMap = {
|
|
[ROUTES.APPLICATION]: 'Services',
|
|
[ROUTES.TRACE]: 'Traces',
|
|
[ROUTES.TRACES_EXPLORER]: 'Traces Explorer',
|
|
[ROUTES.SERVICE_MAP]: 'Service Map',
|
|
[ROUTES.USAGE_EXPLORER]: 'Usage Explorer',
|
|
[ROUTES.INSTRUMENTATION]: 'Get Started',
|
|
[ROUTES.ALL_CHANNELS]: 'Channels',
|
|
[ROUTES.SETTINGS]: 'Settings',
|
|
[ROUTES.DASHBOARD]: 'Dashboard',
|
|
[ROUTES.ALL_ERROR]: 'Exceptions',
|
|
[ROUTES.VERSION]: 'Status',
|
|
[ROUTES.ORG_SETTINGS]: 'Organization Settings',
|
|
[ROUTES.MY_SETTINGS]: 'My Settings',
|
|
[ROUTES.ERROR_DETAIL]: 'Exceptions',
|
|
[ROUTES.LIST_ALL_ALERT]: 'Alerts',
|
|
[ROUTES.ALL_DASHBOARD]: 'Dashboard',
|
|
[ROUTES.LOGS]: 'Logs',
|
|
[ROUTES.LOGS_EXPLORER]: 'Logs Explorer',
|
|
};
|
|
|
|
function ShowBreadcrumbs(props: RouteComponentProps): JSX.Element {
|
|
const { location } = props;
|
|
|
|
const pathArray = location.pathname.split('/').filter((i) => i);
|
|
|
|
const extraBreadcrumbItems = pathArray.map((_, index) => {
|
|
const url = `/${pathArray.slice(0, index + 1).join('/')}`;
|
|
|
|
if (breadcrumbNameMap[url] === undefined) {
|
|
return (
|
|
<Breadcrumb.Item key={url}>
|
|
<Link to={url}>{url.split('/').slice(-1)[0]}</Link>
|
|
</Breadcrumb.Item>
|
|
);
|
|
}
|
|
return (
|
|
<Breadcrumb.Item key={url}>
|
|
<Link to={url}>{breadcrumbNameMap[url]}</Link>
|
|
</Breadcrumb.Item>
|
|
);
|
|
});
|
|
|
|
const breadcrumbItems = [
|
|
<Breadcrumb.Item key="home">
|
|
<Link to="/">Home</Link>
|
|
</Breadcrumb.Item>,
|
|
].concat(extraBreadcrumbItems);
|
|
|
|
return <Breadcrumb>{breadcrumbItems}</Breadcrumb>;
|
|
}
|
|
|
|
export default withRouter(ShowBreadcrumbs);
|