Git Product home page Git Product logo

Comments (6)

mindplay-dk avatar mindplay-dk commented on May 14, 2024 1

Looks good now, thanks!

from fre.

yisar avatar yisar commented on May 14, 2024

This seems to be a bug. The code here is not very clear. Maybe I need to refactor it.

from fre.

yisar avatar yisar commented on May 14, 2024

@mindplay-dk I refactored useMemo just now, and now it might work.

from fre.

mindplay-dk avatar mindplay-dk commented on May 14, 2024

Same problem as before, but it's not useMemo causing it anymore. 🤔

image

It could have something to do with the combination of useState and useEffect maybe?

I've been trying to write a test - it should be simple really:

test('useEffect with change detection', async () => {
  let updates = 0

  let effect = () => updates += 1

  const Component = ({ value }) => {
    useEffect(effect, [value])

    return <div>foo</div>
  }

  await testUpdates([
    { content: <Component value={1}/>, test: () => expect(updates).toBe(1) }, // mounted: should trigger effect
    { content: <Component value={2}/>, test: () => expect(updates).toBe(2) }, // updated: should trigger effect
    { content: <Component value={2}/>, test: () => expect(updates).toBe(2) }, // no change: should NOT trigger effect
  ])
})

For some reason, the test just runs forever, and jest doesn't time out like it should... I have no idea how to fix this. 😐

from fre.

yisar avatar yisar commented on May 14, 2024

I seem to know what you mean. Maybe my understanding of useEffect is biased.
Can you send me the url of sandbox? I need to debug the use case. Thank you very much.

from fre.

mindplay-dk avatar mindplay-dk commented on May 14, 2024

https://codesandbox.io/s/fre-demo-uxuic

from fre.

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.