-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathnavbarClient.tsx
83 lines (77 loc) · 2.58 KB
/
navbarClient.tsx
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
'use client';
import {Nav} from 'react-bootstrap';
import {usePathname} from 'next/navigation';
import {Platform, PlatformGuide} from 'sentry-docs/types';
import {NavbarPlatformDropdown} from './navbarPlatformDropdown';
import {Search} from './search';
import {SmartLink} from './smartLink';
interface Props {
currentPlatform: Platform | PlatformGuide | undefined;
platforms: Platform[];
}
export function NavbarClient({platforms, currentPlatform}: Props) {
const pathname = usePathname() ?? undefined;
let searchPlatforms: string[] | undefined;
if (currentPlatform) {
searchPlatforms = [currentPlatform.name];
if ('platform' in currentPlatform) {
// currentPlatform is a PlatformGuide, so include its platform name too.
searchPlatforms.unshift(currentPlatform.platform);
}
}
return (
<div className="navbar navbar-expand-sm navbar-light global-header">
<div>
<Search path={pathname} platforms={searchPlatforms} />
</div>
<div className="collapse navbar-collapse content-max" id="navbar-menu">
<Nav className="justify-content-end" style={{flex: 1}}>
<NavbarPlatformDropdown
platforms={platforms}
currentPlatform={currentPlatform}
/>
<Nav.Item>
<SmartLink className="nav-link" href="/product/">
Product
</SmartLink>
</Nav.Item>
<Nav.Item>
<SmartLink className="nav-link" href="/api/">
API
</SmartLink>
</Nav.Item>
<Nav.Item>
<Nav.Link href="https://sentry.io/changelog">Changelog</Nav.Link>
</Nav.Item>
<Nav.Item>
<Nav.Link
className="text-primary"
href="https://try.sentry-demo.com/demo/start/"
target="_blank"
>
Sandbox
</Nav.Link>
</Nav.Item>
<Nav.Item>
<Nav.Link href="https://sentry.io/">
Sign In
<svg
width="1em"
height="1em"
viewBox="0 0 16 16"
className="bi bi-arrow-right-short"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z"
/>
</svg>
</Nav.Link>
</Nav.Item>
</Nav>
</div>
</div>
);
}