Coder Social home page Coder Social logo

Deprecate $$ about helix HOT 7 CLOSED

lilactown avatar lilactown commented on July 18, 2024
Deprecate $$

from helix.

Comments (7)

darwin avatar darwin commented on July 18, 2024

I was able to convert all my code to use $ instead of $$ but I had to alter $ macro to be more flexible in dynamic case.

See:
https://github.com/binaryage/cljs-react-three-fiber/blob/c79db0863ebba83ec18a2f6fcfaef86ffabf5215/examples/src/app/react_three_fiber/examples/lib/ui.clj#L25

This strategy is following:

  1. try to determine if props was given as static map
  2. if not, use dynamic code to test props argument during runtime:
    2a) if it is a cljs map use it as props (and translate them using dynamic code path)
    2b) else treat it as first child and pass it properly into create element

from helix.

darwin avatar darwin commented on July 18, 2024

btw. My implementation of $ is just a quick and dirty replacement of helix $. I do transaltion to native props always, so there is missing original code doing ^:native heuristics. Also maybe there is a potential double evaluation of type or args. This should be written more carefully.

from helix.

lilactown avatar lilactown commented on July 18, 2024

@darwin you should be able to avoid doing dynamic testing at runtime by requiring dynamic props be passed to the & key always. This is the intended reason for introducing the & spread-props syntax.

($ :bufferGeometry {& geometry-props})

https://github.com/Lokeh/helix/blob/master/docs/creating-elements.md#dynamic-props

from helix.

darwin avatar darwin commented on July 18, 2024

I'm aware of it. Static code path is preferrable. I just didn't rewrite my old code yet. This dynamic testing is there for correctness. If someone writes (merge props other-props) insterad of literal map, it must work (maybe a compile-time warning would be nice).

from helix.

darwin avatar darwin commented on July 18, 2024

At least I believe this merge example cannot be determined statically. The expression result must be tested during runtime to figure out if it is a props map or a first child.

from helix.

lilactown avatar lilactown commented on July 18, 2024

I agree that it's not statically analyzable. I disagree that it must work. The $ macro is meant to have specific semantics to prevent having to branch at runtime.

I think adding a warning when goog.DEBUG is true would help detect errors and guide users to correct usage.

from helix.

lilactown avatar lilactown commented on July 18, 2024

Closed with 3a6cc3c and ddacbc8

from helix.

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.