Add some stories for angular

This commit is contained in:
Valentin Palkovic 2023-02-17 09:51:45 +01:00
parent 2d77b41e44
commit e483723de5
3 changed files with 35 additions and 25 deletions

View File

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

View File

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

View File

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