I'm using Storybook to display a angular component. The angular component has a function that is called on click. But storybook doesn't call this function. It just logs an event in the actions tab and leaves it at that.
sample.component.ts
onClickFunc(): void {
console.log('clicked');
// do some other stuff
}
sample.component.html
<div (click)="onClickFunc()">
Some content
</div>
When I click on the div it just logs this in the actions tab but doesn't actually call the function so there is no console.log or other code running.
Now the funny part is if I leave the storybook server running and change the name of the function in both the ts file and html file is starts working. There is not logging in actions tab and the console.log() works. But when I stop the server and start it again we are back to the same problem.
Storybook has a regex working on identifying events. It assumes the naming convention onSomething is only used for events that it will capture and display as action.
It is a good practice to not name a function that handles an event like an event, if you rename your function to clicked() it will work within storybook.