Giter Site home page Giter Site logo

Comments (5)

gajus avatar gajus commented on May 2, 2024

This is how I would implement isComponentClass:

import _ from 'lodash';

let isComponentClass,
    isComponentIdentifier,
    isReactComponentMemberExpression,
    isReactIdentifier,
    isRenderMethod;

/**
 * @param {Object} node
 * @return {Boolean}
 */
isRenderMethod = (node) => {
    return _.every([
        node.kind === 'method',
        node.key.name === 'render'
    ]);
};

/**
 * @param {Object} node
 * @return {Boolean}
 */
isReactIdentifier = (node) => {
    return _.every([
        node.type === 'Identifier',
        node.name === 'React'
    ]);
};

/**
 * @param {Object} node
 * @return {Boolean}
 */
isComponentIdentifier = (node) => {
    return _.every([
        node.type === 'Identifier',
        node.name === 'Component'
    ]);
}

/**
 * Checks if class extends React.Component.
 *
 * @param {Object} node
 * @return {Boolean}
 */
isReactComponentMemberExpression = (node) => {
    return _.every([
        node.type === 'MemberExpression',
        isReactIdentifier(node.object),
        isComponentIdentifier(node.property)
    ]);
};

/**
 * Checks if class has render method and class extends React.Component.
 * 
 * @param {Object} node
 * @return {Boolean}
 */
isComponentClass = (node) => {
    let hasRenderMethod,
        extendsReactComponent;

    hasRenderMethod = Boolean(_.find(node.body.body, isRenderMethod));
    extendsReactComponent = isReactComponentMemberExpression(node.superClass);

    return _.every([
        hasRenderMethod,
        extendsReactComponent
    ]);
};

However, this assumes that class extends React.Component. I know that some people use Component alias (which I think is too generic for checking). However, it is easy to extend this implementation to detect if class extends React.Component or class extends Component.

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 2, 2024

Check if class extends Component.
Check if class extends React.Component.

React classes don't have to extend Component. You can check: it works just fine without it. Moreover, people might have custom base classes. (Yes it's a bad idea, but people do that occasionally.)

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 2, 2024

On the other hand, people often add extends Component to appease Flow, so we may as well demand the same. This will also discourage people from inheritance which I guess is a net win. Finally, we can make this configurable like #3 describes, with baseClasses: ['React.Component', 'Component'] being default.

from babel-plugin-react-transform.

gajus avatar gajus commented on May 2, 2024

Sounds like a good idea. I am still getting my head around how to write Babel plugins. I am in the midst of writing one myself babel-react-plugin-css-modules, which is an experiment to automate react-css-modules even further.

I am happy to own this issue and send a PR in a window of a few days.

from babel-plugin-react-transform.

gaearon avatar gaearon commented on May 2, 2024

Let's discuss in #8.

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.