recma-mdx-displayname
v0.4.1
Published
Recma plugin to detect MDXContent elements in production
Downloads
3,160
Readme
recma-mdx-displayname
Recma plugin to enable detecting MDXContent elements in production.
Compatible with MDX and Next.js. You can use this plugin to conditionally render additional content depending on whether a child component is an MDX page or not (for example, adding default MDX-only layout or styles to your _app.tsx
).
Usage
Install the plugin:
npm install recma-mdx-displayname
Enable it in your next.config.js
:
const withMDX = require("@next/mdx")({
options: {
// add it here!
recmaPlugins: [require("recma-mdx-displayname")]
}
})
const nextConfig = {
pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
}
module.exports = withMDX(nextConfig)
Use the .displayName
property to test components, for example in _app.tsx
:
import "../styles/globals.css"
import type { AppProps } from "next/app"
export default function App({ Component, pageProps }: AppProps) {
// Use Component.displayName to check for MDXContent
// MDX pages have default styles applied and a header
if (Component.displayName === "MDXContent") {
return (
<div className="mdx-content">
<header>
<h1>My blog</h1>
</header>
<Component {...pageProps} />
</div>
)
}
// Other pages are rendered directly
return <Component {...pageProps} />
}
Contributing
Pull requests are welcomed on GitHub! To get started:
- Install Git and Node.js
- Clone the repository
- Install dependencies with
npm install
- Run
npm run test
to run tests - Build with
npm run build
Releases
Versions follow the semantic versioning spec.
To release:
- Use
npm version <major | minor | patch>
to bump the version - Run
git push --follow-tags
to push with tags - Wait for GitHub Actions to publish to the NPM registry.