1.0.5 • Published 5 years ago

@gatsby-themes/drupal v1.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

Gatsby Drupal Theme

The drupal theme sets up the configuration for drupal

  • This is also based on the Gatsby DEMO Drupal CMS site for recipes
  • It takes care of not only the drupal gatsby plugin configuration but also sets up all the queries that are needed for the building the recipe app.
  • Currently there are two template page queries available 1) Landing Page Query - List of all the recipes 2) Recipe Template Page Query - Specific Recipe details based on the id
  • As part of this we also have proptype definitions that can be imported into the template that wants to use the query. In the above mentioned GraphQL queries the prop type definition files 1) Landing Page Query PropTypes 2) Recipe Template Page Query PropTypes You can then use the proptypes directly in the template implementation by importing them

    	```javascript
    	import { AllRecipesPropTypes } from '@gatsby-themes/drupal';
    	IndexPage.propTypes = {
    		data: AllRecipesPropTypes, // Query prop types
    		theme: PropTypes.object.isRequired
    	};
    	```

How to use

  • Add the dependency @gatsby-themes/drupal
  • The drupal theme will warn of the peer dependencies which also must be added to the gatsby site leveraging this theme.
  • The depenendies include - "gatsby": "^2.13.21", - "gatsby-source-drupal": "^3.1.11"
yarn add `@gatsby-themes/drupal`
  • Configure the theme in the gatsby-config.js file.
const drupalConfig = require('./data/drupalConfig.js');

module.exports = {
	plugins: [
		{
			resolve: '@gatsby-themes/drupal',
			options: {
				...drupalConfig
			}
		}
	]
};
  • Add the site configuration file in the project data/drupalConfig.js
module.exports = {
	baseUrl: '<add drupal json api server url>',
	apiBase: '<api or json>'
};
  • Create implement the two template pages as shadow components (Index , Recipe as mentioned above). - The data queries (GraphQL queries) will be provided by theme - Only implement the Page rendering logic in the application (The data object from the shadows templates will be avaiable to use) - See the example templates in the drupal-app for more details.