@widergy/energy-ui 2.12.1 → 2.12.2

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.
Files changed (277) hide show
  1. package/dist/components/EnergyThemeProvider/index.js +36 -13
  2. package/dist/components/Loading/constants.js +2 -1
  3. package/dist/components/Loading/index.js +12 -13
  4. package/dist/components/Loading/theme.js +2 -4
  5. package/dist/components/UTAlert/AlertHandler.js +101 -75
  6. package/dist/components/UTAlert/index.js +87 -65
  7. package/dist/components/UTAlert/theme.js +32 -32
  8. package/dist/components/UTAttachment/components/Preview/index.js +9 -8
  9. package/dist/components/UTAttachment/constants.js +13 -7
  10. package/dist/components/UTAttachment/index.js +250 -159
  11. package/dist/components/UTAttachment/layout.js +27 -26
  12. package/dist/components/UTAttachment/theme.js +2 -4
  13. package/dist/components/UTAttachment/utils.js +117 -34
  14. package/dist/components/UTAutocomplete/components/ListBox/index.js +21 -13
  15. package/dist/components/UTAutocomplete/components/ListBox/utils.js +11 -9
  16. package/dist/components/UTAutocomplete/constants.js +23 -12
  17. package/dist/components/UTAutocomplete/index.js +94 -54
  18. package/dist/components/UTAutocomplete/theme.js +4 -6
  19. package/dist/components/UTAvatar/constants.js +3 -2
  20. package/dist/components/UTAvatar/index.js +17 -18
  21. package/dist/components/UTBarChart/components/Bars/components/Bar/components/Rect/index.js +22 -22
  22. package/dist/components/UTBarChart/components/Bars/components/Bar/constants.js +1 -1
  23. package/dist/components/UTBarChart/components/Bars/components/Bar/index.js +22 -21
  24. package/dist/components/UTBarChart/components/Bars/constants.js +6 -3
  25. package/dist/components/UTBarChart/components/Bars/index.js +80 -70
  26. package/dist/components/UTBarChart/components/Legend/constants.js +18 -12
  27. package/dist/components/UTBarChart/components/Legend/index.js +93 -75
  28. package/dist/components/UTBarChart/components/Legend/utils.js +5 -1
  29. package/dist/components/UTBarChart/components/Levels/index.js +14 -16
  30. package/dist/components/UTBarChart/components/Levels/utils.js +27 -25
  31. package/dist/components/UTBarChart/components/LinearPlot/constants.js +5 -3
  32. package/dist/components/UTBarChart/components/LinearPlot/index.js +20 -25
  33. package/dist/components/UTBarChart/components/LinearPlot/utils.js +39 -37
  34. package/dist/components/UTBarChart/components/Pagination/constants.js +2 -1
  35. package/dist/components/UTBarChart/components/Pagination/index.js +24 -20
  36. package/dist/components/UTBarChart/components/XAxis/components/AxisElement/index.js +32 -21
  37. package/dist/components/UTBarChart/components/XAxis/components/Decoration/constants.js +4 -2
  38. package/dist/components/UTBarChart/components/XAxis/components/Decoration/index.js +19 -20
  39. package/dist/components/UTBarChart/components/XAxis/constants.js +2 -1
  40. package/dist/components/UTBarChart/components/XAxis/index.js +65 -54
  41. package/dist/components/UTBarChart/components/YAxis/AxisElement/index.js +11 -12
  42. package/dist/components/UTBarChart/components/YAxis/constants.js +2 -1
  43. package/dist/components/UTBarChart/components/YAxis/index.js +37 -30
  44. package/dist/components/UTBarChart/components/YAxis/utils.js +6 -4
  45. package/dist/components/UTBarChart/constants.js +8 -4
  46. package/dist/components/UTBarChart/hooks/use-dynamic-margins.js +40 -23
  47. package/dist/components/UTBarChart/index.js +166 -152
  48. package/dist/components/UTBarChart/theme.js +2 -4
  49. package/dist/components/UTBarChart/types.js +19 -10
  50. package/dist/components/UTBarChart/utils.js +111 -107
  51. package/dist/components/UTBreadcrumbs/constants.js +31 -23
  52. package/dist/components/UTBreadcrumbs/index.js +101 -76
  53. package/dist/components/UTBreadcrumbs/theme.js +2 -4
  54. package/dist/components/UTButton/constants.js +17 -11
  55. package/dist/components/UTButton/index.js +31 -28
  56. package/dist/components/UTButton/theme.js +23 -23
  57. package/dist/components/UTCBUInput/index.js +40 -36
  58. package/dist/components/UTCBUInput/theme.js +2 -4
  59. package/dist/components/UTCaptcha/index.js +45 -19
  60. package/dist/components/UTCard/components/UTCardFooter/index.js +16 -15
  61. package/dist/components/UTCard/index.js +120 -85
  62. package/dist/components/UTCard/theme.js +12 -11
  63. package/dist/components/UTCard/types.js +3 -2
  64. package/dist/components/UTCarousel/components/Button/index.js +13 -13
  65. package/dist/components/UTCarousel/components/Legend/index.js +15 -13
  66. package/dist/components/UTCarousel/components/Slider/component/Slide/index.js +16 -16
  67. package/dist/components/UTCarousel/components/Slider/constants.js +10 -5
  68. package/dist/components/UTCarousel/components/Slider/index.js +273 -204
  69. package/dist/components/UTCarousel/components/Slider/layout.js +94 -67
  70. package/dist/components/UTCarousel/index.js +15 -14
  71. package/dist/components/UTCarousel/theme.js +2 -4
  72. package/dist/components/UTCheckList/constants.js +2 -1
  73. package/dist/components/UTCheckList/index.js +93 -72
  74. package/dist/components/UTCheckList/theme.js +31 -31
  75. package/dist/components/UTCheckbox/constants.js +6 -3
  76. package/dist/components/UTCheckbox/index.js +44 -32
  77. package/dist/components/UTCheckbox/theme.js +35 -35
  78. package/dist/components/UTConsumptionBar/components/ConsumptionBarIndicator/index.js +9 -9
  79. package/dist/components/UTConsumptionBar/constants.js +6 -3
  80. package/dist/components/UTConsumptionBar/index.js +80 -53
  81. package/dist/components/UTCuit/index.js +133 -109
  82. package/dist/components/UTCuit/theme.js +53 -51
  83. package/dist/components/UTDatePicker/components/Day/constants.js +2 -1
  84. package/dist/components/UTDatePicker/components/Day/index.js +12 -12
  85. package/dist/components/UTDatePicker/constants.js +31 -20
  86. package/dist/components/UTDatePicker/index.js +102 -60
  87. package/dist/components/UTDatePicker/theme.js +3 -5
  88. package/dist/components/UTDatePicker/types.js +3 -2
  89. package/dist/components/UTDatePicker/utils.js +6 -2
  90. package/dist/components/UTDialog/constants.js +4 -2
  91. package/dist/components/UTDialog/index.js +37 -38
  92. package/dist/components/UTDialog/theme.js +2 -4
  93. package/dist/components/UTDialog/types.js +3 -2
  94. package/dist/components/UTDotMenu/index.js +61 -39
  95. package/dist/components/UTEmojiPicker/constants.js +11 -6
  96. package/dist/components/UTEmojiPicker/index.js +65 -45
  97. package/dist/components/UTEmojiPicker/theme.js +2 -4
  98. package/dist/components/UTEmojiPicker/utils.js +51 -21
  99. package/dist/components/UTExternalLink/constants.js +5 -3
  100. package/dist/components/UTExternalLink/index.js +15 -18
  101. package/dist/components/UTExternalLink/theme.js +6 -8
  102. package/dist/components/UTFileInput/constants.js +4 -2
  103. package/dist/components/UTFileInput/index.js +31 -7
  104. package/dist/components/UTFileInput/layout.js +97 -68
  105. package/dist/components/UTIconButton/index.js +72 -49
  106. package/dist/components/UTIconButton/theme.js +2 -4
  107. package/dist/components/UTImageRadio/components/ImageRadioCard/index.js +58 -53
  108. package/dist/components/UTImageRadio/constants.js +6 -3
  109. package/dist/components/UTImageRadio/index.js +47 -39
  110. package/dist/components/UTImageRadio/theme.js +12 -11
  111. package/dist/components/UTImageRadio/types.js +3 -2
  112. package/dist/components/UTImageRadio/utils.js +6 -2
  113. package/dist/components/UTLabel/constants.js +20 -14
  114. package/dist/components/UTLabel/index.js +20 -18
  115. package/dist/components/UTLabel/theme.js +15 -15
  116. package/dist/components/UTList/index.js +18 -15
  117. package/dist/components/UTLoading/index.js +15 -15
  118. package/dist/components/UTMap/components/GoogleMaps/constants.js +11 -8
  119. package/dist/components/UTMap/components/GoogleMaps/index.js +91 -63
  120. package/dist/components/UTMap/components/GoogleMaps/styles.js +3 -2
  121. package/dist/components/UTMap/constants.js +12 -6
  122. package/dist/components/UTMap/index.js +198 -163
  123. package/dist/components/UTMap/types.js +6 -4
  124. package/dist/components/UTMap/utils.js +46 -29
  125. package/dist/components/UTMap/withGoogleMapScript.js +22 -18
  126. package/dist/components/UTMenu/index.js +69 -52
  127. package/dist/components/UTMenu/theme.js +3 -5
  128. package/dist/components/UTMenu/utils.js +11 -5
  129. package/dist/components/UTModal/constants.js +13 -9
  130. package/dist/components/UTModal/index.js +30 -26
  131. package/dist/components/UTModal/theme.js +2 -4
  132. package/dist/components/UTPagination/components/PageSizeSelector/index.js +10 -11
  133. package/dist/components/UTPagination/components/PageSizeSelector/utils.js +13 -7
  134. package/dist/components/UTPagination/components/Pagination/components/NavigationButton/index.js +12 -12
  135. package/dist/components/UTPagination/components/Pagination/index.js +39 -28
  136. package/dist/components/UTPagination/components/Pagination/utils.js +14 -8
  137. package/dist/components/UTPagination/constants.js +6 -3
  138. package/dist/components/UTPagination/index.js +17 -16
  139. package/dist/components/UTPagination/theme.js +2 -4
  140. package/dist/components/UTPanel/index.js +44 -38
  141. package/dist/components/UTPasswordField/components/PasswordValidations/components/Error/index.js +10 -13
  142. package/dist/components/UTPasswordField/components/PasswordValidations/components/Validation/index.js +19 -22
  143. package/dist/components/UTPasswordField/components/PasswordValidations/index.js +50 -63
  144. package/dist/components/UTPasswordField/components/PasswordWarning/index.js +26 -25
  145. package/dist/components/UTPasswordField/index.js +23 -26
  146. package/dist/components/UTPasswordField/theme.js +2 -4
  147. package/dist/components/UTPhoneInput/constants.js +6 -3
  148. package/dist/components/UTPhoneInput/index.js +205 -180
  149. package/dist/components/UTPhoneInput/theme.js +77 -77
  150. package/dist/components/UTPieChart/components/ArrowLabel/constants.js +8 -4
  151. package/dist/components/UTPieChart/components/ArrowLabel/index.js +23 -24
  152. package/dist/components/UTPieChart/components/Legend/contants.js +6 -3
  153. package/dist/components/UTPieChart/components/Legend/index.js +24 -27
  154. package/dist/components/UTPieChart/constants.js +26 -13
  155. package/dist/components/UTPieChart/hooks/use-animated-value/index.js +33 -15
  156. package/dist/components/UTPieChart/index.js +76 -73
  157. package/dist/components/UTPieChart/theme.js +2 -4
  158. package/dist/components/UTPieChart/utils.js +2 -4
  159. package/dist/components/UTProgressBar/constants.js +4 -2
  160. package/dist/components/UTProgressBar/index.js +17 -15
  161. package/dist/components/UTProgressBar/theme.js +2 -4
  162. package/dist/components/UTProgressBar/types.js +3 -2
  163. package/dist/components/UTRadioGroup/index.js +83 -56
  164. package/dist/components/UTRadioGroup/theme.js +52 -52
  165. package/dist/components/UTRating/components/Circle/index.js +56 -41
  166. package/dist/components/UTRating/components/Faces/constants.js +4 -2
  167. package/dist/components/UTRating/components/Faces/index.js +36 -34
  168. package/dist/components/UTRating/components/Star/index.js +40 -36
  169. package/dist/components/UTRating/constants.js +8 -4
  170. package/dist/components/UTRating/index.js +46 -31
  171. package/dist/components/UTRating/theme.js +2 -4
  172. package/dist/components/UTRipple/Ripple.js +39 -22
  173. package/dist/components/UTRipple/index.js +37 -18
  174. package/dist/components/UTSelect/components/Option/index.js +13 -13
  175. package/dist/components/UTSelect/constants.js +8 -4
  176. package/dist/components/UTSelect/index.js +85 -63
  177. package/dist/components/UTSelect/stylesJS.js +3 -2
  178. package/dist/components/UTSelect/theme.js +4 -6
  179. package/dist/components/UTSelect/utils.js +13 -3
  180. package/dist/components/UTSidebar/components/ListOption/index.js +49 -34
  181. package/dist/components/UTSidebar/components/LogosContainer/components/DynamicIcon/index.js +8 -8
  182. package/dist/components/UTSidebar/components/LogosContainer/index.js +14 -14
  183. package/dist/components/UTSidebar/components/Option/constants.js +3 -2
  184. package/dist/components/UTSidebar/components/Option/index.js +32 -28
  185. package/dist/components/UTSidebar/components/Toggler/index.js +11 -11
  186. package/dist/components/UTSidebar/index.js +53 -42
  187. package/dist/components/UTSidebar/theme.js +2 -4
  188. package/dist/components/UTSidebar/types.js +10 -5
  189. package/dist/components/UTSkeleton/index.js +36 -10
  190. package/dist/components/UTStatus/constants.js +9 -5
  191. package/dist/components/UTStatus/index.js +15 -16
  192. package/dist/components/UTStatus/theme.js +49 -66
  193. package/dist/components/UTSwitch/constants.js +6 -3
  194. package/dist/components/UTSwitch/index.js +57 -42
  195. package/dist/components/UTSwitch/theme.js +2 -4
  196. package/dist/components/UTTable/components/ActionIcons/constants.js +2 -1
  197. package/dist/components/UTTable/components/ActionIcons/index.js +85 -47
  198. package/dist/components/UTTable/components/Cell/components/ActionButton/index.js +12 -10
  199. package/dist/components/UTTable/components/Cell/index.js +23 -18
  200. package/dist/components/UTTable/components/HeaderCell/constants.js +3 -2
  201. package/dist/components/UTTable/components/HeaderCell/index.js +30 -23
  202. package/dist/components/UTTable/components/HeaderCell/utils.js +3 -3
  203. package/dist/components/UTTable/components/PrimaryAction/index.js +11 -12
  204. package/dist/components/UTTable/components/ResponsiveCell/index.js +20 -19
  205. package/dist/components/UTTable/components/Status/index.js +19 -18
  206. package/dist/components/UTTable/components/TableFooter/components/PageSizeSelector/index.js +9 -10
  207. package/dist/components/UTTable/components/TableFooter/components/PageSizeSelector/utils.js +13 -7
  208. package/dist/components/UTTable/components/TableFooter/components/Pagination/components/NavigationButton/index.js +12 -12
  209. package/dist/components/UTTable/components/TableFooter/components/Pagination/index.js +32 -21
  210. package/dist/components/UTTable/components/TableFooter/components/Pagination/utils.js +14 -8
  211. package/dist/components/UTTable/components/TableFooter/constants.js +2 -1
  212. package/dist/components/UTTable/components/TableFooter/index.js +15 -15
  213. package/dist/components/UTTable/components/TableHeader/index.js +11 -11
  214. package/dist/components/UTTable/components/TableRow/constants.js +6 -3
  215. package/dist/components/UTTable/components/TableRow/index.js +94 -79
  216. package/dist/components/UTTable/constants.js +43 -26
  217. package/dist/components/UTTable/hook.js +26 -11
  218. package/dist/components/UTTable/index.js +223 -132
  219. package/dist/components/UTTable/theme.js +17 -17
  220. package/dist/components/UTTable/types.js +8 -4
  221. package/dist/components/UTTable/utils.js +74 -70
  222. package/dist/components/UTTabs/components/TooltipTab/index.js +30 -20
  223. package/dist/components/UTTabs/constants.js +8 -4
  224. package/dist/components/UTTabs/index.js +86 -57
  225. package/dist/components/UTTabs/theme.js +2 -4
  226. package/dist/components/UTTabs/utils.js +1 -1
  227. package/dist/components/UTTextArea/constants.js +6 -3
  228. package/dist/components/UTTextArea/index.js +23 -23
  229. package/dist/components/UTTextArea/theme.js +2 -4
  230. package/dist/components/UTTextInput/constants.js +3 -2
  231. package/dist/components/UTTextInput/index.js +165 -137
  232. package/dist/components/UTTextInput/theme.js +4 -6
  233. package/dist/components/UTThirdPartyCookieChecker/index.js +21 -17
  234. package/dist/components/UTToggle/components/ToggleOption/index.js +17 -16
  235. package/dist/components/UTToggle/index.js +26 -25
  236. package/dist/components/UTToggle/theme.js +2 -4
  237. package/dist/components/UTTooltip/index.js +30 -23
  238. package/dist/components/UTTooltip/theme.js +2 -4
  239. package/dist/components/UTTopbar/components/Notifications/index.js +14 -11
  240. package/dist/components/UTTopbar/components/UserMenu/index.js +15 -15
  241. package/dist/components/UTTopbar/index.js +31 -28
  242. package/dist/components/UTTopbar/theme.js +2 -4
  243. package/dist/components/UTTopbar/types.js +9 -5
  244. package/dist/components/UTTouchableWithoutFeedback/index.js +27 -14
  245. package/dist/components/UTVirtualizedList/components/VirtualizedData/components/ListRow/constants.js +4 -2
  246. package/dist/components/UTVirtualizedList/components/VirtualizedData/components/ListRow/index.js +31 -34
  247. package/dist/components/UTVirtualizedList/components/VirtualizedData/components/ListRow/utils.js +4 -4
  248. package/dist/components/UTVirtualizedList/components/VirtualizedData/constants.js +12 -6
  249. package/dist/components/UTVirtualizedList/components/VirtualizedData/hooks/use-ledger.js +18 -8
  250. package/dist/components/UTVirtualizedList/components/VirtualizedData/hooks/use-virtualized-data.js +47 -23
  251. package/dist/components/UTVirtualizedList/components/VirtualizedData/index.js +34 -31
  252. package/dist/components/UTVirtualizedList/components/VirtualizedData/utils.js +93 -81
  253. package/dist/components/UTVirtualizedList/constants.js +8 -4
  254. package/dist/components/UTVirtualizedList/index.js +38 -26
  255. package/dist/components/UTWorkflowContainer/components/ActionButton/index.js +21 -17
  256. package/dist/components/UTWorkflowContainer/constants.js +6 -3
  257. package/dist/components/UTWorkflowContainer/hooks/use-previous.js +3 -3
  258. package/dist/components/UTWorkflowContainer/index.js +51 -32
  259. package/dist/components/UTWorkflowContainer/theme.js +53 -60
  260. package/dist/components/UTWorkflowContainer/types.js +3 -2
  261. package/dist/components/WithLoading/index.js +15 -10
  262. package/dist/components/WithTheme/index.js +17 -10
  263. package/dist/components/WithTheme/layout.js +28 -22
  264. package/dist/components/WithTouch/index.js +19 -12
  265. package/dist/constants/UTTable.js +3 -2
  266. package/dist/index.js +58 -58
  267. package/dist/theme.js +5 -6
  268. package/dist/types/commonTypes.js +5 -3
  269. package/dist/types/consumptionTypes.js +5 -3
  270. package/dist/types/formTypes.js +7 -4
  271. package/dist/types/tableTypes.js +3 -2
  272. package/dist/utils/classesUtils.js +13 -5
  273. package/dist/utils/componentUtils.js +13 -10
  274. package/dist/utils/helperFunctions.js +4 -4
  275. package/dist/utils/shadowUtils.js +11 -13
  276. package/dist/utils/useScreenSize.js +3 -2
  277. package/package.json +1 -1
@@ -15,104 +15,130 @@ var _withGoogleMapScript = _interopRequireDefault(require("./withGoogleMapScript
15
15
  var _constants = require("./constants");
16
16
  var _stylesModule = _interopRequireDefault(require("./styles.module.scss"));
17
17
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
18
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
19
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
19
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && 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; }
20
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
21
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
22
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
23
+ 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); }
24
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
25
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
26
+ 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; }
27
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
28
+ 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, _toPropertyKey(descriptor.key), descriptor); } }
29
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
30
+ 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); }
31
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
32
+ 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); }; }
33
+ 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); }
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+ 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; } }
36
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
20
37
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : String(i); }
22
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
23
- class UTMap extends _react.PureComponent {
24
- constructor(props) {
25
- super(props);
26
- _defineProperty(this, "handleSearchChange", event => this.setState({
27
- searchValue: event.target.value
28
- }));
29
- _defineProperty(this, "updateAddress", (latLng, forcedAddress, changeValue) => {
30
- this.setState({
38
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
39
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
40
+ var UTMap = /*#__PURE__*/function (_PureComponent) {
41
+ _inherits(UTMap, _PureComponent);
42
+ var _super = _createSuper(UTMap);
43
+ function UTMap(props) {
44
+ var _this;
45
+ _classCallCheck(this, UTMap);
46
+ _this = _super.call(this, props);
47
+ _defineProperty(_assertThisInitialized(_this), "handleSearchChange", function (event) {
48
+ return _this.setState({
49
+ searchValue: event.target.value
50
+ });
51
+ });
52
+ _defineProperty(_assertThisInitialized(_this), "updateAddress", function (latLng, forcedAddress, changeValue) {
53
+ _this.setState({
31
54
  searchValue: ''
32
55
  });
33
56
  // Update address on search box and complete field value on store
34
57
  (0, _utils.retrieveAddressByCoords)({
35
58
  address: forcedAddress,
36
59
  location: latLng
37
- }, address => {
38
- this.setState({
60
+ }, function (address) {
61
+ _this.setState({
39
62
  searchValue: address.formatted_address
40
- }, () => {
41
- const {
42
- field,
43
- onChange
44
- } = this.props;
45
- const addressComponents = field.configuration.address_components;
46
- const addressValue = {};
47
- Object.keys(addressComponents).map(key => addressValue[addressComponents[key]] = (0, _utils.getValue)(address, latLng, key));
63
+ }, function () {
64
+ var _this$props = _this.props,
65
+ field = _this$props.field,
66
+ onChange = _this$props.onChange;
67
+ var addressComponents = field.configuration.address_components;
68
+ var addressValue = {};
69
+ Object.keys(addressComponents).map(function (key) {
70
+ return addressValue[addressComponents[key]] = (0, _utils.getValue)(address, latLng, key);
71
+ });
48
72
  if (changeValue) onChange(addressValue);
49
73
  });
50
74
  });
51
75
  });
52
- _defineProperty(this, "updateMarker", latLng => {
76
+ _defineProperty(_assertThisInitialized(_this), "updateMarker", function (latLng) {
53
77
  // Add marker on screen
54
- const newMarker = {
78
+ var newMarker = {
55
79
  position: latLng,
56
80
  defaultAnimation: 2,
57
81
  key: Date.now()
58
82
  };
59
- const markers = [...(this.props.singleMarker ? [] : [...this.state.markers]), newMarker];
60
- this.setState({
61
- markers
83
+ var markers = [].concat(_toConsumableArray(_this.props.singleMarker ? [] : _toConsumableArray(_this.state.markers)), [newMarker]);
84
+ _this.setState({
85
+ markers: markers
62
86
  });
63
87
  });
64
- _defineProperty(this, "handleMapClick", event => {
88
+ _defineProperty(_assertThisInitialized(_this), "handleMapClick", function (event) {
65
89
  // When user click on any place inside map
66
- if (this.props.disabled) return;
67
- if ((0, _utils.checkAddressIsValid)(event.latLng, this.state.usePolygon, this.props.polygonPath)) {
68
- this.props.onChange(null);
69
- this.updateMarker(event.latLng);
70
- this.updateAddress(event.latLng, null, true);
71
- } else if (this.props.onLocationOutOfBoundsCallback) {
72
- this.setState({
73
- mapZoom: this.props.zoomAddressInvalid || 10
90
+ if (_this.props.disabled) return;
91
+ if ((0, _utils.checkAddressIsValid)(event.latLng, _this.state.usePolygon, _this.props.polygonPath)) {
92
+ _this.props.onChange(null);
93
+ _this.updateMarker(event.latLng);
94
+ _this.updateAddress(event.latLng, null, true);
95
+ } else if (_this.props.onLocationOutOfBoundsCallback) {
96
+ _this.setState({
97
+ mapZoom: _this.props.zoomAddressInvalid || 10
74
98
  });
75
- this.props.onLocationOutOfBoundsCallback();
99
+ _this.props.onLocationOutOfBoundsCallback();
76
100
  }
77
101
  });
78
- _defineProperty(this, "centerMap", latLng => this.setState({
79
- center: latLng,
80
- mapZoom: this.props.zoomAddressValid || _constants.ZOOM_ADDRESS_VALID
81
- }));
82
- _defineProperty(this, "handleMarkerRightClick", targetMarker => {
83
- const nextMarkers = this.state.markers.filter(marker => marker.position !== targetMarker.latLng && marker.position.lat !== targetMarker.latLng.lat() && marker.position.lng !== targetMarker.latLng.lng());
84
- this.setState({
102
+ _defineProperty(_assertThisInitialized(_this), "centerMap", function (latLng) {
103
+ return _this.setState({
104
+ center: latLng,
105
+ mapZoom: _this.props.zoomAddressValid || _constants.ZOOM_ADDRESS_VALID
106
+ });
107
+ });
108
+ _defineProperty(_assertThisInitialized(_this), "handleMarkerRightClick", function (targetMarker) {
109
+ var nextMarkers = _this.state.markers.filter(function (marker) {
110
+ return marker.position !== targetMarker.latLng && marker.position.lat !== targetMarker.latLng.lat() && marker.position.lng !== targetMarker.latLng.lng();
111
+ });
112
+ _this.setState({
85
113
  markers: nextMarkers
86
114
  });
87
115
  });
88
- _defineProperty(this, "handleMapMounted", mapRef => {
116
+ _defineProperty(_assertThisInitialized(_this), "handleMapMounted", function (mapRef) {
89
117
  // When map is mounted on screen
90
- this.map = mapRef;
91
- const {
92
- input,
93
- field
94
- } = this.props;
118
+ _this.map = mapRef;
119
+ var _this$props2 = _this.props,
120
+ input = _this$props2.input,
121
+ field = _this$props2.field;
95
122
  if (input.value) {
96
- const addressComponents = field.configuration.address_components;
97
- const latLng = new window.google.maps.LatLng(input.value[addressComponents[_constants.GMAP_PARAMS.latitude]], input.value[addressComponents[_constants.GMAP_PARAMS.longitude]]);
98
- this.updateAddress(latLng, input.value[addressComponents[_constants.GMAP_PARAMS.formattedAddress]]);
123
+ var addressComponents = field.configuration.address_components;
124
+ var latLng = new window.google.maps.LatLng(input.value[addressComponents[_constants.GMAP_PARAMS.latitude]], input.value[addressComponents[_constants.GMAP_PARAMS.longitude]]);
125
+ _this.updateAddress(latLng, input.value[addressComponents[_constants.GMAP_PARAMS.formattedAddress]]);
99
126
  return;
100
127
  }
101
- if (this.props.useGeolocation) {
128
+ if (_this.props.useGeolocation) {
102
129
  // We try to recover user actual position with navigator geolocation
103
- (0, _utils.geolocation)(this.props.errors.retrieveLocationError).getCurrentPosition(userPosition => {
130
+ (0, _utils.geolocation)(_this.props.errors.retrieveLocationError).getCurrentPosition(function (userPosition) {
104
131
  // If we can retrieve user position...
105
- const {
106
- latitude: userLatitude,
107
- longitude: userLongitude
108
- } = userPosition.coords;
109
- const userLatLng = new window.google.maps.LatLng(userLatitude, userLongitude);
110
- if ((0, _utils.checkAddressIsValid)(userLatLng, this.state.usePolygon, this.props.polygonPath)) {
111
- const actualPosition = {
132
+ var _userPosition$coords = userPosition.coords,
133
+ userLatitude = _userPosition$coords.latitude,
134
+ userLongitude = _userPosition$coords.longitude;
135
+ var userLatLng = new window.google.maps.LatLng(userLatitude, userLongitude);
136
+ if ((0, _utils.checkAddressIsValid)(userLatLng, _this.state.usePolygon, _this.props.polygonPath)) {
137
+ var actualPosition = {
112
138
  lat: userLatitude,
113
139
  lng: userLongitude
114
140
  };
115
- this.setState({
141
+ _this.setState({
116
142
  center: actualPosition,
117
143
  markers: [{
118
144
  position: actualPosition,
@@ -120,125 +146,133 @@ class UTMap extends _react.PureComponent {
120
146
  defaultAnimation: 2
121
147
  }],
122
148
  mapLoading: false
123
- }, () => {
124
- const latlng = new window.google.maps.LatLng(userLatitude, userLongitude);
125
- this.updateAddress(latlng, null, true);
149
+ }, function () {
150
+ var latlng = new window.google.maps.LatLng(userLatitude, userLongitude);
151
+ _this.updateAddress(latlng, null, true);
126
152
  });
127
153
  } else {
128
154
  // In other case we set map on startLocation
129
- const latlng = new window.google.maps.LatLng(this.state.center.lat, this.state.center.lng);
130
- this.updateAddress(latlng, null, true);
155
+ var latlng = new window.google.maps.LatLng(_this.state.center.lat, _this.state.center.lng);
156
+ _this.updateAddress(latlng, null, true);
131
157
  }
132
158
  },
133
159
  // If we can't retrieve user position we set map on startLocation
134
- () => {
135
- const latlng = new window.google.maps.LatLng(this.state.center.lat, this.state.center.lng);
136
- this.updateAddress(latlng, null, true);
160
+ function () {
161
+ var latlng = new window.google.maps.LatLng(_this.state.center.lat, _this.state.center.lng);
162
+ _this.updateAddress(latlng, null, true);
137
163
  });
138
164
  }
139
165
  });
140
- _defineProperty(this, "handleBoundsChanged", () => this.setState({
141
- center: this.map.getCenter()
142
- }));
143
- _defineProperty(this, "handleSearchBoxMounted", searchBoxRef => this.searchBox = searchBoxRef);
144
- _defineProperty(this, "handlePlacesChanged", () => {
145
- if (this.props.disabled) return;
146
- const places = this.searchBox.getPlaces();
147
- const place = !(0, _array.isEmpty)(places) && (0, _utils.checkAddressIsValid)(places[0].geometry.location, this.state.usePolygon, this.props.polygonPath) && places[0];
166
+ _defineProperty(_assertThisInitialized(_this), "handleBoundsChanged", function () {
167
+ return _this.setState({
168
+ center: _this.map.getCenter()
169
+ });
170
+ });
171
+ _defineProperty(_assertThisInitialized(_this), "handleSearchBoxMounted", function (searchBoxRef) {
172
+ return _this.searchBox = searchBoxRef;
173
+ });
174
+ _defineProperty(_assertThisInitialized(_this), "handlePlacesChanged", function () {
175
+ if (_this.props.disabled) return;
176
+ var places = _this.searchBox.getPlaces();
177
+ var place = !(0, _array.isEmpty)(places) && (0, _utils.checkAddressIsValid)(places[0].geometry.location, _this.state.usePolygon, _this.props.polygonPath) && places[0];
148
178
  if (place) {
149
- this.props.onChange(null);
150
- this.updateMarker(place.geometry.location);
151
- this.updateAddress(place.geometry.location, place.formatted_address, true);
152
- this.centerMap(place.geometry.location);
153
- } else if (this.props.onLocationOutOfBoundsCallback) this.props.onLocationOutOfBoundsCallback();
179
+ _this.props.onChange(null);
180
+ _this.updateMarker(place.geometry.location);
181
+ _this.updateAddress(place.geometry.location, place.formatted_address, true);
182
+ _this.centerMap(place.geometry.location);
183
+ } else if (_this.props.onLocationOutOfBoundsCallback) _this.props.onLocationOutOfBoundsCallback();
154
184
  });
155
- this.state = {
185
+ _this.state = {
156
186
  markers: [],
157
187
  mapLoading: true,
158
188
  searchValue: '',
159
- mapZoom: this.props.zoomInitial || _constants.ZOOM_INITIAL,
160
- usePolygon: this.props.usePolygon && !(0, _array.isEmpty)(this.props.polygonPath),
189
+ mapZoom: _this.props.zoomInitial || _constants.ZOOM_INITIAL,
190
+ usePolygon: _this.props.usePolygon && !(0, _array.isEmpty)(_this.props.polygonPath),
161
191
  invalidConfiguration: false
162
192
  };
193
+ return _this;
163
194
  }
164
- componentDidMount() {
165
- const startPosition = {
166
- position: {
167
- lat: null,
168
- lng: null
195
+ _createClass(UTMap, [{
196
+ key: "componentDidMount",
197
+ value: function componentDidMount() {
198
+ var startPosition = {
199
+ position: {
200
+ lat: null,
201
+ lng: null
202
+ }
203
+ };
204
+ var _this$props3 = this.props,
205
+ input = _this$props3.input,
206
+ startLocation = _this$props3.startLocation,
207
+ field = _this$props3.field;
208
+ if (!(0, _utils.isValidConfiguration)(field)) {
209
+ this.setState({
210
+ invalidConfiguration: true,
211
+ mapLoading: false
212
+ });
213
+ return;
214
+ }
215
+ if (input.value) {
216
+ startPosition.position.lat = input.value[field.configuration.address_components[_constants.GMAP_PARAMS.latitude]];
217
+ startPosition.position.lng = input.value[field.configuration.address_components[_constants.GMAP_PARAMS.longitude]];
218
+ this.setState({
219
+ center: startPosition.position,
220
+ markers: [startPosition],
221
+ mapLoading: false
222
+ });
223
+ return;
224
+ }
225
+ if (startLocation && startLocation.position.lat && startLocation.position.lng) {
226
+ this.setState({
227
+ center: startLocation.position,
228
+ markers: [startLocation],
229
+ mapLoading: false
230
+ });
169
231
  }
170
- };
171
- const {
172
- input,
173
- startLocation,
174
- field
175
- } = this.props;
176
- if (!(0, _utils.isValidConfiguration)(field)) {
177
- this.setState({
178
- invalidConfiguration: true,
179
- mapLoading: false
180
- });
181
- return;
182
- }
183
- if (input.value) {
184
- startPosition.position.lat = input.value[field.configuration.address_components[_constants.GMAP_PARAMS.latitude]];
185
- startPosition.position.lng = input.value[field.configuration.address_components[_constants.GMAP_PARAMS.longitude]];
186
- this.setState({
187
- center: startPosition.position,
188
- markers: [startPosition],
189
- mapLoading: false
190
- });
191
- return;
192
232
  }
193
- if (startLocation && startLocation.position.lat && startLocation.position.lng) {
194
- this.setState({
195
- center: startLocation.position,
196
- markers: [startLocation],
197
- mapLoading: false
198
- });
233
+ }, {
234
+ key: "render",
235
+ value: function render() {
236
+ var showOnlyMap = this.props.field.configuration.showOnlyMap;
237
+ return /*#__PURE__*/_react.default.createElement("div", null, this.state.center ? /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_GoogleMaps.default, {
238
+ containerElement: /*#__PURE__*/_react.default.createElement("div", {
239
+ className: this.props.className
240
+ }),
241
+ mapElement: /*#__PURE__*/_react.default.createElement("div", {
242
+ className: this.props.className
243
+ }),
244
+ onMapClick: this.handleMapClick,
245
+ onMarkerRightClick: this.handleMarkerRightClick,
246
+ onMapMounted: this.handleMapMounted,
247
+ onSearchBoxMounted: this.handleSearchBoxMounted,
248
+ onPlacesChanged: this.handlePlacesChanged,
249
+ markers: this.state.markers,
250
+ center: this.state.center,
251
+ searchValue: this.state.searchValue,
252
+ onSearchChange: this.handleSearchChange,
253
+ zoom: this.state.mapZoom,
254
+ polygonPath: this.props.polygonPath,
255
+ usePolygon: this.state.usePolygon,
256
+ placeholder: this.props.placeholder,
257
+ disabled: this.props.disabled,
258
+ showOnlyMap: showOnlyMap,
259
+ colorPolygon: this.props.colorPolygon,
260
+ colorBorderPolygon: this.props.colorBorderPolygon
261
+ })) : this.state.mapLoading ? /*#__PURE__*/_react.default.createElement(_UTLabel.default, null, this.props.errors.retrievingLocation) : this.state.invalidConfiguration ? /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
262
+ colorTheme: "error",
263
+ variant: "small"
264
+ }, this.props.errors.invalidConfig) : /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
265
+ colorTheme: "error",
266
+ variant: "small"
267
+ }, this.props.errors.retrieveLocationError), !showOnlyMap && /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
268
+ colorTheme: "error",
269
+ variant: "small",
270
+ className: _stylesModule.default.error
271
+ }, (0, _form.shouldShowErrors)(this.props.meta) ? this.props.meta.error : ''));
199
272
  }
200
- }
201
- render() {
202
- const {
203
- showOnlyMap
204
- } = this.props.field.configuration;
205
- return /*#__PURE__*/_react.default.createElement("div", null, this.state.center ? /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_GoogleMaps.default, {
206
- containerElement: /*#__PURE__*/_react.default.createElement("div", {
207
- className: this.props.className
208
- }),
209
- mapElement: /*#__PURE__*/_react.default.createElement("div", {
210
- className: this.props.className
211
- }),
212
- onMapClick: this.handleMapClick,
213
- onMarkerRightClick: this.handleMarkerRightClick,
214
- onMapMounted: this.handleMapMounted,
215
- onSearchBoxMounted: this.handleSearchBoxMounted,
216
- onPlacesChanged: this.handlePlacesChanged,
217
- markers: this.state.markers,
218
- center: this.state.center,
219
- searchValue: this.state.searchValue,
220
- onSearchChange: this.handleSearchChange,
221
- zoom: this.state.mapZoom,
222
- polygonPath: this.props.polygonPath,
223
- usePolygon: this.state.usePolygon,
224
- placeholder: this.props.placeholder,
225
- disabled: this.props.disabled,
226
- showOnlyMap: showOnlyMap,
227
- colorPolygon: this.props.colorPolygon,
228
- colorBorderPolygon: this.props.colorBorderPolygon
229
- })) : this.state.mapLoading ? /*#__PURE__*/_react.default.createElement(_UTLabel.default, null, this.props.errors.retrievingLocation) : this.state.invalidConfiguration ? /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
230
- colorTheme: "error",
231
- variant: "small"
232
- }, this.props.errors.invalidConfig) : /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
233
- colorTheme: "error",
234
- variant: "small"
235
- }, this.props.errors.retrieveLocationError), !showOnlyMap && /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
236
- colorTheme: "error",
237
- variant: "small",
238
- className: _stylesModule.default.error
239
- }, (0, _form.shouldShowErrors)(this.props.meta) ? this.props.meta.error : ''));
240
- }
241
- }
273
+ }]);
274
+ return UTMap;
275
+ }(_react.PureComponent);
242
276
  UTMap.propTypes = _types.UTMapPropTypes;
243
277
  UTMap.defaultProps = {
244
278
  errors: {
@@ -253,4 +287,5 @@ UTMap.defaultProps = {
253
287
  }
254
288
  }
255
289
  };
256
- var _default = exports.default = (0, _withGoogleMapScript.default)()(UTMap);
290
+ var _default = (0, _withGoogleMapScript.default)()(UTMap);
291
+ exports.default = _default;
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.UTMapPropTypes = exports.GoogleMapsPropTypes = void 0;
7
7
  var _propTypes = require("prop-types");
8
8
  var _formTypes = require("../../types/formTypes");
9
- const coordinatePropType = (0, _propTypes.oneOfType)([_propTypes.number, _propTypes.func]);
10
- const UTMapPropTypes = exports.UTMapPropTypes = {
9
+ var coordinatePropType = (0, _propTypes.oneOfType)([_propTypes.number, _propTypes.func]);
10
+ var UTMapPropTypes = {
11
11
  onChange: _propTypes.func.isRequired,
12
12
  singleMarker: _propTypes.bool,
13
13
  startLocation: (0, _propTypes.shape)({
@@ -37,7 +37,8 @@ const UTMapPropTypes = exports.UTMapPropTypes = {
37
37
  apiKey: _propTypes.string,
38
38
  disabled: _propTypes.bool
39
39
  };
40
- const GoogleMapsPropTypes = exports.GoogleMapsPropTypes = {
40
+ exports.UTMapPropTypes = UTMapPropTypes;
41
+ var GoogleMapsPropTypes = {
41
42
  onMapClick: _propTypes.func.isRequired,
42
43
  onMarkerRightClick: _propTypes.func.isRequired,
43
44
  center: (0, _propTypes.shape)({
@@ -65,4 +66,5 @@ const GoogleMapsPropTypes = exports.GoogleMapsPropTypes = {
65
66
  searchValue: _propTypes.any,
66
67
  zoom: _propTypes.number,
67
68
  showOnlyMap: _propTypes.bool
68
- };
69
+ };
70
+ exports.GoogleMapsPropTypes = GoogleMapsPropTypes;
@@ -6,57 +6,72 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.retrieveAddressByCoords = exports.isValidConfiguration = exports.getValue = exports.geolocation = exports.findAddressComponent = exports.checkAddressIsValid = void 0;
7
7
  var _array = require("@widergy/web-utils/lib/array");
8
8
  var _constants = require("./constants");
9
- const geolocation = message => navigator.geolocation ? navigator.geolocation : {
10
- getCurrentPosition(success, failure) {
11
- failure(message);
12
- }
9
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
10
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
11
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
12
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
13
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
14
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
15
+ var geolocation = function geolocation(message) {
16
+ return navigator.geolocation ? navigator.geolocation : {
17
+ getCurrentPosition: function getCurrentPosition(success, failure) {
18
+ failure(message);
19
+ }
20
+ };
13
21
  };
14
22
  exports.geolocation = geolocation;
15
- const checkAddressIsValid = (latLng, usePolygon, polygon) => {
23
+ var checkAddressIsValid = function checkAddressIsValid(latLng, usePolygon, polygon) {
16
24
  // Check if a position is included on Utility polygon or if utility hasn't setted a polygon
17
25
  // To set map in this position
18
- const utilityPolygon = new window.google.maps.Polygon({
26
+ var utilityPolygon = new window.google.maps.Polygon({
19
27
  paths: polygon
20
28
  });
21
29
  return !usePolygon || window.google.maps.geometry.poly.containsLocation(latLng, utilityPolygon);
22
30
  };
23
31
  exports.checkAddressIsValid = checkAddressIsValid;
24
- const retrieveAddressByCoords = (_ref, onAddressFoundCallback) => {
25
- let {
26
- location,
27
- address
28
- } = _ref;
29
- const geocoder = new window.google.maps.Geocoder();
30
- const parameters = address ? {
31
- address
32
+ var retrieveAddressByCoords = function retrieveAddressByCoords(_ref, onAddressFoundCallback) {
33
+ var location = _ref.location,
34
+ address = _ref.address;
35
+ var geocoder = new window.google.maps.Geocoder();
36
+ var parameters = address ? {
37
+ address: address
32
38
  } : {
33
- location
39
+ location: location
34
40
  };
35
- geocoder.geocode(parameters, (results, status) => {
41
+ geocoder.geocode(parameters, function (results, status) {
36
42
  if (status === 'OK') {
37
- const addressResults = results.filter(result => result.types.some(type => type === _constants.ADDRESS_TYPES.street || type === _constants.ADDRESS_TYPES.route));
38
- let finalAddress;
43
+ var addressResults = results.filter(function (result) {
44
+ return result.types.some(function (type) {
45
+ return type === _constants.ADDRESS_TYPES.street || type === _constants.ADDRESS_TYPES.route;
46
+ });
47
+ });
48
+ var finalAddress;
39
49
  if (!(0, _array.isEmpty)(addressResults)) {
40
- finalAddress = addressResults.find(elem => elem.geometry.location_type === _constants.LOCATION_TYPES.rooftop) || addressResults.find(elem => elem.geometry.location_type === _constants.LOCATION_TYPES.rangeInterpolated) || addressResults.find(elem => elem.geometry.location_type === _constants.LOCATION_TYPES.geometricCenter);
50
+ finalAddress = addressResults.find(function (elem) {
51
+ return elem.geometry.location_type === _constants.LOCATION_TYPES.rooftop;
52
+ }) || addressResults.find(function (elem) {
53
+ return elem.geometry.location_type === _constants.LOCATION_TYPES.rangeInterpolated;
54
+ }) || addressResults.find(function (elem) {
55
+ return elem.geometry.location_type === _constants.LOCATION_TYPES.geometricCenter;
56
+ });
41
57
  } else if (!(0, _array.isEmpty)(results)) {
42
- finalAddress = {
43
- ...results[0],
44
- ...(address ? {
45
- formatted_address: address
46
- } : {})
47
- };
58
+ finalAddress = _objectSpread(_objectSpread({}, results[0]), address ? {
59
+ formatted_address: address
60
+ } : {});
48
61
  }
49
62
  if (finalAddress) onAddressFoundCallback(finalAddress);
50
63
  }
51
64
  });
52
65
  };
53
66
  exports.retrieveAddressByCoords = retrieveAddressByCoords;
54
- const findAddressComponent = (address, component) => {
55
- const addrComponent = address.address_components.find(attribute => attribute.types.includes(component));
67
+ var findAddressComponent = function findAddressComponent(address, component) {
68
+ var addrComponent = address.address_components.find(function (attribute) {
69
+ return attribute.types.includes(component);
70
+ });
56
71
  return addrComponent && addrComponent.long_name;
57
72
  };
58
73
  exports.findAddressComponent = findAddressComponent;
59
- const getValue = (address, latLng, paramName) => {
74
+ var getValue = function getValue(address, latLng, paramName) {
60
75
  switch (paramName) {
61
76
  case _constants.GMAP_PARAMS.latitude:
62
77
  return latLng.lat();
@@ -70,5 +85,7 @@ const getValue = (address, latLng, paramName) => {
70
85
  };
71
86
  // configuration.address_components
72
87
  exports.getValue = getValue;
73
- const isValidConfiguration = field => field && field.configuration && field.configuration.address_components && field.configuration.address_components[_constants.GMAP_PARAMS.latitude] && field.configuration.address_components[_constants.GMAP_PARAMS.longitude] && field.configuration.address_components[_constants.GMAP_PARAMS.formattedAddress];
88
+ var isValidConfiguration = function isValidConfiguration(field) {
89
+ return field && field.configuration && field.configuration.address_components && field.configuration.address_components[_constants.GMAP_PARAMS.latitude] && field.configuration.address_components[_constants.GMAP_PARAMS.longitude] && field.configuration.address_components[_constants.GMAP_PARAMS.formattedAddress];
90
+ };
74
91
  exports.isValidConfiguration = isValidConfiguration;
@@ -7,25 +7,29 @@ exports.default = void 0;
7
7
  var _react = _interopRequireDefault(require("react"));
8
8
  var _withScriptjs = _interopRequireDefault(require("react-google-maps/lib/withScriptjs"));
9
9
  var _types = require("./types");
10
+ var _excluded = ["apiKey"];
10
11
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
12
  function _extends() { _extends = Object.assign ? Object.assign.bind() : 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); }
12
- const WithGoogleMapScript = () => WrappedComponent => {
13
- const Component = (0, _withScriptjs.default)(WrappedComponent);
14
- const WithGoogleMap = _ref => {
15
- let {
16
- apiKey,
17
- ...props
18
- } = _ref;
19
- return /*#__PURE__*/_react.default.createElement(Component, _extends({
20
- googleMapURL: "https://maps.googleapis.com/maps/api/js?libraries=places,geometry&key=".concat(apiKey),
21
- loadingElement: /*#__PURE__*/_react.default.createElement("div", {
22
- style: {
23
- height: "100%"
24
- }
25
- })
26
- }, props));
13
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
14
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
15
+ var WithGoogleMapScript = function WithGoogleMapScript() {
16
+ return function (WrappedComponent) {
17
+ var Component = (0, _withScriptjs.default)(WrappedComponent);
18
+ var WithGoogleMap = function WithGoogleMap(_ref) {
19
+ var apiKey = _ref.apiKey,
20
+ props = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_react.default.createElement(Component, _extends({
22
+ googleMapURL: "https://maps.googleapis.com/maps/api/js?libraries=places,geometry&key=".concat(apiKey),
23
+ loadingElement: /*#__PURE__*/_react.default.createElement("div", {
24
+ style: {
25
+ height: "100%"
26
+ }
27
+ })
28
+ }, props));
29
+ };
30
+ WithGoogleMap.propTypes = _types.UTMapPropTypes.propTypes;
31
+ return WithGoogleMap;
27
32
  };
28
- WithGoogleMap.propTypes = _types.UTMapPropTypes.propTypes;
29
- return WithGoogleMap;
30
33
  };
31
- var _default = exports.default = WithGoogleMapScript;
34
+ var _default = WithGoogleMapScript;
35
+ exports.default = _default;