Coder Social home page Coder Social logo

Hacky fixing overlaps about react-stack-grid HOT 5 OPEN

wadackel avatar wadackel commented on May 26, 2024
Hacky fixing overlaps

from react-stack-grid.

Comments (5)

berkayk avatar berkayk commented on May 26, 2024

I am not using hooks, is there any way that I can use this hack? I am currently using setState to set children to render but initial layout is overlapping. If I updateLayout 1 seconds later using setTimeout, it works.

from react-stack-grid.

dimitar-nikovski avatar dimitar-nikovski commented on May 26, 2024

@berkayk if you are using setState this means and async update is scheduled, so your previous render doesn't have the children? It depends on where you are calling setState, I would recommend putting the data which the grid depends on into props either in its parent component or extract it into a thin SFC with the hook above, which contains only that and other props which go to StackGrid

from react-stack-grid.

carlmagumpara avatar carlmagumpara commented on May 26, 2024

Im using this in children component and it works smoothly

https://github.com/maslianok/react-resize-detector

<StackGrid
  gridRef={grid => this.grid = grid} 
  columnWidth={width <= 768 ? '100%' : '33.33%'}
  gutterWidth={15}
  gutterHeight={15}
  monitorImagesLoaded={true}>         
  <ReactResizeDetector 
    handleWidth  
    handleHeight 
    onResize={() => {
      if (this.grid) {
        this.grid.updateLayout();
      }
    }}>
     <div>
        <img />
     </div>
  </ReactResizeDetector>
</StackGrid>

from react-stack-grid.

kaipradel avatar kaipradel commented on May 26, 2024

Instead of the requestanimationframe hack, you can use useRef to store a class variable.

const firstUpdate = useRef(true);
 useEffect(() => {
        if (firstUpdate.current) {
            firstUpdate.current = false;
            return;
        }
        if (grid.current) {
            grid.current.updateLayout();
        }
       
    }, [element.width, element.stack.sizes]);

from react-stack-grid.

lukesiedle avatar lukesiedle commented on May 26, 2024

That's very helpful. I tweaked the solution slightly to trigger grid.current.updateLayout each time an image's onLoad event was triggered, ensuring that delayed load times doesn't affect it. E.g.

  useEffect(() => {
    if( grid.current ){
      grid.current.updateLayout();
    }
  }, [imageLoadCounter])

from react-stack-grid.

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.