Repository URL to install this package:
|
Version:
8.1.0-rc.5 ▾
|
"use strict";
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _react = _interopRequireWildcard(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _CustomSelect = _interopRequireDefault(require("../CustomSelect"));
var _sortedTimezoneList = _interopRequireDefault(require("./sortedTimezoneList.json"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _extends() { _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; }; return _extends.apply(this, arguments); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var TimezonePicker = /*#__PURE__*/function (_Component) {
_inherits(TimezonePicker, _Component);
var _super = _createSuper(TimezonePicker);
function TimezonePicker(props) {
var _this;
_classCallCheck(this, TimezonePicker);
_this = _super.call(this, props);
_this.options = _sortedTimezoneList["default"].map(function (timezone) {
return {
text: "".concat(timezone.countryName, " - ").concat(timezone.mainCities.join(', ')),
value: timezone.name,
markup: /*#__PURE__*/_react["default"].createElement("div", null, /*#__PURE__*/_react["default"].createElement("span", {
className: "bold"
}, timezone.countryName), " - ", /*#__PURE__*/_react["default"].createElement("span", null, timezone.mainCities.join(', ')))
};
});
return _this;
}
_createClass(TimezonePicker, [{
key: "render",
value: function render() {
var timezoneOptionsFormatter = this.props.timezoneOptionsFormatter;
var options = timezoneOptionsFormatter ? timezoneOptionsFormatter(_sortedTimezoneList["default"]) : this.options;
return /*#__PURE__*/_react["default"].createElement(_CustomSelect["default"], _extends({
name: "timezone",
options: options
}, this.props));
}
}]);
return TimezonePicker;
}(_react.Component);
exports["default"] = TimezonePicker;
_defineProperty(TimezonePicker, "propTypes", {
/**
* (Inherited from CustomSelect) The selected value, if any.
*/
selectedValue: _propTypes["default"].string,
/**
* (Inherited from CustomSelect) The label to display on top of the component.
*/
label: _propTypes["default"].string,
/**
* (Inherited from CustomSelect) The text to display if no option is selected.
*/
noSelectionLabel: _propTypes["default"].string,
/**
* (Inherited from CustomSelect) The callback to execute when the value changes.
* @param {{ name: string, text: string, value: string, altered: boolean }} timezone
*/
onChange: _propTypes["default"].func,
/**
* Optional function that provides the sortedTimezonesList as an argument and allows to build a custom options array for the <CustomSelect />
* WARNING: If you use this, make sure to follow the CustomSelect API for options
*/
timezoneOptionsFormatter: _propTypes["default"].func
/**
* All other props are also passed through to the CustomSelect.
*/
});
_defineProperty(TimezonePicker, "defaultProps", {
selectedValue: undefined,
label: undefined,
noSelectionLabel: undefined,
onChange: function onChange() {},
timezoneOptionsFormatter: undefined
});