diff --git a/lib/cli/generators/MITHRIL/index.js b/lib/cli/generators/MITHRIL/index.js index a6218f99d77..132f6f00d21 100644 --- a/lib/cli/generators/MITHRIL/index.js +++ b/lib/cli/generators/MITHRIL/index.js @@ -1,4 +1,6 @@ import path from 'path'; +import fs from 'fs'; +import JSON5 from 'json5'; import mergeDirs from 'merge-dirs'; import { getVersions, getPackageJson, writePackageJson } from '../../lib/helpers'; @@ -9,12 +11,14 @@ export default async () => { linksVersion, addonsVersion, babelCoreVersion, + babelPluginTransformReactJsxVersion, ] = await getVersions( '@storybook/mithril', '@storybook/addon-actions', '@storybook/addon-links', '@storybook/addons', - 'babel-core' + 'babel-core', + 'babel-plugin-transform-react-jsx' ); mergeDirs(path.resolve(__dirname, 'template/'), '.', 'overwrite'); @@ -28,10 +32,32 @@ export default async () => { packageJson.devDependencies['@storybook/addons'] = addonsVersion; packageJson.devDependencies['@storybook/mithril'] = storybookVersion; - if (!packageJson.dependencies['babel-core'] && !packageJson.devDependencies['babel-core']) { + // create or update .babelrc + let babelrc = null; + if (fs.existsSync('.babelrc')) { + const babelrcContent = fs.readFileSync('.babelrc', 'utf8'); + babelrc = JSON5.parse(babelrcContent); + babelrc.plugins = babelrc.plugins || []; + + if (babelrc.plugins.indexOf('babel-plugin-transform-react-jsx') < 0) { + babelrc.plugins.push('transform-react-jsx'); + packageJson.devDependencies[ + 'babel-plugin-transform-react-jsx' + ] = babelPluginTransformReactJsxVersion; + } + } else { + babelrc = { + plugins: ['transform-react-jsx'], + }; + packageJson.devDependencies['babel-core'] = babelCoreVersion; + packageJson.devDependencies[ + 'babel-plugin-transform-react-jsx' + ] = babelPluginTransformReactJsxVersion; } + fs.writeFileSync('.babelrc', JSON.stringify(babelrc, null, 2), 'utf8'); + packageJson.scripts = packageJson.scripts || {}; packageJson.scripts.storybook = 'start-storybook -p 6006'; packageJson.scripts['build-storybook'] = 'build-storybook'; diff --git a/lib/cli/generators/MITHRIL/template/stories/Button.js b/lib/cli/generators/MITHRIL/template/stories/Button.js new file mode 100644 index 00000000000..8fcb462dd53 --- /dev/null +++ b/lib/cli/generators/MITHRIL/template/stories/Button.js @@ -0,0 +1,23 @@ +/** @jsx m */ + +import m from 'mithril'; + +const style = { + border: '1px solid #eee', + borderRadius: '3px', + backgroundColor: '#FFFFFF', + cursor: 'pointer', + fontSize: '15px', + padding: '3px 10px', + margin: '10px', +}; + +const Button = { + view: vnode => ( + + ), +}; + +export default Button; diff --git a/lib/cli/generators/MITHRIL/template/stories/Welcome.js b/lib/cli/generators/MITHRIL/template/stories/Welcome.js new file mode 100644 index 00000000000..b5ac4cb8ce9 --- /dev/null +++ b/lib/cli/generators/MITHRIL/template/stories/Welcome.js @@ -0,0 +1,178 @@ +/** @jsx m */ + +import m from 'mithril'; +import { linkTo, hrefTo } from '@storybook/addon-links'; + +const Main = { + view: vnode => ( +
+ {vnode.children} +
+ ), +}; + +const Title = { + view: vnode =>

{vnode.children}

, +}; + +const Note = { + view: vnode => ( +

+ {vnode.children} +

+ ), +}; + +const InlineCode = { + view: vnode => ( + + {vnode.children} + + ), +}; + +const Link = { + view: vnode => ( + + {vnode.children} + + ), +}; + +const NavButton = { + view: vnode => ( + + ), +}; + +const StoryLink = { + oninit: vnode => { + // eslint-disable-next-line no-param-reassign + vnode.state.href = '/'; + // eslint-disable-next-line no-param-reassign + vnode.state.onclick = () => { + linkTo(vnode.attrs.kind, vnode.attrs.story)(); + return false; + }; + StoryLink.updateHref(vnode); + }, + updateHref: async vnode => { + const href = await hrefTo(vnode.attrs.kind, vnode.attrs.story); + // eslint-disable-next-line no-param-reassign + vnode.state.href = href; + m.redraw(); + }, + view: vnode => ( + + {vnode.children} + + ), +}; + +const Welcome = { + view: vnode => ( +
+ Welcome to storybook +

This is a UI component dev environment for your app.

+

+ We've added some basic stories inside the src/stories directory. +
+ A story is a single state of one or more UI components. You can have as many stories as you + want. +
+ (Basically a story is like a visual test case.) +

+

+ See these sample{' '} + {vnode.attrs.showApp ? ( + stories + ) : ( + + stories + + )}{' '} + for a component called Button + . +

+

+ Just like that, you can add your own components as stories. +
+ You can also edit those components and see changes right away. +
+ (Try editing the Button stories located at{' '} + src/stories/index.js.) +

+

+ Usually we create stories with smaller UI components in the app.
+ Have a look at the{' '} + + Writing Stories + {' '} + section in our documentation. +

+ + NOTE: +
+ Have a look at the .storybook/webpack.config.js to add webpack + loaders and plugins you are using in this project. +
+
+ ), +}; + +export default Welcome; diff --git a/lib/cli/generators/MITHRIL/template/stories/index.stories.js b/lib/cli/generators/MITHRIL/template/stories/index.stories.js index 07fe9d81c19..b74304a3b13 100644 --- a/lib/cli/generators/MITHRIL/template/stories/index.stories.js +++ b/lib/cli/generators/MITHRIL/template/stories/index.stories.js @@ -4,7 +4,8 @@ import { storiesOf } from '@storybook/mithril'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; -import { Button, Welcome } from '@storybook/mithril/demo'; +import Button from './Button'; +import Welcome from './Welcome'; storiesOf('Welcome', module).add('to Storybook', () => ({ view: () => m(Welcome, { showApp: linkTo('Button') }), diff --git a/lib/cli/test/snapshots/mithril/.babelrc b/lib/cli/test/snapshots/mithril/.babelrc new file mode 100644 index 00000000000..7c4ed4fc07d --- /dev/null +++ b/lib/cli/test/snapshots/mithril/.babelrc @@ -0,0 +1,5 @@ +{ + "plugins": [ + "transform-react-jsx" + ] +} \ No newline at end of file diff --git a/lib/cli/test/snapshots/mithril/package.json b/lib/cli/test/snapshots/mithril/package.json index 1e837b5173d..4885d97b214 100644 --- a/lib/cli/test/snapshots/mithril/package.json +++ b/lib/cli/test/snapshots/mithril/package.json @@ -16,6 +16,7 @@ "@storybook/addon-links": "^3.4.0-rc.3", "@storybook/addons": "^3.4.0-rc.3", "@storybook/mithril": "3.4.0-rc.3", - "babel-core": "^6.26.0" + "babel-core": "^6.26.0", + "babel-plugin-transform-react-jsx": "^6.24.1" } } diff --git a/lib/cli/test/snapshots/mithril/stories/Button.js b/lib/cli/test/snapshots/mithril/stories/Button.js new file mode 100644 index 00000000000..8fcb462dd53 --- /dev/null +++ b/lib/cli/test/snapshots/mithril/stories/Button.js @@ -0,0 +1,23 @@ +/** @jsx m */ + +import m from 'mithril'; + +const style = { + border: '1px solid #eee', + borderRadius: '3px', + backgroundColor: '#FFFFFF', + cursor: 'pointer', + fontSize: '15px', + padding: '3px 10px', + margin: '10px', +}; + +const Button = { + view: vnode => ( + + ), +}; + +export default Button; diff --git a/lib/cli/test/snapshots/mithril/stories/Welcome.js b/lib/cli/test/snapshots/mithril/stories/Welcome.js new file mode 100644 index 00000000000..b5ac4cb8ce9 --- /dev/null +++ b/lib/cli/test/snapshots/mithril/stories/Welcome.js @@ -0,0 +1,178 @@ +/** @jsx m */ + +import m from 'mithril'; +import { linkTo, hrefTo } from '@storybook/addon-links'; + +const Main = { + view: vnode => ( +
+ {vnode.children} +
+ ), +}; + +const Title = { + view: vnode =>

{vnode.children}

, +}; + +const Note = { + view: vnode => ( +

+ {vnode.children} +

+ ), +}; + +const InlineCode = { + view: vnode => ( + + {vnode.children} + + ), +}; + +const Link = { + view: vnode => ( + + {vnode.children} + + ), +}; + +const NavButton = { + view: vnode => ( + + ), +}; + +const StoryLink = { + oninit: vnode => { + // eslint-disable-next-line no-param-reassign + vnode.state.href = '/'; + // eslint-disable-next-line no-param-reassign + vnode.state.onclick = () => { + linkTo(vnode.attrs.kind, vnode.attrs.story)(); + return false; + }; + StoryLink.updateHref(vnode); + }, + updateHref: async vnode => { + const href = await hrefTo(vnode.attrs.kind, vnode.attrs.story); + // eslint-disable-next-line no-param-reassign + vnode.state.href = href; + m.redraw(); + }, + view: vnode => ( + + {vnode.children} + + ), +}; + +const Welcome = { + view: vnode => ( +
+ Welcome to storybook +

This is a UI component dev environment for your app.

+

+ We've added some basic stories inside the src/stories directory. +
+ A story is a single state of one or more UI components. You can have as many stories as you + want. +
+ (Basically a story is like a visual test case.) +

+

+ See these sample{' '} + {vnode.attrs.showApp ? ( + stories + ) : ( + + stories + + )}{' '} + for a component called Button + . +

+

+ Just like that, you can add your own components as stories. +
+ You can also edit those components and see changes right away. +
+ (Try editing the Button stories located at{' '} + src/stories/index.js.) +

+

+ Usually we create stories with smaller UI components in the app.
+ Have a look at the{' '} + + Writing Stories + {' '} + section in our documentation. +

+ + NOTE: +
+ Have a look at the .storybook/webpack.config.js to add webpack + loaders and plugins you are using in this project. +
+
+ ), +}; + +export default Welcome; diff --git a/lib/cli/test/snapshots/mithril/stories/index.stories.js b/lib/cli/test/snapshots/mithril/stories/index.stories.js index 07fe9d81c19..b74304a3b13 100644 --- a/lib/cli/test/snapshots/mithril/stories/index.stories.js +++ b/lib/cli/test/snapshots/mithril/stories/index.stories.js @@ -4,7 +4,8 @@ import { storiesOf } from '@storybook/mithril'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; -import { Button, Welcome } from '@storybook/mithril/demo'; +import Button from './Button'; +import Welcome from './Welcome'; storiesOf('Welcome', module).add('to Storybook', () => ({ view: () => m(Welcome, { showApp: linkTo('Button') }),