-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from novalagung/feat/sidebar-enchancement
hide the /wip/ paths
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React, {memo} from 'react'; | ||
import {DocSidebarItemsExpandedStateProvider} from '@docusaurus/theme-common/internal'; | ||
import DocSidebarItem from '@theme/DocSidebarItem'; | ||
// TODO this item should probably not receive the "activePath" props | ||
// TODO this triggers whole sidebar re-renders on navigation | ||
function DocSidebarItems({items, ...props}) { | ||
const itemsFiltered = items.filter((d) => (d.href || '').indexOf('/wip/') === -1) | ||
return ( | ||
<DocSidebarItemsExpandedStateProvider> | ||
{itemsFiltered.map((item, index) => ( | ||
<DocSidebarItem key={index} item={item} index={index} {...props} /> | ||
))} | ||
</DocSidebarItemsExpandedStateProvider> | ||
); | ||
} | ||
// Optimize sidebar at each "level" | ||
export default memo(DocSidebarItems); |