An open API service indexing awesome lists of open source software.

https://github.com/decaporg/gatsby-plugin-decap-cms

A Gatsby plugin which generates the Decap CMS single page app
https://github.com/decaporg/gatsby-plugin-decap-cms

Last synced: about 1 year ago
JSON representation

A Gatsby plugin which generates the Decap CMS single page app

Awesome Lists containing this project

README

          

# gatsby-plugin-decap-cms

**Gatsby v1 and Netlify CMS 1.x require [`gatsby-plugin-netlify-cms@^2.0.0`][1].**

**Gatsby v2 and Netlify CMS 2.x require [`gatsby-plugin-netlify-cms@^3.0.0`][2].**

**Gatsby v5 and Decap CMS (decap-cms-app) 3.x require `gatsby-plugin-decap-cms@^4.0.0`, which is documented below.**

## Overview

Automatically generates an `admin/index.html` with a default Decap CMS implementation.

Decap CMS is a React single page app for editing git based content via API.
Its built for non-technical and technical editors alike, and its super easy to
install and configure. For more details, check out the [docs
site](https://decapcms.org/docs).

## Install

```shell
npm install decap-cms-app gatsby-plugin-decap-cms
```

## How to use

Add the Decap CMS plugin in your `gatsby-config.js`:

```javascript
plugins: [`gatsby-plugin-decap-cms`]
```

Then add your Decap CMS [configuration
file](https://www.decapcms.org/docs/add-to-your-site/#configuration) in
`static/admin/config.yml`.

## Options

Decap CMS can be configured via the plugin options below. You can learn
about how to pass options to plugins in the [Gatsby
docs](https://www.gatsbyjs.com/docs/plugins/#how-to-use-gatsby-plugins).

### `modulePath`

(_optional_, type: `string | Array`, default: `undefined`)

If you need to customize Decap CMS, e.g. registering [custom
widgets](https://www.decapcms.org/docs/custom-widgets/#registerwidget) or
styling the [preview
pane](https://www.decapcms.org/docs/customization/#registerpreviewstyle),
you'll need to do so in a JavaScript module and provide Gatsby with the path to
your module via the `modulePath` option. Any styles imported by this module (or
by the modules that it imports, all the way down the chain) are automatically
applied to the editor preview pane by the plugin.

```javascript
plugins: [
{
resolve: `gatsby-plugin-decap-cms`,
options: {
/**
* One convention is to place your Decap CMS customization code in a
* `src/cms` directory.
*/
modulePath: `${__dirname}/src/cms/cms.js`,
},
},
]
```

The js module might look like this:

```javascript
/**
* The default export of `decap-cms-app` is an object with all of the Decap CMS
* extension registration methods, such as `registerWidget` and
* `registerPreviewTemplate`.
*/
import CMS from "decap-cms-app"

/**
* Any imported styles should be automatically be applied to the editor preview
* pane thus eliminating the need to use `registerPreviewStyle` for imported
* styles. However if you are experiencing build errors regarding importing css,
* sass or scss into a cms module when deploying to the netlify platform, you
* may need to follow the implementation found in netlify documentation here:
* https://www.decapcms.org/docs/beta-features/#raw-css-in-registerpreviewstyle
* All of the example imports below would result in styles being applied to the
* preview pane.
*/
import "module-that-imports-styles.js"
import "styles.scss"
import "../other-styles.css"

/**
* Let's say you've created widget and preview components for a custom image
* gallery widget in separate files:
*/
import ImageGalleryWidget from "./image-gallery-widget.js"
import ImageGalleryPreview from "./image-gallery-preview.js"

/**
* Register the imported widget:
*/
CMS.registerWidget(`image-gallery`, ImageGalleryWidget, ImageGalleryPreview)
```

### `manualInit`

(_optional_, type: `boolean`, default: `false`)

Set this to `true` If you need to [manually initialize](https://www.decapcms.org/docs/beta-features/#manual-initialization) Decap CMS. The plugin will take care of setting `window.CMS_MANUAL_INIT` to `true`:

```javascript
plugins: [
{
resolve: `gatsby-plugin-decap-cms`,
options: {
manualInit: true,
},
},
]
```

The js module might look like this:

```javascript
import CMS from "decap-cms-app"

/**
* Optionally pass in a config object. This object will be merged into `config.yml` if it exists
*/

CMS.init({
config: {
backend: {
name: "git-gateway",
},
},
})
```

### `enableIdentityWidget`

(_optional_, type: `boolean`, default: `true`)

`enableIdentityWidget` is `true` by default, allowing [Netlify
Identity](https://www.netlify.com/docs/identity/) to be used without
configuration. Disable it when not using Netlify Identity to reduce bundle size.

```javascript
plugins: [
{
resolve: `gatsby-plugin-decap-cms`,
options: {
enableIdentityWidget: true,
},
},
]
```

### `publicPath`

(_optional_, type: `string`, default: `"admin"`)

Customize the path to Decap CMS on your Gatsby site.

### `htmlTitle`

(_optional_, type: `string`, default: `Content Manager`)

Customize the value of the `title` tag in your CMS HTML (shows in the browser
bar).

### `htmlFavicon`

(_optional_, type: `string`, default: `""`)

Customize the value of the `favicon` tag in your CMS HTML (shows in the browser
bar).

### `includeRobots`

(_optional_, type: `boolean`, default: `false`)

By default, the CMS page is not indexed by crawlers. Use this to add a `meta` tag to invite robots to index the CMS page.

### `customizeWebpackConfig`

(_optional_, type: `function`)

Function to customize webpack configuration.

Function parameters:

- config: webpack configuration for DecapCMS
- destructured object from onCreateWebpackConfig { store, stage, pathPrefix, getConfig, rules, loaders, plugins} as seen in https://www.gatsbyjs.com/docs/node-apis/#onCreateWebpackConfig

```javascript
plugins: [
{
resolve: `gatsby-plugin-decap-cms`,
options: {
customizeWebpackConfig: (config, { plugins }) => {
const Plugin = require("...")

config.plugins.push(
plugins.define({
"process.env.MY_VAR": JSON.stringify("my var value"),
})
)

config.plugins.push(new Plugin())
},
},
},
]
```

## Example

Here is the plugin with example values for all options (note that no option is
required):

```javascript
plugins: [
{
resolve: `gatsby-plugin-decap-cms`,
options: {
modulePath: `path/to/custom/script.js`, // default: undefined
enableIdentityWidget: true,
publicPath: `admin`,
htmlTitle: `Content Manager`,
htmlFavicon: `path/to/favicon`,
includeRobots: false,
},
},
]
```

## Disable widget on site

If you're not using Netlify Identity within your site you have the option to completely disable the widget (and not the CMS). To do so, add the following to `gatsby-node.js`:

```javascript
const webpack = require(`webpack`)

exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
plugins: [
new webpack.IgnorePlugin({
resourceRegExp: /^netlify-identity-widget$/,
}),
],
})
}
```

## Support

For help with integrating Decap CMS with Gatsby, check out the community
[Discord](https://www.decapcms.org/chat).

[1]: https://github.com/gatsbyjs/gatsby/blob/gatsby-plugin-netlify-cms@2.0.1/packages/gatsby-plugin-netlify-cms/README.md
[2]: https://github.com/gatsbyjs/gatsby/blob/gatsby-plugin-netlify-cms@3.0.18/packages/gatsby-plugin-netlify-cms/README.md