mui-places-autocomplete
Version:
Material-UI React component that provides suggestions/autocompletes places using the Google Places API
1,351 lines (1,169 loc) • 56.3 kB
JavaScript
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else {
var a = factory();
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
}
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 5);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports) {
// shim for using process in browser
var process = module.exports = {};
// cached from whatever global is present so that test runners that stub it
// don't break things. But we need to wrap it in a try catch in case it is
// wrapped in strict mode code which doesn't define any globals. It's inside a
// function because try/catches deoptimize in certain engines.
var cachedSetTimeout;
var cachedClearTimeout;
function defaultSetTimout() {
throw new Error('setTimeout has not been defined');
}
function defaultClearTimeout () {
throw new Error('clearTimeout has not been defined');
}
(function () {
try {
if (typeof setTimeout === 'function') {
cachedSetTimeout = setTimeout;
} else {
cachedSetTimeout = defaultSetTimout;
}
} catch (e) {
cachedSetTimeout = defaultSetTimout;
}
try {
if (typeof clearTimeout === 'function') {
cachedClearTimeout = clearTimeout;
} else {
cachedClearTimeout = defaultClearTimeout;
}
} catch (e) {
cachedClearTimeout = defaultClearTimeout;
}
} ())
function runTimeout(fun) {
if (cachedSetTimeout === setTimeout) {
//normal enviroments in sane situations
return setTimeout(fun, 0);
}
// if setTimeout wasn't available but was latter defined
if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
cachedSetTimeout = setTimeout;
return setTimeout(fun, 0);
}
try {
// when when somebody has screwed with setTimeout but no I.E. maddness
return cachedSetTimeout(fun, 0);
} catch(e){
try {
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
return cachedSetTimeout.call(null, fun, 0);
} catch(e){
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
return cachedSetTimeout.call(this, fun, 0);
}
}
}
function runClearTimeout(marker) {
if (cachedClearTimeout === clearTimeout) {
//normal enviroments in sane situations
return clearTimeout(marker);
}
// if clearTimeout wasn't available but was latter defined
if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
cachedClearTimeout = clearTimeout;
return clearTimeout(marker);
}
try {
// when when somebody has screwed with setTimeout but no I.E. maddness
return cachedClearTimeout(marker);
} catch (e){
try {
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
return cachedClearTimeout.call(null, marker);
} catch (e){
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
return cachedClearTimeout.call(this, marker);
}
}
}
var queue = [];
var draining = false;
var currentQueue;
var queueIndex = -1;
function cleanUpNextTick() {
if (!draining || !currentQueue) {
return;
}
draining = false;
if (currentQueue.length) {
queue = currentQueue.concat(queue);
} else {
queueIndex = -1;
}
if (queue.length) {
drainQueue();
}
}
function drainQueue() {
if (draining) {
return;
}
var timeout = runTimeout(cleanUpNextTick);
draining = true;
var len = queue.length;
while(len) {
currentQueue = queue;
queue = [];
while (++queueIndex < len) {
if (currentQueue) {
currentQueue[queueIndex].run();
}
}
queueIndex = -1;
len = queue.length;
}
currentQueue = null;
draining = false;
runClearTimeout(timeout);
}
process.nextTick = function (fun) {
var args = new Array(arguments.length - 1);
if (arguments.length > 1) {
for (var i = 1; i < arguments.length; i++) {
args[i - 1] = arguments[i];
}
}
queue.push(new Item(fun, args));
if (queue.length === 1 && !draining) {
runTimeout(drainQueue);
}
};
// v8 likes predictible objects
function Item(fun, array) {
this.fun = fun;
this.array = array;
}
Item.prototype.run = function () {
this.fun.apply(null, this.array);
};
process.title = 'browser';
process.browser = true;
process.env = {};
process.argv = [];
process.version = ''; // empty string to avoid regexp issues
process.versions = {};
function noop() {}
process.on = noop;
process.addListener = noop;
process.once = noop;
process.off = noop;
process.removeListener = noop;
process.removeAllListeners = noop;
process.emit = noop;
process.prependListener = noop;
process.prependOnceListener = noop;
process.listeners = function (name) { return [] }
process.binding = function (name) {
throw new Error('process.binding is not supported');
};
process.cwd = function () { return '/' };
process.chdir = function (dir) {
throw new Error('process.chdir is not supported');
};
process.umask = function() { return 0; };
/***/ }),
/* 1 */
/***/ (function(module, exports) {
module.exports = require("fbjs/lib/invariant");
/***/ }),
/* 2 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
module.exports = ReactPropTypesSecret;
/***/ }),
/* 3 */
/***/ (function(module, exports) {
module.exports = require("fbjs/lib/emptyFunction");
/***/ }),
/* 4 */
/***/ (function(module, exports) {
module.exports = require("fbjs/lib/warning");
/***/ }),
/* 5 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.geocodeBySuggestion = exports.geocodeByPlaceID = undefined;
var _MUIPlacesAutocomplete = __webpack_require__(6);
var _MUIPlacesAutocomplete2 = _interopRequireDefault(_MUIPlacesAutocomplete);
var _geocode = __webpack_require__(23);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.geocodeByPlaceID = _geocode.geocodeByPlaceID;
exports.geocodeBySuggestion = _geocode.geocodeBySuggestion;
exports.default = _MUIPlacesAutocomplete2.default;
/***/ }),
/* 6 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = __webpack_require__(7);
var _react2 = _interopRequireDefault(_react);
var _propTypes = __webpack_require__(8);
var _propTypes2 = _interopRequireDefault(_propTypes);
var _Grow = __webpack_require__(13);
var _Grow2 = _interopRequireDefault(_Grow);
var _MenuList = __webpack_require__(14);
var _MenuList2 = _interopRequireDefault(_MenuList);
var _MenuItem = __webpack_require__(15);
var _MenuItem2 = _interopRequireDefault(_MenuItem);
var _Paper = __webpack_require__(16);
var _Paper2 = _interopRequireDefault(_Paper);
var _TextField = __webpack_require__(17);
var _TextField2 = _interopRequireDefault(_TextField);
var _downshift = __webpack_require__(18);
var _downshift2 = _interopRequireDefault(_downshift);
var _reactPopper = __webpack_require__(19);
var _match = __webpack_require__(20);
var _match2 = _interopRequireDefault(_match);
var _parse = __webpack_require__(21);
var _parse2 = _interopRequireDefault(_parse);
var _googleLogoOnWhiteBg = __webpack_require__(22);
var _googleLogoOnWhiteBg2 = _interopRequireDefault(_googleLogoOnWhiteBg);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var MUIPlacesAutocomplete = function (_React$Component) {
_inherits(MUIPlacesAutocomplete, _React$Component);
_createClass(MUIPlacesAutocomplete, null, [{
key: 'renderSuggestionsContainer',
// Renders the container that will hold the suggestions and defers to other methods to render the
// suggestions themselves. This method should only be called if you do indeed plan on rendering
// the suggestions. In our case this is when 'isOpen' Downshift render prop is 'true'. Thats
// because the methods that are used to render the suggestions invoke the 'getItemProps' prop
// getter from Downshift which is an impure function. In otherwords even if you don't render the
// suggestions container Downshift will still think we are rendering suggestions.
//
// The 'downshiftRenderProps' argument expects an object of props that Downshift passes to the
// function which is set as the value of the 'render' prop on the <Downshift> component. Currently
// the following Downshift render props are expected on the value provided to the
// 'downshiftRenderProps' argument:
// * getItemProps - function that returns the props that ought to be applied to menu item elements
// that are rendered
// * inputValue - current value of the controlled <input> element
// * highlightedIndex - index of the currently highlighted menu item elements that have been
// rendered
value: function renderSuggestionsContainer(suggestions, downshiftRenderProps) {
// Return null here if there are no suggestions to render. If we don't we will show a little box
// that is empty and popped over the render target. This handles the case where a suggestion is
// selected, the input value is updated, and then the user deletes the input value. This
// behavior is attributed to setting the suggestions to the empty array in the
// 'onInputValueChange' method.
//
// Be sure we return null here before we render any of our suggestions lest we invoke the impure
// 'getItemProps' function.
if (suggestions.length === 0) {
return null;
}
// The autocomplete service can return multiple of the same predictions. This can sometimes be
// seen after someone selects a suggestion and starts to delete/backspace the input value which
// contains their selected suggestion. Here we will ensure uniqueness amongst suggestions using
// an ES6 Map so that we don't get duplicate key errors when we render our suggestions.
var uniqueSuggestions = new Map(suggestions.map(function (suggestion) {
return [suggestion.description, suggestion];
}));
var renderedSuggestions = MUIPlacesAutocomplete.renderSuggestions([].concat(_toConsumableArray(uniqueSuggestions.values())), downshiftRenderProps);
// On the <Popper> component we enable the 'inner' modifier. This is needed as Popper JS will
// try to change the position of the popover depending on if it deems the popover is in or out
// of view. The result of enabling the 'inner' modifier means that the position of the popover
// won't change at all regardless of if the popover is in or out of view.
//
// Typically the <Popper> receives actual nodes for its children but in our case we opted to
// provided a function that creats a <div> with styles applied to it at the top-level. This
// <div> with the styles applied is to account for issues that arise when testing. Without it we
// will get the following warnings: NaN is an invalid value for the top/left css style property.
// This is because the DOM provider/implementation we use when testing (jsdom) doesn't return
// values for bounding client rect.
return _react2.default.createElement(
_reactPopper.Popper,
{
placement: 'top-start',
modifiers: { inner: { enabled: true } },
style: { left: 0, right: 0, zIndex: 1 }
},
function (_ref) {
var popperProps = _ref.popperProps,
restProps = _ref.restProps;
return _react2.default.createElement(
'div',
_extends({}, popperProps, restProps, {
style: _extends({}, popperProps.style, {
top: popperProps.style.top || 0,
left: popperProps.style.left || 0
}, restProps.style)
}),
_react2.default.createElement(
_Grow2.default,
{ 'in': true, style: { transformOrigin: '0 0 0' } },
_react2.default.createElement(
_Paper2.default,
null,
_react2.default.createElement(
_MenuList2.default,
null,
renderedSuggestions,
renderedSuggestions.length > 0 ? _react2.default.createElement(
'div',
{ style: { display: 'flex' } },
_react2.default.createElement('span', { style: { flex: 1 } }),
_react2.default.createElement('img', { src: _googleLogoOnWhiteBg2.default, alt: '' })
) : null
)
)
)
);
}
);
}
// Helper method to be called by 'renderSuggestionsContainer'. Returns list of rendered
// suggestions.
}, {
key: 'renderSuggestions',
value: function renderSuggestions(suggestions, _ref2) {
var getItemProps = _ref2.getItemProps,
inputValue = _ref2.inputValue,
highlightedIndex = _ref2.highlightedIndex;
return suggestions.map(function (suggestion, index) {
return MUIPlacesAutocomplete.renderSuggestion(suggestion, { getItemProps: getItemProps, inputValue: inputValue, isHighlighted: index === highlightedIndex });
});
}
// Helper method to be called by 'renderSuggestions'. Renders suggestions where they are
// highlighted based on the parts of the suggestion that match the query the user entered. This is
// inline with the Google Maps webapp at the time of writing. This behavior is opposite of how the
// Google Search bar/component/element works though.
}, {
key: 'renderSuggestion',
value: function renderSuggestion(suggestion, _ref3) {
var getItemProps = _ref3.getItemProps,
inputValue = _ref3.inputValue,
isHighlighted = _ref3.isHighlighted;
var description = suggestion.description;
// Calculate the chars to highlight in the suggestion 'description' based on the query
// ('inputValue') that the user provided us. An array is returned and if any chars ought to be
// highlighted the array will contain a pair ([a, b]) which denote the indexes of chars to
// highlight (i.e. text.slice(a, b)).
var matches = (0, _match2.default)(description, inputValue);
// Break up the suggestion 'description' based on the parts that matched. An array is returned
// of parts where each one has an indication of if it ought to be highlighted or not.
var parts = (0, _parse2.default)(description, matches);
return _react2.default.createElement(
_MenuItem2.default,
_extends({}, getItemProps({ item: suggestion }), {
key: description,
selected: isHighlighted,
component: 'div'
}),
_react2.default.createElement(
'div',
null,
parts.map(function (part, index) {
if (part.highlight) {
// Since we are further breaking down an array there is nothing unique about the
// elements in the resulting array so we can disable the react/no-array-index-key
// ESLint rule when rendering our suggestion
// eslint-disable-next-line react/no-array-index-key
return _react2.default.createElement(
'strong',
{ key: index, style: { fontWeight: 500 } },
part.text
);
}
// Since we are further breaking down an array there is nothing unique about the
// elements in the resulting array so we can disable the react/no-array-index-key
// ESLint rule when rendering our suggestion
// eslint-disable-next-line react/no-array-index-key
return _react2.default.createElement(
'span',
{ key: index, style: { fontWeight: 300 } },
part.text
);
})
)
);
}
}]);
function MUIPlacesAutocomplete() {
_classCallCheck(this, MUIPlacesAutocomplete);
// Control the <input> element/<Autosuggest> component and make this React component the source
// of truth for their state.
var _this = _possibleConstructorReturn(this, (MUIPlacesAutocomplete.__proto__ || Object.getPrototypeOf(MUIPlacesAutocomplete)).call(this));
_this.state = {
suggestions: []
};
_this.onInputValueChange = _this.onInputValueChange.bind(_this);
_this.onSuggestionSelected = _this.onSuggestionSelected.bind(_this);
_this.renderAutocomplete = _this.renderAutocomplete.bind(_this);
return _this;
}
_createClass(MUIPlacesAutocomplete, [{
key: 'componentDidMount',
value: function componentDidMount() {
// After the component is mounted it is safe to create a new instance of the autocomplete
// service client. That's because at this point the Google Maps JavaScript API has been loaded.
// Also if we do it before the component is mounted (i.e. in 'componentWillMount()') we won't be
// safe to render on the server (SSR) as the 'window' object isn't available.
this.autocompleteService = new window.google.maps.places.AutocompleteService();
}
// This function is called whenever Downshift detects that the input value, well, has changed.
// Although we only use a single argument in our function signature Downshift documents the
// function signature as:
// onInputValueChange(inputValue: string, stateAndHelpers: object)
}, {
key: 'onInputValueChange',
value: function onInputValueChange(inputValue) {
var _this2 = this;
// If the inputs value is empty we can return as we will get an error if we provide the empty
// string when we perform a search. Set our suggestions to empty here as well so we don't render
// the old suggestions.
if (inputValue === '') {
this.setState({ suggestions: [] });
return;
}
var createAutocompleteRequest = this.props.createAutocompleteRequest;
this.autocompleteService.getPlacePredictions(createAutocompleteRequest(inputValue), function (predictions, serviceStatus) {
// If the response doesn't contain a valid result then set our state as if no suggestions
// were returned
if (serviceStatus !== window.google.maps.places.PlacesServiceStatus.OK) {
_this2.setState({ suggestions: [] });
return;
}
_this2.setState({ suggestions: predictions });
});
}
// This function is called whenever Downshift detects that a rendered suggestion has been
// selected. Although we only use a single argument in our function signature Downshift documents
// the function signature as:
// onSelect(selectedItem: any, stateAndHelpers: object)
}, {
key: 'onSuggestionSelected',
value: function onSuggestionSelected(suggestion) {
var onSuggestionSelected = this.props.onSuggestionSelected;
if (onSuggestionSelected) {
onSuggestionSelected(suggestion);
}
}
}, {
key: 'renderAutocomplete',
value: function renderAutocomplete(_ref4) {
var getInputProps = _ref4.getInputProps,
getItemProps = _ref4.getItemProps,
isOpen = _ref4.isOpen,
inputValue = _ref4.inputValue,
highlightedIndex = _ref4.highlightedIndex;
var suggestions = this.state.suggestions;
var _props = this.props,
renderTarget = _props.renderTarget,
textFieldProps = _props.textFieldProps;
// We set the value of 'tag' on the <Manager> component to false to allow the rendering of
// children instead of a specific DOM element.
//
// We only want to render our suggestions container if Downshift says we are open AND there are
// suggestions to actually render. There may not be suggestions yet due to the async nature of
// requesting them from the Google Maps/Places service.
//
// Provide an 'id' to the input props (see <TextField>) to accommodate SSR. If we don't then we
// will see checksum errors with the 'id' prop of the <input> element not matching what was
// rendered on the server vs. what was rendered on the client after rehydration due to automatic
// 'id' prop generation by <Downshift>.
return _react2.default.createElement(
'div',
null,
_react2.default.createElement(
_reactPopper.Manager,
{ tag: false },
_react2.default.createElement(_TextField2.default, getInputProps(_extends({ id: 'mui-places-autocomplete-input' }, textFieldProps))),
_react2.default.createElement(
_reactPopper.Target,
null,
renderTarget()
),
isOpen ? MUIPlacesAutocomplete.renderSuggestionsContainer(suggestions, { getItemProps: getItemProps, inputValue: inputValue, highlightedIndex: highlightedIndex }) : null
)
);
}
}, {
key: 'render',
value: function render() {
// Check to see if a consumer would like to exert control on the <input> elements state. If so
// we pass it to the <Downshift> component as the 'inputValue' prop to provide control of the
// <input> elements state to the consumer.
var controlProps = this.props.textFieldProps && this.props.textFieldProps.value ? { inputValue: this.props.textFieldProps.value } : {};
return _react2.default.createElement(_downshift2.default, _extends({
onSelect: this.onSuggestionSelected,
onInputValueChange: this.onInputValueChange,
itemToString: function itemToString(suggestion) {
return suggestion ? suggestion.description : '';
},
render: this.renderAutocomplete
}, controlProps));
}
}]);
return MUIPlacesAutocomplete;
}(_react2.default.Component);
exports.default = MUIPlacesAutocomplete;
MUIPlacesAutocomplete.propTypes = {
onSuggestionSelected: _propTypes2.default.func.isRequired,
renderTarget: _propTypes2.default.func.isRequired,
createAutocompleteRequest: _propTypes2.default.func,
textFieldProps: _propTypes2.default.object
};
MUIPlacesAutocomplete.defaultProps = {
createAutocompleteRequest: function createAutocompleteRequest(inputValue) {
return { input: inputValue };
},
textFieldProps: { autoFocus: false, placeholder: 'Search for a place', fullWidth: true }
};
/***/ }),
/* 7 */
/***/ (function(module, exports) {
module.exports = require("react");
/***/ }),
/* 8 */
/***/ (function(module, exports, __webpack_require__) {
/* WEBPACK VAR INJECTION */(function(process) {/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
if (process.env.NODE_ENV !== 'production') {
var REACT_ELEMENT_TYPE = (typeof Symbol === 'function' &&
Symbol.for &&
Symbol.for('react.element')) ||
0xeac7;
var isValidElement = function(object) {
return typeof object === 'object' &&
object !== null &&
object.$$typeof === REACT_ELEMENT_TYPE;
};
// By explicitly using `prop-types` you are opting into new development behavior.
// http://fb.me/prop-types-in-prod
var throwOnDirectAccess = true;
module.exports = __webpack_require__(9)(isValidElement, throwOnDirectAccess);
} else {
// By explicitly using `prop-types` you are opting into new production behavior.
// http://fb.me/prop-types-in-prod
module.exports = __webpack_require__(12)();
}
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(0)))
/***/ }),
/* 9 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(process) {/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var emptyFunction = __webpack_require__(3);
var invariant = __webpack_require__(1);
var warning = __webpack_require__(4);
var assign = __webpack_require__(10);
var ReactPropTypesSecret = __webpack_require__(2);
var checkPropTypes = __webpack_require__(11);
module.exports = function(isValidElement, throwOnDirectAccess) {
/* global Symbol */
var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.
/**
* Returns the iterator method function contained on the iterable object.
*
* Be sure to invoke the function with the iterable as context:
*
* var iteratorFn = getIteratorFn(myIterable);
* if (iteratorFn) {
* var iterator = iteratorFn.call(myIterable);
* ...
* }
*
* @param {?object} maybeIterable
* @return {?function}
*/
function getIteratorFn(maybeIterable) {
var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
if (typeof iteratorFn === 'function') {
return iteratorFn;
}
}
/**
* Collection of methods that allow declaration and validation of props that are
* supplied to React components. Example usage:
*
* var Props = require('ReactPropTypes');
* var MyArticle = React.createClass({
* propTypes: {
* // An optional string prop named "description".
* description: Props.string,
*
* // A required enum prop named "category".
* category: Props.oneOf(['News','Photos']).isRequired,
*
* // A prop named "dialog" that requires an instance of Dialog.
* dialog: Props.instanceOf(Dialog).isRequired
* },
* render: function() { ... }
* });
*
* A more formal specification of how these methods are used:
*
* type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
* decl := ReactPropTypes.{type}(.isRequired)?
*
* Each and every declaration produces a function with the same signature. This
* allows the creation of custom validation functions. For example:
*
* var MyLink = React.createClass({
* propTypes: {
* // An optional string or URI prop named "href".
* href: function(props, propName, componentName) {
* var propValue = props[propName];
* if (propValue != null && typeof propValue !== 'string' &&
* !(propValue instanceof URI)) {
* return new Error(
* 'Expected a string or an URI for ' + propName + ' in ' +
* componentName
* );
* }
* }
* },
* render: function() {...}
* });
*
* @internal
*/
var ANONYMOUS = '<<anonymous>>';
// Important!
// Keep this list in sync with production version in `./factoryWithThrowingShims.js`.
var ReactPropTypes = {
array: createPrimitiveTypeChecker('array'),
bool: createPrimitiveTypeChecker('boolean'),
func: createPrimitiveTypeChecker('function'),
number: createPrimitiveTypeChecker('number'),
object: createPrimitiveTypeChecker('object'),
string: createPrimitiveTypeChecker('string'),
symbol: createPrimitiveTypeChecker('symbol'),
any: createAnyTypeChecker(),
arrayOf: createArrayOfTypeChecker,
element: createElementTypeChecker(),
instanceOf: createInstanceTypeChecker,
node: createNodeChecker(),
objectOf: createObjectOfTypeChecker,
oneOf: createEnumTypeChecker,
oneOfType: createUnionTypeChecker,
shape: createShapeTypeChecker,
exact: createStrictShapeTypeChecker,
};
/**
* inlined Object.is polyfill to avoid requiring consumers ship their own
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
*/
/*eslint-disable no-self-compare*/
function is(x, y) {
// SameValue algorithm
if (x === y) {
// Steps 1-5, 7-10
// Steps 6.b-6.e: +0 != -0
return x !== 0 || 1 / x === 1 / y;
} else {
// Step 6.a: NaN == NaN
return x !== x && y !== y;
}
}
/*eslint-enable no-self-compare*/
/**
* We use an Error-like object for backward compatibility as people may call
* PropTypes directly and inspect their output. However, we don't use real
* Errors anymore. We don't inspect their stack anyway, and creating them
* is prohibitively expensive if they are created too often, such as what
* happens in oneOfType() for any type before the one that matched.
*/
function PropTypeError(message) {
this.message = message;
this.stack = '';
}
// Make `instanceof Error` still work for returned errors.
PropTypeError.prototype = Error.prototype;
function createChainableTypeChecker(validate) {
if (process.env.NODE_ENV !== 'production') {
var manualPropTypeCallCache = {};
var manualPropTypeWarningCount = 0;
}
function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
componentName = componentName || ANONYMOUS;
propFullName = propFullName || propName;
if (secret !== ReactPropTypesSecret) {
if (throwOnDirectAccess) {
// New behavior only for users of `prop-types` package
invariant(
false,
'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
'Use `PropTypes.checkPropTypes()` to call them. ' +
'Read more at http://fb.me/use-check-prop-types'
);
} else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {
// Old behavior for people using React.PropTypes
var cacheKey = componentName + ':' + propName;
if (
!manualPropTypeCallCache[cacheKey] &&
// Avoid spamming the console because they are often not actionable except for lib authors
manualPropTypeWarningCount < 3
) {
warning(
false,
'You are manually calling a React.PropTypes validation ' +
'function for the `%s` prop on `%s`. This is deprecated ' +
'and will throw in the standalone `prop-types` package. ' +
'You may be seeing this warning due to a third-party PropTypes ' +
'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.',
propFullName,
componentName
);
manualPropTypeCallCache[cacheKey] = true;
manualPropTypeWarningCount++;
}
}
}
if (props[propName] == null) {
if (isRequired) {
if (props[propName] === null) {
return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));
}
return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));
}
return null;
} else {
return validate(props, propName, componentName, location, propFullName);
}
}
var chainedCheckType = checkType.bind(null, false);
chainedCheckType.isRequired = checkType.bind(null, true);
return chainedCheckType;
}
function createPrimitiveTypeChecker(expectedType) {
function validate(props, propName, componentName, location, propFullName, secret) {
var propValue = props[propName];
var propType = getPropType(propValue);
if (propType !== expectedType) {
// `propValue` being instance of, say, date/regexp, pass the 'object'
// check, but we can offer a more precise error message here rather than
// 'of type `object`'.
var preciseType = getPreciseType(propValue);
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'));
}
return null;
}
return createChainableTypeChecker(validate);
}
function createAnyTypeChecker() {
return createChainableTypeChecker(emptyFunction.thatReturnsNull);
}
function createArrayOfTypeChecker(typeChecker) {
function validate(props, propName, componentName, location, propFullName) {
if (typeof typeChecker !== 'function') {
return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');
}
var propValue = props[propName];
if (!Array.isArray(propValue)) {
var propType = getPropType(propValue);
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
}
for (var i = 0; i < propValue.length; i++) {
var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);
if (error instanceof Error) {
return error;
}
}
return null;
}
return createChainableTypeChecker(validate);
}
function createElementTypeChecker() {
function validate(props, propName, componentName, location, propFullName) {
var propValue = props[propName];
if (!isValidElement(propValue)) {
var propType = getPropType(propValue);
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
}
return null;
}
return createChainableTypeChecker(validate);
}
function createInstanceTypeChecker(expectedClass) {
function validate(props, propName, componentName, location, propFullName) {
if (!(props[propName] instanceof expectedClass)) {
var expectedClassName = expectedClass.name || ANONYMOUS;
var actualClassName = getClassName(props[propName]);
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));
}
return null;
}
return createChainableTypeChecker(validate);
}
function createEnumTypeChecker(expectedValues) {
if (!Array.isArray(expectedValues)) {
process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;
return emptyFunction.thatReturnsNull;
}
function validate(props, propName, componentName, location, propFullName) {
var propValue = props[propName];
for (var i = 0; i < expectedValues.length; i++) {
if (is(propValue, expectedValues[i])) {
return null;
}
}
var valuesString = JSON.stringify(expectedValues);
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + propValue + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));
}
return createChainableTypeChecker(validate);
}
function createObjectOfTypeChecker(typeChecker) {
function validate(props, propName, componentName, location, propFullName) {
if (typeof typeChecker !== 'function') {
return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');
}
var propValue = props[propName];
var propType = getPropType(propValue);
if (propType !== 'object') {
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));
}
for (var key in propValue) {
if (propValue.hasOwnProperty(key)) {
var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
if (error instanceof Error) {
return error;
}
}
}
return null;
}
return createChainableTypeChecker(validate);
}
function createUnionTypeChecker(arrayOfTypeCheckers) {
if (!Array.isArray(arrayOfTypeCheckers)) {
process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
return emptyFunction.thatReturnsNull;
}
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
var checker = arrayOfTypeCheckers[i];
if (typeof checker !== 'function') {
warning(
false,
'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +
'received %s at index %s.',
getPostfixForTypeWarning(checker),
i
);
return emptyFunction.thatReturnsNull;
}
}
function validate(props, propName, componentName, location, propFullName) {
for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
var checker = arrayOfTypeCheckers[i];
if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {
return null;
}
}
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.'));
}
return createChainableTypeChecker(validate);
}
function createNodeChecker() {
function validate(props, propName, componentName, location, propFullName) {
if (!isNode(props[propName])) {
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));
}
return null;
}
return createChainableTypeChecker(validate);
}
function createShapeTypeChecker(shapeTypes) {
function validate(props, propName, componentName, location, propFullName) {
var propValue = props[propName];
var propType = getPropType(propValue);
if (propType !== 'object') {
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
}
for (var key in shapeTypes) {
var checker = shapeTypes[key];
if (!checker) {
continue;
}
var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
if (error) {
return error;
}
}
return null;
}
return createChainableTypeChecker(validate);
}
function createStrictShapeTypeChecker(shapeTypes) {
function validate(props, propName, componentName, location, propFullName) {
var propValue = props[propName];
var propType = getPropType(propValue);
if (propType !== 'object') {
return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
}
// We need to check all keys in case some are required but missing from
// props.
var allKeys = assign({}, props[propName], shapeTypes);
for (var key in allKeys) {
var checker = shapeTypes[key];
if (!checker) {
return new PropTypeError(
'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +
'\nBad object: ' + JSON.stringify(props[propName], null, ' ') +
'\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')
);
}
var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);
if (error) {
return error;
}
}
return null;
}
return createChainableTypeChecker(validate);
}
function isNode(propValue) {
switch (typeof propValue) {
case 'number':
case 'string':
case 'undefined':
return true;
case 'boolean':
return !propValue;
case 'object':
if (Array.isArray(propValue)) {
return propValue.every(isNode);
}
if (propValue === null || isValidElement(propValue)) {
return true;
}
var iteratorFn = getIteratorFn(propValue);
if (iteratorFn) {
var iterator = iteratorFn.call(propValue);
var step;
if (iteratorFn !== propValue.entries) {
while (!(step = iterator.next()).done) {
if (!isNode(step.value)) {
return false;
}
}
} else {
// Iterator will provide entry [k,v] tuples rather than values.
while (!(step = iterator.next()).done) {
var entry = step.value;
if (entry) {
if (!isNode(entry[1])) {
return false;
}
}
}
}
} else {
return false;
}
return true;
default:
return false;
}
}
function isSymbol(propType, propValue) {
// Native Symbol.
if (propType === 'symbol') {
return true;
}
// 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'
if (propValue['@@toStringTag'] === 'Symbol') {
return true;
}
// Fallback for non-spec compliant Symbols which are polyfilled.
if (typeof Symbol === 'function' && propValue instanceof Symbol) {
return true;
}
return false;
}
// Equivalent of `typeof` but with special handling for array and regexp.
function getPropType(propValue) {
var propType = typeof propValue;
if (Array.isArray(propValue)) {
return 'array';
}
if (propValue instanceof RegExp) {
// Old webkits (at least until Android 4.0) return 'function' rather than
// 'object' for typeof a RegExp. We'll normalize this here so that /bla/
// passes PropTypes.object.
return 'object';
}
if (isSymbol(propType, propValue)) {
return 'symbol';
}
return propType;
}
// This handles more types than `getPropType`. Only used for error messages.
// See `createPrimitiveTypeChecker`.
function getPreciseType(propValue) {
if (typeof propValue === 'undefined' || propValue === null) {
return '' + propValue;
}
var propType = getPropType(propValue);
if (propType === 'object') {
if (propValue instanceof Date) {
return 'date';
} else if (propValue instanceof RegExp) {
return 'regexp';
}
}
return propType;
}
// Returns a string that is postfixed to a warning about an invalid type.
// For example, "undefined" or "of type array"
function getPostfixForTypeWarning(value) {
var type = getPreciseType(value);
switch (type) {
case 'array':
case 'object':
return 'an ' + type;
case 'boolean':
case 'date':
case 'regexp':
return 'a ' + type;
default:
return type;
}
}
// Returns class name of the object, if any.
function getClassName(propValue) {
if (!propValue.constructor || !propValue.constructor.name) {
return ANONYMOUS;
}
return propValue.constructor.name;
}
ReactPropTypes.checkPropTypes = checkPropTypes;
ReactPropTypes.PropTypes = ReactPropTypes;
return ReactPropTypes;
};
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(0)))
/***/ }),
/* 10 */
/***/ (function(module, exports) {
module.exports = require("object-assign");
/***/ }),
/* 11 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(process) {/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
if (process.env.NODE_ENV !== 'production') {
var invariant = __webpack_require__(1);
var warning = __webpack_require__(4);
var ReactPropTypesSecret = __webpack_require__(2);
var loggedTypeFailures = {};
}
/**
* Assert that the values match with the type specs.
* Error messages are memorized and will only be shown once.
*
* @param {object} typeSpecs Map of name to a ReactPropType
* @param {object} values Runtime values that need to be type-chec