Star

React Playground Styled

This is a playground styled with styled-components. It enables you to create custom playgrounds to meet your exact needs. It allows context based themes from styled-components to penetrate into playgrounds so you can create themable living component guides.

It is designed to be as small as possible so it does not break the flow of your docs. It is responsive and supports hot loading so it can be used to test components performance on mobile while you develop:

Still editable at 320px wide on an iPhone 5

Install

Bash:

npm install --save react-playground-styled

JavaScript:

import ReactPlaygroundStyled from 'react-playground-styled'

Use

The viewer (left) will evalute the last expression in the editor (right) and if it is a React element it will be rendered in the viewer:

I appologise if this is a bit meta, but I am going to be using the playground to document itself hence you may see a playground within a playground for most examples. You will see the inner playground has a different style to the outer one (I will show you how to achieve this later). The code for the playground is set by putting it in the defaultValue prop:

You pass in components, functions and variables as an Object (map) in the scope prop (often these will be imported from the package you are documenting). Remember it accepts an Object (not a single component) where each value is a function, a value or a component.

Hello World!

NOTE: A semicolon is needed on the last line before the JSX to force it to be evaluated. As a rule of thumb make sure the last non-whitespace character before the evaluated JSX is either a semicolon ';' or a closing curly '}' (failure to include this semi will give an error):

One of the goals of this playground is to be lightweight, for this reason we use Bublé rather than Babel. This makes bundle downloads on the browser a few megabytes smaller:

Editor Settings

Another goal is to use minimal screen space to document a component. Because horizontal space is at such a high premium I have taken the unusual decision to use a proportional font by default. I found this to be less evil than all the line wrapping I encountered with monospace fonts. You can change the font with the font property:

You can load fonts from Google Fonts and change the editorFontSize:

loadTheme to loads CodeMirror CSS themes from a CDN. There is a list of themes in the textarea below. Try pasting them into the loadTheme prop on the right:

  • matchBrackets - Boolean
  • matchTags - 'other' | 'none' | 'both'
  • styleActiveLine - Boolean

to loads CodeMirror CSS themes from a CDN. There is a list of themes in the textarea below. Try pasting them into the loadTheme prop on the right:

The final aim of this library is to deliver complete customisation of each component within the playground. This is done by:

  1. Props for common requirements e.g. alignment, padding, gutters
  2. Injecting or modifing wrappers for unlimited flexibility

Props

gutter puts a margin around both the viewer and the editor giving the appearance of a gutter between the two:

If you do not want the outer margin on the non-adjcent edges you may want to add negative margin to a playground:

padding affects both the editor and viewer:

minHeightViewer, minWidthViewer, minWidthEditor. For components such as dropdown lists it might be important to force a certain minimum height for the viewer:

Many compents use flex-box for layout this means they may expect to be rendered into a parent with display set to flex. So it is important to be able to control the context components are rendered into. Below some alignment props:

left:

right:

top:

bottom:

Horizontal and vertical alignment can be used together.

bottom right:

Use fullWidth if you want a component to fill the width of the viewer rather than being centered.

Full Width

Themes from Styled-Components

The ThemeBroadcast class can be used to pass styled-components' themes to new React roots e.g. modals, portals or playgrounds. Setting the themeBroadcast prop to an instance of ThemeBroadcast will provide the theme on the context to the React root in the viewer:

Click link to change theme:

hello

Wrappers

There are wrappers components around the editor, the viewer and the whole playground. This allows you to set augment styles on the wrapper (via styled-components), replace the default wrapper or add additional wrappers. Wrapper props are callbacks which accept the default wrapper component as an argument and return a new or changed wrapper. We provide the following wrappers:

  • playgroundWrapper
  • editorWrapper
  • viewerWrapper (outer)
  • viewerAlign (inner)
  • errorWrapper
  • EvalWrapper (NOTE: component not callback)

E.g. provide addition styles to a wrapper, forcing column layout and adding a border:

Provide alternative wrapper:

The EvalWrapper is different to the other wrappers. It should be a component or null rather than a function that returns a component. If null the content will be evaluated without a wrapper otherwise evaluated content will be passed as children to the EvalWrapper component. The EvalWrapper sits inside the new React root in the viewer. So it can be used for binding context to the outer root e.g. this is the long version of how to bind themes to the inner React root. :

Click link to change theme:

hello

Creating your own custom playground

There are many props for configuring appearance so in a style guide with lots of identical playgrounds you do not want to manually configure each one. You should create your own custom playground with presets that suit you e.g.

  • borders
  • padding
  • wrappers
  • themes
  • background colors
  • put things you will need on the scope

Export it from a module import it where needed and use it repeatedly:

hello

4
3

Thanks

react-playground-styled was created at NCR Edinburgh thanks for letting me open source it. Inspirtation was taken from component-playground from Formidable Labs.

Created by Phil Holden (github | twitter | medium| egghead)