Skip to content

Commit 2105e04

Browse files
Only close sidebar if the event target is in body (#64)
* Only close sidebar if the event target is in body The svg for the left/right arrows were being swapped when the nav bar expanded. If this happened on click, the svg clicked would no longer be in the document and the nav bar would collapse immediately after expanding. Add a menu item to the sidebar story * Stop propagation
1 parent 801e90e commit 2105e04

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openstax/ui-components",
3-
"version": "1.11.1",
3+
"version": "1.11.2",
44
"license": "MIT",
55
"source": "./src/index.ts",
66
"types": "./dist/index.d.ts",

src/components/SidebarNav.stories.tsx

+17-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import { BodyPortal } from "./BodyPortal";
1010
import { NavBar } from "./NavBar";
1111
import { NavBarLogo } from "./NavBarLogo";
1212
import React from "react";
13-
import { breakpoints } from "../../src/theme";
13+
import { breakpoints, colors } from "../../src/theme";
14+
import { NavBarPopoverButton, PopoverContainer } from "./NavBarMenuButtons";
1415

1516
const GlobalStyle = createGlobalStyle`
1617
html, body, #ladle-root {
@@ -212,6 +213,15 @@ const SidebarNavAndMain = () => {
212213
);
213214
};
214215

216+
const InfoMenuButton = styled(NavBarPopoverButton)`
217+
&:hover {
218+
svg path {
219+
fill: ${colors.palette.lightBlue};
220+
}
221+
}
222+
`;
223+
224+
215225
const BodyPortalSidebarNavAndMain = () => {
216226
return (
217227
<BodyPortalSlotsContext.Provider value={["sidebar", "nav", "main"]}>
@@ -229,6 +239,12 @@ const BodyPortalSidebarNavAndMain = () => {
229239
</StyledBodyPortalSidebarNav>
230240
<NavBar>
231241
<h1>Title</h1>
242+
<InfoMenuButton label="Menu">
243+
<PopoverContainer>
244+
<button>Example button</button>
245+
<button>Another button</button>
246+
</PopoverContainer>
247+
</InfoMenuButton>
232248
</NavBar>
233249
<StyledBodyPortalMain tagName="main" slot="main">
234250
<h1>

src/components/SidebarNav/index.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ export const SidebarNavBase = ({
6565
isMobile &&
6666
!navIsCollapsed &&
6767
sidebarNavRef?.current &&
68-
!sidebarNavRef.current.contains(event.target)
68+
!sidebarNavRef.current.contains(event.target) &&
69+
document.body.contains(event.target)
6970
) {
7071
setNavIsCollapsed(true);
7172
}
@@ -116,8 +117,9 @@ export const SidebarNavBase = ({
116117
ref={toggleButtonRef}
117118
data-testid="sidebarnav-toggle"
118119
className={classNames({ collapsed: navIsCollapsed })}
119-
onClick={() => {
120+
onClick={(e) => {
120121
setNavIsCollapsed(!navIsCollapsed);
122+
e.stopPropagation();
121123
}}
122124
aria-label={
123125
navIsCollapsed ? "Expand navigation" : "Collapse navigation"

0 commit comments

Comments
 (0)