rsnext/packages/next-server/lib/side-effect.tsx
Tim Neutkens c9d599b698
Add .d.ts for next-server (#7133)
* Add .d.ts files

* Drop next declarations from index.d.ts

* Bring back number of errors

* Fix more errors

* Fix rewriteUrlForExport
2019-04-24 16:47:50 +02:00

56 lines
1.3 KiB
TypeScript

import React, { Component, ReactNode } from 'react'
const isServer = typeof window === 'undefined'
type State = Array<React.ReactElement<any>> | undefined
type SideEffectProps = {
reduceComponentsToState: <T>(components: Array<React.ReactElement<any>>, props: T) => State,
handleStateChange?: (state: State) => void,
isAmp?: boolean,
}
export default () => {
const mountedInstances: Set<any> = new Set()
let state: State
function emitChange(component: React.Component<SideEffectProps>) {
state = component.props.reduceComponentsToState([...mountedInstances], component.props)
if (component.props.handleStateChange) {
component.props.handleStateChange(state)
}
}
return class extends Component<SideEffectProps> {
// Used when server rendering
static rewind() {
const recordedState = state
state = undefined
mountedInstances.clear()
return recordedState
}
constructor(props: any) {
super(props)
if (isServer) {
mountedInstances.add(this)
emitChange(this)
}
}
componentDidMount() {
mountedInstances.add(this)
emitChange(this)
}
componentDidUpdate() {
emitChange(this)
}
componentWillUnmount() {
mountedInstances.delete(this)
emitChange(this)
}
render() {
return null
}
}
}