npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-resizable-grid-layout

v0.3.0

Published

Grid layout for react that passes cell dimensions to children.

Downloads

16

Readme

react-resizable-grid-layout

A number of components (e.g. <canvas/>, <svg/>, d3, fixed-data-tables) used in modern react apps require that their size be specified in pixels. Making a single pixel-size-based component responsive to the page size is straightforward. Simply listen for window-resize events and recalculate the component's position and size. But, when your app uses several of these components on the same page, and you'd like to make them responsive in a natural way, recalculating their location and size becomes more difficult and cumbersome.

The react-grid-layout provides a grid layout, based on css-grid, that provides the grid-cell content with the cell's width and height. With react-grid-layout, when the size of the grid changes, you can pass the new grid-cell size to its pixel-size-based component, and have it rerender based on those new sizes.

Check out the css-grid primer for more details on css-grid, and the react-grid-layout-example repo for an example app.

try it

code sandbox

to use in your project

To include in your project

npm install react-resizable-grid-layout

basic concepts

The css-grid provides a way to define the grid layout through the grid-template-rows and grid-template-columns. Each of these define the grid-lines and grid-tracks for the row or column axes of the layout. The intersection of a row grid-track and a column grid-track is a grid-cell. A contiguous square composed of grid-cells is a grid-item. A grid-area is used for the placement of grid-items using names instead of (row, column) and row and column spanning.

grid-lines are used to name the lines between the rows (and columns) of a grid.

a grid-track is the space between two grid-lines (what you would normally think of as a row (or column), and the grid-lines do not necessarily need to be named).

a grid-cell is the intersection of a row grid-track and a column grid-track. In react-resizable-grid-layout, a <Grid/> represents a css-grid.

a grid-item is a contiguous rectangle of grid-cells. In react-resizable-grid-layout, a <GridItem/> represents a css-grid grid-item.

a grid-area is a named grid-item.

best practices

The <Grid/> calculates the dimensions (width and height) of each <GridItem/> using on the grid-template-columns and grid-template-rows properties (specified with the gridTrackTemplateBuilder). In order to provide absolute (pixel) dimensions, the <Grid/> also needs its own the absolute dimensions. The react-grid-layout (react-resizable-grid-layout in npm) provides a WindowDimensionsProvider which is intended to wrap your entire application. The WindowDimensionsProvider listens for window resize events, and provides the window dimensions to children through the useWindowDimensions hook.

// index.tsx
import { WindowDimensionsProvider } from 'react-resizable-grid-layout/dist/src/WindowDimensionsProvider';

ReactDOM.render(
    <React.StrictMode>
        <WindowDimensionsProvider>
            <App />
        </WindowDimensionsProvider>
    </React.StrictMode>,
    document.getElementById('root')
)

// App.tsx
function App(): JSX.Element {
    // ...
    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            // ...
        >...</Grid>
    )
}

remove margins and padding

The outermost <Grid/>, the one representing the application layout, should use up the entire window. Therefore, it is important to zero-out any margins and padding.

/* index.css */
body {
    margin: 0;
    padding: 0;
    /* optional */
    height: 100vh;
    width: 100vw;
}

If you're having sizing issues, you may also want to set the height to the full viewport height and the width to the full viewport width.

nesting grids

The <Grid/> component can be nested. Typically, the application has an "outer" <Grid/> for the overall application layout. The "outer" <Grid/> may have one or more nested grids representing different views. Just like the "outer" <Grid/>, a nested <Grid/> needs its dimensions for calculating the dimensions of its children <GridItem/>s. So how does a nested <Grid/> get its size? With the useGridCell hook (of course).

// App.tsx
function App(): JSX.Element {
    // ...
    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            // ...
        >
            <GridItem row={1} column={1}><CellContents/></GridItem>
            // ...
            <GridItem row={1} column={3} rowsSpanned={3}>
                <Grid
                    // *** the `useGridCell` hook passes the grid-cell 
                    // dimensions to the caller ***
                    dimensionsSupplier={useGridCell}
                    // ...
                >
                    <GridItem column={1} row={1}><CellContents/></GridItem>
                    // ...
                    <GridItem column={2} row={1}><CellContents/></GridItem>
                </Grid>
            </GridItem>
            // ...
            <GridItem row={3} column={1} columnsSpanned={2}><CellContents/></GridItem>
        </Grid>
    )
}

As long as the caller of the useGridCell hook is a child of a <GridItem/>, the hook will return the dimensions of the <GridItem/> that is the caller's parent.

grid-template builder

The gridTrackTemplateBuilder function provides a fluent interface for defining a grid-template-row and grid-template-column. The gridTrackTemplateBuilder function returns a GridTrackTemplateBuilder object with three functions:

addTrack Adds a track to the grid layout, and optionally names for the grid-line to the left of the grid track. (track: GridTrackSize, lineNames?: GridLineNames) => GridTrackTemplateBuilder Accepts a GridTrackSize, and an optional set of grid-line names.

// example
gridTrackTemplateBuilder()
    .addTrack(withPixels(200), withLineNames('area 51'))
    .addTrack(withFraction(1), withLineNames('area 52'))
    .addTrack(withPercentage(20), withLineNames('area 53'))
    .build()

repeatFor Adds the specified grid-track the specified number of times (times: number, ...track: Array<GridTrack>) => GridTrackTemplateBuilder Accepts the number of times to repeat the specified grid tracks, and a variable argument list of <GridTrack>.

// example
gridTrackTemplateBuilder()
    .repeatFor(2, withGridTrack(withFraction(1), 'last one'))
    .repeatFor(2, withGridTrack(withPixels(1000), 'middle one'))
    .repeatFor(6, withGridTrack(withPercentage(10), 'first one'))
    .build()

build Builds and returns a GridTrackTemplate for the rows or columns (lastLineNames?: GridLineNames) => GridTrackTemplate Accepts optional grid-line names for the last grid-line in the grid (i.e. the one to the right of all the grid-tracks).

helper functions

There are a number of helper functions listed in the examples in this document.

withPixels(pixels: number): GridTrackSize Returns a grid-track size with a fixed number of pixels.

withFraction(fraction: number): GridTrackSize Returns a grid-track whose size fills the available space after all fixed-size and percentage-size track have been allocated.

withPercentage(percentage: number): GridTrackSize Returns a grid-track whose size is a specified fraction of the available space.

Each of these functions returns a GridTrackSize object.

interface GridTrackSize {
    amount?: number
    sizeType: TrackSizeType
    asString: () => string
}

withLineNames(...names: string[]): GridLineNames Returns a GridLineNames object holding the specified names for the grid-line

// example
const names = withLineNames('name1', 'name2', 'name3')

The repeatFor builder function uses the withGridTrack helper function that creates a GridTrack

withGridTrack(gridTrackSize: GridTrackSize, ...names: string[]): GridTrack Accepts a GridTrackSize (use the withPixels, withFraction, or withPercentage helper functions), and a variable list of grid-line names for the grid-line just to the left of the grid-track being defined.

// example
withGridTrack(withFraction(1), 'last one', 'another one', 'an accident')

grid-template-area builder

A grid-area is a named space for placing grid items. The gridTemplateAreasBuilder is used to name the areas in the grid. The gridTemplateAreasBuilder has only two functions.

After defining the grid-areas in the <Grid/>, the <GridItems/> can reference them by name.

// App.tsx
function App(): JSX.Element {
    // ...
    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            gridTemplateAreas={gridTemplateAreasBuilder()
                .addArea('header', gridArea(1, 1, 1, 3))
                .addArea('sidebar', gridArea(2, 1))
                .addArea('main', gridArea(2, 2))
                .addArea('aside', gridArea(2, 3))
                .addArea('footer', gridArea(3, 1, 1, 3))
                .build()
            }
            gridTemplateColumns={gridTrackTemplateBuilder()
                .addTrack(withPixels(150))
                .addTrack(withFraction(1))
                .addTrack(withPixels(100))
                .build()
            }
            gridTemplateRows={gridTrackTemplateBuilder()
                .addTrack(withPixels(65))
                .addTrack(withFraction(1))
                .addTrack(withPixels(40))
                .build()
            }
        >
            <GridItem gridAreaName='header'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='sidebar'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='main'>
                // ...
            </GridItem>
            <GridItem gridAreaName='aside'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='footer'>
                <CellContents/>
            </GridItem>
        </Grid>
    )
}

addArea Adds a named grid-area to the grid (name: string, area: GridArea) => GridTemplateAreasBuilder

// example
gridTemplateAreasBuilder()
  .addArea('header', gridArea(1, 1, 1, 3))
  .addArea('sidebar', gridArea(2, 1))
  .addArea('main', gridArea(2, 2))
  .addArea('aside', gridArea(2, 3))
  .addArea('footer', gridArea(3, 1, 1, 3))
  .build()

build Builds and returns the GridTemplateAreas () => GridTemplateAreas

helper function

The gridArea is the only helper function used by the gridTemplateAreasBuilder.

gridArea Constructs a grid area at the grid's (row, column) that spans the specified number of rows and columns (row: number, column: number, spannedRows?: number, spannedColumns?: number) => GridArea

// grid-area at row = 1, column = 1, and spans 1 row and 1 column
gridArea(1, 1)
// grid-area at row = 1, column = 3, and spans 2 rows and  columns
gridArea(1, 3, 2, 4)

simple grid

As a simple example, the code below shows a 3 by 3 <Grid/> which gets it overall size from the window dimensions, in this case, the useWindowDimensions hook. The useWindowDimensions hook requires your grid to be wrapped in a <WindowDimensionsProvider/>. In this example, the cells (1, 1) and (2, 1) have a fixed with as set in the grid-track-template-builder with the .addTrack(withPixels(200), withLineNames('nav')) call, which translates to [nav] 200px. All the other cells are sized as 1fr. The rowGap and columnGap are set to 5 pixels which is what renders the white borders in this example. The code doesn't specify a gridTemplateRows property, and so the grid calculates the number of rows based on the coordinates of the <GridItem/> children and adds them sized as 1fr.

When placing the grid-cells, you can also specify that they span several rows or columns. In this example, cell (3, 1) is set to span 2 columns, and cell (1, 3) is set to span 3 rows.

function App() {
    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            gridTemplateColumns={gridTrackTemplateBuilder()
                .addTrack(withPixels(200), withLineNames('nav'))
                .repeatFor(2, withGridTrack(withFraction(1), 'last one'))
                .build()
            }
            rowGap={5}
            columnGap={5}
            showGrid={false}
        >
            <GridItem row={1} column={1}>
                <CellContents/>
            </GridItem>
            <GridItem row={1} column={2}>
                <CellContents/>
            </GridItem>
            <GridItem row={1} column={3} rowsSpanned={3}>
                <CellContents/>
            </GridItem>
            <GridItem row={2} column={1}>
                <CellContents/>
            </GridItem>
            <GridItem row={2} column={2}>
                <CellContents/>
            </GridItem>
            <GridItem row={3} column={1} columnsSpanned={2}>
                <CellContents/>
            </GridItem>
        </Grid>
    )
}

function CellContents(): JSX.Element {
    const {width, height, row, column, rowsSpanned, columnsSpanned} = useGridCell()
    return (
        <div style={{height}}>
            <div style={{backgroundColor: 'lightgrey', height: '100%'}}>
                <div>{row}, {column}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>{width} x {height}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>({rowsSpanned} x {columnsSpanned})</div>
                <Canvas width={width/2} height={height/3}/>
            </div>
        </div>
    )
}

interface CanvasProps {
    width: number
    height: number
}

function Canvas(props: CanvasProps): JSX.Element {
    const {width, height} = props;
    const canvasRef = useRef<HTMLCanvasElement>(null)

    useLayoutEffect(
        () => {
            if (canvasRef.current !== null) {
                const context = canvasRef.current.getContext('2d')
                if (context) {
                    context.fillStyle = `rgb(${width % 255}, ${height % 255}, 100)`
                    context.rect(10, 10, width - 10, height - 10)
                    context.fill()
                }
            }
        },
        [width, height]
    )

    return <canvas ref={canvasRef} width={width} height={height}/>
}

The cells (1, 1) and (2, 1) maintain their width at 200px when resized, and the rest of the cells are resized based on the css-grid specs. As the window is resized, the canvas element responds by changing it's size and fill color. The first image shows the window with a small size, and the second image shows the same window resized to a larger size.

simple grid

simple grid

nested grid

The react-grid-layout also supports nested grids. To nest a grid, simply add a <Grid/> as a child of one of the parent-grid's cells. The code below shows that cell (1, 3), which spans 3 rows, now contains a nested grid, which itself is a 4 x 3 grid. Notice that the nested grid uses the useGridCell hook to provide it with its dimensions. For the nested grid, we again use the gridTrackTemplateBuilder, but this time we use the repeatFor function to create 3 columns, all sized as 1fr. In this example, not all the cells are set, and so you see that the grid has empty cells are (3, 1), (1, 3), (2, 3), and (4, 3).

function App() {
    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            gridTemplateColumns={gridTrackTemplateBuilder()
                .addTrack(withPixels(200), withLineNames('nav'))
                .repeatFor(2, withGridTrack(withFraction(1), 'last one'))
                .build()
            }
            rowGap={5}
            columnGap={5}
            showGrid={false}
        >
            <GridItem row={1} column={1}>
                <CellContents/>
            </GridItem>
            <GridItem row={1} column={2}>
                <CellContents/>
            </GridItem>
            <GridItem row={1} column={3} rowsSpanned={3}>
                <Grid
                    dimensionsSupplier={useGridCell}
                    gridTemplateColumns={gridTrackTemplateBuilder()
                        .repeatFor(3, withGridTrack(withFraction(1), 'last one'))
                        .build()}
                    columnGap={1}
                    rowGap={1}
                >
                    <GridItem column={1} row={1}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={1} row={2}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={3} row={3}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={1} row={4}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={2} row={1} rowsSpanned={4}>
                        <CellContents/>
                    </GridItem>
                </Grid>
            </GridItem>
            <GridItem row={2} column={1}>
                <CellContents/>
            </GridItem>
            <GridItem row={2} column={2}>
                <CellContents/>
            </GridItem>
            <GridItem row={3} column={1} columnsSpanned={2}>
                <CellContents/>
            </GridItem>
        </Grid>
    )
}

function CellContents(): JSX.Element {
    const {width, height, row, column, rowsSpanned, columnsSpanned} = useGridCell()
    return (
        <div style={{height}}>
            <div style={{backgroundColor: 'lightgrey', height: '100%'}}>
                <div>{row}, {column}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>{width} x {height}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>({rowsSpanned} x {columnsSpanned})</div>
                <Canvas width={width/2} height={height/3}/>
            </div>
        </div>
    )
}

interface CanvasProps {
    width: number
    height: number
}


function Canvas(props: CanvasProps): JSX.Element {
    const {width, height} = props;
    const canvasRef = useRef<HTMLCanvasElement>(null)

    useLayoutEffect(
        () => {
            if (canvasRef.current !== null) {
                const context = canvasRef.current.getContext('2d')
                if (context) {
                    context.fillStyle = `rgb(${width % 255}, ${height % 255}, 100)`
                    context.rect(10, 10, width - 10, height - 10)
                    context.fill()
                }
            }
        },
        [width, height]
    )

    return <canvas ref={canvasRef} width={width} height={height}/>
}

Now, the (1, 3) cell contains a nested <Grid/>.

simple grid

simple grid

common app layout (grid areas)

A common app layout has:

  • a header or menu bar at the top of the page,
  • a footer at the bottom of the page,
  • a navigation sidebar on the left-hand side of the page, between the header and the footer,
  • possibly an aside panel on the right-hand side of the page,
  • a main content nested snugly in the center.

It would also be nice to name these areas and reference them by name. grid-areas are a basic feature of css-grid which is implemented in the <Grid/> component. The following example code shows how to do this with <Grid/> and also how to control which <GridCells/> are displayed using the <GridItem/>'s isVisible property.

Notice that we have added a gridTemplateAreas property to outer the <Grid/>. Using the gridTemplateAreasBuilder we can add areas to the grid using the addArea(name, area) method. A grid-area has a name associated with an area (the set of cells bounded by 4 grid-lines). The gridArea(row, col, spannedRows, spannedCols) helper function makes it easy to define the area. All we need to do is specify the starting (row, column) and then the number of rows and columns the area spans. In our example, we've added grid-area called header that starts in the first row and column of the grid, spans 1 row, and spans all the columns of the grid. The sidebar starts on the second row of the first column and spans only one row and one column (the default values for row and column spanning).

The next difference to our previous examples, is that now the grid-cells of the outer grid specify their placement using grid-area names rather than their row, column, row-span, and column-span.

This example also shows how to make a grid-cell disappear by using the grid-cell's visibility property and dynamically changing the number of columns in the nested grid.

function App() {

    const [showLast, setShowLast] = useState<boolean>(true)

    function createNestedGridTemplateColumn(showLast: boolean): GridTrackTemplate {
        return gridTrackTemplateBuilder()
            .repeatFor(showLast ? 3 : 2, withGridTrack(withFraction(1), 'last one'))
            .build()
    }

    return (
        <Grid
            dimensionsSupplier={useWindowDimensions}
            gridTemplateColumns={gridTrackTemplateBuilder()
                .addTrack(withPixels(150))
                .addTrack(withFraction(1))
                .addTrack(withPixels(100))
                .build()
            }
            gridTemplateRows={gridTrackTemplateBuilder()
                .addTrack(withPixels(65))
                .addTrack(withFraction(1))
                .addTrack(withPixels(40))
                .build()
            }
            gridTemplateAreas={gridTemplateAreasBuilder()
                .addArea('header', gridArea(1, 1, 1, 3))
                .addArea('sidebar', gridArea(2, 1))
                .addArea('main', gridArea(2, 2))
                .addArea('aside', gridArea(2, 3))
                .addArea('footer', gridArea(3, 1, 1, 3))
                .build()
            }
            rowGap={5}
            columnGap={5}
            showGrid={false}
        >
            <GridItem gridAreaName='header'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='sidebar'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='main'>
                <Grid
                    dimensionsSupplier={useGridCell}
                    gridTemplateColumns={createNestedGridTemplateColumn(showLast)}
                    columnGap={1}
                    rowGap={1}
                >
                    <GridItem column={1} row={1}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={1} row={2}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={3} row={3} isVisible={showLast}>
                        <CellContents showRemoveButton={true} onRemoveButtonClick={() => setShowLast(false)}/>
                    </GridItem>
                    <GridItem column={1} row={4}>
                        <CellContents/>
                    </GridItem>
                    <GridItem column={2} row={1} rowsSpanned={4}>
                        <CellContents/>
                    </GridItem>
                </Grid>
            </GridItem>
            <GridItem gridAreaName='aside'>
                <CellContents/>
            </GridItem>
            <GridItem gridAreaName='footer'>
                <CellContents/>
            </GridItem>
        </Grid>
    )
}

function noop() {
    /* empty */
}

function removeButton(onClick: () => void): JSX.Element {
    return (
        <div style={{display: 'flex', justifyContent: 'space-around'}}>
            <button onClick={onClick}>Remove</button>
        </div>
    )
}

interface CellContentsProps {
    showRemoveButton?: boolean
    onRemoveButtonClick?: () => void
}

function CellContents(props: CellContentsProps): JSX.Element {
    const {showRemoveButton = false, onRemoveButtonClick = noop} = props
    const {width, height, row, column, rowsSpanned, columnsSpanned} = useGridCell()
    if (width > 130) {
        return (
            <div style={{height}}>
                <div style={{backgroundColor: 'lightgrey', height: '100%'}}>
                    <div>
                        <span>{row}, {column}</span>
                        <span style={{fontSize: '0.7em', color: 'grey', marginLeft: 7}}>{width} x {height}</span>
                        <span style={{
                            fontSize: '0.7em',
                            color: 'grey',
                            marginLeft: 7
                        }}>({rowsSpanned} x {columnsSpanned})</span>
                    </div>
                    <Canvas width={width - 20} height={height / 3}/>
                    {showRemoveButton ? removeButton(onRemoveButtonClick) : <span/>}
                </div>
            </div>
        )
    }
    return (
        <div style={{height}}>
            <div style={{backgroundColor: 'lightgrey', height: '100%'}}>
                <div>{row}, {column}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>{width} x {height}</div>
                <div style={{fontSize: '0.7em', color: 'grey'}}>({rowsSpanned} x {columnsSpanned})</div>
                <Canvas width={width / 2} height={height / 3}/>
                {showRemoveButton ? removeButton(onRemoveButtonClick) : <span/>}
            </div>
        </div>
    )
}

interface CanvasProps {
    width: number
    height: number
}


function Canvas(props: CanvasProps): JSX.Element {
    const {width, height} = props;
    const canvasRef = useRef<HTMLCanvasElement>(null)

    useLayoutEffect(
        () => {
            if (canvasRef.current !== null) {
                const context = canvasRef.current.getContext('2d')
                if (context) {
                    context.fillStyle = `rgb(${width % 255}, ${height % 255}, 100)`
                    context.rect(10, 10, width - 10, height - 10)
                    context.fill()
                }
            }
        },
        [width, height]
    )

    return <canvas ref={canvasRef} width={width} height={height}/>
}

grid-areas