0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GatsbyでMarkdown内で独自コンポーネントを作成して使用する

Posted at

はじめに

こんにちは。雨雲レーダー見ていて、ギリギリ降らないなと普段してたら、一気に降ってきて、久々に全力ダッシュしました。無謀にもびしょ濡れになりました、筆者です:sob:

さて、今回はContentfulで管理しているブログの記事内に、独自コンポーネントをContentfulから挿入したいので、その対応を行ったので、記事にしました。
参考になれば幸いです!

GatsbyでMarkdown内でコンポーネントを使う

以下を使って実装していきます。

1. プラグインをインストール

npmの方はこちら↓

$ npm install gatsby-remark-component rehype-react

yarnの方はこちら

$ yarn add gatsby-remark-component rehype-react

インストール有無を確認

念のためインストールできているか確認 :eyes:

$ npm ls --depth=0 | grep -P "rehype-react|gatsby-remark-component"

├── gatsby-remark-component@1.1.3
├── rehype-react@6.2.1

2. gatsby-config.jsを編集

gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-transformer-remark`,
      options: {
        plugins: [
+           `gatsby-remark-component`,
        ],
      },
    },
  ],
};

3. 独自コンポーネント作成

画像とタイトルだけの記事のアイテムをイメージしています。

src/components/CustomComponent.js
import React from 'react'

const CustomComponent = props => (
  <div>
      <p>Custom Component!!!!</p>
  </div>
)

export default CustomComponent

4. 3で作成したコンポーネントの読み込み

src/components/PageBody.js
  import React from 'react'
+ import CustomComponent from "../components/CustomComponent"
+ import RehypeReact from "rehype-react"

  ...
  ...
  ...

  const PageBody = props => {
+   const renderAst = new RehypeReact({
+     createElement: React.createElement,
+     components: { "custom-component": CustomComponent }
+   }).Compiler

    return (
-    <Body
-      dangerouslySetInnerHTML={{ __html: props.body.childMarkdownRemark.html }}
-    />
+    <Body>
+      {renderAst(props.body.childMarkdownRemark.htmlAst)}
+    </Body>
    )
  }

  export default PageBody

5. 4でrenderAstに渡しているhtmlAstをGraphQLの取得項目に追加

src/templates/post.js
  export const query = graphql`
    query($slug: String!) {
      contentfulPost(slug: { eq: $slug }) {
        title
        slug
        metaDescription {
          internal {
            content
          }
        }
        publishDate(formatString: "MMMM DD, YYYY")
        publishDateISO: publishDate(formatString: "YYYY-MM-DD")
        tags {
          title
          id
          slug
        }
        heroImage {
          title
          fluid(maxWidth: 1800) {
            ...GatsbyContentfulFluid_withWebp_noBase64
          }
          ogimg: resize(width: 1800) {
            src
          }
        }
        body {
          childMarkdownRemark {
            timeToRead
            html
+           htmlAst
            excerpt(pruneLength: 320)
          }
        }
      }
    }
  `

6. Markdownにコンポーネントを書く

<custom-component></custom-component>

7. ビルドする

ビルドします!

おわりに

やってて気づいたんですが、文字列はpropsで渡せるのですが、画像を渡した際にgatsby-image等に噛ませられないなと、思いました :thinking:

理想は画像も噛ませたいのですが、それには別の方法を考える必要がありそうです :innocent:
続報をお待ち下さい :pray:

それでは!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?