mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:21:59 +08:00
Add some stories for angular
This commit is contained in:
parent
2d77b41e44
commit
e483723de5
@ -130,10 +130,10 @@ export abstract class AbstractRenderer {
|
||||
const providers = [
|
||||
// Providers for BrowserAnimations & NoopAnimationsModule
|
||||
analyzedMetadata.singletons,
|
||||
analyzedMetadata.providers,
|
||||
importProvidersFrom(
|
||||
...analyzedMetadata.imports.filter((imported) => !isStandalone(imported))
|
||||
),
|
||||
analyzedMetadata.providers,
|
||||
storyPropsProvider(newStoryProps$),
|
||||
].filter(Boolean);
|
||||
|
||||
|
@ -1,24 +0,0 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { NgxsModule } from '@ngxs/store';
|
||||
import { Meta, moduleMetadata, StoryFn } from '@storybook/angular';
|
||||
|
||||
@Component({
|
||||
selector: 'app-test',
|
||||
template: `hello`,
|
||||
})
|
||||
class TestComponent {}
|
||||
|
||||
export default {
|
||||
component: TestComponent,
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
imports: [NgxsModule.forRoot([])],
|
||||
}),
|
||||
],
|
||||
} as Meta;
|
||||
|
||||
const Template: StoryFn<TestComponent> = (args: TestComponent) => ({
|
||||
props: args,
|
||||
});
|
||||
|
||||
export const Ngxs = Template.bind({});
|
@ -0,0 +1,34 @@
|
||||
import { moduleMetadata, Meta } from '@storybook/angular';
|
||||
import { APP_INITIALIZER } from '@angular/core';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import Button from '../../button.component';
|
||||
|
||||
const meta: Meta<Button> = {
|
||||
component: Button,
|
||||
render: (args) => ({
|
||||
props: {
|
||||
...args,
|
||||
},
|
||||
}),
|
||||
decorators: [
|
||||
moduleMetadata({
|
||||
providers: [
|
||||
{
|
||||
provide: APP_INITIALIZER,
|
||||
useFactory: () => {
|
||||
return action('APP_INITIALIZER useFactory called successfully');
|
||||
},
|
||||
multi: true,
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
};
|
||||
|
||||
export default meta;
|
||||
|
||||
export const Default = {
|
||||
args: {
|
||||
text: 'Button',
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user