-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from storybooks/inside-jest
Added support for require.context similar to storyshots 2.x versions.
- Loading branch information
Showing
14 changed files
with
3,543 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"presets": [ | ||
"es2015" | ||
"es2015", "react" | ||
], | ||
"plugins": [ | ||
"transform-runtime" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { configure } from '@kadira/storybook'; | ||
|
||
const req = require.context('../stories/required_with_context', true, /.stories.js$/) | ||
|
||
function loadStories() { | ||
req.keys().forEach((filename) => req(filename)) | ||
require('../stories/directly_required') | ||
} | ||
|
||
configure(loadStories, module); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import vm from 'vm' | ||
import fs from 'fs' | ||
import path from 'path' | ||
import moduleSystem from 'module' | ||
|
||
function requireModules (keys, root, directory, regExp, recursive) { | ||
const files = fs.readdirSync(path.join(root, directory)) | ||
|
||
files.forEach((filename) => { | ||
// webpack adds a './' to the begining of the key | ||
// TODO: Check this in windows | ||
const entryKey = `./${path.join(directory, filename)}` | ||
if (regExp.test(entryKey)) { | ||
// eslint-disable-next-line no-param-reassign, global-require, import/no-dynamic-require | ||
keys[entryKey] = require(path.join(root, directory, filename)) | ||
return | ||
} | ||
|
||
if (!recursive) { | ||
return | ||
} | ||
|
||
if (fs.statSync(path.join(root, directory, filename)).isDirectory()) { | ||
requireModules(keys, root, path.join(directory, filename), regExp, recursive) | ||
} | ||
}) | ||
} | ||
|
||
function isRelativeRequest (request) { | ||
if (request.charCodeAt(0) !== 46/* . */) { | ||
return false | ||
} | ||
|
||
if (request === '.' || '..') { | ||
return true | ||
} | ||
|
||
return request.charCodeAt(1) === 47/* / */ || ( | ||
request.charCodeAt(1) === 46/* . */ && request.charCodeAt(2) === 47/* / */) | ||
} | ||
|
||
export default function runWithRequireContext (content, options) { | ||
const { filename, dirname } = options | ||
|
||
const newRequire = (request) => { | ||
if (isRelativeRequest(request)) { | ||
// eslint-disable-next-line global-require, import/no-dynamic-require | ||
return require(path.resolve(dirname, request)) | ||
} | ||
|
||
// eslint-disable-next-line global-require, import/no-dynamic-require | ||
return require(request) | ||
} | ||
|
||
newRequire.resolve = require.resolve | ||
newRequire.extensions = require.extensions | ||
newRequire.main = require.main | ||
newRequire.cache = require.cache | ||
|
||
newRequire.context = (directory, useSubdirectories = false, regExp = /^\.\//) => { | ||
const fullPath = path.resolve(dirname, directory) | ||
const keys = {} | ||
requireModules(keys, fullPath, '.', regExp, useSubdirectories) | ||
|
||
const req = f => (keys[f]) | ||
req.keys = () => (Object.keys(keys)) | ||
return req | ||
} | ||
|
||
const compiledModule = vm.runInThisContext(moduleSystem.wrap(content)) | ||
compiledModule(module.exports, newRequire, module, filename, dirname) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
exports[`Storyshots Another Button with some emoji 1`] = ` | ||
<button | ||
onClick={[Function]} | ||
style={ | ||
Object { | ||
"backgroundColor": "#FFFFFF", | ||
"border": "1px solid #eee", | ||
"borderRadius": 3, | ||
"cursor": "pointer", | ||
"fontSize": 15, | ||
"margin": 10, | ||
"padding": "3px 10px", | ||
} | ||
}> | ||
😀 😎 👍 💯 | ||
</button> | ||
`; | ||
|
||
exports[`Storyshots Another Button with text 1`] = ` | ||
<button | ||
onClick={[Function]} | ||
style={ | ||
Object { | ||
"backgroundColor": "#FFFFFF", | ||
"border": "1px solid #eee", | ||
"borderRadius": 3, | ||
"cursor": "pointer", | ||
"fontSize": 15, | ||
"margin": 10, | ||
"padding": "3px 10px", | ||
} | ||
}> | ||
Hello Button | ||
</button> | ||
`; | ||
|
||
exports[`Storyshots Button with some emoji 1`] = ` | ||
<button | ||
onClick={[Function]} | ||
style={ | ||
Object { | ||
"backgroundColor": "#FFFFFF", | ||
"border": "1px solid #eee", | ||
"borderRadius": 3, | ||
"cursor": "pointer", | ||
"fontSize": 15, | ||
"margin": 10, | ||
"padding": "3px 10px", | ||
} | ||
}> | ||
😀 😎 👍 💯 | ||
</button> | ||
`; | ||
|
||
exports[`Storyshots Button with text 1`] = ` | ||
<button | ||
onClick={[Function]} | ||
style={ | ||
Object { | ||
"backgroundColor": "#FFFFFF", | ||
"border": "1px solid #eee", | ||
"borderRadius": 3, | ||
"cursor": "pointer", | ||
"fontSize": 15, | ||
"margin": 10, | ||
"padding": "3px 10px", | ||
} | ||
}> | ||
Hello Button | ||
</button> | ||
`; | ||
|
||
exports[`Storyshots Welcome to Storybook 1`] = ` | ||
<div | ||
style={ | ||
Object { | ||
"fontFamily": "\"Helvetica Neue\", Helvetica, \"Segoe UI\", Arial, freesans, sans-serif", | ||
"lineHeight": 1.4, | ||
"margin": 15, | ||
"maxWidth": 600, | ||
} | ||
}> | ||
<h1> | ||
Welcome to STORYBOOK | ||
</h1> | ||
<p> | ||
This is a UI component dev environment for your app. | ||
</p> | ||
<p> | ||
We\'ve added some basic stories inside the | ||
<code | ||
style={ | ||
Object { | ||
"backgroundColor": "#f3f2f2", | ||
"border": "1px solid #eae9e9", | ||
"borderRadius": 4, | ||
"color": "#3a3a3a", | ||
"fontSize": 15, | ||
"fontWeight": 600, | ||
"padding": "2px 5px", | ||
} | ||
}> | ||
src/stories | ||
</code> | ||
directory. | ||
<br /> | ||
A story is a single state of one or more UI components. You can have as many stories as you want. | ||
<br /> | ||
(Basically a story is like a visual test case.) | ||
</p> | ||
<p> | ||
See these sample | ||
<a | ||
href="#" | ||
onClick={[Function]} | ||
style={ | ||
Object { | ||
"borderBottom": "1px solid #1474f3", | ||
"color": "#1474f3", | ||
"paddingBottom": 2, | ||
"textDecoration": "none", | ||
} | ||
}> | ||
stories | ||
</a> | ||
for a component called | ||
<code | ||
style={ | ||
Object { | ||
"backgroundColor": "#f3f2f2", | ||
"border": "1px solid #eae9e9", | ||
"borderRadius": 4, | ||
"color": "#3a3a3a", | ||
"fontSize": 15, | ||
"fontWeight": 600, | ||
"padding": "2px 5px", | ||
} | ||
}> | ||
Button | ||
</code> | ||
. | ||
</p> | ||
<p> | ||
Just like that, you can add your own components as stories. | ||
<br /> | ||
You can also edit those components and see changes right away. | ||
<br /> | ||
(Try editing the | ||
<code | ||
style={ | ||
Object { | ||
"backgroundColor": "#f3f2f2", | ||
"border": "1px solid #eae9e9", | ||
"borderRadius": 4, | ||
"color": "#3a3a3a", | ||
"fontSize": 15, | ||
"fontWeight": 600, | ||
"padding": "2px 5px", | ||
} | ||
}> | ||
Button | ||
</code> | ||
component located at | ||
<code | ||
style={ | ||
Object { | ||
"backgroundColor": "#f3f2f2", | ||
"border": "1px solid #eae9e9", | ||
"borderRadius": 4, | ||
"color": "#3a3a3a", | ||
"fontSize": 15, | ||
"fontWeight": 600, | ||
"padding": "2px 5px", | ||
} | ||
}> | ||
src/stories/Button.js | ||
</code> | ||
.) | ||
</p> | ||
<p> | ||
This is just one thing you can do with Storybook. | ||
<br /> | ||
Have a look at the | ||
<a | ||
href="https://github.com/kadirahq/react-storybook" | ||
style={ | ||
Object { | ||
"borderBottom": "1px solid #1474f3", | ||
"color": "#1474f3", | ||
"paddingBottom": 2, | ||
"textDecoration": "none", | ||
} | ||
} | ||
target="_blank"> | ||
React Storybook | ||
</a> | ||
repo for more information. | ||
</p> | ||
</div> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import initStoryshots from '../../src' | ||
initStoryshots() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
|
||
const buttonStyles = { | ||
border: '1px solid #eee', | ||
borderRadius: 3, | ||
backgroundColor: '#FFFFFF', | ||
cursor: 'pointer', | ||
fontSize: 15, | ||
padding: '3px 10px', | ||
margin: 10 | ||
} | ||
|
||
const Button = ({ children, onClick }) => ( | ||
<button | ||
style={buttonStyles} | ||
onClick={onClick} | ||
> | ||
{children} | ||
</button> | ||
) | ||
|
||
Button.propTypes = { | ||
children: React.PropTypes.string.isRequired, | ||
onClick: React.PropTypes.func | ||
} | ||
|
||
export default Button |
Oops, something went wrong.