@2diglobal/gatsby-source-bog

3.0.0 • Public • Published

gatsby-source-bog

npm package

Gatsby source plugin for BOG API version 2.1.1. Loads all games the API provides into GraphQL nodes, supports Gatsby Image integration and setting of custom game providers and uses cache to speedup subsequent builds.

Table of contents

Install

npm i @2diglobal/gatsby-source-bog

Usage

// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-bog',
      options: {
        /**
         * API root URl with a trailing slash. This plugin currently
         * supports only the 2.1.1 version of the API.
         */
        apiRoot: 'https://api.casinodomainexample.com/v2_1_1/',

        /**
         *  Your API key.
         */
        apiKey: '<API key>',

        /**
         * Set a custom array of game provider keys you would like to
         * filter your games by.
         *
         * If not set, defaults to all providers.
         */
        gameProviders: [
          '_betsoft',
          '_kiron',
          '_quickspin'
        ],

        /**
         * Set the maximum number of games that will be requested when
         * starting in `development` enviroment. Useful to set to a
         * low number as each game node usually has 4 images which
         * need to be downloaded, so the bootstrap proccess gets
         * pretty long if you are always loading every game that the
         * casino offers. This setting is ignored in `production`. If
         * set to 0, all casino games will be loaded even in
         * `development`.
         *
         * Defaults to 50 if not set.
         *
         * The proccess of downloading and creating image nodes for
         * every game is cached so subsequent builds won't take as
         * long if the .cache folder is intact.
         */
        devMaxGameCount: 40
      }
    }
  ]
}

The package also provides utility functions for converting API game data into a GraphQL representation. Those are the same methods used internaly when adding API games as nodes.

License

MIT

Package Sidebar

Install

npm i @2diglobal/gatsby-source-bog

Weekly Downloads

0

Version

3.0.0

License

MIT

Unpacked Size

28.9 kB

Total Files

7

Last publish

Collaborators

  • krtac