Giter VIP home page Giter VIP logo

Comments (6)

danni avatar danni commented on June 15, 2024 1

Nice!

from use-resize-observer.

ZeeCoder avatar ZeeCoder commented on June 15, 2024

I'm not sure I follow, seems like you're calling a reset on a ref in reaction to the measured element's changes in width?
I don't see how that's something the resize observer can be responsible for?
Seems like a very specific logic for your app.

I'd recommend just creating your own hook on top of this one to make it more convenient, if you find it becoming a regular pattern, as this lib is meant to be as low-level as possible.

from use-resize-observer.

danni avatar danni commented on June 15, 2024

The reset is specific, but the general case of a property called effect or onResize would be useful. That runs inside the existing effect in the hook. It would pass width and height and let you do what you will.

It would allow you to create a pattern like this:

const { ref: axisRef } = useResizeObserver({ onResize: width => cursorRef.current && cursorRef.current.setWidth(width) });

I could wrap this if I need it more than once. Although I've been inspired for how I can probably use the property directly with a bit of refactoring.

from use-resize-observer.

ZeeCoder avatar ZeeCoder commented on June 15, 2024

Ah yeah I get what you want now.
Could be done. I just need to make sure not to return width/height in the return object then, as that becomes unnecessary. 🤔

Even better, I think with a callback I can implement a better throttled / debounced solution as well, as the current recommendation triggers a render, whether or not the return values of width / height are actually used or not:
https://github.com/ZeeCoder/use-resize-observer#throttle--debounce

from use-resize-observer.

ZeeCoder avatar ZeeCoder commented on June 15, 2024

Added in v6

from use-resize-observer.

ZeeCoder avatar ZeeCoder commented on June 15, 2024

You might want to check out this demo @danni :
https://codesandbox.io/s/use-resize-observer-throttle-and-debounce-8uvsg

from use-resize-observer.

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.