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

Function checkClassInstance

code/communication/public/app.js:8334–8386  ·  view source on GitHub ↗
(workInProgress)

Source from the content-addressed store, hash-verified

8332 }
8333
8334 function checkClassInstance(workInProgress) {
8335 var instance = workInProgress.stateNode;
8336 var type = workInProgress.type;
8337 {
8338 var name = getComponentName(workInProgress) || 'Component';
8339 var renderPresent = instance.render;
8340
8341 if (!renderPresent) {
8342 if (type.prototype && typeof type.prototype.render === 'function') {
8343 warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: did you accidentally return an object from the constructor?', name);
8344 } else {
8345 warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: you may have forgotten to define `render`.', name);
8346 }
8347 }
8348
8349 var noGetInitialStateOnES6 = !instance.getInitialState || instance.getInitialState.isReactClassApproved || instance.state;
8350 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);
8351 var noGetDefaultPropsOnES6 = !instance.getDefaultProps || instance.getDefaultProps.isReactClassApproved;
8352 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);
8353 var noInstancePropTypes = !instance.propTypes;
8354 warning(noInstancePropTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', name);
8355 var noInstanceContextTypes = !instance.contextTypes;
8356 warning(noInstanceContextTypes, 'contextTypes was defined as an instance property on %s. Use a static ' + 'property to define contextTypes instead.', name);
8357 var noComponentShouldUpdate = typeof instance.componentShouldUpdate !== 'function';
8358 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);
8359 if (type.prototype && type.prototype.isPureReactComponent && typeof instance.shouldComponentUpdate !== 'undefined') {
8360 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');
8361 }
8362 var noComponentDidUnmount = typeof instance.componentDidUnmount !== 'function';
8363 warning(noComponentDidUnmount, '%s has a method called ' + 'componentDidUnmount(). But there is no such lifecycle method. ' + 'Did you mean componentWillUnmount()?', name);
8364 var noComponentDidReceiveProps = typeof instance.componentDidReceiveProps !== 'function';
8365 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);
8366 var noComponentWillRecieveProps = typeof instance.componentWillRecieveProps !== 'function';
8367 warning(noComponentWillRecieveProps, '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', name);
8368 var noUnsafeComponentWillRecieveProps = typeof instance.UNSAFE_componentWillRecieveProps !== 'function';
8369 warning(noUnsafeComponentWillRecieveProps, '%s has a method called ' + 'UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?', name);
8370 var hasMutatedProps = instance.props !== workInProgress.pendingProps;
8371 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);
8372 var noInstanceDefaultProps = !instance.defaultProps;
8373 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);
8374 var noInstanceGetDerivedStateFromProps = typeof instance.getDerivedStateFromProps !== 'function';
8375 warning(noInstanceGetDerivedStateFromProps, '%s: getDerivedStateFromProps() is defined as an instance method ' + 'and will be ignored. Instead, declare it as a static method.', name);
8376 var noInstanceGetDerivedStateFromCatch = typeof instance.getDerivedStateFromCatch !== 'function';
8377 warning(noInstanceGetDerivedStateFromCatch, '%s: getDerivedStateFromCatch() is defined as an instance method ' + 'and will be ignored. Instead, declare it as a static method.', name);
8378 var _state = instance.state;
8379 if (_state && (typeof _state !== 'object' || isArray(_state))) {
8380 warning(false, '%s.state: must be set to an object or null', name);
8381 }
8382 if (typeof instance.getChildContext === 'function') {
8383 warning(typeof type.childContextTypes === 'object', '%s.getChildContext(): childContextTypes must be defined in order to ' + 'use getChildContext().', name);
8384 }
8385 }
8386 }
8387
8388 function resetInputPointers(workInProgress, instance) {
8389 instance.props = workInProgress.memoizedProps;

Callers 1

mountClassInstanceFunction · 0.70

Calls 2

warningFunction · 0.85
getComponentNameFunction · 0.70

Tested by

no test coverage detected