gatsby-source-kibela

0.0.1 • Public • Published

gatsby-source-kibela

npm version install size test

Gatsby Source Plugin for Kibela.

Install

# npm
$ npm install gatsby-source-kibela

# or yarn
$ yarn add gatsby-source-kibela

Usage

gatsby-config.js

You need setting options in gatsby-config.js to fetch contents from Kibela.

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-kibela',
      options: {
        accessToken: 'my/access/token',
        subDomain: 'blog',
      },
    },
  ],
};

gatsby-node.js

You can query like the following. Gatsby creates pages based on Kibela contents.

// gatsby-node.js
exports.createPages = async ({ graphql, actions }) => {
  const { createPage } = actions;
  const result = await graphql(
    `
      query {
        allKibelaNote {
          nodes {
            id
            noteId
            path
          }
        }
      }
    `
  );

  if (result.errors) {
    reporter.panic(result.errors);
  }

  result.data.allKibelaNote.nodes.forEach((node, index) => {
    createPage({
      path: `/notes/${node.noteId}`,
      component: path.resolve('./src/templates/blog-note.js'),
      context: {
        slug: node.noteId,
      },
    });
  });
};

Options

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-kibela',
      options: {
        /**
         * The authentication key for Kibela API requests. (Required)
         *
         * Type: string
         **/
        accessToken: 'YOUR_ACCESS_TOKEN',

        /**
         * Subdomain information. (Required)
         * subdomain.kibe.la
         *
         * Type: string
         **/
        subDomain: 'subdomain',

        /**
         * Graphql API request query. (Required)
         *
         * Type: string
         **/
        query: `
          query {
            notes(last: 100) {
              nodes {
                id
                title
                content
              }
            }
          }
        `,

        /**
         * This function let Gatsby system where Graphql data nodes is. (Optional)
         *
         * Type: function
         * Default: body => body.data.notes.nodes
         **/
        getNodes: body => body.data.group.notes.nodes,
      },
    },
  ],
};

Package Sidebar

Install

npm i gatsby-source-kibela

Weekly Downloads

2

Version

0.0.1

License

MIT

Unpacked Size

10.3 kB

Total Files

11

Last publish

Collaborators

  • shooontan