Code Monkey home page Code Monkey logo

Comments (21)

jayphelps avatar jayphelps commented on May 18, 2024 9

@mattinsler If you're manually specifying your plugins, the order sometimes matter. Make sure transform-decorators-legacy comes before transform-class-properties.

WRONG!!

"plugins": [
  "transform-class-properties",
  "transform-decorators-legacy"
]

RIGHT

"plugins": [
  "transform-decorators-legacy",
  "transform-class-properties"
]

from babel-plugin-transform-decorators-legacy.

loganfsmyth avatar loganfsmyth commented on May 18, 2024 9

Okay! Given the results in tc39/proposal-class-public-fields#40, I'll change this to work better. I won't be able to get to it right away though.

from babel-plugin-transform-decorators-legacy.

paul-sachs avatar paul-sachs commented on May 18, 2024 6

Any word on this getting resolved? It looks like babel 7 will be using this plugin by default. Would be nice for this behaviour to be fixed.

from babel-plugin-transform-decorators-legacy.

jeffmo avatar jeffmo commented on May 18, 2024 3

The class properties spec states (Step 24.ii.a) that the initializer scope inherits from the class-body scope; And the ES6 spec states (Step 4) that the class body scope does have access to the class binding (no TDZ). So indeed, the code above should work as expected.

I am planning to write out proper spec text for the next TC39 meeting at the end of July, so hopefully this will reduce confusion around some of these things.

from babel-plugin-transform-decorators-legacy.

loganfsmyth avatar loganfsmyth commented on May 18, 2024 1

@jeffmo Would you expect the above code sample to work, or is this actually my plugin doing this properly and Babel 6 doing it wrong?

https://github.com/jeffmo/es-class-fields-and-static-properties defines properties as being evaluated before classScopeEnvRec.InitializeBinding(className, F) on step 26.i so it seems like the Foo binding in this code sample would still be uninitialized when Foo.SECOND was accessed, leading to a TDZ error in a real environment and an undefined value in this case.

from babel-plugin-transform-decorators-legacy.

uMaxmaxmaximus avatar uMaxmaxmaximus commented on May 18, 2024 1

You'll Fix a BUG or I fixed a it for you?

from babel-plugin-transform-decorators-legacy.

jayphelps avatar jayphelps commented on May 18, 2024

@uMaxmaxmaximus did you make sure the order of your plugins is correct, that transform-decorators-legacy comes before transform-class-properties? #17 (comment)

from babel-plugin-transform-decorators-legacy.

uMaxmaxmaximus avatar uMaxmaxmaximus commented on May 18, 2024

yes, babel cmd --plugins transform-decorators-legacy,transform-class-properties

image

image

Generated code

"use strict";

var _class, _temp;

function _classCallCheck(instance, Constructor) {
    if (!(instance instanceof Constructor)) {
        throw new TypeError("Cannot call a class as a function");
    }
}

var User = (_temp = _class = function User() {
    _classCallCheck(this, User);
}, _class.dd = {
    lol: User
}, _temp);


console.log(User.dd.lol);

//# sourceMappingURL=user.js.map

do like this:

var User = (function () {

    function User() {
        // constructor code
    }

    // static decorator magic
    _addDecorator(User, 'dd', decoratorOptions, /* original value */ {
        lol: User // in scope
    })

    // instance decorator magic
    _addDecorator(User.prototype, 'func', decoratorOptions, /* original value */ function(){

    })

})

from babel-plugin-transform-decorators-legacy.

loganfsmyth avatar loganfsmyth commented on May 18, 2024

As I mentioned above, this is currently the specced behavior for this because User has not finished being defined yet when you are attempting to access it. In a real ES6 environment, you'd be getting a temporal deadzone error, but in Babel-transpiled code, you get undefined.

I agree that it's potentially confusing, but if you want this changed, that should be discussed in the specification repo here: https://github.com/jeffmo/es-class-fields-and-static-properties I have absolutely no control over this. @jeffmo may be able to clarify, but from that repo, it actually seems like Babel 6 sans-decorators is actually what is incorrect here, not this plugin.

from babel-plugin-transform-decorators-legacy.

loganfsmyth avatar loganfsmyth commented on May 18, 2024

I filed a bug to get clarification: tc39/proposal-class-public-fields#40

from babel-plugin-transform-decorators-legacy.

uMaxmaxmaximus avatar uMaxmaxmaximus commented on May 18, 2024

It seems to me improper specification and should not follow it. And I think that in this way many believe. but where to go. I have to write a decorator such as:

@schema({
 foo: User
})
class User {}

but this not works

works just ugly way

class User {}
User.schema = {lol: User}

But what if I want to create a class in expression?

return (function(){
  class User {}
  User.schema = {lol: User}
  return User
})()

It is obvious that this is a bug, and the specification is not true

from babel-plugin-transform-decorators-legacy.

uMaxmaxmaximus avatar uMaxmaxmaximus commented on May 18, 2024

@loganfsmyth I won't be able to get to it right away though.

Need some help from Russian guys)?

from babel-plugin-transform-decorators-legacy.

langri-sha avatar langri-sha commented on May 18, 2024

Static properties seem to be working fine (had an additional glance at the output) when the order of plugins is correct. Is this still an issue or can we safely use this plugin if we're using static class properties?

from babel-plugin-transform-decorators-legacy.

jsg2021 avatar jsg2021 commented on May 18, 2024

the example given seems fixed in my code, but if you try to reference your decorated class after it's declaration, you get an error:

function deco () {}

export default @deco class Foo {}

console.log(Foo); // <-- error Foo is not defined!

from babel-plugin-transform-decorators-legacy.

jsg2021 avatar jsg2021 commented on May 18, 2024

if you don't export and define at the same line, it's fine :/

from babel-plugin-transform-decorators-legacy.

mcav avatar mcav commented on May 18, 2024

I think this is still a problem even when the order of plugins is correct, at least in some configurations. I don't have a testcase I can share yet, but if I find out the cause/solution I'll follow up here.

from babel-plugin-transform-decorators-legacy.

louisscruz avatar louisscruz commented on May 18, 2024

Just so it's known: I had an application that was ejected from create-react-app and it appears that babel-jest's createTransformer loaded things in the opposite order for some reason. I had to do the following:

const babelJest = require('babel-jest');

module.exports = babelJest.createTransformer({
  plugins: [
    'transform-class-properties',
    'transform-decorators-legacy',
    require.resolve('babel-plugin-inline-react-svg')
  ],
  presets: [require.resolve('babel-preset-react-app')],
  babelrc: false
});

Also, I had to do the backwards ordering in my package.json for some reason.

from babel-plugin-transform-decorators-legacy.

mcav avatar mcav commented on May 18, 2024

(Actually I misspoke. Removing flow-strip-types fixed an unrelated issue, but not this one.)

from babel-plugin-transform-decorators-legacy.

madCode avatar madCode commented on May 18, 2024

I'm also having issues with this when the plugins are in the correct order. My .babelrc looks like this:

{
  "presets": ["es2015", "react", "stage-3"],
  "plugins": ["transform-decorators-legacy", "transform-class-properties", "transform-flow-strip-types"]
}

from babel-plugin-transform-decorators-legacy.

javadbat avatar javadbat commented on May 18, 2024

is there any solution?

from babel-plugin-transform-decorators-legacy.

madCode avatar madCode commented on May 18, 2024

@javadbat upgrading jest to jest 23 and then setting up babel 7 resolved this specific issue. (Though I'm dealing with others right now, haha)

from babel-plugin-transform-decorators-legacy.

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.