Skip to content

Latest commit

 

History

History
125 lines (84 loc) · 5.94 KB

MIGRATION_GUIDE.md

File metadata and controls

125 lines (84 loc) · 5.94 KB

Migration Guide

The v2 release is our biggest release in terms of changes to our core scripts. Our bundler system was entirely modified in order to use Gatsby as default bundler and you will need to update your code if you’re coming from a previous version.

It’s not a big deal, but you will need to follow this guide in order to get Docz running properly on your project after the upgrade.

Gatsby as default bundler

The biggest change in the new v2 is that our core is now entirely built using Gatsby behind the scenes. This is a huge win for Docz, since now we can focus on building new features instead of handling a lot of bundlers issues (our biggest bottleneck) and leverage the entire Gatsby ecosystem.

So, in order to refactor our core, we need to change a lot of things and remove others that no longer make sense. The most expressive changes here is about the configuration for doczrc.js and the plugin system.

List of removed properties from doczrc.js

  • websocketHost ▶︎ no longer need
  • websocketPort ︎︎︎▶︎ no longer need
  • wrapper ▶︎ removed
  • theme ▶︎ removed
  • indexHtml ▶︎ removed
  • codeSandbox ▶︎ removed
  • onCreateWebpackChain ▶︎ removed
  • modifyBundlerConfig ▶︎ use Gatsby onCreateWebpackConfig hook
  • modifyBabelRc ▶︎ use Gatsby onCreateBabelConfig hook

New hooks for plugins

The createPlugin method also changed in order to fit with Gatsby now.

List of removed/changed properties from createPlugin()

  • modifyBundlerConfig ▶︎ onCreateWebpackConfig
  • modifyBabelRc ▶︎ onCreateBabelConfig
  • onCreateApp ▶︎ onCreateDevServer
  • onPreCreateApp ▶︎ removed
  • onServerListening ▶︎ removed
  • onPreRender ▶︎ removed
  • onPostRender ▶︎ removed

All methods that changed now are using the same API as Gatsby hooks. You can have more details about then here.

docz-theme-default removed

Make sure to remove docz-theme-default from your dependencies when migrating :

yarn remove docz-theme-default # npm uninstall docz-theme-default

The main reason that made us change our core to use Gatsby is that they have added a feature called themes.

In the last major version we launched our own Gatsby theme gatsby-theme-docz and this was a huge step forward because we can now use Docz inside a Gatsby project and bring a lot of new possibilities when creating documentation.

One of the best benefits of Gatsby themes is a feature called Component Shadowing, that’s the ability to replace theme files just by creating your own file following a file naming convention. This is awesome and is something that people very often ask, for example: “I want just to change the head in the Docz theme”.

In order to get Docz running with component shadowing we removed docz-theme-default and now you don’t need to install it anymore. You can just add docz to your project.

Check here for more information about customizing the Gatsby theme.

Code highlight with PrismJS

In the last version of Docz we used Codemirror to highlight code inside <Playground> and code blocks. Starting from v2 docz uses prism-react-renderer together with Theme UI.

Check here for more information.

New themeConfig properties

Another great thing launched in the newest version is the integration with Theme UI. Theme UI is a library for building consistent, themeable React apps based on constraint-based design principles.

So, in order to integrate it with our new theme, a lot of changes have been made inside the themeConfig object.

theme property removed

The property used to define your Docz theme inside the doczrc.js was removed. But you can still create and use your own theme from scratch if you want.

If you want to use your own theme, just create a file called src/gatsby-theme-docz/index.js in order to use component shadowing and replace it with your new theme.

// src/gatsby-theme-docz/index.js
import React from 'react'
import Theme from './my-custom-theme'

export default (props) => <Theme {...props} />

Check here for more information about how to create themes.

wrapper property removed

The same thing happened here for the oldest wrapper property. Now you can wrap your entire application by just creating a file called src/gatsby-theme-docz/wrapper.js

// src/gatsby-theme-docz/index.js
import React from 'react'

export default ({ children }) => (
  <div>
    <h1>My custom wrapper</h1>
    {children}
  </div>
)

CSS preprocessors managed by gatsby

CSS preprocessors and modules were handled by docz-plugin-css which hooked into the bundler config to add different loader support via webpack.

With the change to gatsby, css preprocessors like sass can be handled by gatsby via Plugins

These plugins are added by adding a gatsby-config.js in your project root or modifying an existing one. For example if you want to add support for sass you would do the following:

  1. Install node-sass and gatsby-plugin-sass
# npm
npm install --save node-sass gatsby-plugin-sass

# yarn
yarn add node-sass gatsby-plugin-sass
  1. Add the plugin to your gatsby-config.js
//gatsby-config.js
module.exports = {
  plugins: ['gatsby-plugin-sass']
}