Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@cision/react-container-query
Advanced tools
True modularity in styling responsive component.
npm i -D react-container-query
I am providing code in this repository to you under an open source license. Because this is my personal repository, the license you receive to my code is from me and not from my employer (Facebook).
<ContainerQuery query={query} initialSize?={{width?, height?}}>
import React, {Component} from 'react';
import {render} from 'react-dom';
import {ContainerQuery} from 'react-container-query';
import classnames from 'classnames';
const query = {
'width-between-400-and-599': {
minWidth: 400,
maxWidth: 599
},
'width-larger-than-600': {
minWidth: 600,
}
};
function MyComponent() {
/**
* `params` in the children function will look like
* {
* 'width-between-400-and-599': true,
* 'width-larger-than-600': false
* }
*
* `ref` indicates the DOM element to measure.
* It will usually be the first top-level DOM element returned by the render function.
*/
return (
<ContainerQuery query={query}>
{(params, ref) => (
<div className={classnames(params)} ref={ref}>the box</div>
)}
</ContainerQuery>
);
};
/**
* This will generate following HTML:
* <div class="width-between-400-and-599"></div>
*/
render(<MyComponent/>, document.getElementById('app'));
props.children
Must be a function to return a single or an array of React elements. The function will be invoked with params
, which is a key-value pair where keys are class names, values are booleans to indicate if that class name's constraints are all satisfied.
props.query
"query" is key-value pairs where keys are the class names that will be applied to container element when all constraints are met. The values are the constraints.
props.initialSize?
(optional)
initialSize
is an object with optional width
or height
property. Because the limitation on how size is computed based on underlying element, in the initial rendering pass, we don't have the size info (because element must be in the DOM have a valid size). At this time initialSize
will be used as the size of the element.
applyContainerQuery(Component, query, initialSize?) -> ReactComponent
import React, {Component} from 'react';
import {render} from 'react-dom';
import {applyContainerQuery} from 'react-container-query';
import classnames from 'classnames';
const query = {
'width-between-400-and-599': {
minWidth: 400,
maxWidth: 599
},
'width-larger-than-600': {
minWidth: 600,
}
};
class Container extends Component {
render() {
/**
* `this.props.containerQuery` will look like
* {
* 'width-between-400-and-599': true,
* 'width-larger-than-600': false
* }
*/
return <div className={classnames(this.props.containerQuery)}>the box</div>;
}
}
const App = applyContainerQuery(Container, query)
/**
* This will generate following HTML:
* <div class="width-between-400-and-599"></div>
*/
render(<App/>, document.getElementById('app'));
This is a very similar to <ContainerQuery/>
, except it's higher order component style. You don't have to use them together.
Modularity is the heart of component based UI. With most JavaScript modularized, CSS failed to catch up. When developing a responsive web page, we use media queries to toggle styles based on the size of the viewport. This creates problems when creating component level styles. The same component will behave differently when it is placed in different locations on a page. It seriously breaks the modularity of a component. We need components to be responsive and independent of viewport sizes.
Container query is a work in process CSS feature. "Container queries allow an author to control styling based on the size of a containing element rather than the size of the user’s viewport." (from Container Query). Container Queries: Once More Unto the Breach is the inspiration of this repo.
With below CSS, .box
will be blue when .container
is wider than 600px, green when width between 400px and 599px, and red for the rest of time.
.box {
background-color: red;
}
.container:media(min-width: 400px) {
.box {
background-color: green;
}
}
.container:media(min-width: 600px) {
.box {
background-color: blue;
}
}
Note: This library does not provide these CSS features.
Checkout CodePen
You can also check out examples directory.
react-container-query is using element-resize-detector in mainstream browsers and ResizeObserver in cutting edge browsers. It's completely event based, so no excessive code runs if no changes on element sizes.
FAQs
Container Query for React Component
We found that @cision/react-container-query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.