Giter Site home page Giter Site logo

Comments (10)

gaearon avatar gaearon commented on May 22, 2024

I think the problem is here.

Most likely that these two lines should end with || rather than &&:

!matchesPatterns(path.get('superClass'), this.superClasses) &&

!matchesPatterns(path.get('callee'), this.factoryMethods) &&

Please feel free to submit a fix, add tests for it, and I’ll be happy to merge.

from babel-plugin-react-transform.

nfcampos avatar nfcampos commented on May 22, 2024

Why is the expected behaviour in this test wrapping the class? Not all classes with a render method are React components
https://github.com/gaearon/babel-plugin-react-transform/blob/master/test/fixtures/code-class-with-render-method/actual.js

To me it looks like that's one of the tests I wanted to add (expecting it not to wrap the class) to make sure #81 and #78 were fixed, no?

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 22, 2024

We should expect that

class Foo {
  render() {}
}

does not get wrapped.

Same for

var Foo = PropTypes.shape({ 
  render: PropTypes.func
})

It also should not be wrapped.

from babel-plugin-react-transform.

nfcampos avatar nfcampos commented on May 22, 2024

Exactly, that's why this test can't be right https://github.com/gaearon/babel-plugin-react-transform/blob/master/test/fixtures/code-class-with-render-method/expected.js

Also, none of these should be wrapped either, right?
https://github.com/gaearon/babel-plugin-react-transform/blob/master/test/fixtures/code-call-expression-with-render-method/actual.js

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 22, 2024

Exactly, that's why this test can't be right

Yeah. It’s wrong.

Also, none of these should be wrapped either, right?

They shouldn’t. However they should be wrapped if factory is specified as one of the values of the optional factoryMethods array config option.

from babel-plugin-react-transform.

nfcampos avatar nfcampos commented on May 22, 2024

It looks like to me that this line shouldn't even be there

!isReactLikeClass(path.node)

We never want to wrap a class that doesn't extend React.Component (we might if we wanted to support extending a class that itself extends React.Component but whatever), right? If it doesn't pass that superclass test there's really no reason to check whether it has a render method is there?

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 22, 2024

If you change it to be || then I think it makes sense. "If either it's not a descendant -or- it doesn't have a render method, bail out because it is definitely not something we can wrap."

from babel-plugin-react-transform.

nfcampos avatar nfcampos commented on May 22, 2024

the goal:

if (shouldNotWrap)
  return
else
  wrap()

a) current implementation:

if (doesntExtendSuperClass && doesntHaveRenderMethod)
  return
else
  wrap()
// !(doesntExtendSuperClass && doesntHaveRenderMethod) === (extendsSuperClass || hasRenderMethod)

b) change to ||:

if (doesntExtendSuperClass || doesntHaveRenderMethod)
  return
else
  wrap()
// !(doesntExtendSuperClass || doesntHaveRenderMethod) === (extendsSuperClass && hasRenderMethod)
// so this would only wrap descendants of the super class that have a render method
// which makes all the current tests (but one) fail
// but is maybe what we want actually, seeing as the render() method is required in react classes (see https://facebook.github.io/react/docs/component-specs.html#render

c) remove the render method check:

if (doesntExtendSuperClass)
  return
else
  wrap()
// !(doesntExtendSuperClass) === (extendsSuperClass)
// so this would wrap all classes that are descendants of the super class
// which fails only 2 of the current tests (the 2 tests that are expecting the wrong thing)

so which one do we want? (b) or (c)?

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 22, 2024

I think we want (b). Only descendants with render methods are good to go.

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 22, 2024

Should be fixed in 2.0.1.

from babel-plugin-react-transform.

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.