2016-10-07 01:57:31 +00:00
|
|
|
import React, { Component } from 'react'
|
2017-06-19 13:03:02 +00:00
|
|
|
import { getDisplayName } from './utils'
|
2016-10-07 01:57:31 +00:00
|
|
|
|
|
|
|
export default function withSideEffect (reduceComponentsToState, handleStateChangeOnClient, mapStateOnServer) {
|
|
|
|
if (typeof reduceComponentsToState !== 'function') {
|
|
|
|
throw new Error('Expected reduceComponentsToState to be a function.')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof handleStateChangeOnClient !== 'function') {
|
|
|
|
throw new Error('Expected handleStateChangeOnClient to be a function.')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof mapStateOnServer !== 'undefined' && typeof mapStateOnServer !== 'function') {
|
|
|
|
throw new Error('Expected mapStateOnServer to either be undefined or a function.')
|
|
|
|
}
|
|
|
|
|
|
|
|
return function wrap (WrappedComponent) {
|
|
|
|
if (typeof WrappedComponent !== 'function') {
|
|
|
|
throw new Error('Expected WrappedComponent to be a React component.')
|
|
|
|
}
|
|
|
|
|
|
|
|
const mountedInstances = new Set()
|
|
|
|
let state
|
|
|
|
|
|
|
|
function emitChange (component) {
|
|
|
|
state = reduceComponentsToState([...mountedInstances])
|
|
|
|
|
|
|
|
if (SideEffect.canUseDOM) {
|
|
|
|
handleStateChangeOnClient.call(component, state)
|
|
|
|
} else if (mapStateOnServer) {
|
|
|
|
state = mapStateOnServer(state)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class SideEffect extends Component {
|
|
|
|
// Try to use displayName of wrapped component
|
|
|
|
static displayName = `SideEffect(${getDisplayName(WrappedComponent)})`
|
|
|
|
|
|
|
|
static contextTypes = WrappedComponent.contextTypes
|
|
|
|
|
|
|
|
// Expose canUseDOM so tests can monkeypatch it
|
2016-10-17 00:00:17 +00:00
|
|
|
static canUseDOM = typeof window !== 'undefined'
|
2016-10-07 01:57:31 +00:00
|
|
|
|
|
|
|
static peek () {
|
|
|
|
return state
|
|
|
|
}
|
|
|
|
|
|
|
|
static rewind () {
|
|
|
|
if (SideEffect.canUseDOM) {
|
|
|
|
throw new Error('You may only call rewind() on the server. Call peek() to read the current state.')
|
|
|
|
}
|
|
|
|
|
|
|
|
const recordedState = state
|
|
|
|
state = undefined
|
|
|
|
mountedInstances.clear()
|
|
|
|
return recordedState
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
mountedInstances.add(this)
|
2016-10-28 14:39:20 +00:00
|
|
|
emitChange(this)
|
2016-10-07 01:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate () {
|
2016-10-28 14:39:20 +00:00
|
|
|
emitChange(this)
|
2016-10-07 01:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
mountedInstances.delete(this)
|
|
|
|
emitChange(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return <WrappedComponent>{ this.props.children }</WrappedComponent>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SideEffect
|
|
|
|
}
|
|
|
|
}
|