A library for best-practice Drupal integration addons in Storybook:
- Easy-to-use Drupal integration
- Simple drop-down menu
- URL-linkable state for sharing
Install and enable the Drupal module:
composer require drupal/cl_server;
drush pm:enable --yes cl_server;
From the root of your repo:
yarn global add sb@latest;
sb init --builder webpack5 --type server
# If you have a reason to use Webpack4 use the following instead:
# sb init --type server
yarn add -D @lullabot/storybook-drupal-addon
First enable the addon. Add it to the addons
in the .storybook/main.js
.
// .storybook/main.js
module.exports = {
// ...
addons: [
// ...
'@lullabot/storybook-drupal-addon',
],
// ...
};
Then, configure the supportedDrupalThemes
and drupalTheme
parameters in .storybook/preview.js
.
supportedDrupalThemes
is an object where the keys are the machine name of the Drupal themes and the values are the plain text name of that Drupal theme you want to use. This is what will appear in the dropdown in the toolbar.
// .storybook/preview.js
const preview: Preview = {
// ...
globals: {
// ...
drupalTheme: 'umami',
supportedDrupalThemes: {
umami: {title: 'Umami'},
bartik: {title: 'Bartik'},
claro: {title: 'Claro'},
seven: {title: 'Seven'},
},
},
parameters: {
server: {
// Replace this with your Drupal site URL, or an environment variable.
url: 'http://local.contrib.com',
},
// ...
},
// ...
};
export default preview;
Start the development server Storybook server:
yarn storybook
As an addon author, you can use this library by adding it as a dependency and adding the following to your src/manager.ts
and src/preview.ts
files:
src/manager.ts
export * from '@lullabot/storybook-drupal-addon/manager';
src/preview.ts
import type { Renderer, ProjectAnnotations } from '@storybook/types';
import drupalPreview from '@lullabot/storybook-drupal-addon/preview';
import { withYourDrupalDecorator } from './withYourDecorator';
// @ts-ignore
const drupalDecorators = drupalPreview?.decorators || [];
const preview: ProjectAnnotations<Renderer> = {
...drupalPreview,
decorators: [...drupalDecorators, withYourI18nDecorator],
}
export default preview;
The currently selected drupal theme is available in the drupalTheme
global, so you can access it in a decorator using the following snippet:
import { MyProvider } from 'your-drupal-library';
import { useGlobals } from '@storybook/manager-api';
const myDecorator = (story, context) => {
const [{drupalTheme}] = useGlobals();
return <MyProvider drupalTheme={drupalTheme}>;
}