Merge pull request #4335 from gabrielcsapo/ember-storybook-cleanup

CLEANUP ember docs and refactor
This commit is contained in:
Filipp Riabchun 2018-10-13 00:35:41 +02:00 committed by GitHub
commit 542baa436b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 39 additions and 34 deletions

View File

@ -42,7 +42,7 @@ Then add the following NPM script to your package json in order to start the sto
```json
{
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook"
"storybook": "start-storybook -p 9001 -s dist"
}
}
```
@ -130,13 +130,42 @@ storiesOf('Demo', module)
return {
template: hbs`{{foo-bar
click=onClick
}}`
},
context: {
onClick: (e) => console.log(e)
}}`,
context: {
onClick: (e) => console.log(e)
}
}
});
```
> If you are using an older version of ember <= 3.1 please use this story style
```js
import { compile } from 'ember-source/dist/ember-template-compiler';
import { storiesOf } from '@storybook/ember';
storiesOf('Demo', module)
.add('heading', () => compile(`<h1>Hello World</h1>`))
.add('button', () => {
return {
template: compile(`<button {{action onClick}}>
Hello Button
</button>`),
context: {
onClick: (e) => console.log(e)
}
}
})
.add('component', () => {
return {
template: compile(`{{foo-bar
click=onClick
}}`),
context: {
onClick: (e) => console.log(e)
}
}
});
```
A story is either:

View File

@ -4,9 +4,9 @@
"private": true,
"scripts": {
"build": "ember build",
"build-storybook": "yarn build && cp -r public/* dist; build-storybook -s dist",
"build-storybook": "yarn build && cp -r public/* dist && build-storybook -s dist",
"dev": "ember serve",
"storybook": "yarn build && cp -r public/* dist; start-storybook -p 9009 -s dist"
"storybook": "yarn build && start-storybook -p 9009 -s dist, public"
},
"devDependencies": {
"@babel/core": "^7.1.2",

View File

@ -27,8 +27,8 @@ export default async npmOptions => {
packageJson.scripts = {
...packageJson.scripts,
...{
storybook: 'start-storybook -p 6006',
'build-storybook': 'build-storybook',
storybook: 'start-storybook -p 6006 -s dist',
'build-storybook': 'build-storybook -s dist',
},
};

View File

@ -0,0 +1 @@
!dist

View File

View File

@ -1,25 +0,0 @@
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_args: {
Chrome: {
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
'--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-port=0',
'--window-size=1440,900'
].filter(Boolean)
}
}
};