@rcp/c.keepalive

Keep react component view / store when switched view.

Usage no npm install needed!

<script type="module">
  import rcpCKeepalive from 'https://cdn.skypack.dev/@rcp/c.keepalive';
</script>

README

@rcp/c.keepalive

NPM version NPM Downloads

Keep react component view / store when switched view rather than unmount it.

Installation

npm install @rcp/c.keepalive
# or use yarn
yarn add @rcp/c.keepalive

Usage

import KeepAlive, { bindKeepAliveLifeCycle } from '@rcp/c.keepalive'
import '@rcp/c.keepalive/style.less'

@bindKeepAliveLifeCycle
class Content extends React.Component {
    // 新增的生命周期
    componentWillActive({newValue, oldValue}) {}
    componentDidActive({newValue, oldValue}) {}
    componentWillUnactive({newValue, oldValue}) {}
    componentDidUnactive({newValue, oldValue}) {}
}

<KeepAlive uniqKey="/home" >
    <Content>Home</Content>
<KeepAlive>
// LifeCycle
// componentWillActive => {newValue: '/home'}
// componentDidActive => {newValue: '/home'}

// Components
// <>
//   <Content>Home</Content>
// </>

// Update
<KeepAlive uniqKey="/detail" >
    <Content>Detail</Content>
<KeepAlive>
// LifeCycle
// componentWillUnactive => {newValue: '/detail', oldValue: '/home'} (Home)
// componentWillActive => {newValue: '/detail', oldValue: '/home'} (Detail)
// componentDidUnactive => {newValue: '/detail', oldValue: '/home'} (Home)
// componentDidActive => {newValue: '/detail', oldValue: '/home'} (Detail)

// Components
// <>
//   <Content (display: none)>Home</Content>
//   <Content>Detail</Content>
// </>

Props

uniqKey

  • Type: string

disabled

  • Type: boolean

Related

Authors

This library is written and maintained by imcuttle, moyuyc95@gmail.com.

License

MIT