Giter VIP home page Giter VIP logo

uhooks's Issues

Implement `dropEffect` and `hasEffect` 3rd parts helpers.

Whenever effects return a cleanup callback, it shuold be somehow possible to invoke that cleanup without re-running the effect.

This is specially useful to make DOM libraries able to drop effects whenever nodes get disconnected so that, without these helpers, it's basically impossible to replace dom-augmentor.

state update when onClick

do you have idea why state value didnt update?
but UI updates

import { hooked, useState } from 'uhooks';
import { render, html } from 'lit-html';

const useReactive = (objects) => {
  const values = {};
  const keys = Object.keys(objects);
  for (const key of keys) {
    const [value, set] = useState(objects[key]);
    Object.defineProperty(values, key, {
      enumerable: true,
      get: () => value,
      set,
    });
  }
  return values;
};

const callback = (initial) => {
  const state = useReactive(initial);

  const onClick = () => {
    state.name = '1212';
    /// this doesnt update the new value
    /// but the UI updates
    console.log(state.name);
  };

  render(
    html`<button @click=${onClick}>Click Me ${state.name}</button>`,
    document.getElementById('app')
  );
};

const element = hooked(callback);

element({ name: 'Joe' });

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.