Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andywer/use-inline-memo
⚛️ React hook for memoizing values inline anywhere in a component
https://github.com/andywer/use-inline-memo
memoization react react-hooks reactjs
Last synced: 5 days ago
JSON representation
⚛️ React hook for memoizing values inline anywhere in a component
- Host: GitHub
- URL: https://github.com/andywer/use-inline-memo
- Owner: andywer
- Created: 2019-08-12T07:30:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T19:39:56.000Z (5 months ago)
- Last Synced: 2024-10-17T12:38:14.264Z (17 days ago)
- Topics: memoization, react, react-hooks, reactjs
- Language: TypeScript
- Homepage:
- Size: 274 KB
- Stars: 164
- Watchers: 5
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
⚛︎ use-inline-memo
React hook for memoizing values and callbacks anywhere in a component.
Like other hooks, you can call [`React.useMemo()`](https://reactjs.org/docs/hooks-reference.html#usememo) and [`React.useCallback()`](https://reactjs.org/docs/hooks-reference.html#usecallback) only at the top of your component function and not use them conditionally.
Inline memos let us memoize anywhere without the restrictions that apply to the usage of hooks!
```jsx
import { Button, TextField } from "@material-ui/core"
import React from "react"
import useInlineMemo from "use-inline-memo"function NameForm(props) {
const memo = useInlineMemo()
const [newName, setNewName] = React.useState(props.prevName)// Conditional return prevents calling any hook after this line
if (props.disabled) {
return(Disabled)
}return (
setNewName(event.target.value), [])}
value={newName}
/>
props.onSubmit(newName), [newName])}
style={memo.submitStyle({ margin: "16px auto 0" }, [])}
>
Submit
)
}
```## Installation
```
npm install use-inline-memo
```## Usage
Everytime you want to memoize a value, call `memo.X()` with an identifier `X` of your choice. This identifier will be used to map the current call to values memoized in previous component renderings.
Calling `useInlineMemo()` without arguments should work in all ES2015+ runtimes as it requires the ES2015 `Proxy`. If you need to support older browsers like the Internet Explorer, you will have to state the memoization keys up-front:
```jsx
function NameForm(props) {
// Explicit keys to make it work in IE11
const memo = useInlineMemo("nameChange", "submitClick", "submitStyle")
const [newName, setNewName] = React.useState(props.prevName)return (
setNewName(event.target.value), [])}
value={newName}
/>
props.onSubmit(newName), [newName])}
style={memo.submitStyle({ margin: "16px auto 0" }, [])}
>
Submit
)
}
```When not run in production, there is also a check in place to prevent you from accidentally using the same identifier for two different values. Calling `memo.X()` with the same `X` twice during one rendering will lead to an error.
## Use cases
### Event listeners
Inline memoizers are perfect to define simple one-line callbacks in-place in the JSX without sacrificing performance.
```jsx
// Before
function Component() {
const [value, setValue] = React.useState("")
const onUserInput = React.useCallback(
(event: React.SyntheticEvent) => setValue(event.target.value),
[]
)
return (
)
}
``````jsx
// After
function Component() {
const memo = useInlineMemo()
const [value, setValue] = React.useState("")
return (
setValue(event.target.value), [])}
value={value}
/>
)
}
```### `style` props & other objects
Using inline style props is oftentimes an express ticket to unnecessary re-renderings as you will create a new style object on each rendering, even though its content will in many cases never change.
```jsx
// Before
function Component() {
return (
Delete
)
}
``````jsx
// After
function Component() {
const memo = useInlineMemo()
return (
Delete
)
}
```You don't need to memoize every style object of every single DOM element, though. Use it whenever you pass an object to a complex component which is expensive to re-render.
For more background information check out [FAQs: Why memoize objects?](#faqs).
## API
#### `useInlineMemo(): MemoFunction`
Call it once in a component to obtain the `memo` object carrying the memoization functions.
#### `useInlineMemo(...keys: string[]): MemoFunction`
State the memoization keys explicitly if you need to support Internet Explorer where `Proxy` is not available.
#### `memo[id: string](value: T, deps: any[]): T`
Works the same as a call to `React.useMemo()` or `React.useCallback()`, only without the wrapping callback function. That wrapping function is useful to run expensive instantiations only if we actually refresh the value, but for our use case this is rather unlikely, so we provide you with a more convenient API instead.
`id` is used to map different memoization calls between component renderings.
## FAQs
How does that work?
The reason why React hooks cannot be called arbitrarily is that React needs to match the current hook call to previous calls. The only way it can match them is by assuming that the same hooks will always be called in the same order.
So what we do here is to provide a hook `useInlineMemo()` that creates a `Map` to match `memo.X()` calls to the memoized value and the deps array. We can match calls to `memo.X()` between different re-renderings by using `X` as an identifier.
Why is memoization so important?
To ensure good performance you want to re-render as few components as possible if some application state changes. In React we use `React.memo()` for that which judges by comparing the current component props to the props of the previous rendering.
Without memoization we will very often create the same objects, callbacks, ... with the same content over and over again for each rendering, but as they are new instances every time, they will not be recognized as the same values and cause unnecessary re-renderings (see "Why memoize objects?" below).
Why memoize objects?
When `React.memo()` determines whether a component needs to be re-rendered, it tests if the property values are equivalent to the property values of the last rendering. It does though by comparing them for equality by reference, as anything else would take too much time.
Now if the parent component creates a new object and passes it to the component as a property, React will only check if the object is exactly the same object instance as for the last rendering (`newObject === prevObject`). Even if the object has exactly the same properties as before, with the exact same values, it will nevertheless be a new object that just happens to have the same content.
Without memoization `React.memo()` will always re-render the component as we keep passing new object instances – the equality comparison of the old and the new property value will never be true. Memoization makes sure to re-use the actual last object instance, thus skipping re-rendering.
## License
MIT