-
-
Save Sam1301/caea1f70bcef1e2e16080ad563012b33 to your computer and use it in GitHub Desktop.
Test duplicate renders of your components with this HOC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// originally implemented as a mixin, | |
// taken from https://gist.github.com/joshma/6753333dd38a6010f9a6#file-whydidyouupdatemixin-js | |
// modified to make a higher-order component | |
/* eslint-disable no-console */ | |
import _ from 'underscore'; | |
import React, { Component, PureComponent } from 'react'; | |
function isRequiredUpdateObject(o) { | |
return Array.isArray(o) || (o && o.constructor === Object.prototype.constructor); | |
} | |
function deepDiff(o1, o2, p) { | |
const notify = status => { | |
console.warn('Update %s', status); | |
console.log('%cbefore', 'font-weight: bold', o1); | |
console.log('%cafter ', 'font-weight: bold', o2); | |
}; | |
if (!_.isEqual(o1, o2)) { | |
console.group(p); | |
if ([o1, o2].every(_.isFunction)) { | |
notify('avoidable?'); | |
} else if (![o1, o2].every(isRequiredUpdateObject)) { | |
notify('required.'); | |
} else { | |
const keys = _.union(_.keys(o1), _.keys(o2)); | |
for (const key of keys) { | |
deepDiff(o1[key], o2[key], key); | |
} | |
} | |
console.groupEnd(); | |
} else if (o1 !== o2) { | |
console.group(p); | |
notify('avoidable!'); | |
if (_.isObject(o1) && _.isObject(o2)) { | |
const keys = _.union(_.keys(o1), _.keys(o2)); | |
for (const key of keys) { | |
deepDiff(o1[key], o2[key], key); | |
} | |
} | |
console.groupEnd(); | |
} | |
} | |
// changes | |
function isPureComponent(WrappedComponent) { | |
return !!(WrappedComponent.prototype && WrappedComponent.prototype.isPureReactComponent); | |
} | |
// changes | |
const RerenderTest = WrappedComponent => { | |
const Parent = isPureComponent(WrappedComponent) ? PureComponent : Component; | |
return class Container extends Parent { | |
componentDidUpdate(prevProps, prevState) { | |
deepDiff( | |
{ props: prevProps, state: prevState }, | |
{ props: this.props, state: this.state }, | |
WrappedComponent.name, | |
); | |
} | |
render() { | |
return <WrappedComponent {...this.props} />; | |
} | |
}; | |
} | |
export default RerenderTest; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the gist !