mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
feat(examples): added dummy pipe and injectable to show their props
This commit is contained in:
parent
b10834c83d
commit
02338023b6
@ -0,0 +1,17 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`Storyshots DocInjectable Basic 1`] = `
|
||||||
|
<storybook-dynamic-app-root
|
||||||
|
cfr={[Function CodegenComponentFactoryResolver]}
|
||||||
|
data={[Function Object]}
|
||||||
|
target={[Function ViewContainerRef_]}
|
||||||
|
>
|
||||||
|
<ng-component>
|
||||||
|
<div>
|
||||||
|
<h1>
|
||||||
|
DocInjectable
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</ng-component>
|
||||||
|
</storybook-dynamic-app-root>
|
||||||
|
`;
|
@ -0,0 +1,27 @@
|
|||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { HttpHeaders } from '@angular/common/http';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is an Angular Injectable
|
||||||
|
* example that has a Prop Table.
|
||||||
|
*/
|
||||||
|
@Injectable({
|
||||||
|
providedIn: 'root',
|
||||||
|
})
|
||||||
|
export class DocInjectableService {
|
||||||
|
/**
|
||||||
|
* Auth headers to use.
|
||||||
|
*/
|
||||||
|
auth: any;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.auth = new HttpHeaders({ 'Content-Type': 'application/json' });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get posts from Backend.
|
||||||
|
*/
|
||||||
|
getPosts() {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
import { DocInjectableService } from './doc-injectable.service';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
title: 'DocInjectable',
|
||||||
|
component: DocInjectableService,
|
||||||
|
parameters: { docs: { iframeHeight: 120 } },
|
||||||
|
};
|
||||||
|
|
||||||
|
const modules = {
|
||||||
|
provider: [DocInjectableService],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Basic = () => ({
|
||||||
|
moduleMetadata: modules,
|
||||||
|
template: '<div><h1>DocInjectable</h1></div>',
|
||||||
|
});
|
@ -0,0 +1,17 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`Storyshots DocPipe Basic 1`] = `
|
||||||
|
<storybook-dynamic-app-root
|
||||||
|
cfr={[Function CodegenComponentFactoryResolver]}
|
||||||
|
data={[Function Object]}
|
||||||
|
target={[Function ViewContainerRef_]}
|
||||||
|
>
|
||||||
|
<ng-component>
|
||||||
|
<div>
|
||||||
|
<h1>
|
||||||
|
DOCPIPE
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</ng-component>
|
||||||
|
</storybook-dynamic-app-root>
|
||||||
|
`;
|
18
examples/angular-cli/src/stories/doc-pipe/doc-pipe.pipe.ts
Normal file
18
examples/angular-cli/src/stories/doc-pipe/doc-pipe.pipe.ts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import { Pipe, PipeTransform } from '@angular/core';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is an Angular Pipe
|
||||||
|
* example that has a Prop Table.
|
||||||
|
*/
|
||||||
|
@Pipe({
|
||||||
|
name: 'docPipe',
|
||||||
|
})
|
||||||
|
export class DocPipe implements PipeTransform {
|
||||||
|
/**
|
||||||
|
* Transforms a string into uppercase.
|
||||||
|
* @param value string
|
||||||
|
*/
|
||||||
|
transform(value: string): string {
|
||||||
|
return value?.toUpperCase();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
import { DocPipe } from './doc-pipe.pipe';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
title: 'DocPipe',
|
||||||
|
component: DocPipe,
|
||||||
|
parameters: { docs: { iframeHeight: 120 } },
|
||||||
|
};
|
||||||
|
|
||||||
|
const modules = {
|
||||||
|
declarations: [DocPipe],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Basic = () => ({
|
||||||
|
moduleMetadata: modules,
|
||||||
|
template: `<div><h1>{{ 'DocPipe' | docPipe }}</h1></div>`,
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user