@zohodesk/components 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/PropLessFiles.html +1 -1
- package/.cli/PropValidationExcludeFilesArray.js +10 -2
- package/.cli/propValidation_report.html +1 -1
- package/README.md +8 -0
- package/coverage/Button/Button.js.html +1 -1
- package/coverage/Button/css/Button.module.css.html +1 -1
- package/coverage/Button/css/cssJSLogic.js.html +1 -1
- package/coverage/Button/css/index.html +1 -1
- package/coverage/Button/index.html +1 -1
- package/coverage/Button/props/defaultProps.js.html +1 -1
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
- package/coverage/Buttongroup/index.html +1 -1
- package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
- package/coverage/Buttongroup/props/index.html +1 -1
- package/coverage/Buttongroup/props/propTypes.js.html +1 -1
- package/coverage/index.html +1 -1
- package/coverage/utils/dummyFunction.js.html +1 -1
- package/coverage/utils/index.html +1 -1
- package/es/index.js +2 -1
- package/es/v1/Accordion/Accordion.js +65 -0
- package/es/v1/Accordion/AccordionItem.js +57 -0
- package/es/v1/Accordion/index.js +2 -0
- package/es/v1/Animation/Animation.js +127 -0
- package/es/v1/AppContainer/AppContainer.js +134 -0
- package/es/v1/Avatar/Avatar.js +189 -0
- package/es/v1/AvatarTeam/AvatarTeam.js +70 -0
- package/es/v1/Button/Button.js +68 -0
- package/es/v1/Buttongroup/Buttongroup.js +31 -0
- package/es/v1/Card/Card.js +271 -0
- package/es/v1/CheckBox/CheckBox.js +155 -0
- package/es/v1/DateTime/CalendarView.js +218 -0
- package/es/v1/DateTime/DateTime.js +783 -0
- package/es/v1/DateTime/DateTimePopupFooter.js +47 -0
- package/es/v1/DateTime/DateTimePopupHeader.js +105 -0
- package/es/v1/DateTime/DateWidget.js +1098 -0
- package/es/v1/DateTime/DaysRow.js +31 -0
- package/es/v1/DateTime/Time.js +166 -0
- package/es/v1/DateTime/YearView.js +264 -0
- package/es/v1/DateTime/index.js +1 -0
- package/es/v1/DropBox/DropBox.js +91 -0
- package/es/v1/DropBox/DropBoxElement/DropBoxElement.js +132 -0
- package/es/v1/DropDown/DropDown.js +73 -0
- package/es/v1/DropDown/DropDownHeading.js +44 -0
- package/es/v1/DropDown/DropDownItem.js +76 -0
- package/es/v1/DropDown/DropDownSearch.js +63 -0
- package/es/v1/DropDown/DropDownSeparator.js +15 -0
- package/es/v1/Heading/Heading.js +32 -0
- package/es/v1/Label/Label.js +40 -0
- package/es/v1/Layout/Box.js +115 -0
- package/es/v1/Layout/Container.js +132 -0
- package/es/v1/Layout/index.js +2 -0
- package/es/v1/ListItem/ListContainer.js +102 -0
- package/es/v1/ListItem/ListItem.js +124 -0
- package/es/v1/ListItem/ListItemWithAvatar.js +145 -0
- package/es/v1/ListItem/ListItemWithCheckBox.js +104 -0
- package/es/v1/ListItem/ListItemWithIcon.js +127 -0
- package/es/v1/ListItem/ListItemWithRadio.js +105 -0
- package/es/v1/ListItem/index.js +6 -0
- package/es/v1/Modal/Modal.js +154 -0
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1079 -0
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +568 -0
- package/es/v1/MultiSelect/EmptyState.js +64 -0
- package/es/v1/MultiSelect/MobileHeader/MobileHeader.js +50 -0
- package/es/v1/MultiSelect/MultiSelect.js +1120 -0
- package/es/v1/MultiSelect/MultiSelectHeader.js +32 -0
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +216 -0
- package/es/v1/MultiSelect/SelectedOptions.js +82 -0
- package/es/v1/MultiSelect/Suggestions.js +142 -0
- package/es/v1/MultiSelect/index.js +4 -0
- package/es/v1/PopOver/PopOver.js +211 -0
- package/es/v1/Popup/Popup.js +645 -0
- package/es/v1/Radio/Radio.js +115 -0
- package/es/v1/Responsive/CustomResponsive.js +195 -0
- package/es/v1/Responsive/RefWrapper.js +39 -0
- package/es/v1/Responsive/ResizeComponent.js +197 -0
- package/es/v1/Responsive/ResizeObserver.js +140 -0
- package/es/v1/Responsive/Responsive.js +194 -0
- package/es/v1/Responsive/index.js +9 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +58 -0
- package/es/v1/Ribbon/Ribbon.js +33 -0
- package/es/v1/RippleEffect/RippleEffect.js +24 -0
- package/es/v1/Select/GroupSelect.js +803 -0
- package/es/v1/Select/Select.js +969 -0
- package/es/v1/Select/SelectWithAvatar.js +344 -0
- package/es/v1/Select/SelectWithIcon.js +535 -0
- package/es/v1/Select/index.js +4 -0
- package/es/v1/Stencils/Stencils.js +26 -0
- package/es/v1/Switch/Switch.js +94 -0
- package/es/v1/Tab/Tab.js +108 -0
- package/es/v1/Tab/TabContent.js +30 -0
- package/es/v1/Tab/TabContentWrapper.js +29 -0
- package/es/v1/Tab/TabWrapper.js +57 -0
- package/es/v1/Tab/Tabs.js +612 -0
- package/es/v1/Tab/index.js +5 -0
- package/es/v1/Tag/Tag.js +134 -0
- package/es/v1/TextBox/TextBox.js +154 -0
- package/es/v1/TextBoxIcon/TextBoxIcon.js +158 -0
- package/es/v1/Textarea/Textarea.js +102 -0
- package/es/v1/Tooltip/Tooltip.js +518 -0
- package/es/v1/Typography/Typography.js +38 -0
- package/es/v1/Typography/css/Typography.module.css +376 -0
- package/es/v1/Typography/css/cssJSLogic.js +46 -0
- package/es/v1/Typography/css/letterSpacingMap.js +12 -0
- package/es/v1/Typography/props/defaultProps.js +8 -0
- package/es/v1/Typography/props/propTypes.js +24 -0
- package/es/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +69 -0
- package/es/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +100 -0
- package/es/v1/semantic/Button/Button.js +53 -0
- package/es/v1/semantic/index.js +1 -0
- package/lib/index.js +10 -1
- package/lib/v1/Accordion/Accordion.js +96 -0
- package/lib/v1/Accordion/AccordionItem.js +68 -0
- package/lib/v1/Accordion/index.js +23 -0
- package/lib/v1/Animation/Animation.js +143 -0
- package/lib/v1/AppContainer/AppContainer.js +204 -0
- package/lib/v1/Avatar/Avatar.js +246 -0
- package/lib/v1/AvatarTeam/AvatarTeam.js +81 -0
- package/lib/v1/Button/Button.js +82 -0
- package/lib/v1/Buttongroup/Buttongroup.js +44 -0
- package/lib/v1/Card/Card.js +365 -0
- package/lib/v1/CheckBox/CheckBox.js +166 -0
- package/lib/v1/DateTime/CalendarView.js +285 -0
- package/lib/v1/DateTime/DateTime.js +872 -0
- package/lib/v1/DateTime/DateTimePopupFooter.js +96 -0
- package/lib/v1/DateTime/DateTimePopupHeader.js +166 -0
- package/lib/v1/DateTime/DateWidget.js +1125 -0
- package/lib/v1/DateTime/DaysRow.js +80 -0
- package/lib/v1/DateTime/Time.js +254 -0
- package/lib/v1/DateTime/YearView.js +325 -0
- package/lib/v1/DateTime/index.js +15 -0
- package/lib/v1/DropBox/DropBox.js +119 -0
- package/lib/v1/DropBox/DropBoxElement/DropBoxElement.js +145 -0
- package/lib/v1/DropDown/DropDown.js +170 -0
- package/lib/v1/DropDown/DropDownHeading.js +93 -0
- package/lib/v1/DropDown/DropDownItem.js +127 -0
- package/lib/v1/DropDown/DropDownSearch.js +113 -0
- package/lib/v1/DropDown/DropDownSeparator.js +64 -0
- package/lib/v1/Heading/Heading.js +49 -0
- package/lib/v1/Label/Label.js +51 -0
- package/lib/v1/Layout/Box.js +128 -0
- package/lib/v1/Layout/Container.js +145 -0
- package/lib/v1/Layout/index.js +23 -0
- package/lib/v1/ListItem/ListContainer.js +120 -0
- package/lib/v1/ListItem/ListItem.js +138 -0
- package/lib/v1/ListItem/ListItemWithAvatar.js +162 -0
- package/lib/v1/ListItem/ListItemWithCheckBox.js +125 -0
- package/lib/v1/ListItem/ListItemWithIcon.js +143 -0
- package/lib/v1/ListItem/ListItemWithRadio.js +126 -0
- package/lib/v1/ListItem/index.js +55 -0
- package/lib/v1/Modal/Modal.js +212 -0
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1167 -0
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +634 -0
- package/lib/v1/MultiSelect/EmptyState.js +112 -0
- package/lib/v1/MultiSelect/MobileHeader/MobileHeader.js +62 -0
- package/lib/v1/MultiSelect/MultiSelect.js +1201 -0
- package/lib/v1/MultiSelect/MultiSelectHeader.js +78 -0
- package/lib/v1/MultiSelect/MultiSelectWithAvatar.js +270 -0
- package/lib/v1/MultiSelect/SelectedOptions.js +126 -0
- package/lib/v1/MultiSelect/Suggestions.js +195 -0
- package/lib/v1/MultiSelect/index.js +39 -0
- package/lib/v1/PopOver/PopOver.js +293 -0
- package/lib/v1/Popup/Popup.js +715 -0
- package/lib/v1/Radio/Radio.js +126 -0
- package/lib/v1/Responsive/CustomResponsive.js +242 -0
- package/lib/v1/Responsive/RefWrapper.js +57 -0
- package/lib/v1/Responsive/ResizeComponent.js +268 -0
- package/lib/v1/Responsive/ResizeObserver.js +168 -0
- package/lib/v1/Responsive/Responsive.js +274 -0
- package/lib/v1/Responsive/index.js +55 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +79 -0
- package/lib/v1/Ribbon/Ribbon.js +44 -0
- package/lib/v1/RippleEffect/RippleEffect.js +39 -0
- package/lib/v1/Select/GroupSelect.js +877 -0
- package/lib/v1/Select/Select.js +1013 -0
- package/lib/v1/Select/SelectWithAvatar.js +394 -0
- package/lib/v1/Select/SelectWithIcon.js +597 -0
- package/lib/v1/Select/index.js +39 -0
- package/lib/v1/Stencils/Stencils.js +43 -0
- package/lib/v1/Switch/Switch.js +108 -0
- package/lib/v1/Tab/Tab.js +132 -0
- package/lib/v1/Tab/TabContent.js +42 -0
- package/lib/v1/Tab/TabContentWrapper.js +42 -0
- package/lib/v1/Tab/TabWrapper.js +89 -0
- package/lib/v1/Tab/Tabs.js +680 -0
- package/lib/v1/Tab/index.js +47 -0
- package/lib/v1/Tag/Tag.js +154 -0
- package/lib/v1/TextBox/TextBox.js +168 -0
- package/lib/v1/TextBoxIcon/TextBoxIcon.js +196 -0
- package/lib/v1/Textarea/Textarea.js +118 -0
- package/lib/v1/Tooltip/Tooltip.js +586 -0
- package/lib/v1/Typography/Typography.js +56 -0
- package/lib/v1/Typography/css/Typography.module.css +376 -0
- package/lib/v1/Typography/css/cssJSLogic.js +41 -0
- package/lib/v1/Typography/css/letterSpacingMap.js +20 -0
- package/lib/v1/Typography/props/defaultProps.js +15 -0
- package/lib/v1/Typography/props/propTypes.js +35 -0
- package/lib/v1/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +90 -0
- package/lib/v1/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +126 -0
- package/lib/v1/semantic/Button/Button.js +63 -0
- package/lib/v1/semantic/index.js +15 -0
- package/package.json +4 -4
- package/result.json +1 -1
|
@@ -0,0 +1,872 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _propTypes = require("../../DateTime/props/propTypes");
|
|
13
|
+
|
|
14
|
+
var _defaultProps = require("../../DateTime/props/defaultProps");
|
|
15
|
+
|
|
16
|
+
var _datetimejs = _interopRequireDefault(require("@zohodesk/datetimejs"));
|
|
17
|
+
|
|
18
|
+
var _CalendarView = _interopRequireDefault(require("./CalendarView"));
|
|
19
|
+
|
|
20
|
+
var _YearView = _interopRequireDefault(require("./YearView"));
|
|
21
|
+
|
|
22
|
+
var _DateTimePopupHeader = _interopRequireDefault(require("./DateTimePopupHeader"));
|
|
23
|
+
|
|
24
|
+
var _DateTimePopupFooter = _interopRequireDefault(require("./DateTimePopupFooter"));
|
|
25
|
+
|
|
26
|
+
var _Time = _interopRequireDefault(require("./Time"));
|
|
27
|
+
|
|
28
|
+
var _DateTimeModule = _interopRequireDefault(require("../../DateTime/DateTime.module.css"));
|
|
29
|
+
|
|
30
|
+
var _common = require("../../utils/datetime/common");
|
|
31
|
+
|
|
32
|
+
var _Common = require("../../utils/Common");
|
|
33
|
+
|
|
34
|
+
var _constants = require("../../DateTime/constants");
|
|
35
|
+
|
|
36
|
+
var _ResponsiveDropBox = _interopRequireDefault(require("../ResponsiveDropBox/ResponsiveDropBox"));
|
|
37
|
+
|
|
38
|
+
var _Layout = require("../Layout");
|
|
39
|
+
|
|
40
|
+
var _dateFormatUtils = require("../../DateTime/dateFormatUtils");
|
|
41
|
+
|
|
42
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
43
|
+
|
|
44
|
+
function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct.bind(); } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
|
|
45
|
+
|
|
46
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
47
|
+
|
|
48
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
49
|
+
|
|
50
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
51
|
+
|
|
52
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
53
|
+
|
|
54
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
55
|
+
|
|
56
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
57
|
+
|
|
58
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
59
|
+
|
|
60
|
+
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); } }
|
|
61
|
+
|
|
62
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
63
|
+
|
|
64
|
+
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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
65
|
+
|
|
66
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
67
|
+
|
|
68
|
+
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); }; }
|
|
69
|
+
|
|
70
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
71
|
+
|
|
72
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
73
|
+
|
|
74
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
75
|
+
|
|
76
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
77
|
+
|
|
78
|
+
function title(date, year, month) {
|
|
79
|
+
var monthNames = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
|
|
80
|
+
var HeadingText = "".concat(monthNames[month] || '', " ").concat(year);
|
|
81
|
+
return HeadingText;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
var DateTime = /*#__PURE__*/function (_React$PureComponent) {
|
|
85
|
+
_inherits(DateTime, _React$PureComponent);
|
|
86
|
+
|
|
87
|
+
var _super = _createSuper(DateTime);
|
|
88
|
+
|
|
89
|
+
function DateTime(props) {
|
|
90
|
+
var _this;
|
|
91
|
+
|
|
92
|
+
_classCallCheck(this, DateTime);
|
|
93
|
+
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_this.getHours = _this.getHours.bind(_assertThisInitialized(_this));
|
|
96
|
+
_this.amPmSelect = _this.amPmSelect.bind(_assertThisInitialized(_this));
|
|
97
|
+
_this.hoursSelect = _this.hoursSelect.bind(_assertThisInitialized(_this));
|
|
98
|
+
_this.dateSelect = _this.dateSelect.bind(_assertThisInitialized(_this));
|
|
99
|
+
_this.handleClear = _this.handleClear.bind(_assertThisInitialized(_this));
|
|
100
|
+
_this.handleSelect = _this.handleSelect.bind(_assertThisInitialized(_this));
|
|
101
|
+
_this.minutesSelect = _this.minutesSelect.bind(_assertThisInitialized(_this));
|
|
102
|
+
_this.modifyCalendar = _this.modifyCalendar.bind(_assertThisInitialized(_this));
|
|
103
|
+
_this.handleGetSelectedDate = _this.handleGetSelectedDate.bind(_assertThisInitialized(_this));
|
|
104
|
+
_this.handleChange = _this.handleChange.bind(_assertThisInitialized(_this));
|
|
105
|
+
_this.handleCalendarNavigation = _this.handleCalendarNavigation.bind(_assertThisInitialized(_this));
|
|
106
|
+
_this.handleExposeMethods = _this.handleExposeMethods.bind(_assertThisInitialized(_this));
|
|
107
|
+
_this.handleDateReset = _this.handleDateReset.bind(_assertThisInitialized(_this));
|
|
108
|
+
_this.handleOpenYearView = _this.handleOpenYearView.bind(_assertThisInitialized(_this));
|
|
109
|
+
_this.handleSelectMonth = _this.handleSelectMonth.bind(_assertThisInitialized(_this));
|
|
110
|
+
_this.handleSelectYear = _this.handleSelectYear.bind(_assertThisInitialized(_this));
|
|
111
|
+
_this.handleSelectMonthViaYearView = _this.handleSelectMonthViaYearView.bind(_assertThisInitialized(_this));
|
|
112
|
+
_this.handleGetStateValues = _this.handleGetStateValues.bind(_assertThisInitialized(_this));
|
|
113
|
+
_this.handleYearViewToggle = _this.handleYearViewToggle.bind(_assertThisInitialized(_this));
|
|
114
|
+
_this.getInitialDate = _this.getInitialDate.bind(_assertThisInitialized(_this));
|
|
115
|
+
var _props$i18nKeys$ampmT = props.i18nKeys.ampmText,
|
|
116
|
+
ampmText = _props$i18nKeys$ampmT === void 0 ? _constants.ampmTextDefault : _props$i18nKeys$ampmT;
|
|
117
|
+
|
|
118
|
+
_this.ampmSuggestions = function () {
|
|
119
|
+
var ampmSuggestions = [];
|
|
120
|
+
ampmText.forEach(function (text, index) {
|
|
121
|
+
if (index === 0) {
|
|
122
|
+
ampmSuggestions.push({
|
|
123
|
+
text: text,
|
|
124
|
+
id: 'AM'
|
|
125
|
+
});
|
|
126
|
+
} else if (index === 1) {
|
|
127
|
+
ampmSuggestions.push({
|
|
128
|
+
text: text,
|
|
129
|
+
id: 'PM'
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
});
|
|
133
|
+
return ampmSuggestions;
|
|
134
|
+
}();
|
|
135
|
+
|
|
136
|
+
var initalStateObj = _this.getStateFromProps(props);
|
|
137
|
+
|
|
138
|
+
_this.state = Object.assign({}, initalStateObj, {
|
|
139
|
+
isYearView: false,
|
|
140
|
+
isMonthOpen: false
|
|
141
|
+
});
|
|
142
|
+
return _this;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
_createClass(DateTime, [{
|
|
146
|
+
key: "componentDidMount",
|
|
147
|
+
value: function componentDidMount() {
|
|
148
|
+
this.handleExposeMethods(true);
|
|
149
|
+
}
|
|
150
|
+
}, {
|
|
151
|
+
key: "componentDidUpdate",
|
|
152
|
+
value: function componentDidUpdate(prevProps) {
|
|
153
|
+
var _this$props = this.props,
|
|
154
|
+
value = _this$props.value,
|
|
155
|
+
isActive = _this$props.isActive,
|
|
156
|
+
is24Hour = _this$props.is24Hour;
|
|
157
|
+
|
|
158
|
+
if (prevProps.value !== value || is24Hour !== prevProps.is24Hour) {
|
|
159
|
+
this.setState(this.getStateFromProps(this.props));
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (prevProps.isActive !== isActive && !isActive) {
|
|
163
|
+
this.setState({
|
|
164
|
+
isYearView: false,
|
|
165
|
+
isMonthOpen: false
|
|
166
|
+
});
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}, {
|
|
170
|
+
key: "componentWillUnmount",
|
|
171
|
+
value: function componentWillUnmount() {
|
|
172
|
+
this.handleExposeMethods(false);
|
|
173
|
+
}
|
|
174
|
+
}, {
|
|
175
|
+
key: "getInitialDate",
|
|
176
|
+
value: function getInitialDate(value) {
|
|
177
|
+
var timeZone = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined;
|
|
178
|
+
var isDateTime = arguments.length > 2 ? arguments[2] : undefined;
|
|
179
|
+
var result = null;
|
|
180
|
+
|
|
181
|
+
if (isDateTime) {
|
|
182
|
+
if (timeZone && value) {
|
|
183
|
+
result = _datetimejs["default"].toDate(_datetimejs["default"].tz.utcToTz(value, timeZone));
|
|
184
|
+
} else {
|
|
185
|
+
value = value ? value.replace('Z', '') : null;
|
|
186
|
+
result = value ? new Date(value) : new Date();
|
|
187
|
+
}
|
|
188
|
+
} else {
|
|
189
|
+
if (value) {
|
|
190
|
+
if (timeZone) {
|
|
191
|
+
result = _datetimejs["default"].toDate(value);
|
|
192
|
+
} else {
|
|
193
|
+
result = new Date(value);
|
|
194
|
+
}
|
|
195
|
+
} else {
|
|
196
|
+
result = new Date();
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
return result;
|
|
201
|
+
}
|
|
202
|
+
}, {
|
|
203
|
+
key: "getStateFromProps",
|
|
204
|
+
value: function getStateFromProps(props) {
|
|
205
|
+
var date, month, year, hours, mins, amPm;
|
|
206
|
+
var value = props.value,
|
|
207
|
+
timeZone = props.timeZone,
|
|
208
|
+
defaultTime = props.defaultTime,
|
|
209
|
+
needDefaultTime = props.needDefaultTime,
|
|
210
|
+
isDateTimeField = props.isDateTimeField,
|
|
211
|
+
is24Hour = props.is24Hour; //defaultTime --> 12:00:PM
|
|
212
|
+
|
|
213
|
+
defaultTime = needDefaultTime ? defaultTime ? defaultTime : '12:00:PM' : '';
|
|
214
|
+
var defaultHour, defaultMin, defaultAmPm;
|
|
215
|
+
var todayObj = new Date();
|
|
216
|
+
var todayDate = todayObj.getDate();
|
|
217
|
+
var todayMonth = todayObj.getMonth();
|
|
218
|
+
var todayYear = todayObj.getFullYear();
|
|
219
|
+
|
|
220
|
+
if (!value) {
|
|
221
|
+
var _ref = defaultTime ? defaultTime.split(':') : [];
|
|
222
|
+
|
|
223
|
+
var _ref2 = _slicedToArray(_ref, 3);
|
|
224
|
+
|
|
225
|
+
defaultHour = _ref2[0];
|
|
226
|
+
defaultMin = _ref2[1];
|
|
227
|
+
defaultAmPm = _ref2[2];
|
|
228
|
+
defaultHour = parseInt(defaultHour);
|
|
229
|
+
defaultMin = parseInt(defaultMin);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
var dateObj = this.getInitialDate(value, timeZone, isDateTimeField);
|
|
233
|
+
date = dateObj.getDate();
|
|
234
|
+
month = dateObj.getMonth();
|
|
235
|
+
year = dateObj.getFullYear();
|
|
236
|
+
hours = defaultHour ? defaultHour : dateObj.getHours();
|
|
237
|
+
mins = !(0, _Common.getIsEmptyValue)(defaultMin) ? defaultMin : dateObj.getMinutes();
|
|
238
|
+
mins = (0, _dateFormatUtils.addZeroIfNeeded)(mins);
|
|
239
|
+
amPm = defaultAmPm ? defaultAmPm : hours < 12 ? 'AM' : 'PM';
|
|
240
|
+
hours = this.getHours(hours, is24Hour);
|
|
241
|
+
return {
|
|
242
|
+
date: date,
|
|
243
|
+
month: month,
|
|
244
|
+
year: year,
|
|
245
|
+
mins: mins,
|
|
246
|
+
hours: hours,
|
|
247
|
+
amPm: amPm,
|
|
248
|
+
todayDate: todayDate,
|
|
249
|
+
todayMonth: todayMonth,
|
|
250
|
+
todayYear: todayYear
|
|
251
|
+
};
|
|
252
|
+
}
|
|
253
|
+
}, {
|
|
254
|
+
key: "getHours",
|
|
255
|
+
value: function getHours(hoursParam, is24Hour) {
|
|
256
|
+
var hours = hoursParam;
|
|
257
|
+
|
|
258
|
+
if (!is24Hour) {
|
|
259
|
+
if (hours === 0) {
|
|
260
|
+
hours = 12;
|
|
261
|
+
} else if (hours > 12) {
|
|
262
|
+
hours -= 12;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
hours = (0, _dateFormatUtils.addZeroIfNeeded)(hours);
|
|
267
|
+
return hours;
|
|
268
|
+
}
|
|
269
|
+
}, {
|
|
270
|
+
key: "handleGetSelectedDate",
|
|
271
|
+
value: function handleGetSelectedDate() {
|
|
272
|
+
var selectedInfo = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
273
|
+
var _this$props2 = this.props,
|
|
274
|
+
min = _this$props2.min,
|
|
275
|
+
max = _this$props2.max,
|
|
276
|
+
timeZone = _this$props2.timeZone,
|
|
277
|
+
isDateTimeField = _this$props2.isDateTimeField,
|
|
278
|
+
dateFormat = _this$props2.dateFormat,
|
|
279
|
+
is24Hour = _this$props2.is24Hour,
|
|
280
|
+
customDateFormat = _this$props2.customDateFormat;
|
|
281
|
+
var year = selectedInfo.year,
|
|
282
|
+
month = selectedInfo.month,
|
|
283
|
+
date = selectedInfo.date,
|
|
284
|
+
hours = selectedInfo.hours,
|
|
285
|
+
mins = selectedInfo.mins,
|
|
286
|
+
amPm = selectedInfo.amPm;
|
|
287
|
+
|
|
288
|
+
if (!is24Hour) {
|
|
289
|
+
if (parseInt(hours) === 12) {
|
|
290
|
+
hours = amPm === 'AM' ? 0 : 12;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
if (amPm === 'PM') {
|
|
294
|
+
if (hours < 12) {
|
|
295
|
+
hours = parseInt(hours) + 12;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
var minInMillis = min ? _datetimejs["default"].millis(min) : null,
|
|
301
|
+
maxInMillis = max ? _datetimejs["default"].millis(max) : null,
|
|
302
|
+
selectedInMillis,
|
|
303
|
+
selectedValue = '',
|
|
304
|
+
formattedValue;
|
|
305
|
+
var currentDate = new Date();
|
|
306
|
+
var sec = currentDate.getSeconds();
|
|
307
|
+
var milliSec = currentDate.getMilliseconds();
|
|
308
|
+
|
|
309
|
+
if (isDateTimeField || customDateFormat) {
|
|
310
|
+
var dateArgs = [year, month, date, hours, mins];
|
|
311
|
+
|
|
312
|
+
if (customDateFormat) {
|
|
313
|
+
dateArgs.push(sec, milliSec);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
selectedInMillis = timeZone ? _datetimejs["default"].tz.tzToUtc(Date.UTC.apply(Date, dateArgs), timeZone) : Date.UTC.apply(Date, dateArgs);
|
|
317
|
+
selectedValue = _datetimejs["default"].ISO(selectedInMillis);
|
|
318
|
+
formattedValue = (0, _common.formatDate)(_construct(Date, dateArgs), customDateFormat == null ? is24Hour ? "".concat(dateFormat, " HH:mm:ss") : "".concat(dateFormat, " hh:mm:ss A") : "".concat(customDateFormat));
|
|
319
|
+
} else {
|
|
320
|
+
selectedInMillis = Date.UTC(year, month, date);
|
|
321
|
+
selectedValue = (0, _common.formatDate)(new Date(year, month, date), 'YYYY-MM-DD');
|
|
322
|
+
formattedValue = (0, _common.formatDate)(new Date(year, month, date), dateFormat);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
var isError = false;
|
|
326
|
+
var errorType = '';
|
|
327
|
+
|
|
328
|
+
if (minInMillis && minInMillis > selectedInMillis) {
|
|
329
|
+
isError = true;
|
|
330
|
+
errorType = 'MIN';
|
|
331
|
+
} else if (maxInMillis && maxInMillis < selectedInMillis) {
|
|
332
|
+
isError = true;
|
|
333
|
+
errorType = 'MAX';
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
return {
|
|
337
|
+
isError: isError,
|
|
338
|
+
errorType: errorType,
|
|
339
|
+
selectedValue: selectedValue,
|
|
340
|
+
formattedValue: formattedValue
|
|
341
|
+
};
|
|
342
|
+
}
|
|
343
|
+
}, {
|
|
344
|
+
key: "handleSelect",
|
|
345
|
+
value: function handleSelect(e) {
|
|
346
|
+
e && e.preventDefault();
|
|
347
|
+
var _this$props3 = this.props,
|
|
348
|
+
onError = _this$props3.onError,
|
|
349
|
+
onSelect = _this$props3.onSelect,
|
|
350
|
+
minErrorText = _this$props3.minErrorText,
|
|
351
|
+
maxErrorText = _this$props3.maxErrorText;
|
|
352
|
+
var _this$state = this.state,
|
|
353
|
+
year = _this$state.year,
|
|
354
|
+
month = _this$state.month,
|
|
355
|
+
date = _this$state.date,
|
|
356
|
+
hours = _this$state.hours,
|
|
357
|
+
mins = _this$state.mins,
|
|
358
|
+
amPm = _this$state.amPm;
|
|
359
|
+
|
|
360
|
+
var _this$handleGetSelect = this.handleGetSelectedDate({
|
|
361
|
+
year: year,
|
|
362
|
+
month: month,
|
|
363
|
+
date: date,
|
|
364
|
+
hours: hours,
|
|
365
|
+
mins: mins,
|
|
366
|
+
amPm: amPm
|
|
367
|
+
}),
|
|
368
|
+
isError = _this$handleGetSelect.isError,
|
|
369
|
+
errorType = _this$handleGetSelect.errorType,
|
|
370
|
+
selectedValue = _this$handleGetSelect.selectedValue,
|
|
371
|
+
formattedValue = _this$handleGetSelect.formattedValue;
|
|
372
|
+
|
|
373
|
+
if (isError) {
|
|
374
|
+
if (errorType === 'MIN') {
|
|
375
|
+
onError && onError(minErrorText, true);
|
|
376
|
+
} else if (errorType === 'MAX') {
|
|
377
|
+
onError && onError(maxErrorText, true);
|
|
378
|
+
}
|
|
379
|
+
} else {
|
|
380
|
+
onSelect(selectedValue, formattedValue, e);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
}, {
|
|
384
|
+
key: "handleChange",
|
|
385
|
+
value: function handleChange() {
|
|
386
|
+
var selectedInfo = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
387
|
+
var _this$props4 = this.props,
|
|
388
|
+
onError = _this$props4.onError,
|
|
389
|
+
onChange = _this$props4.onChange,
|
|
390
|
+
minErrorText = _this$props4.minErrorText,
|
|
391
|
+
maxErrorText = _this$props4.maxErrorText;
|
|
392
|
+
var _this$state2 = this.state,
|
|
393
|
+
oldYear = _this$state2.year,
|
|
394
|
+
oldMonth = _this$state2.month,
|
|
395
|
+
oldDate = _this$state2.date,
|
|
396
|
+
oldHours = _this$state2.hours,
|
|
397
|
+
oldMins = _this$state2.mins,
|
|
398
|
+
oldAMPM = _this$state2.amPm;
|
|
399
|
+
var year = selectedInfo.year,
|
|
400
|
+
month = selectedInfo.month,
|
|
401
|
+
date = selectedInfo.date,
|
|
402
|
+
hours = selectedInfo.hours,
|
|
403
|
+
mins = selectedInfo.mins,
|
|
404
|
+
amPm = selectedInfo.amPm;
|
|
405
|
+
var newSelectedInfo = {
|
|
406
|
+
year: (0, _Common.getIsEmptyValue)(year) ? oldYear : year,
|
|
407
|
+
month: (0, _Common.getIsEmptyValue)(month) ? oldMonth : month,
|
|
408
|
+
date: (0, _Common.getIsEmptyValue)(date) ? oldDate : date,
|
|
409
|
+
hours: (0, _Common.getIsEmptyValue)(hours) ? oldHours : hours,
|
|
410
|
+
mins: (0, _Common.getIsEmptyValue)(mins) ? oldMins : mins,
|
|
411
|
+
amPm: (0, _Common.getIsEmptyValue)(amPm) ? oldAMPM : amPm
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
if (onChange) {
|
|
415
|
+
var _this$handleGetSelect2 = this.handleGetSelectedDate(newSelectedInfo),
|
|
416
|
+
isError = _this$handleGetSelect2.isError,
|
|
417
|
+
errorType = _this$handleGetSelect2.errorType,
|
|
418
|
+
selectedValue = _this$handleGetSelect2.selectedValue,
|
|
419
|
+
formattedValue = _this$handleGetSelect2.formattedValue;
|
|
420
|
+
|
|
421
|
+
if (isError) {
|
|
422
|
+
if (errorType === 'MIN') {
|
|
423
|
+
onError && onError(minErrorText, true);
|
|
424
|
+
} else if (errorType === 'MAX') {
|
|
425
|
+
onError && onError(maxErrorText, true);
|
|
426
|
+
}
|
|
427
|
+
} else {
|
|
428
|
+
this.setState(newSelectedInfo);
|
|
429
|
+
onChange(selectedValue, formattedValue);
|
|
430
|
+
}
|
|
431
|
+
} else {
|
|
432
|
+
this.setState(newSelectedInfo);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}, {
|
|
436
|
+
key: "handleClear",
|
|
437
|
+
value: function handleClear(e) {
|
|
438
|
+
var _this$props5 = this.props,
|
|
439
|
+
onSelect = _this$props5.onSelect,
|
|
440
|
+
onClear = _this$props5.onClear;
|
|
441
|
+
|
|
442
|
+
if (onClear) {
|
|
443
|
+
onClear(e);
|
|
444
|
+
} else {
|
|
445
|
+
onSelect('', '', e);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}, {
|
|
449
|
+
key: "dateSelect",
|
|
450
|
+
value: function dateSelect(date, month, year, e) {
|
|
451
|
+
this.handleChange({
|
|
452
|
+
date: date,
|
|
453
|
+
month: month,
|
|
454
|
+
year: year
|
|
455
|
+
});
|
|
456
|
+
e && e.preventDefault();
|
|
457
|
+
var _this$props6 = this.props,
|
|
458
|
+
onError = _this$props6.onError,
|
|
459
|
+
onDateSelect = _this$props6.onDateSelect,
|
|
460
|
+
minErrorText = _this$props6.minErrorText,
|
|
461
|
+
maxErrorText = _this$props6.maxErrorText;
|
|
462
|
+
var _this$state3 = this.state,
|
|
463
|
+
hours = _this$state3.hours,
|
|
464
|
+
mins = _this$state3.mins,
|
|
465
|
+
amPm = _this$state3.amPm;
|
|
466
|
+
|
|
467
|
+
var _this$handleGetSelect3 = this.handleGetSelectedDate({
|
|
468
|
+
year: year,
|
|
469
|
+
month: month,
|
|
470
|
+
date: date,
|
|
471
|
+
hours: hours,
|
|
472
|
+
mins: mins,
|
|
473
|
+
amPm: amPm
|
|
474
|
+
}),
|
|
475
|
+
isError = _this$handleGetSelect3.isError,
|
|
476
|
+
errorType = _this$handleGetSelect3.errorType,
|
|
477
|
+
selectedValue = _this$handleGetSelect3.selectedValue,
|
|
478
|
+
formattedValue = _this$handleGetSelect3.formattedValue;
|
|
479
|
+
|
|
480
|
+
if (isError) {
|
|
481
|
+
if (errorType === 'MIN') {
|
|
482
|
+
onError && onError(minErrorText, true);
|
|
483
|
+
} else if (errorType === 'MAX') {
|
|
484
|
+
onError && onError(maxErrorText, true);
|
|
485
|
+
}
|
|
486
|
+
} else {
|
|
487
|
+
onDateSelect && onDateSelect(selectedValue, formattedValue, e);
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}, {
|
|
491
|
+
key: "hoursSelect",
|
|
492
|
+
value: function hoursSelect(hours) {
|
|
493
|
+
this.handleChange({
|
|
494
|
+
hours: hours
|
|
495
|
+
});
|
|
496
|
+
}
|
|
497
|
+
}, {
|
|
498
|
+
key: "minutesSelect",
|
|
499
|
+
value: function minutesSelect(mins) {
|
|
500
|
+
this.handleChange({
|
|
501
|
+
mins: mins
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
}, {
|
|
505
|
+
key: "amPmSelect",
|
|
506
|
+
value: function amPmSelect(amPm) {
|
|
507
|
+
this.handleChange({
|
|
508
|
+
amPm: amPm
|
|
509
|
+
});
|
|
510
|
+
}
|
|
511
|
+
/*global closeGroupPopups*/
|
|
512
|
+
|
|
513
|
+
}, {
|
|
514
|
+
key: "closePopup",
|
|
515
|
+
value: function closePopup() {
|
|
516
|
+
closeGroupPopups('calender');
|
|
517
|
+
}
|
|
518
|
+
}, {
|
|
519
|
+
key: "handleCalendarNavigation",
|
|
520
|
+
value: function handleCalendarNavigation(type, selectedInfo) {
|
|
521
|
+
var stateYear = selectedInfo.year,
|
|
522
|
+
stateMonth = selectedInfo.month,
|
|
523
|
+
stateDate = selectedInfo.date;
|
|
524
|
+
var date = stateDate;
|
|
525
|
+
var month = stateMonth;
|
|
526
|
+
var year = stateYear;
|
|
527
|
+
|
|
528
|
+
var getDate = function getDate(month, year) {
|
|
529
|
+
var monthEnd = (0, _common.getMonthEnd)(month, year);
|
|
530
|
+
return monthEnd >= parseInt(date) ? date : monthEnd;
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
var modifyCalendarRecursion = function modifyCalendarRecursion(recursionType) {
|
|
534
|
+
if (recursionType === 'nextYear') {
|
|
535
|
+
//Click next year icon
|
|
536
|
+
var newYear = year + 1;
|
|
537
|
+
return {
|
|
538
|
+
date: getDate(month, newYear),
|
|
539
|
+
month: month,
|
|
540
|
+
year: newYear
|
|
541
|
+
};
|
|
542
|
+
} else if (recursionType === 'previousYear') {
|
|
543
|
+
//Click previous year icon
|
|
544
|
+
var _newYear = year - 1;
|
|
545
|
+
|
|
546
|
+
return {
|
|
547
|
+
date: getDate(month, _newYear),
|
|
548
|
+
month: month,
|
|
549
|
+
year: _newYear
|
|
550
|
+
};
|
|
551
|
+
} else if (recursionType === 'nextMonth') {
|
|
552
|
+
//Click next month icon
|
|
553
|
+
if (month === 11) {
|
|
554
|
+
month = 0;
|
|
555
|
+
return modifyCalendarRecursion('nextYear');
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
var newMonth = month + 1;
|
|
559
|
+
return {
|
|
560
|
+
date: getDate(newMonth, year),
|
|
561
|
+
month: newMonth,
|
|
562
|
+
year: year
|
|
563
|
+
};
|
|
564
|
+
} else if (recursionType === 'previousMonth') {
|
|
565
|
+
//Click previous month icon
|
|
566
|
+
if (month === 0) {
|
|
567
|
+
month = 11;
|
|
568
|
+
return modifyCalendarRecursion('previousYear');
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
var _newMonth = month - 1;
|
|
572
|
+
|
|
573
|
+
return {
|
|
574
|
+
date: getDate(_newMonth, year),
|
|
575
|
+
month: _newMonth,
|
|
576
|
+
year: year
|
|
577
|
+
};
|
|
578
|
+
} else if (recursionType === 'nextDate') {
|
|
579
|
+
var monthEnd = (0, _common.getMonthEnd)(month, year);
|
|
580
|
+
|
|
581
|
+
if (date === monthEnd) {
|
|
582
|
+
date = 1;
|
|
583
|
+
return modifyCalendarRecursion('nextMonth');
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
var newDate = parseInt(date) + 1;
|
|
587
|
+
return {
|
|
588
|
+
date: newDate,
|
|
589
|
+
month: month,
|
|
590
|
+
year: year
|
|
591
|
+
};
|
|
592
|
+
} else if (recursionType === 'previousDate') {
|
|
593
|
+
if (date === 1) {
|
|
594
|
+
date = month === 0 ? (0, _common.getMonthEnd)(11, year - 1) : (0, _common.getMonthEnd)(month - 1, year);
|
|
595
|
+
return modifyCalendarRecursion('previousMonth');
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
var _newDate = parseInt(date) - 1;
|
|
599
|
+
|
|
600
|
+
return {
|
|
601
|
+
date: _newDate,
|
|
602
|
+
month: month,
|
|
603
|
+
year: year
|
|
604
|
+
};
|
|
605
|
+
}
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
return modifyCalendarRecursion(type);
|
|
609
|
+
}
|
|
610
|
+
}, {
|
|
611
|
+
key: "modifyCalendar",
|
|
612
|
+
value: function modifyCalendar(type) {
|
|
613
|
+
var _this$state4 = this.state,
|
|
614
|
+
year = _this$state4.year,
|
|
615
|
+
month = _this$state4.month,
|
|
616
|
+
date = _this$state4.date;
|
|
617
|
+
return this.handleChange(this.handleCalendarNavigation(type, {
|
|
618
|
+
year: year,
|
|
619
|
+
month: month,
|
|
620
|
+
date: date
|
|
621
|
+
}));
|
|
622
|
+
}
|
|
623
|
+
}, {
|
|
624
|
+
key: "handleDateReset",
|
|
625
|
+
value: function handleDateReset() {
|
|
626
|
+
this.setState(this.getStateFromProps(this.props));
|
|
627
|
+
}
|
|
628
|
+
}, {
|
|
629
|
+
key: "handleGetStateValues",
|
|
630
|
+
value: function handleGetStateValues() {
|
|
631
|
+
var isActive = this.props.isActive;
|
|
632
|
+
var _this$state5 = this.state,
|
|
633
|
+
isYearView = _this$state5.isYearView,
|
|
634
|
+
isMonthOpen = _this$state5.isMonthOpen;
|
|
635
|
+
return {
|
|
636
|
+
isActive: isActive,
|
|
637
|
+
isYearView: isYearView,
|
|
638
|
+
isMonthOpen: isMonthOpen
|
|
639
|
+
};
|
|
640
|
+
}
|
|
641
|
+
}, {
|
|
642
|
+
key: "handleYearViewToggle",
|
|
643
|
+
value: function handleYearViewToggle(isYearOpen, isMonthOpen) {
|
|
644
|
+
this.setState({
|
|
645
|
+
isYearView: isYearOpen,
|
|
646
|
+
isMonthOpen: isMonthOpen
|
|
647
|
+
});
|
|
648
|
+
}
|
|
649
|
+
}, {
|
|
650
|
+
key: "handleExposeMethods",
|
|
651
|
+
value: function handleExposeMethods(isMount) {
|
|
652
|
+
var getMethods = this.props.getMethods;
|
|
653
|
+
var methods = {};
|
|
654
|
+
|
|
655
|
+
if (isMount) {
|
|
656
|
+
methods = {
|
|
657
|
+
resetLocalDate: this.handleDateReset,
|
|
658
|
+
getStateValues: this.handleGetStateValues,
|
|
659
|
+
toggleYearView: this.handleYearViewToggle
|
|
660
|
+
};
|
|
661
|
+
} else {
|
|
662
|
+
methods = {
|
|
663
|
+
resetLocalDate: null,
|
|
664
|
+
getStateValues: null,
|
|
665
|
+
toggleYearView: null
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
getMethods && getMethods(methods);
|
|
670
|
+
}
|
|
671
|
+
}, {
|
|
672
|
+
key: "handleOpenYearView",
|
|
673
|
+
value: function handleOpenYearView() {
|
|
674
|
+
var _this$state6 = this.state,
|
|
675
|
+
isYearView = _this$state6.isYearView,
|
|
676
|
+
isMonthOpen = _this$state6.isMonthOpen;
|
|
677
|
+
this.setState({
|
|
678
|
+
isYearView: !isYearView,
|
|
679
|
+
isMonthOpen: !isMonthOpen
|
|
680
|
+
});
|
|
681
|
+
}
|
|
682
|
+
}, {
|
|
683
|
+
key: "handleSelectYear",
|
|
684
|
+
value: function handleSelectYear(year) {
|
|
685
|
+
this.setState({
|
|
686
|
+
year: year,
|
|
687
|
+
isMonthOpen: true
|
|
688
|
+
});
|
|
689
|
+
}
|
|
690
|
+
}, {
|
|
691
|
+
key: "handleSelectMonth",
|
|
692
|
+
value: function handleSelectMonth(month) {
|
|
693
|
+
var _this$state7 = this.state,
|
|
694
|
+
date = _this$state7.date,
|
|
695
|
+
year = _this$state7.year;
|
|
696
|
+
var monthEnd = (0, _common.getMonthEnd)(month, year);
|
|
697
|
+
var newDate = date;
|
|
698
|
+
|
|
699
|
+
if (date > monthEnd) {
|
|
700
|
+
newDate = monthEnd;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
this.setState({
|
|
704
|
+
month: month,
|
|
705
|
+
date: newDate
|
|
706
|
+
});
|
|
707
|
+
}
|
|
708
|
+
}, {
|
|
709
|
+
key: "handleSelectMonthViaYearView",
|
|
710
|
+
value: function handleSelectMonthViaYearView(month) {
|
|
711
|
+
this.handleSelectMonth(month);
|
|
712
|
+
this.setState({
|
|
713
|
+
isYearView: false,
|
|
714
|
+
isMonthOpen: false
|
|
715
|
+
});
|
|
716
|
+
}
|
|
717
|
+
}, {
|
|
718
|
+
key: "render",
|
|
719
|
+
value: function render() {
|
|
720
|
+
var _this$state8 = this.state,
|
|
721
|
+
date = _this$state8.date,
|
|
722
|
+
month = _this$state8.month,
|
|
723
|
+
year = _this$state8.year,
|
|
724
|
+
hours = _this$state8.hours,
|
|
725
|
+
mins = _this$state8.mins,
|
|
726
|
+
amPm = _this$state8.amPm,
|
|
727
|
+
isYearView = _this$state8.isYearView,
|
|
728
|
+
isMonthOpen = _this$state8.isMonthOpen,
|
|
729
|
+
todayDate = _this$state8.todayDate,
|
|
730
|
+
todayMonth = _this$state8.todayMonth,
|
|
731
|
+
todayYear = _this$state8.todayYear;
|
|
732
|
+
var _this$props7 = this.props,
|
|
733
|
+
isDateTimeField = _this$props7.isDateTimeField,
|
|
734
|
+
isActive = _this$props7.isActive,
|
|
735
|
+
position = _this$props7.position,
|
|
736
|
+
isReady = _this$props7.isReady,
|
|
737
|
+
getRef = _this$props7.getRef,
|
|
738
|
+
onClick = _this$props7.onClick,
|
|
739
|
+
dataId = _this$props7.dataId,
|
|
740
|
+
needResponsive = _this$props7.needResponsive,
|
|
741
|
+
isAbsolute = _this$props7.isAbsolute,
|
|
742
|
+
isAnimate = _this$props7.isAnimate,
|
|
743
|
+
needAction = _this$props7.needAction,
|
|
744
|
+
boxSize = _this$props7.boxSize,
|
|
745
|
+
className = _this$props7.className,
|
|
746
|
+
innerClass = _this$props7.innerClass,
|
|
747
|
+
isPadding = _this$props7.isPadding,
|
|
748
|
+
i18nKeys = _this$props7.i18nKeys,
|
|
749
|
+
is24Hour = _this$props7.is24Hour,
|
|
750
|
+
isDefaultPosition = _this$props7.isDefaultPosition,
|
|
751
|
+
positionsOffset = _this$props7.positionsOffset,
|
|
752
|
+
targetOffset = _this$props7.targetOffset,
|
|
753
|
+
isRestrictScroll = _this$props7.isRestrictScroll,
|
|
754
|
+
dropBoxPortalId = _this$props7.dropBoxPortalId;
|
|
755
|
+
var _i18nKeys$timeText = i18nKeys.timeText,
|
|
756
|
+
timeText = _i18nKeys$timeText === void 0 ? 'Time' : _i18nKeys$timeText,
|
|
757
|
+
_i18nKeys$submitText = i18nKeys.submitText,
|
|
758
|
+
submitText = _i18nKeys$submitText === void 0 ? 'Set' : _i18nKeys$submitText,
|
|
759
|
+
_i18nKeys$cancelText = i18nKeys.cancelText,
|
|
760
|
+
cancelText = _i18nKeys$cancelText === void 0 ? 'Clear' : _i18nKeys$cancelText,
|
|
761
|
+
_i18nKeys$hourEmptyTe = i18nKeys.hourEmptyText,
|
|
762
|
+
hourEmptyText = _i18nKeys$hourEmptyTe === void 0 ? 'No search results' : _i18nKeys$hourEmptyTe,
|
|
763
|
+
_i18nKeys$minuteEmpty = i18nKeys.minuteEmptyText,
|
|
764
|
+
minuteEmptyText = _i18nKeys$minuteEmpty === void 0 ? 'No search results' : _i18nKeys$minuteEmpty,
|
|
765
|
+
_i18nKeys$nextMonthTi = i18nKeys.nextMonthTitleText,
|
|
766
|
+
nextMonthTitleText = _i18nKeys$nextMonthTi === void 0 ? 'Next month' : _i18nKeys$nextMonthTi,
|
|
767
|
+
_i18nKeys$prevMonthTi = i18nKeys.prevMonthTitleText,
|
|
768
|
+
prevMonthTitleText = _i18nKeys$prevMonthTi === void 0 ? 'Prev month' : _i18nKeys$prevMonthTi,
|
|
769
|
+
_i18nKeys$monthNames = i18nKeys.monthNames,
|
|
770
|
+
monthNames = _i18nKeys$monthNames === void 0 ? _constants.monthNamesDefault : _i18nKeys$monthNames,
|
|
771
|
+
_i18nKeys$monthNamesS = i18nKeys.monthNamesShort,
|
|
772
|
+
monthNamesShort = _i18nKeys$monthNamesS === void 0 ? _constants.monthNamesShortDefault : _i18nKeys$monthNamesS,
|
|
773
|
+
_i18nKeys$dayNames = i18nKeys.dayNames,
|
|
774
|
+
dayNames = _i18nKeys$dayNames === void 0 ? _constants.dayNamesDefault : _i18nKeys$dayNames,
|
|
775
|
+
_i18nKeys$dayNamesSho = i18nKeys.dayNamesShort,
|
|
776
|
+
dayNamesShort = _i18nKeys$dayNamesSho === void 0 ? _constants.dayNamesShortDefault : _i18nKeys$dayNamesSho;
|
|
777
|
+
var showmonthtxt = title(date, year, month, monthNames);
|
|
778
|
+
|
|
779
|
+
var childEle = /*#__PURE__*/_react["default"].createElement("div", {
|
|
780
|
+
className: "".concat(_DateTimeModule["default"].container, " ").concat(innerClass),
|
|
781
|
+
"data-id": "".concat(dataId, "_Calendar"),
|
|
782
|
+
"data-test-id": "".concat(dataId, "_Calendar"),
|
|
783
|
+
onClick: this.closePopup
|
|
784
|
+
}, /*#__PURE__*/_react["default"].createElement(_DateTimePopupHeader["default"], {
|
|
785
|
+
onOpenYearView: this.handleOpenYearView,
|
|
786
|
+
showMonthTxt: showmonthtxt,
|
|
787
|
+
isYearView: isYearView,
|
|
788
|
+
prevMonthTitleText: prevMonthTitleText,
|
|
789
|
+
nextMonthTitleText: nextMonthTitleText,
|
|
790
|
+
onModifyCalendar: this.modifyCalendar
|
|
791
|
+
}), /*#__PURE__*/_react["default"].createElement("div", {
|
|
792
|
+
className: _DateTimeModule["default"].subContainer
|
|
793
|
+
}, /*#__PURE__*/_react["default"].createElement(_CalendarView["default"], {
|
|
794
|
+
needBorder: isDateTimeField || needAction,
|
|
795
|
+
dataId: dataId,
|
|
796
|
+
date: date,
|
|
797
|
+
year: year,
|
|
798
|
+
month: month,
|
|
799
|
+
onSelect: this.dateSelect,
|
|
800
|
+
dayNames: dayNames,
|
|
801
|
+
dayNamesShort: dayNamesShort,
|
|
802
|
+
todayDate: todayDate,
|
|
803
|
+
todayMonth: todayMonth,
|
|
804
|
+
todayYear: todayYear
|
|
805
|
+
}), isDateTimeField ? /*#__PURE__*/_react["default"].createElement(_Time["default"], {
|
|
806
|
+
timeText: timeText,
|
|
807
|
+
dataId: dataId,
|
|
808
|
+
hourSuggestions: (0, _dateFormatUtils.getHourSuggestions)(is24Hour),
|
|
809
|
+
onHourSelect: this.hoursSelect,
|
|
810
|
+
hours: hours,
|
|
811
|
+
hourEmptyText: hourEmptyText,
|
|
812
|
+
needResponsive: needResponsive,
|
|
813
|
+
minSuggestions: (0, _dateFormatUtils.getMinuteSuggestions)(),
|
|
814
|
+
onMinutesSelect: this.minutesSelect,
|
|
815
|
+
mins: mins,
|
|
816
|
+
minuteEmptyText: minuteEmptyText,
|
|
817
|
+
ampmSuggestions: this.ampmSuggestions,
|
|
818
|
+
onAmPmSelect: this.amPmSelect,
|
|
819
|
+
amPm: amPm,
|
|
820
|
+
is24Hour: is24Hour
|
|
821
|
+
}) : null, needAction ? /*#__PURE__*/_react["default"].createElement(_DateTimePopupFooter["default"], {
|
|
822
|
+
submitText: submitText,
|
|
823
|
+
onSubmit: this.handleSelect,
|
|
824
|
+
cancelText: cancelText,
|
|
825
|
+
onCancel: this.handleClear,
|
|
826
|
+
dataId: dataId
|
|
827
|
+
}) : null, isYearView ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
828
|
+
className: _DateTimeModule["default"].yearContainer
|
|
829
|
+
}, /*#__PURE__*/_react["default"].createElement(_YearView["default"], {
|
|
830
|
+
onSelectYear: this.handleSelectYear,
|
|
831
|
+
onSelectMonth: this.handleSelectMonthViaYearView,
|
|
832
|
+
viewedYear: year,
|
|
833
|
+
viewedMonth: month,
|
|
834
|
+
monthNames: monthNames,
|
|
835
|
+
monthNamesShort: monthNamesShort,
|
|
836
|
+
isMonthOpen: isMonthOpen
|
|
837
|
+
})) : null));
|
|
838
|
+
|
|
839
|
+
return isDefaultPosition ? /*#__PURE__*/_react["default"].createElement("div", {
|
|
840
|
+
className: "".concat(_DateTimeModule["default"].dropBox, " ").concat(className),
|
|
841
|
+
"data-id": "".concat(dataId, "_dateBoxContainer"),
|
|
842
|
+
"data-test-id": "".concat(dataId, "_dateBoxContainer")
|
|
843
|
+
}, childEle) : isReady ? /*#__PURE__*/_react["default"].createElement(_ResponsiveDropBox["default"], {
|
|
844
|
+
size: boxSize,
|
|
845
|
+
boxPosition: position,
|
|
846
|
+
isActive: isActive,
|
|
847
|
+
isArrow: false,
|
|
848
|
+
isAnimate: isAnimate,
|
|
849
|
+
animationStyle: "bounce",
|
|
850
|
+
getRef: getRef,
|
|
851
|
+
onClick: onClick,
|
|
852
|
+
dataId: "".concat(dataId, "_dateBoxContainer"),
|
|
853
|
+
needResponsive: needResponsive,
|
|
854
|
+
isAbsolutePositioningNeeded: isAbsolute,
|
|
855
|
+
customClass: {
|
|
856
|
+
customDropBoxWrap: className
|
|
857
|
+
},
|
|
858
|
+
isPadding: isPadding,
|
|
859
|
+
positionsOffset: positionsOffset,
|
|
860
|
+
targetOffset: targetOffset,
|
|
861
|
+
isRestrictScroll: isRestrictScroll,
|
|
862
|
+
portalId: dropBoxPortalId
|
|
863
|
+
}, /*#__PURE__*/_react["default"].createElement(_Layout.Box, null, childEle)) : null;
|
|
864
|
+
}
|
|
865
|
+
}]);
|
|
866
|
+
|
|
867
|
+
return DateTime;
|
|
868
|
+
}(_react["default"].PureComponent);
|
|
869
|
+
|
|
870
|
+
exports["default"] = DateTime;
|
|
871
|
+
DateTime.propTypes = _propTypes.DateTime_propTypes;
|
|
872
|
+
DateTime.defaultProps = _defaultProps.DateTime_defaultProps;
|