MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / checkClassInstance

Function checkClassInstance

code/controlled-uncontrolled/public/app.js:7623–7675  ·  view source on GitHub ↗
(workInProgress)

Source from the content-addressed store, hash-verified

7621 }
7622
7623 function checkClassInstance(workInProgress) {
7624 var instance = workInProgress.stateNode;
7625 var type = workInProgress.type;
7626 {
7627 var name = getComponentName(workInProgress) || 'Component';
7628 var renderPresent = instance.render;
7629
7630 if (!renderPresent) {
7631 if (type.prototype && typeof type.prototype.render === 'function') {
7632 warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: did you accidentally return an object from the constructor?', name);
7633 } else {
7634 warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: you may have forgotten to define `render`.', name);
7635 }
7636 }
7637
7638 var noGetInitialStateOnES6 = !instance.getInitialState || instance.getInitialState.isReactClassApproved || instance.state;
7639 warning(noGetInitialStateOnES6, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', name);
7640 var noGetDefaultPropsOnES6 = !instance.getDefaultProps || instance.getDefaultProps.isReactClassApproved;
7641 warning(noGetDefaultPropsOnES6, 'getDefaultProps was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Use a static property to define defaultProps instead.', name);
7642 var noInstancePropTypes = !instance.propTypes;
7643 warning(noInstancePropTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', name);
7644 var noInstanceContextTypes = !instance.contextTypes;
7645 warning(noInstanceContextTypes, 'contextTypes was defined as an instance property on %s. Use a static ' + 'property to define contextTypes instead.', name);
7646 var noComponentShouldUpdate = typeof instance.componentShouldUpdate !== 'function';
7647 warning(noComponentShouldUpdate, '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', name);
7648 if (type.prototype && type.prototype.isPureReactComponent && typeof instance.shouldComponentUpdate !== 'undefined') {
7649 warning(false, '%s has a method called shouldComponentUpdate(). ' + 'shouldComponentUpdate should not be used when extending React.PureComponent. ' + 'Please extend React.Component if shouldComponentUpdate is used.', getComponentName(workInProgress) || 'A pure component');
7650 }
7651 var noComponentDidUnmount = typeof instance.componentDidUnmount !== 'function';
7652 warning(noComponentDidUnmount, '%s has a method called ' + 'componentDidUnmount(). But there is no such lifecycle method. ' + 'Did you mean componentWillUnmount()?', name);
7653 var noComponentDidReceiveProps = typeof instance.componentDidReceiveProps !== 'function';
7654 warning(noComponentDidReceiveProps, '%s has a method called ' + 'componentDidReceiveProps(). But there is no such lifecycle method. ' + 'If you meant to update the state in response to changing props, ' + 'use componentWillReceiveProps(). If you meant to fetch data or ' + 'run side-effects or mutations after React has updated the UI, use componentDidUpdate().', name);
7655 var noComponentWillRecieveProps = typeof instance.componentWillRecieveProps !== 'function';
7656 warning(noComponentWillRecieveProps, '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', name);
7657 var noUnsafeComponentWillRecieveProps = typeof instance.UNSAFE_componentWillRecieveProps !== 'function';
7658 warning(noUnsafeComponentWillRecieveProps, '%s has a method called ' + 'UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?', name);
7659 var hasMutatedProps = instance.props !== workInProgress.pendingProps;
7660 warning(instance.props === undefined || !hasMutatedProps, '%s(...): When calling super() in `%s`, make sure to pass ' + "up the same props that your component's constructor was passed.", name, name);
7661 var noInstanceDefaultProps = !instance.defaultProps;
7662 warning(noInstanceDefaultProps, 'Setting defaultProps as an instance property on %s is not supported and will be ignored.' + ' Instead, define defaultProps as a static property on %s.', name, name);
7663 var noInstanceGetDerivedStateFromProps = typeof instance.getDerivedStateFromProps !== 'function';
7664 warning(noInstanceGetDerivedStateFromProps, '%s: getDerivedStateFromProps() is defined as an instance method ' + 'and will be ignored. Instead, declare it as a static method.', name);
7665 var noInstanceGetDerivedStateFromCatch = typeof instance.getDerivedStateFromCatch !== 'function';
7666 warning(noInstanceGetDerivedStateFromCatch, '%s: getDerivedStateFromCatch() is defined as an instance method ' + 'and will be ignored. Instead, declare it as a static method.', name);
7667 var _state = instance.state;
7668 if (_state && (typeof _state !== 'object' || isArray(_state))) {
7669 warning(false, '%s.state: must be set to an object or null', name);
7670 }
7671 if (typeof instance.getChildContext === 'function') {
7672 warning(typeof type.childContextTypes === 'object', '%s.getChildContext(): childContextTypes must be defined in order to ' + 'use getChildContext().', name);
7673 }
7674 }
7675 }
7676
7677 function resetInputPointers(workInProgress, instance) {
7678 instance.props = workInProgress.memoizedProps;

Callers 1

mountClassInstanceFunction · 0.70

Calls 2

warningFunction · 0.85
getComponentNameFunction · 0.70

Tested by

no test coverage detected