/* 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 }) => ( ); ArgTypesExample.argTypes = { onClick: { action: 'clicked!' }, onFocus: { action: true }, }; export const ArgTypesRegexExample = (args, context) => { const { someFunction, onClick, onFocus } = args; return ( ); }; ArgTypesRegexExample.parameters = { actions: { argTypesRegex: '^on.*' } }; ArgTypesRegexExample.argTypes = { someFunction: {}, onClick: {}, onFocus: {} }; export const BasicExample = () => ; BasicExample.storyName = 'Basic example'; export const MultipleActions = () => ( ); MultipleActions.storyName = 'Multiple actions'; export const MultipleActionsConfig = () => ( ); MultipleActionsConfig.storyName = 'Multiple actions + config'; export const MultipleActionsAsObject = () => ( ); MultipleActionsAsObject.storyName = 'Multiple actions as object'; export const MultipleActionsObjectConfig = () => ( ); MultipleActionsObjectConfig.storyName = 'Multiple actions, object + config'; export const CircularPayload = () => { const circular = { foo: {} }; circular.foo.circular = circular; return ; }; CircularPayload.storyName = 'Circular Payload'; export const ReservedKeywordAsName = () => ; 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 ( ); }; AllTypes.storyName = 'All types'; export const ConfigureActionsDepth = () => { configureActions({ depth: 2, }); return ( ); }; export const PersistingTheActionLogger = () => (

Moving away from this story will persist the action logger

); PersistingTheActionLogger.storyName = 'Persisting the action logger'; export const LimitActionOutput = () => { configureActions({ limit: 2, }); return ( ); }; LimitActionOutput.storyName = 'Limit Action Output'; export const SkippedViaDisableTrue = () => ( ); SkippedViaDisableTrue.storyName = 'skipped via disable:true'; SkippedViaDisableTrue.parameters = { actions: { disable: true }, };