Gatsby Link not working with isPartially Active on MDX rendered pages(Gatsby链接在MDX呈现的页面上不使用isPartially Active)
问题描述
我一直在使用Gatsby和几个部分构建一个静态站点,我已经呈现了编写为MDX的页面,并通过它们自己的布局进行了解析。这都是通过Gatsby-plugin-mdx文件实现的,它工作得很好。 但是,我正在尝试让顶级导航在用户导航到该部分中的子页面时突出显示为活动的。我使用的是Gatsby文档中的代码,它在我创建的页面上像普通的JS文件一样工作。
示例:
<Link partiallyActive={true} activeClassName="header-nav-active" to={menu.url} title={menu.title}>
{menu.label}
</Link>
它似乎不适用于MDX页面,即使在Location.pathname中呈现的内容是相同的。我目前的结构是:
src
-pages
--section
----section-subpage.js
--other section
----other-section-sub
-----index.mdx
----other-section-sub-2
-----index.mdx
最终,如果您查看此布局,我希望在您浏览该部分中的子页时将其突出显示为活动状态。
推荐答案
您尝试过使用getProps
helper function吗?因为Gatsby的路由器是从React(@reach/router
)扩展而来的,所以您可以利用高级props
来定制您的风格
您可以创建partiallyActive
链接,如下所示:
const isPartiallyActive = ({ isPartiallyCurrent }) => {
return isPartiallyCurrent
? { className: 'navlink-active navlink' }
: { className: 'navlink' }
}
const PartialNavLink = props => (
<Link getProps={isPartiallyActive} {...props}>
{props.children}
</Link>
)
然后只需使用:
<PartialNavLink to="/figma">Figma</PartialNavLink>
或粗制滥造:
<Link getProps={({ isPartiallyCurrent }) => isPartiallyCurrent ? { className: "active" } : null } to={"/figma"}>
Figma
</Link>
这篇关于Gatsby链接在MDX呈现的页面上不使用isPartially Active的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Gatsby链接在MDX呈现的页面上不使用isPartially Active
基础教程推荐
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01