/* eslint-disable react/prop-types */ import { window, File } from 'global'; import React, { Fragment } from 'react'; import { action, actions, configureActions } from '@storybook/addon-actions'; import { Form } from '@storybook/components'; const { Button } = Form; export default { title: 'Addons/Actions', parameters: { options: { selectedPanel: 'storybook/actions/panel', }, }, }; export const ArgTypesExample = ({ onClick, onFocus }) => ( Hello World ); ArgTypesExample.argTypes = { onClick: { action: 'clicked!' }, onFocus: { action: true }, }; export const ArgTypesRegexExample = (args, context) => { const { someFunction, onClick, onFocus } = args; return ( Hello World ); }; ArgTypesRegexExample.parameters = { actions: { argTypesRegex: '^on.*' } }; ArgTypesRegexExample.argTypes = { someFunction: {}, onClick: {}, onFocus: {} }; export const BasicExample = () => Hello World; BasicExample.storyName = 'Basic example'; export const MultipleActions = () => ( Hello World ); MultipleActions.storyName = 'Multiple actions'; export const MultipleActionsConfig = () => ( Moving away from this story will persist the action logger ); MultipleActionsConfig.storyName = 'Multiple actions + config'; export const MultipleActionsAsObject = () => ( Hello World ); MultipleActionsAsObject.storyName = 'Multiple actions as object'; export const MultipleActionsObjectConfig = () => ( Moving away from this story will persist the action logger ); MultipleActionsObjectConfig.storyName = 'Multiple actions, object + config'; export const CircularPayload = () => { const circular = { foo: {} }; circular.foo.circular = circular; return action('circular')(circular)}>Circular Payload; }; CircularPayload.storyName = 'Circular Payload'; export const ReservedKeywordAsName = () => Delete; ReservedKeywordAsName.storyName = 'Reserved keyword as name'; export const AllTypes = () => { function A() {} function B() {} const bound = B.bind({}); let file; try { file = new File([''], 'filename.txt', { type: 'text/plain', lastModified: new Date() }); } catch (error) { file = error; } const reg = /fooBar/g; return ( action('Array')(['foo', 'bar', { foo: 'bar' }])}>Array action('Boolean')(false)}>Boolean action('Empty Object')({})}>Empty Object action('File')(file)}>File action('Function', { allowFunction: true })(A)}>Function A action('Function (bound)', { allowFunction: true })(bound)}> Bound Function B action('Infinity')(Infinity)}>Infinity action('-Infinity')(-Infinity)}>-Infinity action('NaN')(NaN)}>NaN action('null')(null)}>null action('Number')(10000)}>Number action('Multiple')( 'foo', 1000, true, false, [1, 2, 3], null, undefined, { foo: 'bar' }, window ) } > Multiple action('Plain Object')({ foo: { bar: { baz: { bar: 'foo' } } } })}> Plain Object action('ObjectDepth2', { depth: 2 })({ root: { one: { two: { three: 'foo' } } } }) } > Object (depth: 2) action('RegExp')(reg)}>RegExp action('String')('foo')}>String action('Symbol')(Symbol('A_SYMBOL'))}>Symbol SyntheticEvent action('undefined')(undefined)}>undefined action('window')(window)}>Window ); }; AllTypes.storyName = 'All types'; export const ConfigureActionsDepth = () => { configureActions({ depth: 2, }); return ( action('ConfiguredDepth')({ root: { one: { two: { three: 'foo' } } } })}> Object (configured depth: 2) ); }; export const PersistingTheActionLogger = () => ( Moving away from this story will persist the action logger Object (configured clearOnStoryChange: false) ); PersistingTheActionLogger.storyName = 'Persisting the action logger'; export const LimitActionOutput = () => { configureActions({ limit: 2, }); return ( action('False')(false)}>False action('True')(true)}>True ); }; LimitActionOutput.storyName = 'Limit Action Output'; export const SkippedViaDisableTrue = () => ( Hello World ); SkippedViaDisableTrue.storyName = 'skipped via disable:true'; SkippedViaDisableTrue.parameters = { actions: { disable: true }, };
Moving away from this story will persist the action logger