mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Run prettier:ts
This commit is contained in:
parent
f34bf30c66
commit
9ea767c2db
@ -3,7 +3,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
|
||||
@Component({
|
||||
selector: 'storybook-button-component',
|
||||
template: `
|
||||
<button (click)="onClick.emit($event);">{{ text }}</button>
|
||||
<button (click)="onClick.emit($event)">{{ text }}</button>
|
||||
`,
|
||||
styles: [
|
||||
`
|
||||
|
@ -3,46 +3,45 @@ 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>
|
||||
<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: [
|
||||
`
|
||||
|
@ -3,16 +3,17 @@ import { Component, Input, OnInit, OnChanges, SimpleChanges } from '@angular/cor
|
||||
@Component({
|
||||
selector: 'storybook-simple-knobs-component',
|
||||
template: `
|
||||
<div [ngStyle]="{ 'border': '2px dotted ' + border, 'padding.px': '8 22', 'border-radius.px': '8'}">
|
||||
<div
|
||||
[ngStyle]="{ border: '2px dotted ' + border, 'padding.px': '8 22', 'border-radius.px': '8' }"
|
||||
>
|
||||
<h1>My name is {{ name }},</h1>
|
||||
<h3>today is {{ today | date }}</h3>
|
||||
<p *ngIf="stock">I have a stock of {{ stock }} {{ fruit }}, costing $ {{ price }} each.</p>
|
||||
<p *ngIf="!stock">I'm out of {{ fruit }}.</p> <p *ngIf="stock && nice">Sorry.</p>
|
||||
<p *ngIf="!stock">I'm out of {{ fruit }}.</p>
|
||||
<p *ngIf="stock && nice">Sorry.</p>
|
||||
<p>Also, I have:</p>
|
||||
<ul>
|
||||
<li *ngFor="let item of items">
|
||||
{{ item }}
|
||||
</li>
|
||||
<li *ngFor="let item of items">{{ item }}</li>
|
||||
</ul>
|
||||
<p *ngIf="nice">Nice to meet you!</p>
|
||||
<p *ngIf="!nice">Leave me alone!</p>
|
||||
|
@ -3,7 +3,9 @@ import { storiesOf } from '@storybook/angular';
|
||||
|
||||
@Component({
|
||||
selector: 'storybook-with-ng-content',
|
||||
template: `<div style="color: #1e88e5;"><ng-content></ng-content></div>`,
|
||||
template: `
|
||||
<div style="color: #1e88e5;"><ng-content></ng-content></div>
|
||||
`,
|
||||
})
|
||||
class WithNgContentComponent {}
|
||||
|
||||
|
@ -6,7 +6,7 @@ const NOOP = () => {};
|
||||
@Component({
|
||||
selector: 'storybook-custom-cva-component',
|
||||
template: `
|
||||
<div>{{value}}</div>
|
||||
<div>{{ value }}</div>
|
||||
<input type="text" [(ngModel)]="value" />
|
||||
`,
|
||||
providers: [
|
||||
|
@ -3,7 +3,7 @@ import { Component, Input } from '@angular/core';
|
||||
@Component({
|
||||
selector: `storybook-base-button`,
|
||||
template: `
|
||||
<button>{{label}}</button>
|
||||
<button>{{ label }}</button>
|
||||
`,
|
||||
})
|
||||
export class BaseButtonComponent {
|
||||
|
@ -4,7 +4,7 @@ import { BaseButtonComponent } from './base-button.component';
|
||||
@Component({
|
||||
selector: `storybook-icon-button`,
|
||||
template: `
|
||||
<button>{{label}} - {{icon}}</button>
|
||||
<button>{{ label }} - {{ icon }}</button>
|
||||
`,
|
||||
})
|
||||
export class IconButtonComponent extends BaseButtonComponent {
|
||||
|
@ -2,7 +2,9 @@ import { Component, Input } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'storybook-name',
|
||||
template: `<h1>{{ field | customPipe }}</h1>`,
|
||||
template: `
|
||||
<h1>{{ field | customPipe }}</h1>
|
||||
`,
|
||||
})
|
||||
export class NameComponent {
|
||||
@Input()
|
||||
|
@ -6,9 +6,7 @@ import { DummyService } from './dummy.service';
|
||||
template: `
|
||||
<p>{{ name }}:</p>
|
||||
<ul>
|
||||
<li *ngFor="let item of items">
|
||||
{{ item }}
|
||||
</li>
|
||||
<li *ngFor="let item of items">{{ item }}</li>
|
||||
</ul>
|
||||
`,
|
||||
})
|
||||
|
@ -9,9 +9,7 @@ export const DEFAULT_NAME = new InjectionToken<string>('TokenComponent.DefaultNa
|
||||
<h3>{{ name }}</h3>
|
||||
<p>Items:</p>
|
||||
<ul>
|
||||
<li *ngFor="let item of items">
|
||||
{{ item }}
|
||||
</li>
|
||||
<li *ngFor="let item of items">{{ item }}</li>
|
||||
</ul>
|
||||
`,
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user