mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-17 20:54:55 +02:00
56 lines
1.6 KiB
JavaScript
56 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import React from 'react';
|
|
import clsx from 'clsx';
|
|
import {ThemeClassNames} from '@docusaurus/theme-common';
|
|
import {isActiveSidebarItem} from '@docusaurus/theme-common/internal';
|
|
import Link from '@docusaurus/Link';
|
|
import isInternalUrl from '@docusaurus/isInternalUrl';
|
|
import IconExternalLink from '@theme/Icon/ExternalLink';
|
|
import styles from './styles.module.css';
|
|
export default function DocSidebarItemLink({
|
|
item,
|
|
onItemClick,
|
|
activePath,
|
|
level,
|
|
index,
|
|
...props
|
|
}) {
|
|
const {href, label, className, autoAddBaseUrl} = item;
|
|
const isActive = isActiveSidebarItem(item, activePath);
|
|
const isInternalLink = isInternalUrl(href);
|
|
return (
|
|
<li
|
|
className={clsx(
|
|
ThemeClassNames.docs.docSidebarItemLink,
|
|
ThemeClassNames.docs.docSidebarItemLinkLevel(level),
|
|
'menu__list-item',
|
|
className,
|
|
)}
|
|
key={label}>
|
|
<Link
|
|
className={clsx(
|
|
'menu__link',
|
|
!isInternalLink && styles.menuExternalLink,
|
|
{
|
|
'menu__link--active': isActive,
|
|
},
|
|
)}
|
|
autoAddBaseUrl={autoAddBaseUrl}
|
|
aria-current={isActive ? 'page' : undefined}
|
|
to={href}
|
|
{...(isInternalLink && {
|
|
onClick: onItemClick ? () => onItemClick(item) : undefined,
|
|
})}
|
|
{...props}>
|
|
{label}
|
|
{!isInternalLink && <IconExternalLink />}
|
|
</Link>
|
|
</li>
|
|
);
|
|
}
|