0
0

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ノート5 (Contentful-1)

Last updated at Posted at 2020-09-12

参考

学習内容

  • Contentfulを使ってブログ一覧の情報を更新する

Contentful

スクリーンショット 2020-09-12 10.07.44.png

手順

  • Try for free を押す
  • Sign up

screencapture-app-contentful-2020-09-12-10_13_58.png

  • 左の I create content を選択
  • Get started を押す

The example projectが作成される(ここでは使わない)

手順(新規プロジェクトの作成)

  • 左上のメニューから、「+Create space」を押す

スクリーンショット 2020-09-12 10.30.01.png

  • communityを選択
    スクリーンショット 2020-09-12 10.40.46.png

データ構造を作成する

1.Content modal => Add content type

スクリーンショット 2020-09-12 10.45.32.png

  • Api Identifierとは、Apiでデータを取得する時の識別子

2.Add field

スクリーンショット 2020-09-12 10.48.13.png

データ作成

スクリーンショット 2020-09-12 10.59.39.png

Field IDはGraphQLでデータ取得する際に利用する

  • Title
    • Text
  • Slug
    • Text
  • created date
    • Date and time
  • Thumbnail
    • Media
    • One fileを選択
  • body
    • Rich text

スクリーンショット 2020-09-12 11.12.02.png

  • Saveを押す

  • ヘッダーメニューからContentを選択 => Add Blog Postを押す

  • 管理画面が出来ているので、投稿を入力する

screencapture-app-contentful-spaces-6kc85xg7zxrz-entries-kYsyrqW5PwTlUbb9FYdYU-2020-09-12-11_14_51.png

  • 3件のブログ記事の入力を行った

スクリーンショット 2020-09-12 11.28.23.png

GraphQLでcontentfulのデータを取得する

  • gatsby-source-contentful

yarn add gatsby-source-contentful
  • gatsby-config.jsにプラグインの設定を追記
  • Contentful
    • Settings => API keys
      • spaceId
      • accessToken
    • .envファイルにapaceIdとaccessTokenを記述し、gatsby-config.jsで使う
gatsby-config.js

const dotenv = require("dotenv")

if (process.env.ENVIRONMENT !== "production") {
  dotenv.config()
}

:
:
//(省略)

    {
      resolve: `gatsby-source-contentful`,
      options: {
        spaceId: process.env.CONTENTFUL_SPACE_ID,
        accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
      },
    },
  • GraphQL Playgroundでデータ取得を試す

スクリーンショット 2020-09-12 12.07.21.png

src/pages/index.js

import React from "react"
import { graphql, useStaticQuery } from "gatsby"
import Layout from "../components/layout"
import Kv from "../components/kv"
import BlogItem from "../components/blogItem"
import {Container, Row, Col} from 'react-bootstrap'

const IndexPage = () => {
  // contentfulからデータを取得
  const data = useStaticQuery(graphql`
    query {
      allContentfulBlogPost(sort: {
        fields: createdDate,
        order: ASC
      }) {
        edges {
          node {
            title
            slug
            createdDate(formatString: "YYYY/MM/DD")
            thumbnail {
              fluid {
                src
              }
            }
          }
        } 
      }
    }  
  `)
  return (
    <Layout>
      <Kv />
      <Container>
        <Row>
          {
            data.allContentfulBlogPost.edges.map((edge, index) => (
              <Col sm={4} key={index}>
                <BlogItem
                  title={edge.node.title}
                  date={edge.node.createDate}
                  src={edge.node.thumbnail.fluid.src}
                  link={`blog/${edge.node.slug}`} />
              </Col>
            ))
          }
        </Row>
      </Container>
    </Layout>
  )
}

export default IndexPage
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?