Giter VIP home page Giter VIP logo

uele's People

Contributors

kethan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

uele's Issues

Cannot trigger re-rendering

Firstly thanks for the minimal JSX library ๐Ÿ™๐Ÿป.

The Problem:

Second, I got a problem with re-rendering ๐Ÿ˜….
There is no re-rendering when reactive variable(signal / observable) is change.

In my example; show loader elements firstly, after make a request to API. When request resolved(failed or success) hiding the loader and show request's response data.

The problem is when reactive variable changes, its not trigger the re-rendering. My logic is constructed over ternary conditional rendering like React.

<>
  {loading ? (
    <>
      <img width={32} height={32} src="assets/loader.svg" alt="Loader" />
      <br />
      <>Loading Todos...</>
    </>
  ) : (
    map(
      todos,
      (todo) => (
        <div key={todo.id} class="todo-item">
          <input
            class="todo-checkbox"
            type="checkbox"
            name="completed"
            value={todo.completed}
          />
          <span class="todo-title">{todo.title}</span>
        </div>
      ),
      <>No Todos Found :(</>
    )
  )}
</>

Package Versions:

"uele": "0.6.3",
"ulive": "0.5.1"

Minimal Reproduction:

There is e minimal reproduction:
https://stackblitz.com/edit/vitejs-vite-qfwv3j?file=src%2FTodos.jsx

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.