Giter VIP home page Giter VIP logo

Comments (4)

sirenkovladd avatar sirenkovladd commented on July 30, 2024 1

For State-derived child nodes, if the binding function returns null or undefined, the DOM node will removed. Removed DOM node will never be brought back, even when the binding function would return a non-null/undefined value based on future values of the dependencies.

https://vanjs.org/tutorial#removing-a-dom-node

from van.

sirenkovladd avatar sirenkovladd commented on July 30, 2024 1

Proposed solutions:

const {button, p, div} = van.tags

const Hello1 = () => {
  const flag = van.state(false);
  
  return [
    button({ onclick: e => flag.val = !flag.val }, "Click me"),
    () => flag.val ? '' : p("1919810")
  ]
}

const Hello2 = () => {
  const flag = van.state(false);
  
  return () => div(
    button({ onclick: e => flag.val = !flag.val }, "Click me"),
    flag.val ? null : p("1919810")
  )
}

van.add(document.body, Hello1(), Hello2())

Better Hello1

from van.

swwind avatar swwind commented on July 30, 2024

https://vanjs.org/tutorial#removing-a-dom-node

I see. This feature just sounds weird, seems like the code behaviors like that, and we explain it as a feature! (like BUD in minecraft if you know)

Hello1, Hello2

This seems better to match the design of State-derived child nodes in vanjs. However, I think user will be much happy if we can just support these features but not avoid them.

Anyway, I'll make some changes to adopt my own ideas. This project is amazing, it would be better if not keen on reducing code size.

from van.

Tao-VanJS avatar Tao-VanJS commented on July 30, 2024

Hi @swwind,

Thanks for your feedback!

Using null or undefined to instruct the permanent removal of a DOM node is an intentional design choice. Alternatively, we could introduce a special remove symbol to instruct the removal. We chose not to introduce an additional symbol since it's not necessary (Occam's razor). Additionally, if an empty string can be used to temporarily remove a DOM node (which can be brought back some time later), it will be redundant for null or undefined to mean the same thing.

Hope it explains well :-)

from van.

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.