-
Notifications
You must be signed in to change notification settings - Fork 907
Expand file tree
/
Copy pathNavbarNavLink.tsx
More file actions
117 lines (105 loc) · 3.16 KB
/
NavbarNavLink.tsx
File metadata and controls
117 lines (105 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import React, {type ReactNode} from 'react';
import Link from '@docusaurus/Link';
import useBaseUrl from '@docusaurus/useBaseUrl';
import isInternalUrl from '@docusaurus/isInternalUrl';
import {isRegexpStringMatch} from '@docusaurus/theme-common';
import IconExternalLink from '@theme/Icon/ExternalLink';
import type {Props} from '@theme/NavbarItem/NavbarNavLink';
import { Icon } from '@site/src/components/Icon';
import { useUTMParams } from '@site/src/hooks/useUTMParams';
type CustomProps = Props & {
sub?: string,
icon?: string
}
export default function NavbarNavLink({
activeBasePath,
activeBaseRegex,
to,
href,
label,
html,
isDropdownLink,
prependBaseUrlToHref,
...props
}: CustomProps): ReactNode {
// TODO all this seems hacky
// {to: 'version'} should probably be forbidden, in favor of {to: '/version'}
const toUrl = useBaseUrl(to);
const activeBaseUrl = useBaseUrl(activeBasePath);
const normalizedHref = useBaseUrl(href, {forcePrependBaseUrl: true});
const isExternalLink = label && href && !isInternalUrl(href);
// Get UTM parameters from sessionStorage using custom hook
const utmParams = useUTMParams();
// Helper function to append UTM params to URL
const appendUtmParams = (url: string): string => {
if (!utmParams) {
return url;
}
const [baseUrl, existingQuery] = url.split('?');
if (existingQuery) {
const result = `${baseUrl}?${existingQuery}&${utmParams}`;
return result;
} else {
const result = `${baseUrl}?${utmParams}`;
return result;
}
};
// Link content is set through html XOR label
const linkContentProps = html
? {dangerouslySetInnerHTML: {__html: html}}
: {
children: (
<>
{props.icon && <div className="dropdown__icon">
<Icon icon={props.icon} size="24px" color="var(--surface-brand-default)" />
</div>}
<span className="dropdown__table">
{label}
{props.sub && <span>{props.sub}</span>}
</span>
{isExternalLink && (
<IconExternalLink
{...(isDropdownLink && {width: 12, height: 12})}
/>
)}
</>
),
};
if (href) {
// For external links, return as-is
if (isExternalLink) {
return (
<Link
href={prependBaseUrlToHref ? normalizedHref : href}
{...props}
{...linkContentProps}
/>
);
}
// For internal links, append UTM parameters if available
const finalHref = prependBaseUrlToHref ? normalizedHref : href;
const urlWithUtms = appendUtmParams(finalHref);
return (
<Link
href={urlWithUtms}
{...props}
{...linkContentProps}
/>
);
}
const urlWithUtms = appendUtmParams(toUrl);
return (
<Link
to={urlWithUtms}
isNavLink
{...((activeBasePath || activeBaseRegex) && {
isActive: (_match, location) =>
activeBaseRegex
? isRegexpStringMatch(activeBaseRegex, location.pathname)
: location.pathname.startsWith(activeBaseUrl),
})}
{...props}
{...linkContentProps}
/>
);
}