storybookjs/storybook

[Feature Request]: CSF3 Autofixer shouldn't hoist arg uses above declarations

Aberta

#21.488 aberto em 8 de mar. de 2023

 (2 comentários) (0 reação) (0 responsável)TypeScript (10.058 forks)batch import
bugcodemodshelp wantedsev:S3

Métricas do repositório

Stars
 (89.909 estrelas)
Métricas de merge de PR
 (Mesclagem média 7d 22h) (184 fundiu PRs em 30d)

Description

Is your feature request related to a problem? Please describe

When migrating a story defined like:

export const MyStory = (props) => <MyComponent {...props} />
const defaultArgs = { foo: 'bar'}
MyStory.args = defaultArgs

using the args is hoisted above the constant definition:

export const MyStory = {
  render: (props) => <MyComponent {...props} />,
  args: defaultArgs,
}
const defaultArgs = { foo: 'bar'}

Describe the solution you'd like

Ideally the codemod would move the constant declaration above where it was used:

const defaultArgs = { foo: 'bar'}
export const MyStory = {
  render: (props) => <MyComponent {...props} />,
  args: defaultArgs,
}

Describe alternatives you've considered

I looked, but there's not an autofixer for this in eslint or ts. I can check to see if theres an existing codemod that can help with this.

Are you able to assist to bring the feature to reality?

yes, I can

Additional context

No response

Guia do colaborador