# Storybook UI Storybook UI the core UI of [storybook](https://storybook.js.org). It's a React based UI which you can initialize with a function. You can configure it by providing a provider API. ## Table of Contents - [Usage](#usage) - [API](#api) - [.setOptions()](#setoptions) - [.setStories()](#setstories) - [.onStory()](#onstory) - [Hacking Guide](#hacking-guide) - [The App](#the-app) - [Changing UI](#changing-ui) - [Mounting](#mounting) - [App Context](#app-context) - [Actions](#actions) - [Core API](#core-api) - [Keyboard Shortcuts](#keyboard-shortcuts) - [URL Changes](#url-changes) ## Usage First you need to install `@storybook/ui` into your app. ```sh yarn add @storybook/ui --dev ``` Then you need to create a Provider class like this: ```js import React from 'react'; import { Provider } from '@storybook/ui'; export default class MyProvider extends Provider { getElements(type) { return {}; } renderPreview() { return
This is the Preview
; } handleAPI(api) { // no need to do anything for now. } } ``` Then you need to initialize the UI like this: ```js import { document } from 'global'; import renderStorybookUI from '@storybook/ui'; import Provider from './provider'; const roolEl = document.getElementById('root'); renderStorybookUI(roolEl, new Provider()); ``` ## API ### .setOptions() ```js import { Provider } from '@storybook/ui'; class ReactProvider extends Provider { handleAPI(api) { api.setOptions({ // see available options in // https://github.com/storybookjs/storybook/tree/master/addons/options#getting-started }); } } ``` ## .setStories() This API is used to pass the`kind` and `stories` list to storybook-ui. ```js import { Provider } from '@storybook/ui'; class ReactProvider extends Provider { handleAPI(api) { api.setStories([ { kind: 'Component 1', stories: ['State 1', 'State 2'], }, { kind: 'Component 2', stories: ['State a', 'State b'], }, ]); } } ``` ## .onStory() You can use to listen to the story change and update the preview. ```js import { Provider } from '@storybook/ui'; class ReactProvider extends Provider { handleAPI(api) { api.onStory((kind, story) => { this.globalState.emit('change', kind, story); }); } } ``` ## Hacking Guide If you like to add features to the Storybook UI or fix bugs, this is the guide you need to follow. First of all, you can need to start the [example](./example) app to see your changes. ### The App This is a Redux app written based on the [Mantra architecture](https://github.com/kadirahq/mantra/). It's a set of modules. You can see those modules at `src/modules` directory. ### Changing UI If you like to change the appearance of the UI, you need to look at the `ui` module. Change components at the `components` directory for UI tweaks. You can also change containers(which are written with [react-komposer](https://github.com/kadirahq/react-komposer/)) to add more data from the redux state. ### Mounting The UI is mounted in the `src/modules/ui/routes.js`. Inside that, we have injected dependencies as well. Refer [mantra-core](https://github.com/mantrajs/mantra-core) for that. We've injected the context and actions. ### App Context App context is the app which application context you initialize when creating the UI. It is initialized in the `src/index.js` file. It's a non serializable state. You can access the app context from containers and basically most of the place in the app. So, that's the place to put app wide configurations and objects which won't changed after initialized. Our redux store is also stayed inside the app context. ### Actions Actions are the place we implement app logic in a Mantra app. Each module has a set of actions and they are globally accessible. These actions are located at `