Socket
Socket
Sign inDemoInstall

@storybook/addon-actions

Package Overview
Dependencies
19
Maintainers
5
Versions
1676
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @storybook/addon-actions

Get UI feedback when an action is performed on an interactive element


Version published
Weekly downloads
5.4M
increased by0.51%
Maintainers
5
Install size
25.3 MB
Created
Weekly downloads
 

Package description

What is @storybook/addon-actions?

The @storybook/addon-actions package is a Storybook addon that allows you to log interactions with your UI components. It is useful for debugging and for getting feedback on how components respond to user actions. With this addon, you can capture events and their payloads, making it easier to understand the behavior of your components during development.

What are @storybook/addon-actions's main functionalities?

Log Actions

This feature allows you to log actions in the Storybook UI. When the button is clicked, the 'button-click' action is logged, showing the event and its payload.

import { action } from '@storybook/addon-actions';

export default {
  title: 'Button',
  argTypes: { onClick: { action: 'clicked' } },
};

export const TextButton = () => (
  <button onClick={action('button-click')}>Hello Button</button>
);

Customize Output

This feature allows you to customize the output of the action logger. In this example, the default behavior of the click event is prevented, and a custom label is used for logging.

import { action } from '@storybook/addon-actions';

const createClickHandler = (label) => action(label, (e) => e.preventDefault());

export const PreventDefaultButton = () => (
  <button onClick={createClickHandler('prevent-default-click')}>Click Me</button>
);

Other packages similar to @storybook/addon-actions

Readme

Source

Storybook Addon Actions

Storybook Addon Actions can be used to display data received by event handlers in Storybook.

Framework Support

Screenshot

Installation

Actions is part of essentials and so is installed in all new Storybooks by default. If you need to add it to your Storybook, you can run:

npm i -D @storybook/addon-actions

Then, add following content to .storybook/main.js:

module.exports = {
  addons: ['@storybook/addon-actions'],
};

Usage

The basic usage is documented in the documentation. For legacy usage, see the advanced README.

Keywords

FAQs

Last updated on 13 Jun 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc