mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 00:01:12 +08:00
Fix angular/demo components
This commit is contained in:
parent
53242b5ac2
commit
1179bb2cd4
@ -1,6 +1,6 @@
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Meta, Story } from '@storybook/angular';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
component: Button,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Story, Meta } from '@storybook/angular';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Addons / Backgrounds',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { moduleMetadata } from '@storybook/angular';
|
||||
import { Story, Meta, ArgsTable } from '@storybook/addon-docs';
|
||||
import { Welcome, Button } from '@storybook/angular/demo';
|
||||
import { Welcome, Button } from '../.././angular-demo';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { DocButtonComponent } from './doc-button/doc-button.component';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Addons/Docs/Iframe',
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Story, Meta, ArgsTable, Source } from '@storybook/addon-docs';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../.././angular-demo';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
<Meta title="Addons/Docs/SimpleButton" component={Button} />
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
component: Button,
|
||||
|
@ -0,0 +1,26 @@
|
||||
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'storybook-button-component',
|
||||
template: ` <button (click)="onClick.emit($event)">{{ text }}</button> `,
|
||||
styles: [
|
||||
`
|
||||
button {
|
||||
border: 1px solid #eee;
|
||||
border-radius: 3px;
|
||||
background-color: #ffffff;
|
||||
cursor: pointer;
|
||||
font-size: 15px;
|
||||
padding: 3px 10px;
|
||||
margin: 10px;
|
||||
}
|
||||
`,
|
||||
],
|
||||
})
|
||||
export default class ButtonComponent {
|
||||
@Input()
|
||||
text = '';
|
||||
|
||||
@Output()
|
||||
onClick = new EventEmitter<any>();
|
||||
}
|
4
examples/angular-cli/src/stories/angular-demo/index.ts
Normal file
4
examples/angular-cli/src/stories/angular-demo/index.ts
Normal file
@ -0,0 +1,4 @@
|
||||
import Welcome from './welcome.component';
|
||||
import Button from './button.component';
|
||||
|
||||
export { Welcome, Button };
|
@ -0,0 +1,81 @@
|
||||
import { Component, Output, EventEmitter } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'storybook-welcome-component',
|
||||
template: `
|
||||
<main>
|
||||
<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
|
||||
<span class="inline-code">src/stories</span> 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 (click)="showApp.emit($event)" role="button" tabIndex="0">stories</a> for a component
|
||||
called <span class="inline-code">Button</span> .
|
||||
</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 <span class="inline-code">Button</span> stories located at
|
||||
<span class="inline-code">src/stories/index.js</span>.)
|
||||
</p>
|
||||
<p>
|
||||
Usually we create stories with smaller UI components in the app.<br />
|
||||
Have a look at the
|
||||
<a
|
||||
href="https://storybook.js.org/basics/writing-stories"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Writing Stories
|
||||
</a>
|
||||
section in our documentation.
|
||||
</p>
|
||||
<p class="note">
|
||||
<b>NOTE:</b> <br />
|
||||
Have a look at the <span class="inline-code">.storybook/webpack.config.js</span> to add
|
||||
webpack loaders and plugins you are using in this project.
|
||||
</p>
|
||||
</main>
|
||||
`,
|
||||
styles: [
|
||||
`
|
||||
main {
|
||||
padding: 15px;
|
||||
line-height: 1.4;
|
||||
font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, freesans, sans-serif;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.note {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.inline-code {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
padding: 2px 5px;
|
||||
border: 1px solid #eae9e9;
|
||||
border-radius: 4px;
|
||||
background-color: #f3f2f2;
|
||||
color: #3a3a3a;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #1474f3;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px solid #1474f3;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
`,
|
||||
],
|
||||
})
|
||||
export default class WelcomeComponent {
|
||||
@Output()
|
||||
showApp = new EventEmitter<any>();
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
import { addParameters } from '@storybook/angular';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Story, Meta } from '@storybook/angular/types-6-0';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
const globalParameter = 'globalParameter';
|
||||
const chapterParameter = 'chapterParameter';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Story, Meta } from '@storybook/angular';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Core / Parameters / Layout',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { Meta, moduleMetadata, Story } from '@storybook/angular';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Core / Story host styles',
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Story, Meta } from '@storybook/angular';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Legacy / Component in Story',
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Story, Meta } from '@storybook/angular/types-6-0';
|
||||
import { Button } from '@storybook/angular/demo';
|
||||
import { Button } from '../../angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Others / Issues / 12009 unknown component',
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { Story, Meta } from '@storybook/angular';
|
||||
import { Welcome } from '@storybook/angular/demo';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
import { Welcome } from './angular-demo';
|
||||
|
||||
export default {
|
||||
title: 'Welcome/ To Storybook',
|
||||
|
Loading…
x
Reference in New Issue
Block a user