UNPKG

3.78 kBJavaScriptView Raw
1/**
2 * Copyright (c) 2013-present, Facebook, Inc.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8'use strict';
9
10var printWarning = function() {};
11
12if (process.env.NODE_ENV !== 'production') {
13 var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');
14 var loggedTypeFailures = {};
15 var has = Function.call.bind(Object.prototype.hasOwnProperty);
16
17 printWarning = function(text) {
18 var message = 'Warning: ' + text;
19 if (typeof console !== 'undefined') {
20 console.error(message);
21 }
22 try {
23 // --- Welcome to debugging React ---
24 // This error was thrown as a convenience so that you can use this stack
25 // to find the callsite that caused this warning to fire.
26 throw new Error(message);
27 } catch (x) {}
28 };
29}
30
31/**
32 * Assert that the values match with the type specs.
33 * Error messages are memorized and will only be shown once.
34 *
35 * @param {object} typeSpecs Map of name to a ReactPropType
36 * @param {object} values Runtime values that need to be type-checked
37 * @param {string} location e.g. "prop", "context", "child context"
38 * @param {string} componentName Name of the component for error messages.
39 * @param {?Function} getStack Returns the component stack.
40 * @private
41 */
42function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
43 if (process.env.NODE_ENV !== 'production') {
44 for (var typeSpecName in typeSpecs) {
45 if (has(typeSpecs, typeSpecName)) {
46 var error;
47 // Prop type validation may throw. In case they do, we don't want to
48 // fail the render phase where it didn't fail before. So we log it.
49 // After these have been cleaned up, we'll let them throw.
50 try {
51 // This is intentionally an invariant that gets caught. It's the same
52 // behavior as without this statement except with a better message.
53 if (typeof typeSpecs[typeSpecName] !== 'function') {
54 var err = Error(
55 (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
56 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.'
57 );
58 err.name = 'Invariant Violation';
59 throw err;
60 }
61 error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
62 } catch (ex) {
63 error = ex;
64 }
65 if (error && !(error instanceof Error)) {
66 printWarning(
67 (componentName || 'React class') + ': type specification of ' +
68 location + ' `' + typeSpecName + '` is invalid; the type checker ' +
69 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
70 'You may have forgotten to pass an argument to the type checker ' +
71 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
72 'shape all require an argument).'
73 );
74 }
75 if (error instanceof Error && !(error.message in loggedTypeFailures)) {
76 // Only monitor this failure once because there tends to be a lot of the
77 // same error.
78 loggedTypeFailures[error.message] = true;
79
80 var stack = getStack ? getStack() : '';
81
82 printWarning(
83 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
84 );
85 }
86 }
87 }
88 }
89}
90
91/**
92 * Resets warning cache when testing.
93 *
94 * @private
95 */
96checkPropTypes.resetWarningCache = function() {
97 if (process.env.NODE_ENV !== 'production') {
98 loggedTypeFailures = {};
99 }
100}
101
102module.exports = checkPropTypes;