Git Product home page Git Product logo

Comments (4)

theKashey avatar theKashey commented on August 10, 2024 3

@loadable/[email protected] should fix the problem

from loadable-components.

denchiklut avatar denchiklut commented on August 10, 2024 2

@theKashey small update I think the issue is actually only with @loadable/babel-plugin.
And based on git commits I think the issue might be in isValidIdentifier function. But I have no expertise in writing babel plugins so I might be wrong.

I believe the problem is in the final return statement where we use loadableImportSpecifiers.find
So this:

function isValidIdentifier(path, loadableImportSpecifiers, lazyImportSpecifier) {
   ...
   return (
      path.get('callee').isMemberExpression() &&
      loadableImportSpecifiers.find(specifier => path.get('callee.object').isIdentifier({ name: specifier })) &&
      path.get('callee.property').isIdentifier({ name: 'lib' })
    )
}

should probably be this:

function isValidIdentifier(path, loadableImportSpecifiers, lazyImportSpecifier) {
   ...
   return (
      path.get('callee').isMemberExpression() &&
      loadableImportSpecifiers.every(specifier => path.get('callee.object').isIdentifier({ name: specifier })) &&
      path.get('callee.property').isIdentifier({ name: 'lib' })
    )
}

from loadable-components.

theKashey avatar theKashey commented on August 10, 2024 1

Thank you for the insight, that would greatly simply the fix process. @denchiklut +++

from loadable-components.

theKashey avatar theKashey commented on August 10, 2024 1

Root cause - broken "loadable" detection

In your code you just import your stuff as loadable, and that's it - https://github.com/denchiklut/ssr-boilerplate/blob/414ff83dc991d59e75db92a031f55b279ee19c15/src/client/components/%40shared/app/routes/index.tsx#L7
"Signatures" broken this moment requiring an explicit configuration, which you should want to implement (😉)

In any case, no breaking changes should occur even for not very widely used functionality and the behaviour has been corrected.
Currently it's too late to perform release, I'll do it tomorrow morning (and time zones are hard)

from loadable-components.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.