feat(examples): added dummy pipe and injectable to show their props

This commit is contained in:
Mateo Tibaquira 2020-06-03 03:09:00 -05:00
parent b10834c83d
commit 02338023b6
6 changed files with 111 additions and 0 deletions

View File

@ -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>
`;

View File

@ -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 [];
}
}

View File

@ -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>',
});

View File

@ -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>
`;

View 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();
}
}

View File

@ -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>`,
});