Giter VIP home page Giter VIP logo

Comments (3)

im-bob-loucans avatar im-bob-loucans commented on August 18, 2024

If its required request that the documentation be updated to reflect this constraint, Thanks.

from lightning.

g-zachar avatar g-zachar commented on August 18, 2024

Hi @im-bob-loucans,

while Lightning does enforce some of its patterns, as long as you follow JS semantics you should be fine.

So for example:

{color: 0xff000000}

would be semantically equivalent to:

const COLOR_BLACK = 0xff000000;
...
{color: COLOR_BLACK}

Coming back to states, they mainly depend on class expressions and context resolution of static methods:

static _states() {
    return [
        class MyFirstState extends this {
            _handleEnter() {
                // overwrites root function when we are on this state
            }
        }
    ]
}

which could also be represented like that:

const stateFactory = function(cls) {
    return class MyFirstState extends cls {
        _handleEnter() {
            // overwrites root function when we are on this state
        }
    }
}

static _states() {
  return [stateFactory(this)]
}

So, while following examples is probably safest way to avoid potential issues e.g. with context resolution, it is by no means enforced.

(More extensive example: https://gist.github.com/g-zachar/580094a60c0e27a0396e0745fae6cd2c)

Let me know if this answers your question.

from lightning.

im-bob-loucans avatar im-bob-loucans commented on August 18, 2024

Thanks for the info. I followed the factory pattern you provided.

from lightning.

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.