mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
added dependency injection usecase story to examples
This commit is contained in:
parent
930d49e234
commit
46699f6a26
@ -0,0 +1,3 @@
|
||||
<div>
|
||||
<div>All dependencies are defined: {{isAllDeps()}}</div>
|
||||
</div>
|
@ -0,0 +1,10 @@
|
||||
import {storiesOf} from '@storybook/angular';
|
||||
import {DiComponent} from './di.component';
|
||||
|
||||
storiesOf('Component dependencies', module)
|
||||
.add('inputs and inject dependencies', () => ({
|
||||
component: DiComponent,
|
||||
props: {
|
||||
title: 'Component dependencies'
|
||||
}
|
||||
}));
|
@ -0,0 +1,24 @@
|
||||
import { Component, Input, InjectionToken, Injector, ElementRef, Inject } from '@angular/core';
|
||||
|
||||
export const TEST_TOKEN = new InjectionToken<string>('test');
|
||||
|
||||
@Component({
|
||||
selector: 'di-component',
|
||||
templateUrl: './di.component.html',
|
||||
providers: [
|
||||
{ provide: TEST_TOKEN, useValue: 123}
|
||||
]
|
||||
})
|
||||
export class DiComponent {
|
||||
@Input() title: string;
|
||||
|
||||
constructor(
|
||||
protected injector: Injector,
|
||||
protected elRef: ElementRef,
|
||||
@Inject(TEST_TOKEN) protected testToken: number
|
||||
) {}
|
||||
|
||||
isAllDeps(): boolean {
|
||||
return Boolean(this.testToken && this.elRef && this.injector && this.title);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user