react-scaled-component
v1.2.1
Published
A simple React component to help create responsive websites
Downloads
4
Maintainers
Readme
React Scaled Component (react-scaled-component
)
Most time, you want to create a custom component for when responsive website is needed. However, other times you simply need it to scale down when the "breaking point" is reached horizontally. This library does just that.
Prerequisites
React: ^16.7.0-alpha.0
This is due to us using the Hooks API
Install
yarn add react-scaled-component
Usage
import ScaledComponent from 'react-scaled-component'
function MyComponent() {
return (
<ScaledComponent>
...
</ScaledComponent>
)
}
Scaling react component instead of DOM elements
If you're passing through a react component instead of DOM element into ScaledComponent, it might not work. Be sure to pass the ref of the container up the tree so we can get it.
Otherwise, you can also pass the attribute renderChild
which should be a function that renders the child with appropriate refs.
Example with material-ui:
import ScaledComponent from 'react-scaled-component'
import { RootRef, Table } from '@material-ui/core'
function MyComponent() {
return (
<ScaledComponent renderChild={(ref, child) => (
<RootRef rootRef={ref} children={child} />
)}>
<Table>
...
</Table>
</ScaledComponent>
)
}
How it works
There aren't really a good way to get the size of a container the moment it stops scaling horizontally. We need to know this to calculate how much to scale.
To achieve this, this library simply render the children twice in order to calculate it.
If there's a better way to approach this, please create a PR or open an issue, thanks!
Possible improvements
This is a really fast and simple component so there are plenty of things to improve. Some of them:
- Guard against multiple children (not sure if this is even an issue)
- Tests
- We use
@rehooks/component-size
which might require a polyfill - Vertical scale?