Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
react-grid-system
Advanced tools
A powerful Bootstrap-like responsive grid system for React.
# Install react peer dependency
npm install react@16
# Install react grid system
npm install react-grid-system --save
react-grid-system
provides a responsive grid similar to Bootstrap (see: https://getbootstrap.com/docs/4.1/layout/grid/). However, react-grid-system
is purely React, even no CSS or class names are used. Moreover, it adds various powerful features, such as setting breakpoints and gutter widths through React's context.
Three components are provided for creating responsive grids: Container
, Row
, and Col
.
An example on how to use these:
import { Container, Row, Col } from 'react-grid-system';
<Container>
<Row>
<Col sm={4}>
One of three columns
</Col>
<Col sm={4}>
One of three columns
</Col>
<Col sm={4}>
One of three columns
</Col>
</Row>
</Container>
For all features of these components, please have a look at the API documentation: https://sealninja.github.io/react-grid-system/
Next to the grid, two components are provided for showing or hiding content: Visible
and Hidden
.
The main difference between these two components and the similar CSS classes provided by Bootstrap is that these two components do not render the content at all when it should be hidden, instead of just hiding it with CSS.
Some examples on how to use these components:
import { Visible } from 'react-grid-system';
<p>
<span>Your current screen class is </span>
<Visible xs><strong>xs</strong></Visible>
<Visible sm><strong>sm</strong></Visible>
<Visible md><strong>md</strong></Visible>
<Visible lg><strong>lg</strong></Visible>
<Visible xl><strong>xl</strong></Visible>
<span>.</span>
</p>
import { Visible, Hidden } from 'react-grid-system';
<Visible xs sm>
<p>Paragraph visible on extra small and small.</p>
</Visible>
<Hidden xs sm>
<p>Paragraph hidden on extra small and small.</p>
</Hidden>
<Visible md lg>
<p>Paragraph visible on medium and large.</p>
</Visible>
<Hidden md lg>
<p>Paragraph hidden on medium and large.</p>
</Hidden>
Next to that, the ScreenClassRender
component is provided, for rendering a component differently based on the screen class. An example on how to use this:
import { ScreenClassRender } from 'react-grid-system';
<ScreenClassRender render={screenClass => (
<p style={{ fontSize: ['lg', 'xl'].includes(screenClass) ? '2rem' : '1rem' }} >
Screen class: {screenClass}
</p>
)} />
Alternatively, the useScreenClass
hook can be used for rendering a component differently based on the screen class. An example on how to use this:
import React from 'react';
import { useScreenClass } from 'react-grid-system';
function Example() {
const screenClass = useScreenClass();
return (
<p style={{ fontSize: ['lg', 'xl'].includes(screenClass) ? '2rem' : '1rem' }} >
Screen class: {screenClass}
</p>
);
}
The following settings can be configured, to alter the responsive behavior of the grid components:
Setting | Default Value | Description |
---|---|---|
breakpoints | [576, 768, 992, 1200] | The breakpoints (minimum width) of devices in screen class sm , md , lg , and xl . The default values are based on the Bootstrap 4 breakpoints. |
containerWidths | [540, 750, 960, 1140] | The container widths in pixels of devices in screen class sm , md , lg , and xl . The default values are based on the Bootstrap 4 container widths. |
gutterWidth | 30 | The gutter width in pixels. A gutter width of 30 means 15px on each side of a column. The default value is based on the Bootstrap 4 gutter width. |
gridColumns | 12 | The number of colums in the grid . |
defaultScreenClass | xl | The screen class used when the view port cannot be determined using window . This is useful for server-side rendering (SSR) based on the user agent. See also the example application below. |
These settings can be configured in the following way:
import { setConfiguration } from 'react-grid-system';
setConfiguration({ defaultScreenClass: 'sm', gridColumns: 20 });
An example on how to use them can be found in the Example application with SSR below.
Internally, every component that requires the current screenClass
(which is a human-readable string version of the window.innerWidth
relating to the user's breakpoints) subscribes to a ScreenClassProvider
. The provider utilizes the React Context API to send down the current screenClass
as it updates. By default, each instance of every component subscribes to a separate provider, creating resize
listeners for each. This can cut down renders during a resize event from ~300 to 4 (one for each breakpoint) making the grid much more performant.
This new API is entirely opt-in and current implementations will continue to work. However, for a signficiant performance increase, you will need to add the ScreenClassProvider
to your application, typically at the highest level in the React node tree (i.e, App.js).
import React from 'react';
import { ScreenClassProvider } from 'react-grid-system';
export default function App() {
return (
<ScreenClassProvider>
<Header />
<Page />
<Footer />
</ScreenClassProvider>
);
}
Internally, the ScreenClassProvider
attaches a resize
listener and then updates state.screenClass
exclusively when a new breakpoint is hit. The state.screenClass
value is then attached to ScreenClassContext.Provider
. ScreenClass-dependent components are wrapped with ScreenClassResolver
which checks to see if there is a valid provider above it and provides one if there is not.
The performance benefit comes from you adding a ScreenClassProvider
to your application which allows react-grid-system
components to subscribe to one source of truth for the ScreenClass.
Extensive documentation of all components can be found at the GitHub pages: https://sealninja.github.io/react-grid-system/
An example application with server-side rendering using features of react-grid-system
can be found at https://github.com/sealninja/react-ssr-example.
MIT
FAQs
A powerful Bootstrap-like responsive grid system for React.
The npm package react-grid-system receives a total of 25,405 weekly downloads. As such, react-grid-system popularity was classified as popular.
We found that react-grid-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.