A component that maintains component state and avoids repeated re-rendering.
- Not based on React Router, so you can use it wherever you need to cache it.
- You can easily use to wrap your components to keep them alive.
- Because it is not controlled by
display: none | block
, you can use animation. - You will be able to use the latest React Hooks.
- Ability to manually control whether your components need to stay active.
React Keep Alive requires React 16.3 or later, but if you use React Hooks, you must be React 16.8 or higher.
To use React Keep Alive with your React app:
npm install --save react-keep-alive
React Keep Alive provides <Provider>
, you must use <Provider>
to wrap the <KeepAlive>
cache to take effect.
import React from 'react';
import ReactDOM from 'react-dom';
import {
Provider,
KeepAlive,
} from 'react-keep-alive';
import Test from './views/Test';
ReactDOM.render(
<Provider>
<KeepAlive name="Test">
<Test />
</KeepAlive>
</Provider>,
document.getElementById('root'),
);
If you've used Vue, you know that it has a very good component (keep-alive) that keeps the state of the component to avoid repeated re-rendering.
Sometimes, we want the list page to cache the page state after the list page enters the detail page. When the detail page returns to the list page, the list page is still the same as before the switch.
Oh, this is actually quite difficult to achieve, because the components in React cannot be reused once they are uninstalled. Two solutions are proposed in issue #12039. By using the style switch component display (display: none | block;
), this can cause problems, such as when you switch components, you can't use animations; or use data flow management tools like Mobx and Redux, but this is too much trouble.
In the end, I implemented this effect through the React.createPortal API. react-keep-alive
has two main components <Provider>
and <KeepAlive>
. The <Provider>
is responsible for saving the component's cache and rendering the cached component outside of the application via the React.createPortal API before processing. The cached components must be placed in <KeepAlive>
, and <KeepAlive>
will mount the components that are cached outside the application to the location that really needs to be displayed.
Since the cached components need to be stored, the <Provider>
must be rendered at the top of the application for the program to run properly.
include
: Only components that match key will be cached. It can be a string, an array of strings, or a regular expression, eg:
<Provider include="A,B">...</Provider>
// or
<Provider include={['A', 'B']}>...</Provider>
// or
<Provider include={/A|B/}>...</Provider>
exclude
: Any component that matches key will not be cached. It can be a string, an array of strings, or a regular expression.
In the example below, the component is our root-level component. This means it’s at the very top of our component hierarchy.
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-keep-alive';
import App from './App';
ReactDOM.render(
<Provider>
<App />
</Provider>,
document.getElementById('root'),
);
import React from 'react';
import ReactDOM from 'react-dom';
import {
BrowserRouter as Router,
} from 'react-router-dom';
import {
Provider as MobxProvider,
} from 'mobx-react';
import {
Provider as KeepAliveProvider,
} from 'react-keep-alive';
ReactDOM.render(
<MobxProvider>
<Router>
<KeepAliveProvider>
<App />
</KeepAliveProvider>
</Router>
</MobxProvider>,
document.getElementById('root'),
);
Note: You must put in and the React Router must be sure to be the latest version. Because React Keep Alive uses the new Context, you must ensure that the Router does the same. Please use the following command to install the latest version.
npm install react-router@next react-router-dom@next
Children of <KeepAlive>
will be cached, but we have to make sure that <KeepAlive>
is inside <Provider>
.
name
: Name must exist and need to ensure that all <KeepAlive>
names under the current <Provider>
are unique(1.2.0 added, Replace key).
disabled
: When we don't need components for caching, we can disable it; the disabled configuration will only takes effect when the component's status changes from unactive to active.
import React from 'react';
import ReactDOM from 'react-dom';
import {
BrowserRouter as Router,
Switch,
Route,
Link,
} from 'react-router-dom';
import {
Provider,
KeepAlive,
} from 'react-keep-alive';
class One extends React.Component {
render() {
return (
<div>This is One.</div>
);
}
}
class App extends React.Component {
render() {
return (
<div>
<Switch>
<Route path="/one">
<KeepAlive name="One">
<One />
</KeepAlive>
</Route>
</Switch>
</div>
);
}
}
ReactDOM.render(
<Router>
<Provider>
<App />
</Provider>
</Router>,
document.getElementById('root'),
);
import React from 'react';
import ReactDOM from 'react-dom';
import {
BrowserRouter as Router,
Switch,
Route,
Link,
} from 'react-router-dom';
import {
Provider,
KeepAlive,
} from 'react-keep-alive';
class One extends React.Component {
render() {
return (
<div>This is One.</div>
);
}
}
class App extends React.Component {
render() {
return (
<div>
<Switch>
<Route path="/one">
<KeepAlive name="One">
<One />
</KeepAlive>
</Route>
</Switch>
</div>
);
}
}
ReactDOM.render(
<Router>
<Provider include="One">
<App />
</Provider>
</Router>,
document.getElementById('root'),
);
Note: If you want to use the lifecycle, wrap the components in a bindLifecycle
high-level component.
Components that pass this high-level component wrap will have the correct lifecycle, entering the component must trigger the componentDidMount
lifecycle, and leaving will also trigger the componentWillUnmount
lifecycle. Refer to this [example] (https://codesandbox.io/s/q1xprn1qq) for a better understanding, pay attention to open the console.
The old version of and componentDidActivate
has been deleted, this is a component that is inevitably unaccustomed to the new life cycle, and was originally written with reference to Vue, but it is not entirely suitable for React.componentWillUnactivate
import React from 'react';
import {bindLifecycle} from 'react-keep-alive';
@bindLifecycle
class Test extends React.Component {
render() {
return (
<div>
This is Test.
</div>
);
}
}
useKeepAliveEffect
will fire when the component enters and leaves; because the component will not be unmounted while it is still active, so if you use useEffect
, that will not achieve the real purpose.
Note: useKeepAliveEffect
uses the latest React Hooks, so you must make sure React is the latest version.
import React from 'react';
import {useKeepAliveEffect} from 'react-keep-alive';
function Test() {
useKeepAliveEffect(() => {
console.log("mounted");
return () => {
console.log("unmounted");
};
});
return (
<div>
This is Test.
</div>
);
}
If you find a bug, please file an issue on our issue tracker on GitHub.
Changes are tracked in the CHANGELOG.md.
React Keep Alive is available under the MIT License.