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

Styled Components not working #299

Closed
craig-jennings opened this issue Jan 5, 2021 · 14 comments · May be fixed by #874
Closed

Styled Components not working #299

craig-jennings opened this issue Jan 5, 2021 · 14 comments · May be fixed by #874
Labels
compat CJS/UMD/etc upstream Related to or blocked on an upstream project

Comments

@craig-jennings
Copy link

craig-jennings commented Jan 5, 2021

I was trying to adopt WMR in a personal project but kept running into issues. I've found that it has something to do with styled-components, but I'm not sure what's happening.

Error (in browser)

Uncaught SyntaxError: The requested module '/@npm/react-is' does not provide an export named 'typeOf'

Steps to Reproduce

  • Run npm init wmr
  • Run npm i styled-components
  • Import styled-components into the index.js file, import styled from 'styled-components';
  • Run npm start, notice the page does not render and the error in the console
@marvinhagemeister
Copy link
Member

That's to be expected. WMR was built for modern ES-Module compatible libraries. There is some rough support for older commonjs and other formats in there, but that's not a high priority, given that native ES Modules are marked as stable in all current browsers and active node versions. Libraries like react-is are only published as commonjs and don't include any ES-Module entries in their package.

Your best bet is to file an issue on the React repo or give Preact a try which supports 1:1 the same API as React does. Preact comes with ES Module support out of the box and works well with styled-components.

@marvinhagemeister marvinhagemeister added the upstream Related to or blocked on an upstream project label Jan 5, 2021
@craig-jennings
Copy link
Author

craig-jennings commented Jan 5, 2021

From my understanding, I am using Preact as that is the default when you run npm init wmr, right? In package.json,

  "alias": {
    "react": "preact/compat",
    "react-dom": "preact/compat"
  }

and in the default index.js file these imports are there,

import hydrate from 'preact-iso/hydrate';
import { LocationProvider, Router } from 'preact-iso/router';
import lazy, { ErrorBoundary } from 'preact-iso/lazy';
import styled from 'styled-components'; // This causes the issue

Is there some other step I'm missing? I laid out the exact commands I used to create the error, so unless React is sneaking in somewhere I should be using Preact.

@developit
Copy link
Member

developit commented Jan 6, 2021

Alright, I finally chased this one down. It's a bug in styled-components, which uses a fairly old version of Rollup's commonjs plugin to generate its ESM bundles that is just producing a nonsensical import:

import { typeOf } from 'react-is';  // incorrect, fails everywhere except Webpack

They'd originally told folks to fix this in their own configurations, but having this be broken by default doesn't seem adequate. Instead, I've submitted a PR that implements the correct import generation in their build setup:

styled-components/styled-components#3367

One thing I did find while digging is that this import was broken in 5.1.0 - styled-components@5.0.1 should work.

@developit developit added has fix A fix is PR'd or merged, but not yet released compat CJS/UMD/etc labels Jan 6, 2021
@smeijer
Copy link

smeijer commented Jan 7, 2021

It's good to know that this issue happens with more "react" libs. react-waypoint for example, throws the exact same error.

The requested module '/@npm/react-is' does not provide an export named.

@developit
Copy link
Member

Indeed - the misuse of named imports and over-reliance on webpack-specific compatibility workarounds is basically universal. If we can find a way to patch these broken modules in WMR, I'm open to doing so, just not if it impacts performance or output quality for folks who aren't relying on the broken modules.

@smeijer
Copy link

smeijer commented Jan 7, 2021

Would it be possible to simplify patch creation with something like https://www.npmjs.com/package/patch-package?

I'm just thinking out loud. If we could run something like the pseudo below to patch a broken module, then we would have an accessible performant fix.

npx fix-export react-is typeOf

The command would patch the module, after which patch-package could take over.

@developit
Copy link
Member

@smeijer we already transform npm modules, so there's not much need for module-specific patching. I can open a draft PR with the workaround I came up with, but we'd need something more generalizable for production quality.

@aheissenberger
Copy link

same problem with @material-ui/utils:
import { Memo, ForwardRef } from '/@npm/react-is';

=> utils:5 Uncaught SyntaxError: The requested module '/@npm/react-is' does not provide an export named 'Memo'

@damianobarbati
Copy link

Same with jss

'/@npm/react' does not provide an export named 'createContext'

@developit this project is cool indeed, I'm probably replacing parcel as a whole with it in my starters and medium-sized projects 🚀

@OngeUK
Copy link

OngeUK commented May 1, 2021

Same with Unistore:

The requested module '/@npm/unistore/react' does not provide an export named 'Provider'

If I use unistore/preact instead of unistore/react, still no joy...

The requested module '/@npm/preact' does not provide an export named 'default'

@qpwo
Copy link

qpwo commented Jun 27, 2021

Styled-components fixed their import but haven't updated the npm package yet: styled-components/styled-components#3367 (comment)

A few other packages I'm using also had bad imports (I noticed when I was trying to convert my app to wmr) so I'm a +1 for the auto-fix if it can be done in a reliable way

@eug48
Copy link

eug48 commented Jul 28, 2021

Similar issue with react-redux: Uncaught SyntaxError: The requested module '/@npm/react-is' does not provide an export named 'isValidElementType'

preact-redux now states "If you're using Preact X (preact@10+), please use the official react-redux library."

@damianobarbati
Copy link

@developit I see the label "hasfix" but which is the intended one? I'd like to try again

@marvinhagemeister marvinhagemeister removed the has fix A fix is PR'd or merged, but not yet released label Sep 16, 2021
@marvinhagemeister
Copy link
Member

@damianobarbati The has fix tag is incorrect, I think we forgot to remove it.

I've been working on revamping the npm plugin and on the commonjs handling over the past days and got it to render. There is a bit of remaining work to be done before this can be PR'ed, but it's progressing well so far.

Screenshot 2021-09-16 at 12 01 39

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compat CJS/UMD/etc upstream Related to or blocked on an upstream project
9 participants