From 2c736550209cf80ce0cfc284a3b3fed78bf112b0 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 21 Apr 2018 20:19:55 +0300 Subject: [PATCH] Move addon-info stories to official-storybook --- addons/graphql/package.json | 4 +- addons/info/.storybook/addons.js | 1 - addons/info/.storybook/config.js | 11 -- .../.storybook/user/modify_webpack_config.js | 4 - addons/info/.storybook/webpack.config.js | 28 --- addons/info/example/Button.js | 21 -- addons/info/example/story.js | 181 ------------------ addons/info/package.json | 9 +- .../stories/addon-info.stories.js | 80 +++++++- 9 files changed, 82 insertions(+), 257 deletions(-) delete mode 100644 addons/info/.storybook/addons.js delete mode 100644 addons/info/.storybook/config.js delete mode 100644 addons/info/.storybook/user/modify_webpack_config.js delete mode 100644 addons/info/.storybook/webpack.config.js delete mode 100644 addons/info/example/Button.js delete mode 100644 addons/info/example/story.js diff --git a/addons/graphql/package.json b/addons/graphql/package.json index b2fc80c5e31..1c8337884ec 100644 --- a/addons/graphql/package.json +++ b/addons/graphql/package.json @@ -17,9 +17,7 @@ "url": "https://github.com/storybooks/storybook.git" }, "scripts": { - "deploy-storybook": "storybook-to-ghpages", - "prepare": "node ../../scripts/prepare.js", - "storybook": "start-storybook -p 9001" + "prepare": "node ../../scripts/prepare.js" }, "dependencies": { "babel-runtime": "^6.26.0", diff --git a/addons/info/.storybook/addons.js b/addons/info/.storybook/addons.js deleted file mode 100644 index 5dea101a7c9..00000000000 --- a/addons/info/.storybook/addons.js +++ /dev/null @@ -1 +0,0 @@ -import '@storybook/addon-actions/register'; diff --git a/addons/info/.storybook/config.js b/addons/info/.storybook/config.js deleted file mode 100644 index bfb85e5f9f1..00000000000 --- a/addons/info/.storybook/config.js +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react'; -import { configure, setAddon, addDecorator } from '@storybook/react'; -import InfoAddon from '../src/'; - -addDecorator(story =>
{story()}
); - -setAddon(InfoAddon); - -configure(() => { - require('../example/story'); -}, module); diff --git a/addons/info/.storybook/user/modify_webpack_config.js b/addons/info/.storybook/user/modify_webpack_config.js deleted file mode 100644 index 75e95783687..00000000000 --- a/addons/info/.storybook/user/modify_webpack_config.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = () => { - // This is the default webpack config defined in the `../webpack.config.js` - // modify as you need. -}; diff --git a/addons/info/.storybook/webpack.config.js b/addons/info/.storybook/webpack.config.js deleted file mode 100644 index e2343550bf3..00000000000 --- a/addons/info/.storybook/webpack.config.js +++ /dev/null @@ -1,28 +0,0 @@ -// IMPORTANT -// --------- -// This is an auto generated file with React CDK. -// Do not modify this file. -// Use `.storybook/user/modify_webpack_config.js instead`. - -const path = require('path'); -const updateConfig = require('./user/modify_webpack_config'); - -const config = { - module: { - loaders: [ - { - test: /\.css?$/, - loaders: ['style', 'raw'], - include: path.resolve(__dirname, '../'), - }, - { - test: /\.json?$/, - loaders: ['json'], - include: path.resolve(__dirname, '../'), - }, - ], - }, -}; - -updateConfig(config); -module.exports = config; diff --git a/addons/info/example/Button.js b/addons/info/example/Button.js deleted file mode 100644 index 70bf2aabe2a..00000000000 --- a/addons/info/example/Button.js +++ /dev/null @@ -1,21 +0,0 @@ -import PropTypes from 'prop-types'; -import React from 'react'; - -const Button = ({ disabled, label, onClick }) => ( - -); - -Button.propTypes = { - label: PropTypes.string.isRequired, - disabled: PropTypes.bool, - onClick: PropTypes.func, -}; - -Button.defaultProps = { - disabled: false, - onClick() {}, -}; - -export default Button; diff --git a/addons/info/example/story.js b/addons/info/example/story.js deleted file mode 100644 index 2b6be297537..00000000000 --- a/addons/info/example/story.js +++ /dev/null @@ -1,181 +0,0 @@ -import React from 'react'; - -import { storiesOf } from '@storybook/react'; -import { action } from '@storybook/addon-actions'; - -import Button from './Button'; - -storiesOf('Button').addWithInfo( - 'simple usage', - 'This is the basic usage with the button with providing a label to show the text.', - () => ( -
-
- ) -); - -storiesOf('Button').addWithInfo( - 'simple usage (inline info)', - ` - This is the basic usage with the button with providing a label to show the text. - `, - () =>