Giter VIP home page Giter VIP logo

Comments (12)

developit avatar developit commented on July 3, 2024

@kruczy excellent catch, I don't know how I missed this! It'll need something more complicated than deepHook since there could be grandchild components. I'll get a fix out right away.

from preact.

developit avatar developit commented on July 3, 2024

@kruczy Sorry, I must have been tired earlier - you were exactly right, it just needed to be a deepHook().
I just released 3.3.0, which includes this fix (JSFiddle example).

from preact.

kruczy avatar kruczy commented on July 3, 2024

Hey @developit, been testing this today and it seems deepHook is not enough as it only calls one level down, components that are below that do not get the hook fired. maybe deepHook should be walking the tree all the way down?

from preact.

developit avatar developit commented on July 3, 2024

@kruczy yeah deepHook only handles high-order components. You're seeing grandchild components not unmount?

Component
    div
        Component   - this one?

from preact.

kruczy avatar kruczy commented on July 3, 2024

From my observation that would work
but if you create a deeper hierarchy it does not

in my case the tree is 6 components deep I unmount the whole thing at once but unmount hook seems to be called only on the first 2 levels

from preact.

kruczy avatar kruczy commented on July 3, 2024

I modified your example to show the problem http://jsfiddle.net/orgkorjc/10/

Notice that C only logs on the first iteration and then does not log mounts or unmounts

from preact.

developit avatar developit commented on July 3, 2024

Perfect, that is immensely useful. Will get a fix out for this ASAP.

from preact.

developit avatar developit commented on July 3, 2024

@kruczy This was possibly the biggest rabbit hole I've encountered since adding support for High-Order components to Preact, but I think I've got it solved.

The solution actually necessitated a slight change in how Preact mounts and re-mounts Components, but I think it's a better long-term approach: components will now own their rendered content. Unmounting a component now retains the most recently rendered snapshot (this.base) in-tact with the component when reclaimed by the recycler. Previously, unmounting a component would retain the old DOM within the render parent, and diff it against whatever replaced the component (including if that happened to be null, which would be a recursive recycling op - not very efficient!

With the new semantics for component mount/unmount, the second time you mount a component, it simply diffs against the most recent snapshot. I think this will help with use-cases like routers, where the DOM rendered by different child components of a router is expected to change by somewhere near 100%. It will incur a small overhead when swapping two components that render nearly identical DOM structures, but this can be avoided by serving that use-case using Pure Functions, which always diff against the previous render, even if the component/function is a different reference.

Apologies for the long-winded and perhaps slightly unrelated comment - just useful for my own brain and to document this somewhere! Expect a release soon that fixes your issue.

from preact.

kruczy avatar kruczy commented on July 3, 2024

Thanks for support and explanation, always great to have a responsive maintainer 👍

from preact.

developit avatar developit commented on July 3, 2024

@kruczy This is fixed in 4.0.0 (currently released under a beta tag, npm i preact@beta).

from preact.

kruczy avatar kruczy commented on July 3, 2024

thanks, this is fixed: http://jsfiddle.net/z43dp0ok/1/

from preact.

developit avatar developit commented on July 3, 2024

Thanks again for that JSFiddle demo - it's so much easier to diagnose issues with minimal examples. 👍

from preact.

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.