Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Storyshots: Fix mdx transform #10223

Merged
merged 7 commits into from Mar 27, 2020
Merged

Conversation

rileylnapier
Copy link
Contributor

after we transform from mdx to js... we need to name the file extension js so our other jest transforms transform the js correctly.

Issue:

What I did

How to test

  • Is this testable with Jest or Chromatic screenshots?
  • Does this need a new example in the kitchen sink apps?
  • Does this need an update to the documentation?

If your answer is yes to any of these, please make sure to include it in your PR.

after we transform from mdx to js... we need to name the file extension js so our other jest transforms transform the js correctly.
Copy link
Member

@shilman shilman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense, thank you for the fix! 🙏 Please see my comment inline.

addons/docs/jest-transform-mdx.js Show resolved Hide resolved
@shilman shilman changed the title fix mdx transform Storyshots: Fix mdx transform Mar 27, 2020
Co-Authored-By: Michael Shilman <shilman@users.noreply.github.com>
@shilman shilman added this to the 5.3.x milestone Mar 27, 2020
@shilman shilman added the patch:yes Bugfix & documentation PR that need to be picked to main branch label Mar 27, 2020
@shilman
Copy link
Member

shilman commented Mar 27, 2020

@rileylnapier Hmm this seems to break CI. @Hypnosphi can you take a quick look?

@Hypnosphi
Copy link
Member

@rileylnapier can you please describe the original issue you're solving here? Right now the JS transforms are applied to mdx, it's done in getNextTransformer

@rileylnapier
Copy link
Contributor Author

rileylnapier commented Mar 27, 2020

@rileylnapier can you please describe the original issue you're solving here? Right now the JS transforms are applied to mdx, it's done in getNextTransformer

The issue that I had is that after my mdx gets transformed into JS. The JS that results has things like import React from "react" and then i get an error because I still need to transpile this JS... but my jest config wont' transpile it because it still has a .mdx extention.

With this being said... I think my team and I are probably just going to to CSF as the MDX stuff is too tricky with the whitespace errors and no typescript typechecking. Def love the idea, but I don't think its what my team will be into.

i'm also using ts-jest btw, not babel-jest if that would make a differnce

@Hypnosphi
Copy link
Member

@rileylnapier can you please share your jest config? Or, even better, create a reproduction repo? We have JS transforms in our config, and they're definitely applied

@rileylnapier
Copy link
Contributor Author

this was my config:

module.exports = {
  preset: "ts-jest",
  testEnvironment: "jsdom",
  roots: ["<rootDir>"],
  transform: {
    "\\.mdx$": "@storybook/addon-docs/jest-transform-mdx",
    "\\.(ts|tsx|js|jsx)$": "ts-jest",
  },
  transformIgnorePatterns: ["node_modules"],
  moduleFileExtensions: ["js", "json", "jsx", "ts", "tsx", "mdx"],
  moduleNameMapper: {
    "^[@./a-zA-Z0-9$_-]+\\.(png|jpg|gif)$": "RelativeImageStub",
  },
  setupFilesAfterEnv: ["<rootDir>/../../setup/setupTest.js"],
  setupFiles: ["<rootDir>/../../setup/jest.init.js"],
  globals: {
    "ts-jest": {
      tsConfig: "<rootDir>/.storybook/tsconfig.json",
    },
  },
};

@rileylnapier
Copy link
Contributor Author

rileylnapier commented Mar 27, 2020

and this is the error I get. note its referencing a .mdx file that has js in it now.

image

@Hypnosphi
Copy link
Member

@rileylnapier can you please also copy a few lines above your screenshots? Looks like they're saying something about ts-jest

@rileylnapier
Copy link
Contributor Author

rileylnapier commented Mar 27, 2020

ts-jest[jest-transformer] (WARN) Got a unknown file type to compile (file: /Users/rileynapier/trycourier/frontend/packages/studio
/components/atoms/form/checkbox/index.stories.mdx). To fix this, in your Jest config change the transform key which value is ts-jest so that it does not match this kind of files anymore.

I guess this is why i needed the file to be .js so tsjest would transpile it after?

Co-Authored-By: Filipp Riabchun <talpa@yandex.ru>
@Hypnosphi
Copy link
Member

Hypnosphi commented Mar 27, 2020

OK I got it, your solution should work better indeed. Actually, we can replace getNextTransformer with just new ScriptTransformer(config) then, as we don't need to patch transform array anymore


const jsFileName = `${filename}.js`;

return getNextTransformer(filename, config).transformSource(jsFileName, result, instrument);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return getNextTransformer(filename, config).transformSource(jsFileName, result, instrument);
return new ScriptTransformer(config).transformSource(jsFileName, result, instrument);

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we would want to delete getNextTransformer then right?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep

@rileylnapier
Copy link
Contributor Author

rileylnapier commented Mar 27, 2020

so to be clear. this was not an issue when using babel-jest right? because babel doesn't have file extension restrictions right? so you tell babel to transpile a file with .mdx and say its js, babel is cool with that.

however, something like ts-jest does care about the file extension and giving it a .mdx file it gets mad.

i did have to enable allowJs inside the tsConfig for this too btw

@Hypnosphi Hypnosphi merged commit 2c2d708 into storybookjs:next Mar 27, 2020
@shilman shilman added the patch:done Patch/release PRs already cherry-picked to main/release branch label Mar 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
addon: storyshots bug mdx patch:done Patch/release PRs already cherry-picked to main/release branch patch:yes Bugfix & documentation PR that need to be picked to main branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants