@commercetools-frontend/experimental-components 0.0.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 (931) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/commercetools-frontend-experimental-components.cjs.dev.js +15285 -0
  3. package/dist/commercetools-frontend-experimental-components.cjs.js +7 -0
  4. package/dist/commercetools-frontend-experimental-components.cjs.prod.js +15276 -0
  5. package/dist/commercetools-frontend-experimental-components.esm.js +14983 -0
  6. package/package.json +88 -0
  7. package/src/actions/reference-search/cart-discount/cart-discount.ctp.graphql +29 -0
  8. package/src/actions/reference-search/cart-discount/cart-discount.js +69 -0
  9. package/src/actions/reference-search/cart-discount/cart-discount.spec.js +115 -0
  10. package/src/actions/reference-search/cart-discount/index.js +1 -0
  11. package/src/actions/reference-search/category/category.ctp.graphql +44 -0
  12. package/src/actions/reference-search/category/category.js +50 -0
  13. package/src/actions/reference-search/category/category.spec.js +82 -0
  14. package/src/actions/reference-search/category/index.js +1 -0
  15. package/src/components/attribute-definitions/reference-search/cart-discount-reference-search/cart-discount-reference-search.jsx +132 -0
  16. package/src/components/attribute-definitions/reference-search/cart-discount-reference-search/cart-discount-reference-search.spec.js +225 -0
  17. package/src/components/attribute-definitions/reference-search/cart-discount-reference-search/index.js +1 -0
  18. package/src/components/attribute-definitions/reference-search/cart-discount-reference-search/messages.js +33 -0
  19. package/src/components/attribute-definitions/reference-search/cart-discount-reference-search/option.jsx +45 -0
  20. package/src/components/attribute-definitions/reference-search/category-reference-search/category-reference-search.jsx +96 -0
  21. package/src/components/attribute-definitions/reference-search/category-reference-search/category-reference-search.spec.js +281 -0
  22. package/src/components/attribute-definitions/reference-search/category-reference-search/index.js +2 -0
  23. package/src/components/attribute-definitions/reference-search/category-reference-search/messages.js +37 -0
  24. package/src/components/attribute-definitions/reference-search/category-reference-search/option.jsx +71 -0
  25. package/src/components/attribute-definitions/reference-search/category-reference-search/use-cached-category-options.js +21 -0
  26. package/src/components/attribute-definitions/reference-search/index.js +10 -0
  27. package/src/components/attribute-definitions/reference-search/reference-search.jsx +179 -0
  28. package/src/components/attribute-definitions/reference-search/reference-search.module.css +13 -0
  29. package/src/components/business-unit-select-field/business-unit-select-field.jsx +141 -0
  30. package/src/components/business-unit-select-field/index.js +1 -0
  31. package/src/components/business-unit-select-input/business-unit-select-input.jsx +160 -0
  32. package/src/components/business-unit-select-input/business-unit-select-input.spec.js +118 -0
  33. package/src/components/business-unit-select-input/components/business-unit-async-select-input/business-unit-async-select-input.jsx +181 -0
  34. package/src/components/business-unit-select-input/components/business-unit-async-select-input/index.js +1 -0
  35. package/src/components/business-unit-select-input/components/business-unit-basic-select-input/business-unit-basic-select-input.jsx +150 -0
  36. package/src/components/business-unit-select-input/components/business-unit-basic-select-input/index.js +1 -0
  37. package/src/components/business-unit-select-input/components/business-unit-search-select-input/business-unit-search-select-input.jsx +187 -0
  38. package/src/components/business-unit-select-input/components/business-unit-search-select-input/fetch-business-units-by-where-predicate.ctp.graphql +9 -0
  39. package/src/components/business-unit-select-input/components/business-unit-search-select-input/index.js +1 -0
  40. package/src/components/business-unit-select-input/components/business-unit-search-select-input/mocks/handlers.js +16 -0
  41. package/src/components/business-unit-select-input/components/business-unit-search-select-input/mocks/index.js +3 -0
  42. package/src/components/business-unit-select-input/constants.js +2 -0
  43. package/src/components/business-unit-select-input/hooks/index.js +5 -0
  44. package/src/components/business-unit-select-input/hooks/use-business-units-by-field-fetcher/fetch-business-units-by-field.ctp.graphql +9 -0
  45. package/src/components/business-unit-select-input/hooks/use-business-units-by-field-fetcher/index.js +2 -0
  46. package/src/components/business-unit-select-input/hooks/use-business-units-by-field-fetcher/mocks/handlers.js +17 -0
  47. package/src/components/business-unit-select-input/hooks/use-business-units-by-field-fetcher/mocks/index.js +3 -0
  48. package/src/components/business-unit-select-input/hooks/use-business-units-by-field-fetcher/use-business-units-by-field-fetcher.js +35 -0
  49. package/src/components/business-unit-select-input/hooks/use-business-units-list-fetcher/fetch-business-units-list.ctp.graphql +21 -0
  50. package/src/components/business-unit-select-input/hooks/use-business-units-list-fetcher/index.js +2 -0
  51. package/src/components/business-unit-select-input/hooks/use-business-units-list-fetcher/mocks/handlers.js +17 -0
  52. package/src/components/business-unit-select-input/hooks/use-business-units-list-fetcher/mocks/index.js +3 -0
  53. package/src/components/business-unit-select-input/hooks/use-business-units-list-fetcher/use-business-units-list-fetcher.js +50 -0
  54. package/src/components/business-unit-select-input/hooks/use-total-number-of-business-units-fetcher/index.js +2 -0
  55. package/src/components/business-unit-select-input/hooks/use-total-number-of-business-units-fetcher/mocks/handlers.js +17 -0
  56. package/src/components/business-unit-select-input/hooks/use-total-number-of-business-units-fetcher/mocks/index.js +3 -0
  57. package/src/components/business-unit-select-input/hooks/use-total-number-of-business-units-fetcher/total-number-of-business-units.ctp.graphql +5 -0
  58. package/src/components/business-unit-select-input/hooks/use-total-number-of-business-units-fetcher/use-total-number-of-business-units-fetcher.js +20 -0
  59. package/src/components/business-unit-select-input/index.js +5 -0
  60. package/src/components/business-unit-select-input/messages.js +30 -0
  61. package/src/components/business-unit-select-input/utils.js +27 -0
  62. package/src/components/buttons/button/button.jsx +42 -0
  63. package/src/components/buttons/button/button.module.css +214 -0
  64. package/src/components/buttons/button/button.spec.js +84 -0
  65. package/src/components/buttons/button/index.js +1 -0
  66. package/src/components/buttons/button-close/__snapshots__/button-close.spec.js.snap +19 -0
  67. package/src/components/buttons/button-close/button-close.jsx +37 -0
  68. package/src/components/buttons/button-close/button-close.module.css +3 -0
  69. package/src/components/buttons/button-close/button-close.spec.js +68 -0
  70. package/src/components/buttons/button-close/index.js +1 -0
  71. package/src/components/buttons/button-group/button-group.jsx +62 -0
  72. package/src/components/buttons/button-group/button-group.module.css +53 -0
  73. package/src/components/buttons/button-group/button-group.spec.js +142 -0
  74. package/src/components/buttons/button-group/index.js +1 -0
  75. package/src/components/buttons/button-typed/button-typed.jsx +120 -0
  76. package/src/components/buttons/button-typed/button-typed.spec.js +95 -0
  77. package/src/components/buttons/button-typed/index.js +1 -0
  78. package/src/components/buttons/file-input/README.md +45 -0
  79. package/src/components/buttons/file-input/file-input.jsx +35 -0
  80. package/src/components/buttons/file-input/file-input.module.css +31 -0
  81. package/src/components/buttons/file-input/file-input.spec.js +115 -0
  82. package/src/components/buttons/file-input/index.js +1 -0
  83. package/src/components/buttons/file-input/messages.js +9 -0
  84. package/src/components/buttons/index.jsx +42 -0
  85. package/src/components/centered-loading-spinner/centered-loading-spinner.jsx +18 -0
  86. package/src/components/centered-loading-spinner/centered-loading-spinner.module.css +7 -0
  87. package/src/components/centered-loading-spinner/centered-loading-spinner.spec.js +13 -0
  88. package/src/components/centered-loading-spinner/index.js +2 -0
  89. package/src/components/channel-picker-input/channel-picker-input.ctp.graphql +24 -0
  90. package/src/components/channel-picker-input/channel-picker-input.jsx +210 -0
  91. package/src/components/channel-picker-input/channel-picker-input.spec.js +405 -0
  92. package/src/components/channel-picker-input/index.js +1 -0
  93. package/src/components/channel-picker-input/messages.js +14 -0
  94. package/src/components/channel-picker-input/tracking-events.js +24 -0
  95. package/src/components/country-picker/components/countries-async-select-dropdown/countries-async-select-dropdown.jsx +89 -0
  96. package/src/components/country-picker/components/countries-async-select-dropdown/index.js +1 -0
  97. package/src/components/country-picker/components/countries-basic-select-dropdown/countries-basic-select-dropdown.jsx +50 -0
  98. package/src/components/country-picker/components/countries-basic-select-dropdown/index.js +1 -0
  99. package/src/components/country-picker/constants.js +1 -0
  100. package/src/components/country-picker/country-picker.jsx +49 -0
  101. package/src/components/country-picker/index.js +1 -0
  102. package/src/components/country-picker/messages.js +20 -0
  103. package/src/components/divider/divider.jsx +21 -0
  104. package/src/components/divider/divider.module.css +25 -0
  105. package/src/components/divider/index.js +1 -0
  106. package/src/components/formatted-date-time/README.md +44 -0
  107. package/src/components/formatted-date-time/__snapshots__/formatted-date-time.spec.js.snap +19 -0
  108. package/src/components/formatted-date-time/formatted-date-time.jsx +35 -0
  109. package/src/components/formatted-date-time/formatted-date-time.spec.js +68 -0
  110. package/src/components/formatted-date-time/index.js +1 -0
  111. package/src/components/keep-display-name/index.js +1 -0
  112. package/src/components/keep-display-name/keep-display-name.js +6 -0
  113. package/src/components/messages.js +17 -0
  114. package/src/components/modal-container/__snapshots__/modal-container.spec.js.snap +21 -0
  115. package/src/components/modal-container/index.js +1 -0
  116. package/src/components/modal-container/modal-container.jsx +36 -0
  117. package/src/components/modal-container/modal-container.spec.js +10 -0
  118. package/src/components/modal-content-layout/index.js +1 -0
  119. package/src/components/modal-content-layout/modal-content-layout.jsx +38 -0
  120. package/src/components/modal-content-layout/modal-content-layout.module.css +69 -0
  121. package/src/components/modal-content-layout/modal-content-layout.spec.js +109 -0
  122. package/src/components/product-attributes/README.md +72 -0
  123. package/src/components/product-attributes/conversions.js +75 -0
  124. package/src/components/product-attributes/conversions.spec.js +97 -0
  125. package/src/components/product-attributes/index.js +3 -0
  126. package/src/components/product-attributes/product-attribute-input.jsx +68 -0
  127. package/src/components/product-attributes/product-attributes.jsx +79 -0
  128. package/src/components/product-picker-input/index.js +1 -0
  129. package/src/components/product-picker-input/messages.js +14 -0
  130. package/src/components/product-picker-input/product-picker-input.ctp.graphql +31 -0
  131. package/src/components/product-picker-input/product-picker-input.jsx +203 -0
  132. package/src/components/product-picker-input/product-picker-input.spec.js +357 -0
  133. package/src/components/product-picker-input/tracking-events.js +19 -0
  134. package/src/components/product-selection-picker/components/product-selection-async-select-dropdown/index.js +1 -0
  135. package/src/components/product-selection-picker/components/product-selection-async-select-dropdown/product-selection-async-select-dropdown.jsx +113 -0
  136. package/src/components/product-selection-picker/components/product-selection-basic-select-dropdown/index.js +1 -0
  137. package/src/components/product-selection-picker/components/product-selection-basic-select-dropdown/product-selection-basic-select-dropdown.jsx +98 -0
  138. package/src/components/product-selection-picker/components/product-selections-search-select-dropdown/index.js +1 -0
  139. package/src/components/product-selection-picker/components/product-selections-search-select-dropdown/product-selections-fetcher.ctp.graphql +13 -0
  140. package/src/components/product-selection-picker/components/product-selections-search-select-dropdown/product-selections-search-select-dropdown.jsx +121 -0
  141. package/src/components/product-selection-picker/constants.js +2 -0
  142. package/src/components/product-selection-picker/index.js +1 -0
  143. package/src/components/product-selection-picker/messages.js +20 -0
  144. package/src/components/product-selection-picker/product-selection-picker.jsx +84 -0
  145. package/src/components/product-type-picker-input/index.js +1 -0
  146. package/src/components/product-type-picker-input/messages.js +14 -0
  147. package/src/components/product-type-picker-input/product-type-picker-input.ctp.graphql +15 -0
  148. package/src/components/product-type-picker-input/product-type-picker-input.jsx +172 -0
  149. package/src/components/product-type-picker-input/product-type-picker-input.spec.js +266 -0
  150. package/src/components/product-type-picker-input/tracking-events.js +14 -0
  151. package/src/components/required-indicator/__snapshots__/required-indicator.spec.js.snap +17 -0
  152. package/src/components/required-indicator/index.js +1 -0
  153. package/src/components/required-indicator/required-indicator.jsx +16 -0
  154. package/src/components/required-indicator/required-indicator.module.css +3 -0
  155. package/src/components/required-indicator/required-indicator.spec.js +14 -0
  156. package/src/components/scroll-to-field-error/index.js +1 -0
  157. package/src/components/scroll-to-field-error/scroll-to-field-error.js +32 -0
  158. package/src/components/selectable-field-search-input/index.js +1 -0
  159. package/src/components/selectable-field-search-input/messages.js +14 -0
  160. package/src/components/selectable-field-search-input/selectable-field-search-input.jsx +147 -0
  161. package/src/components/selectable-field-search-input/selectable-field-search-input.module.css +14 -0
  162. package/src/components/selectable-field-search-input/selectable-field-search-input.spec.js +82 -0
  163. package/src/components/state-picker-input/index.js +1 -0
  164. package/src/components/state-picker-input/messages.js +14 -0
  165. package/src/components/state-picker-input/state-picker-input.ctp.graphql +24 -0
  166. package/src/components/state-picker-input/state-picker-input.jsx +204 -0
  167. package/src/components/state-picker-input/state-picker-input.spec.js +447 -0
  168. package/src/components/state-picker-input/tracking-events.js +24 -0
  169. package/src/components/store-select-field/index.js +1 -0
  170. package/src/components/store-select-field/store-select-field.jsx +145 -0
  171. package/src/components/store-select-input/components/stores-async-select-input/index.js +1 -0
  172. package/src/components/store-select-input/components/stores-async-select-input/stores-async-select-input.jsx +214 -0
  173. package/src/components/store-select-input/components/stores-basic-select-input/index.js +1 -0
  174. package/src/components/store-select-input/components/stores-basic-select-input/stores-basic-select-input.jsx +172 -0
  175. package/src/components/store-select-input/components/stores-search-select-input/fetch-stores-by-where-predicate.ctp.graphql +26 -0
  176. package/src/components/store-select-input/components/stores-search-select-input/index.js +2 -0
  177. package/src/components/store-select-input/components/stores-search-select-input/mocks/handlers.js +16 -0
  178. package/src/components/store-select-input/components/stores-search-select-input/mocks/index.js +3 -0
  179. package/src/components/store-select-input/components/stores-search-select-input/stores-search-select-input.jsx +261 -0
  180. package/src/components/store-select-input/constants.js +2 -0
  181. package/src/components/store-select-input/hooks/index.js +4 -0
  182. package/src/components/store-select-input/hooks/use-stores-by-field-fetcher/fetch-stores-by-field.ctp.graphql +22 -0
  183. package/src/components/store-select-input/hooks/use-stores-by-field-fetcher/index.js +2 -0
  184. package/src/components/store-select-input/hooks/use-stores-by-field-fetcher/mocks/handlers.js +16 -0
  185. package/src/components/store-select-input/hooks/use-stores-by-field-fetcher/mocks/index.js +3 -0
  186. package/src/components/store-select-input/hooks/use-stores-by-field-fetcher/use-stores-by-field-fetcher.js +47 -0
  187. package/src/components/store-select-input/hooks/use-total-number-of-stores-fetcher/index.js +2 -0
  188. package/src/components/store-select-input/hooks/use-total-number-of-stores-fetcher/mocks/handlers.js +16 -0
  189. package/src/components/store-select-input/hooks/use-total-number-of-stores-fetcher/mocks/index.js +3 -0
  190. package/src/components/store-select-input/hooks/use-total-number-of-stores-fetcher/total-number-of-stores.ctp.graphql +5 -0
  191. package/src/components/store-select-input/hooks/use-total-number-of-stores-fetcher/use-total-number-of-stores-fetcher.js +20 -0
  192. package/src/components/store-select-input/index.js +4 -0
  193. package/src/components/store-select-input/messages.js +36 -0
  194. package/src/components/store-select-input/store-select-input.jsx +163 -0
  195. package/src/components/store-select-input/store-select-input.spec.js +124 -0
  196. package/src/components/store-select-input/utils.js +40 -0
  197. package/src/components/tooltip/index.js +1 -0
  198. package/src/components/tooltip/tooltip.jsx +192 -0
  199. package/src/components/tooltip/tooltip.module.css +281 -0
  200. package/src/components/tooltip/tooltip.spec.js +138 -0
  201. package/src/components/validated-input/__snapshots__/validated-input.spec.js.snap +13 -0
  202. package/src/components/validated-input/index.js +2 -0
  203. package/src/components/validated-input/validated-input.jsx +318 -0
  204. package/src/components/validated-input/validated-input.module.css +9 -0
  205. package/src/components/validated-input/validated-input.spec.js +91 -0
  206. package/src/components/validation-error/README.md +87 -0
  207. package/src/components/validation-error/__snapshots__/validation-error-match.spec.js.snap +9 -0
  208. package/src/components/validation-error/__snapshots__/validation-error-switch.spec.js.snap +12 -0
  209. package/src/components/validation-error/index.js +4 -0
  210. package/src/components/validation-error/validation-error-match.js +31 -0
  211. package/src/components/validation-error/validation-error-match.spec.js +102 -0
  212. package/src/components/validation-error/validation-error-switch.js +45 -0
  213. package/src/components/validation-error/validation-error-switch.spec.js +78 -0
  214. package/src/components/with-mouse-over-state/README.md +33 -0
  215. package/src/components/with-mouse-over-state/index.js +1 -0
  216. package/src/components/with-mouse-over-state/with-mouse-over-state.jsx +32 -0
  217. package/src/components/with-mouse-over-state/with-mouse-over-state.spec.js +35 -0
  218. package/src/constants/index.js +114 -0
  219. package/src/custom-fields/custom-field-definitions-connector/README.md +90 -0
  220. package/src/custom-fields/custom-field-definitions-connector/__snapshots__/custom-field-definitions-connector.spec.js.snap +7 -0
  221. package/src/custom-fields/custom-field-definitions-connector/custom-field-definitions-connector.ctp.graphql +54 -0
  222. package/src/custom-fields/custom-field-definitions-connector/custom-field-definitions-connector.js +150 -0
  223. package/src/custom-fields/custom-field-definitions-connector/custom-field-definitions-connector.spec.js +288 -0
  224. package/src/custom-fields/custom-field-definitions-connector/index.js +3 -0
  225. package/src/custom-fields/custom-field-definitions-connector/mocks/handlers.js +16 -0
  226. package/src/custom-fields/custom-field-definitions-connector/mocks/index.js +4 -0
  227. package/src/custom-fields/custom-field-type-definitions-connector/README.md +193 -0
  228. package/src/custom-fields/custom-field-type-definitions-connector/__snapshots__/custom-field-type-definitions-connector.spec.js.snap +7 -0
  229. package/src/custom-fields/custom-field-type-definitions-connector/custom-field-type-definitions-connector.ctp.graphql +72 -0
  230. package/src/custom-fields/custom-field-type-definitions-connector/custom-field-type-definitions-connector.js +131 -0
  231. package/src/custom-fields/custom-field-type-definitions-connector/custom-field-type-definitions-connector.spec.js +82 -0
  232. package/src/custom-fields/custom-field-type-definitions-connector/index.js +1 -0
  233. package/src/custom-fields/custom-field-type-definitions-connector/utils.js +89 -0
  234. package/src/custom-fields/custom-field-type-definitions-connector/utils.spec.js +235 -0
  235. package/src/custom-fields/custom-fields/README.md +75 -0
  236. package/src/custom-fields/custom-fields/constants.js +38 -0
  237. package/src/custom-fields/custom-fields/custom-field-errors.jsx +60 -0
  238. package/src/custom-fields/custom-fields/custom-field-input.jsx +100 -0
  239. package/src/custom-fields/custom-fields/custom-field-tooltip.jsx +34 -0
  240. package/src/custom-fields/custom-fields/custom-fields-internal.jsx +148 -0
  241. package/src/custom-fields/custom-fields/custom-fields-label/cart-discounts-count.ctp.graphql +5 -0
  242. package/src/custom-fields/custom-fields/custom-fields-label/custom-fields-label.jsx +156 -0
  243. package/src/custom-fields/custom-fields/custom-fields-label/custom-fields-label.spec.js +92 -0
  244. package/src/custom-fields/custom-fields/custom-fields-label/index.js +1 -0
  245. package/src/custom-fields/custom-fields/custom-fields-label/messages.js +37 -0
  246. package/src/custom-fields/custom-fields/custom-fields.jsx +61 -0
  247. package/src/custom-fields/custom-fields/custom-nested-field-input/custom-nested-field-input.jsx +66 -0
  248. package/src/custom-fields/custom-fields/custom-nested-field-input/fetch-product-type.ctp.graphql +82 -0
  249. package/src/custom-fields/custom-fields/custom-nested-field-input/index.js +1 -0
  250. package/src/custom-fields/custom-fields/custom-nested-field-input/messages.js +9 -0
  251. package/src/custom-fields/custom-fields/custom-nested-field-input/product-type-reference.jsx +20 -0
  252. package/src/custom-fields/custom-fields/custom-nested-field-input/use-nested-product-type.js +72 -0
  253. package/src/custom-fields/custom-fields/index.js +5 -0
  254. package/src/custom-fields/custom-fields/nesting-level-context.js +5 -0
  255. package/src/custom-fields/custom-fields/set/custom-boolean-input-set.jsx +69 -0
  256. package/src/custom-fields/custom-fields/set/custom-boolean-input-set.spec.js +89 -0
  257. package/src/custom-fields/custom-fields/set/custom-input-set.jsx +233 -0
  258. package/src/custom-fields/custom-fields/set/custom-input-set.spec.js +193 -0
  259. package/src/custom-fields/custom-fields/set/expand-button.jsx +37 -0
  260. package/src/custom-fields/custom-fields/set/expand-button.spec.js +43 -0
  261. package/src/custom-fields/custom-fields/set/set-buttons.jsx +47 -0
  262. package/src/custom-fields/custom-fields/set/set-buttons.module.css +7 -0
  263. package/src/custom-fields/custom-fields/set/set-buttons.spec.js +39 -0
  264. package/src/custom-fields/custom-fields/test-utils.jsx +167 -0
  265. package/src/custom-fields/custom-fields/types/custom-boolean-input.jsx +49 -0
  266. package/src/custom-fields/custom-fields/types/custom-boolean-input.spec.js +51 -0
  267. package/src/custom-fields/custom-fields/types/custom-date-time-input.jsx +53 -0
  268. package/src/custom-fields/custom-fields/types/custom-date-time-input.spec.js +116 -0
  269. package/src/custom-fields/custom-fields/types/custom-enum-input.jsx +61 -0
  270. package/src/custom-fields/custom-fields/types/custom-enum-input.spec.js +113 -0
  271. package/src/custom-fields/custom-fields/types/custom-localized-enum-input.jsx +70 -0
  272. package/src/custom-fields/custom-fields/types/custom-localized-enum-input.spec.js +133 -0
  273. package/src/custom-fields/custom-fields/types/custom-localized-text-input.jsx +86 -0
  274. package/src/custom-fields/custom-fields/types/custom-localized-text-input.spec.js +99 -0
  275. package/src/custom-fields/custom-fields/types/custom-money-input.jsx +117 -0
  276. package/src/custom-fields/custom-fields/types/custom-money-input.module.css +3 -0
  277. package/src/custom-fields/custom-fields/types/custom-money-input.spec.js +124 -0
  278. package/src/custom-fields/custom-fields/types/custom-nested-input/custom-nested-input.jsx +331 -0
  279. package/src/custom-fields/custom-fields/types/custom-nested-input/custom-nested-input.spec.js +470 -0
  280. package/src/custom-fields/custom-fields/types/custom-nested-input/index.js +1 -0
  281. package/src/custom-fields/custom-fields/types/custom-nested-input/messages.js +82 -0
  282. package/src/custom-fields/custom-fields/types/custom-number-input.jsx +34 -0
  283. package/src/custom-fields/custom-fields/types/custom-number-input.spec.js +42 -0
  284. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-cart-discount-reference-input.jsx +44 -0
  285. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-cart-discount-reference-input.spec.js +132 -0
  286. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-category-reference-input.jsx +46 -0
  287. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-category-reference-input.spec.js +134 -0
  288. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-channel-reference-input.jsx +36 -0
  289. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-channel-reference-input.spec.js +130 -0
  290. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-product-reference-input.jsx +37 -0
  291. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-product-reference-input.spec.js +123 -0
  292. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-product-type-reference-input.jsx +36 -0
  293. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-product-type-reference-input.spec.js +146 -0
  294. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-raw-id-reference-input.jsx +32 -0
  295. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-raw-id-reference-input.spec.js +83 -0
  296. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-reference-input.jsx +78 -0
  297. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-state-reference-input.jsx +36 -0
  298. package/src/custom-fields/custom-fields/types/custom-reference-input/custom-state-reference-input.spec.js +130 -0
  299. package/src/custom-fields/custom-fields/types/custom-reference-input/index.js +1 -0
  300. package/src/custom-fields/custom-fields/types/custom-text-input.jsx +46 -0
  301. package/src/custom-fields/custom-fields/types/custom-text-input.spec.js +66 -0
  302. package/src/custom-fields/custom-fields/types/custom-time-input.jsx +74 -0
  303. package/src/custom-fields/custom-fields/types/custom-time-input.spec.js +91 -0
  304. package/src/custom-fields/custom-fields/utils/index.js +1 -0
  305. package/src/custom-fields/custom-fields/utils/utils.js +22 -0
  306. package/src/custom-fields/custom-fields/validations/index.js +1 -0
  307. package/src/custom-fields/custom-fields/validations/validations.js +117 -0
  308. package/src/custom-fields/custom-fields/validations/validations.spec.js +134 -0
  309. package/src/custom-fields/custom-fields-error-text-notification/custom-fields-error-text-notification.jsx +29 -0
  310. package/src/custom-fields/custom-fields-error-text-notification/custom-fields-error-text-notification.spec.js +31 -0
  311. package/src/custom-fields/custom-fields-error-text-notification/index.js +1 -0
  312. package/src/custom-fields/custom-fields-error-text-notification/messages.js +10 -0
  313. package/src/custom-fields/messages/custom-fields.js +17 -0
  314. package/src/features/picker/index.js +11 -0
  315. package/src/features/picker/shared/components/index.js +1 -0
  316. package/src/features/picker/shared/components/messages.js +9 -0
  317. package/src/features/picker/shared/components/option.jsx +51 -0
  318. package/src/features/picker/shared/hooks/use-current-option.js +24 -0
  319. package/src/features/picker/shared/hooks/use-current-option.spec.js +125 -0
  320. package/src/features/picker/shared/hooks/use-handlers.js +42 -0
  321. package/src/features/picker/shared/hooks/use-load-options.js +63 -0
  322. package/src/features/picker/shared/hooks/use-load-options.spec.js +63 -0
  323. package/src/features/picker/shared/hooks/use-product-type-options.js +190 -0
  324. package/src/features/picker/shared/hooks/use-product-type-options.spec.js +151 -0
  325. package/src/features/pim-indexer/components/index.js +5 -0
  326. package/src/features/pim-indexer/components/pim-indexer-context/index.js +1 -0
  327. package/src/features/pim-indexer/components/pim-indexer-context/pim-indexer-context.js +28 -0
  328. package/src/features/pim-indexer/components/pim-indexer-provider/fetch-indices-exist.pim-indexer.graphql +12 -0
  329. package/src/features/pim-indexer/components/pim-indexer-provider/fetch-pim-index-status.js +42 -0
  330. package/src/features/pim-indexer/components/pim-indexer-provider/fetch-pim-index-status.spec.js +128 -0
  331. package/src/features/pim-indexer/components/pim-indexer-provider/index.js +1 -0
  332. package/src/features/pim-indexer/components/pim-indexer-provider/messages.js +17 -0
  333. package/src/features/pim-indexer/components/pim-indexer-provider/pim-indexer-provider.jsx +287 -0
  334. package/src/features/pim-indexer/components/pim-indexer-provider/pim-indexer-provider.spec.js +80 -0
  335. package/src/features/pim-indexer/components/pim-indexer-provider/pim-indexer.pim-indexer.graphql +55 -0
  336. package/src/features/pim-indexer/components/with-pim-indexer/index.js +1 -0
  337. package/src/features/pim-indexer/components/with-pim-indexer/with-pim-indexer.jsx +19 -0
  338. package/src/features/pim-indexer/hocs/index.js +2 -0
  339. package/src/features/pim-indexer/hocs/inject-pim-indexer/index.js +1 -0
  340. package/src/features/pim-indexer/hocs/inject-pim-indexer/inject-pim-indexer.jsx +23 -0
  341. package/src/features/pim-indexer/hocs/inject-pim-indexer/inject-pim-indexer.spec.js +37 -0
  342. package/src/features/pim-indexer/hooks/index.js +2 -0
  343. package/src/features/pim-indexer/hooks/use-pim-indexer/index.js +1 -0
  344. package/src/features/pim-indexer/hooks/use-pim-indexer/use-pim-indexer.js +6 -0
  345. package/src/features/pim-indexer/index.js +6 -0
  346. package/src/features/platform-limits/assets/graphic-limits-reached.react.svg +50 -0
  347. package/src/features/platform-limits/customer-groups/components/index.js +5 -0
  348. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-combined/index.js +1 -0
  349. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-combined/platform-limits-customer-groups-combined.jsx +32 -0
  350. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-combined/platform-limits-customer-groups-combined.module.css +3 -0
  351. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-error-modal/index.js +1 -0
  352. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-error-modal/messages.js +15 -0
  353. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-error-modal/platform-limits-customer-groups-error-modal.jsx +43 -0
  354. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-notification/index.js +1 -0
  355. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-notification/platform-limits-customer-groups-notification.jsx +42 -0
  356. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-notification/platform-limits-customer-groups-notification.spec.js +51 -0
  357. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-status/index.js +1 -0
  358. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-status/messages.js +9 -0
  359. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-status/platform-limits-customer-groups-status.jsx +37 -0
  360. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-status/platform-limits-customer-groups-status.module.css +3 -0
  361. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-tooltip/index.js +1 -0
  362. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-tooltip/messages.js +9 -0
  363. package/src/features/platform-limits/customer-groups/components/platform-limits-customer-groups-tooltip/platform-limits-customer-groups-tooltip.jsx +18 -0
  364. package/src/features/platform-limits/customer-groups/hocs/index.js +2 -0
  365. package/src/features/platform-limits/customer-groups/hocs/inject-customer-groups-platform-limits/index.js +1 -0
  366. package/src/features/platform-limits/customer-groups/hocs/inject-customer-groups-platform-limits/inject-customer-groups-platform-limits.jsx +23 -0
  367. package/src/features/platform-limits/customer-groups/hooks/index.js +4 -0
  368. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits/index.js +1 -0
  369. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits/use-customer-groups-platform-limits.js +40 -0
  370. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-fetcher/index.js +1 -0
  371. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-fetcher/use-customer-groups-platform-limits-fetcher.js +18 -0
  372. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-fetcher/use-customer-groups-platform-limits-fetcher.spec.js +45 -0
  373. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-modal-state/index.js +1 -0
  374. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-modal-state/use-customer-groups-platform-limits-modal-state.js +21 -0
  375. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-modal-state/use-customer-groups-platform-limits-modal-state.spec.js +39 -0
  376. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-status/index.js +1 -0
  377. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-status/use-customer-groups-platform-limits-status.js +35 -0
  378. package/src/features/platform-limits/customer-groups/hooks/use-customer-groups-platform-limits-status/use-customer-groups-platform-limits-status.spec.js +66 -0
  379. package/src/features/platform-limits/customer-groups/index.js +3 -0
  380. package/src/features/platform-limits/customers/components/index.js +5 -0
  381. package/src/features/platform-limits/customers/components/platform-limits-customers-combined/index.js +1 -0
  382. package/src/features/platform-limits/customers/components/platform-limits-customers-combined/platform-limits-customers-combined.jsx +28 -0
  383. package/src/features/platform-limits/customers/components/platform-limits-customers-combined/platform-limits-customers-combined.module.css +3 -0
  384. package/src/features/platform-limits/customers/components/platform-limits-customers-error-modal/index.js +1 -0
  385. package/src/features/platform-limits/customers/components/platform-limits-customers-error-modal/messages.js +14 -0
  386. package/src/features/platform-limits/customers/components/platform-limits-customers-error-modal/platform-limits-customers-error-modal.jsx +43 -0
  387. package/src/features/platform-limits/customers/components/platform-limits-customers-notification/index.js +1 -0
  388. package/src/features/platform-limits/customers/components/platform-limits-customers-notification/platform-limits-customers-notification.jsx +40 -0
  389. package/src/features/platform-limits/customers/components/platform-limits-customers-notification/platform-limits-customers-notification.spec.js +51 -0
  390. package/src/features/platform-limits/customers/components/platform-limits-customers-status/index.js +1 -0
  391. package/src/features/platform-limits/customers/components/platform-limits-customers-status/messages.js +9 -0
  392. package/src/features/platform-limits/customers/components/platform-limits-customers-status/platform-limits-customers-status.jsx +36 -0
  393. package/src/features/platform-limits/customers/components/platform-limits-customers-status/platform-limits-customers-status.module.css +3 -0
  394. package/src/features/platform-limits/customers/components/platform-limits-customers-tooltip/index.js +1 -0
  395. package/src/features/platform-limits/customers/components/platform-limits-customers-tooltip/messages.js +9 -0
  396. package/src/features/platform-limits/customers/components/platform-limits-customers-tooltip/platform-limits-customers-tooltip.jsx +17 -0
  397. package/src/features/platform-limits/customers/hocs/index.js +2 -0
  398. package/src/features/platform-limits/customers/hocs/inject-customers-platform-limits/index.js +1 -0
  399. package/src/features/platform-limits/customers/hocs/inject-customers-platform-limits/inject-customers-platform-limits.jsx +23 -0
  400. package/src/features/platform-limits/customers/hooks/index.js +4 -0
  401. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits/index.js +1 -0
  402. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits/use-customers-platform-limits.js +38 -0
  403. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-fetcher/index.js +1 -0
  404. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-fetcher/use-customers-platform-limits-fetcher.js +18 -0
  405. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-fetcher/use-customers-platform-limits-fetcher.spec.js +43 -0
  406. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-modal-state/index.js +1 -0
  407. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-modal-state/use-customers-platform-limits-modal-state.js +20 -0
  408. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-modal-state/use-customers-platform-limits-modal-state.spec.js +39 -0
  409. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-status/index.js +1 -0
  410. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-status/use-customers-platform-limits-status.js +35 -0
  411. package/src/features/platform-limits/customers/hooks/use-customers-platform-limits-status/use-customers-platform-limits-status.spec.js +61 -0
  412. package/src/features/platform-limits/customers/index.js +3 -0
  413. package/src/features/platform-limits/index.js +21 -0
  414. package/src/features/platform-limits/shared/components/index.js +2 -0
  415. package/src/features/platform-limits/shared/components/notifications/error/error.jsx +33 -0
  416. package/src/features/platform-limits/shared/components/notifications/error/index.js +1 -0
  417. package/src/features/platform-limits/shared/components/notifications/error/messages.js +34 -0
  418. package/src/features/platform-limits/shared/components/notifications/index.js +1 -0
  419. package/src/features/platform-limits/shared/components/notifications/notifications.js +9 -0
  420. package/src/features/platform-limits/shared/components/notifications/warning/index.js +1 -0
  421. package/src/features/platform-limits/shared/components/notifications/warning/messages.js +34 -0
  422. package/src/features/platform-limits/shared/components/notifications/warning/warning.jsx +41 -0
  423. package/src/features/platform-limits/shared/components/status-text/index.js +1 -0
  424. package/src/features/platform-limits/shared/components/status-text/status-text.jsx +19 -0
  425. package/src/features/platform-limits/shared/constants.js +16 -0
  426. package/src/features/platform-limits/shared/hooks/index.js +5 -0
  427. package/src/features/platform-limits/shared/hooks/use-intercept-navigation/index.js +1 -0
  428. package/src/features/platform-limits/shared/hooks/use-intercept-navigation/use-intercept-navigation.js +31 -0
  429. package/src/features/platform-limits/shared/hooks/use-intercept-navigation/use-intercept-navigation.spec.js +76 -0
  430. package/src/features/platform-limits/shared/hooks/use-limits-modal-state/index.js +1 -0
  431. package/src/features/platform-limits/shared/hooks/use-limits-modal-state/use-limits-modal-state.js +17 -0
  432. package/src/features/platform-limits/shared/hooks/use-limits-modal-state/use-limits-modal-state.spec.js +33 -0
  433. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/__mocks__/index.js +405 -0
  434. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/index.js +1 -0
  435. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/mocks/handlers.js +16 -0
  436. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/mocks/index.js +4 -0
  437. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/platform-limits-query-variables.js +18 -0
  438. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/use-platform-limits-fetcher.ctp.graphql +87 -0
  439. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/use-platform-limits-fetcher.js +30 -0
  440. package/src/features/platform-limits/shared/hooks/use-platform-limits-fetcher/use-platform-limits-fetcher.spec.js +202 -0
  441. package/src/features/platform-limits/shared/index.js +15 -0
  442. package/src/features/platform-limits/shared/utils/index.js +5 -0
  443. package/src/features/platform-limits/shared/utils/utils.js +17 -0
  444. package/src/features/platform-limits/shared/utils/utils.spec.js +126 -0
  445. package/src/features/platform-limits/shipping-methods/components/index.js +3 -0
  446. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-notification/index.js +1 -0
  447. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-notification/platform-limits-shipping-methods-notification.jsx +42 -0
  448. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-notification/platform-limits-shipping-methods-notification.spec.js +51 -0
  449. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-status/index.js +1 -0
  450. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-status/messages.js +9 -0
  451. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-status/platform-limits-shipping-methods-status.jsx +29 -0
  452. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-status/platform-limits-shipping-methods-status.spec.js +37 -0
  453. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-tooltip/index.js +1 -0
  454. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-tooltip/messages.js +10 -0
  455. package/src/features/platform-limits/shipping-methods/components/platform-limits-shipping-methods-tooltip/platform-limits-shipping-methods-tooltip.jsx +18 -0
  456. package/src/features/platform-limits/shipping-methods/hocs/index.js +2 -0
  457. package/src/features/platform-limits/shipping-methods/hocs/inject-shipping-methods-platform-limits/index.js +1 -0
  458. package/src/features/platform-limits/shipping-methods/hocs/inject-shipping-methods-platform-limits/inject-shipping-methods-platform-limits.jsx +23 -0
  459. package/src/features/platform-limits/shipping-methods/hooks/index.js +3 -0
  460. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits/index.js +1 -0
  461. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits/use-shipping-methods-platform-limits.js +30 -0
  462. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-fetcher/index.js +1 -0
  463. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-fetcher/use-shipping-methods-platform-limits-fetcher.js +18 -0
  464. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-fetcher/use-shipping-methods-platform-limits-fetcher.spec.js +46 -0
  465. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-status/index.js +1 -0
  466. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-status/use-shipping-methods-platform-limits-status.js +35 -0
  467. package/src/features/platform-limits/shipping-methods/hooks/use-shipping-methods-platform-limits-status/use-shipping-methods-platform-limits-status.spec.js +67 -0
  468. package/src/features/platform-limits/shipping-methods/index.js +3 -0
  469. package/src/features/platform-limits/stores/hooks/index.js +3 -0
  470. package/src/features/platform-limits/stores/hooks/use-store-platform-limits/index.js +1 -0
  471. package/src/features/platform-limits/stores/hooks/use-store-platform-limits/use-store-platform-limits.js +19 -0
  472. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-fetcher/index.js +1 -0
  473. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-fetcher/use-store-platform-limits-fetcher.js +28 -0
  474. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-fetcher/use-store-platform-limits-fetcher.spec.js +51 -0
  475. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-status/index.js +1 -0
  476. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-status/use-store-platform-limits-status.js +35 -0
  477. package/src/features/platform-limits/stores/hooks/use-store-platform-limits-status/use-store-platform-limits-status.spec.js +61 -0
  478. package/src/features/platform-limits/stores/index.js +1 -0
  479. package/src/features/platform-limits/tax-categories/components/index.js +3 -0
  480. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-notification/index.js +1 -0
  481. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-notification/platform-limits-tax-categories-notification.jsx +42 -0
  482. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-notification/platform-limits-tax-categories-notification.spec.js +51 -0
  483. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-status/index.js +1 -0
  484. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-status/messages.js +9 -0
  485. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-status/platform-limits-tax-categories-status.jsx +29 -0
  486. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-status/platform-limits-tax-categories-status.spec.js +37 -0
  487. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-tooltip/index.js +1 -0
  488. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-tooltip/messages.js +9 -0
  489. package/src/features/platform-limits/tax-categories/components/platform-limits-tax-categories-tooltip/platform-limits-tax-categories-tooltip.jsx +18 -0
  490. package/src/features/platform-limits/tax-categories/hocs/index.js +2 -0
  491. package/src/features/platform-limits/tax-categories/hocs/inject-tax-categories-platform-limits/index.js +1 -0
  492. package/src/features/platform-limits/tax-categories/hocs/inject-tax-categories-platform-limits/inject-tax-categories-platform-limits.jsx +23 -0
  493. package/src/features/platform-limits/tax-categories/hooks/index.js +3 -0
  494. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits/index.js +1 -0
  495. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits/use-tax-categories-platform-limits.js +30 -0
  496. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-fetcher/index.js +1 -0
  497. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-fetcher/use-tax-categories-platform-limits-fetcher.js +18 -0
  498. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-fetcher/use-tax-categories-platform-limits-fetcher.spec.js +48 -0
  499. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-status/index.js +1 -0
  500. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-status/use-tax-categories-platform-limits-status.js +35 -0
  501. package/src/features/platform-limits/tax-categories/hooks/use-tax-categories-platform-limits-status/use-tax-categories-platform-limits-status.spec.js +66 -0
  502. package/src/features/platform-limits/tax-categories/index.js +3 -0
  503. package/src/features/platform-limits/test-utils/index.js +1 -0
  504. package/src/features/platform-limits/zones/components/index.js +3 -0
  505. package/src/features/platform-limits/zones/components/platform-limits-zones-notification/index.js +1 -0
  506. package/src/features/platform-limits/zones/components/platform-limits-zones-notification/platform-limits-zones-notification.jsx +40 -0
  507. package/src/features/platform-limits/zones/components/platform-limits-zones-notification/platform-limits-zones-notification.spec.js +51 -0
  508. package/src/features/platform-limits/zones/components/platform-limits-zones-status/index.js +1 -0
  509. package/src/features/platform-limits/zones/components/platform-limits-zones-status/messages.js +9 -0
  510. package/src/features/platform-limits/zones/components/platform-limits-zones-status/platform-limits-zones-status.jsx +32 -0
  511. package/src/features/platform-limits/zones/components/platform-limits-zones-status/platform-limits-zones-status.spec.js +37 -0
  512. package/src/features/platform-limits/zones/components/platform-limits-zones-tooltip/index.js +1 -0
  513. package/src/features/platform-limits/zones/components/platform-limits-zones-tooltip/messages.js +9 -0
  514. package/src/features/platform-limits/zones/components/platform-limits-zones-tooltip/platform-limits-zones-tooltip.jsx +17 -0
  515. package/src/features/platform-limits/zones/hocs/index.js +2 -0
  516. package/src/features/platform-limits/zones/hocs/inject-zones-platform-limits/index.js +1 -0
  517. package/src/features/platform-limits/zones/hocs/inject-zones-platform-limits/inject-zones-platform-limits.jsx +23 -0
  518. package/src/features/platform-limits/zones/hooks/index.js +3 -0
  519. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits/index.js +1 -0
  520. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits/use-zones-platform-limits.js +24 -0
  521. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-fetcher/index.js +1 -0
  522. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-fetcher/use-zones-platform-limits-fetcher.js +18 -0
  523. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-fetcher/use-zones-platform-limits-fetcher.spec.js +42 -0
  524. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-status/index.js +1 -0
  525. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-status/use-zones-platform-limits-status.js +35 -0
  526. package/src/features/platform-limits/zones/hooks/use-zones-platform-limits-status/use-zones-platform-limits-status.spec.js +61 -0
  527. package/src/features/platform-limits/zones/index.js +2 -0
  528. package/src/fields/attribute-reference-label/attribute-reference-label.jsx +38 -0
  529. package/src/fields/attribute-reference-label/attribute-reference-label.module.css +7 -0
  530. package/src/fields/attribute-reference-label/index.js +1 -0
  531. package/src/fields/autocomplete/README.md +66 -0
  532. package/src/fields/autocomplete/autocomplete.jsx +129 -0
  533. package/src/fields/autocomplete/autocomplete.module.css +3 -0
  534. package/src/fields/autocomplete/autocomplete.spec.js +144 -0
  535. package/src/fields/autocomplete/dropdown-indicator.jsx +14 -0
  536. package/src/fields/autocomplete/dropdown-indicator.module.css +5 -0
  537. package/src/fields/autocomplete/index.js +1 -0
  538. package/src/fields/boolean-field/boolean-field.jsx +82 -0
  539. package/src/fields/boolean-field/boolean-field.spec.js +80 -0
  540. package/src/fields/boolean-field/index.js +3 -0
  541. package/src/fields/boolean-field/messages.js +14 -0
  542. package/src/fields/checkbox-field/checkbox-field.jsx +50 -0
  543. package/src/fields/checkbox-field/checkbox-field.module.css +40 -0
  544. package/src/fields/checkbox-field/checkbox-field.spec.js +67 -0
  545. package/src/fields/checkbox-field/index.js +1 -0
  546. package/src/fields/checkbox-field/radio-check-icons.png +0 -0
  547. package/src/fields/expandable-field/expandable-field.jsx +93 -0
  548. package/src/fields/expandable-field/expandable-field.module.css +3 -0
  549. package/src/fields/expandable-field/expandable-field.spec.js +68 -0
  550. package/src/fields/expandable-field/index.js +1 -0
  551. package/src/fields/expandable-field/messages.js +14 -0
  552. package/src/fields/label-range/index.js +1 -0
  553. package/src/fields/label-range/label-range.jsx +28 -0
  554. package/src/fields/label-range/label-range.module.css +4 -0
  555. package/src/fields/label-range/label-range.spec.js +28 -0
  556. package/src/fields/label-required/index.js +2 -0
  557. package/src/fields/label-required/label-required.jsx +25 -0
  558. package/src/fields/localized-field/index.js +1 -0
  559. package/src/fields/localized-field/localized-field.jsx +320 -0
  560. package/src/fields/localized-field/localized-field.module.css +291 -0
  561. package/src/fields/localized-field/localized-field.spec.js +53 -0
  562. package/src/fields/localized-input/index.js +1 -0
  563. package/src/fields/localized-input/localized-input.jsx +20 -0
  564. package/src/fields/localized-textarea/index.js +1 -0
  565. package/src/fields/localized-textarea/localized-textarea.jsx +50 -0
  566. package/src/fields/missing-value-field/__snapshots__/missing-value-field.spec.js.snap +22 -0
  567. package/src/fields/missing-value-field/index.js +2 -0
  568. package/src/fields/missing-value-field/messages.js +9 -0
  569. package/src/fields/missing-value-field/missing-value-field.jsx +28 -0
  570. package/src/fields/missing-value-field/missing-value-field.spec.js +35 -0
  571. package/src/fields/multi-value-search-input/index.js +1 -0
  572. package/src/fields/multi-value-search-input/messages.js +14 -0
  573. package/src/fields/multi-value-search-input/multi-value-search-input.jsx +175 -0
  574. package/src/fields/multi-value-search-input/multi-value-search-input.module.css +45 -0
  575. package/src/fields/numeric-format-input/index.js +1 -0
  576. package/src/fields/numeric-format-input/numeric-format-input.jsx +184 -0
  577. package/src/fields/numeric-format-input/numeric-format-input.module.css +10 -0
  578. package/src/fields/numeric-format-input/numeric-format-input.spec.js +323 -0
  579. package/src/fields/search-input/index.js +1 -0
  580. package/src/fields/search-input/messages.js +14 -0
  581. package/src/fields/search-input/search-input.jsx +202 -0
  582. package/src/fields/search-input/search-input.module.css +75 -0
  583. package/src/fields/search-input/search-input.spec.js +116 -0
  584. package/src/fields/throttled-field/index.js +1 -0
  585. package/src/fields/throttled-field/throttled-field.jsx +189 -0
  586. package/src/fields/throttled-field/throttled-field.module.css +75 -0
  587. package/src/fields/throttled-field/throttled-field.spec.js +172 -0
  588. package/src/hocs/index.js +9 -0
  589. package/src/hocs/inject-data-table-pagination-state/index.js +1 -0
  590. package/src/hocs/inject-data-table-pagination-state/inject-data-table-pagination-state.jsx +41 -0
  591. package/src/hocs/inject-modal-state/index.js +1 -0
  592. package/src/hocs/inject-modal-state/inject-modal-state.jsx +31 -0
  593. package/src/hocs/inject-modal-state/inject-modal-state.spec.js +60 -0
  594. package/src/hocs/inject-notifications/README.md +43 -0
  595. package/src/hocs/inject-notifications/index.js +1 -0
  596. package/src/hocs/inject-notifications/inject-notifications.jsx +35 -0
  597. package/src/hocs/inject-notifications/inject-notifications.spec.js +55 -0
  598. package/src/hocs/inject-storage/index.js +1 -0
  599. package/src/hocs/inject-storage/inject-storage.jsx +45 -0
  600. package/src/hocs/inject-storage/inject-storage.spec.js +32 -0
  601. package/src/hocs/inject-toggle-state/index.js +1 -0
  602. package/src/hocs/inject-toggle-state/inject-toggle-state.jsx +31 -0
  603. package/src/hocs/inject-toggle-state/inject-toggle-state.spec.js +58 -0
  604. package/src/hocs/utils/get-display-name/get-display-name.js +13 -0
  605. package/src/hocs/utils/get-display-name/get-display-name.spec.js +52 -0
  606. package/src/hocs/utils/get-display-name/index.js +1 -0
  607. package/src/hocs/utils/index.js +2 -0
  608. package/src/hocs/utils/set-display-name/index.js +1 -0
  609. package/src/hocs/utils/set-display-name/set-display-name.js +8 -0
  610. package/src/hocs/utils/set-display-name/set-display-name.spec.js +9 -0
  611. package/src/hocs/with-props/index.js +1 -0
  612. package/src/hocs/with-props/with-props.jsx +21 -0
  613. package/src/hocs/with-props/with-props.spec.js +57 -0
  614. package/src/hocs/with-redirect-to/index.js +1 -0
  615. package/src/hocs/with-redirect-to/with-redirect-to.jsx +42 -0
  616. package/src/hocs/with-redirect-to/with-redirect-to.spec.js +77 -0
  617. package/src/hocs/wrap-display-name/index.js +1 -0
  618. package/src/hocs/wrap-display-name/wrap-display-name.js +6 -0
  619. package/src/hocs/wrap-display-name/wrap-display-name.spec.js +26 -0
  620. package/src/hooks/index.js +37 -0
  621. package/src/hooks/use-debounced-promise-callback.js +8 -0
  622. package/src/hooks/use-did-form-validation-fail/index.js +1 -0
  623. package/src/hooks/use-did-form-validation-fail/use-did-form-validation-fail.js +30 -0
  624. package/src/hooks/use-did-form-validation-fail/use-did-form-validation-fail.spec.js +48 -0
  625. package/src/hooks/use-event-callback/index.js +1 -0
  626. package/src/hooks/use-event-callback/use-event-callback.js +18 -0
  627. package/src/hooks/use-format-localized-field-to-string/index.js +1 -0
  628. package/src/hooks/use-format-localized-field-to-string/use-format-localized-field-to-string.js +43 -0
  629. package/src/hooks/use-format-localized-field-to-string/use-format-localized-field-to-string.spec.js +36 -0
  630. package/src/hooks/use-is-sso-user/index.js +1 -0
  631. package/src/hooks/use-is-sso-user/use-is-sso-user.js +13 -0
  632. package/src/hooks/use-is-sso-user/use-is-sso-user.spec.js +46 -0
  633. package/src/hooks/use-localized-key-fallback/index.js +1 -0
  634. package/src/hooks/use-localized-key-fallback/messages.js +9 -0
  635. package/src/hooks/use-localized-key-fallback/use-localized-key-fallback.js +31 -0
  636. package/src/hooks/use-localized-key-fallback/use-localized-key-fallback.spec.js +44 -0
  637. package/src/hooks/use-pending-requests/index.js +1 -0
  638. package/src/hooks/use-pending-requests/use-pending-requests.js +39 -0
  639. package/src/hooks/use-pending-requests/use-pending-requests.spec.js +10 -0
  640. package/src/hooks/use-persisted-reminder/index.js +1 -0
  641. package/src/hooks/use-persisted-reminder/use-persisted-reminder.js +88 -0
  642. package/src/hooks/use-persisted-reminder/use-persisted-reminder.spec.js +114 -0
  643. package/src/hooks/use-persisted-table-configuration/index.js +1 -0
  644. package/src/hooks/use-persisted-table-configuration/use-persisted-table-configuration.js +136 -0
  645. package/src/hooks/use-persisted-table-configuration/use-persisted-table-configuration.spec.js +170 -0
  646. package/src/hooks/use-previous/index.js +1 -0
  647. package/src/hooks/use-previous/use-previous.js +12 -0
  648. package/src/hooks/use-previous/use-previous.spec.js +25 -0
  649. package/src/hooks/use-product-selections-fetcher/conversions.js +15 -0
  650. package/src/hooks/use-product-selections-fetcher/fetch-product-selections.ctp.graphql +18 -0
  651. package/src/hooks/use-product-selections-fetcher/index.js +2 -0
  652. package/src/hooks/use-product-selections-fetcher/mocks/handlers.js +16 -0
  653. package/src/hooks/use-product-selections-fetcher/mocks/index.js +3 -0
  654. package/src/hooks/use-product-selections-fetcher/use-product-selections-fetcher.js +39 -0
  655. package/src/hooks/use-product-selections-fetcher/use-product-selections-fetcher.spec.js +71 -0
  656. package/src/hooks/use-product-selections-total-fetcher/fetch-product-selections-total.ctp.graphql +5 -0
  657. package/src/hooks/use-product-selections-total-fetcher/index.js +2 -0
  658. package/src/hooks/use-product-selections-total-fetcher/mocks/handlers.js +19 -0
  659. package/src/hooks/use-product-selections-total-fetcher/mocks/index.js +3 -0
  660. package/src/hooks/use-product-selections-total-fetcher/use-product-selections-total-fetcher.js +19 -0
  661. package/src/hooks/use-role-based-channels-fetcher/index.js +2 -0
  662. package/src/hooks/use-role-based-channels-fetcher/role-based-channels-fetcher.ctp.graphql +12 -0
  663. package/src/hooks/use-role-based-channels-fetcher/test-utils.js +37 -0
  664. package/src/hooks/use-role-based-channels-fetcher/use-role-based-channels-fetcher.js +44 -0
  665. package/src/hooks/use-role-notification/index.js +1 -0
  666. package/src/hooks/use-role-notification/notification-text/index.js +1 -0
  667. package/src/hooks/use-role-notification/notification-text/messages.js +21 -0
  668. package/src/hooks/use-role-notification/notification-text/notification-text.jsx +46 -0
  669. package/src/hooks/use-role-notification/use-role-notification.jsx +36 -0
  670. package/src/hooks/use-role-notification/use-role-notification.spec.js +46 -0
  671. package/src/hooks/use-role-notification-effect/index.js +1 -0
  672. package/src/hooks/use-role-notification-effect/use-role-notification-effect.js +56 -0
  673. package/src/hooks/use-role-notification-effect/use-role-notification-effect.spec.js +72 -0
  674. package/src/hooks/use-storage/__mocks__/index.js +26 -0
  675. package/src/hooks/use-storage/index.js +1 -0
  676. package/src/hooks/use-storage/use-storage.js +85 -0
  677. package/src/hooks/use-storage/use-storage.spec.js +237 -0
  678. package/src/hooks/use-store-keys-in-data-fence/index.js +1 -0
  679. package/src/hooks/use-store-keys-in-data-fence/use-store-keys-in-data-fence.js +38 -0
  680. package/src/hooks/use-store-keys-in-data-fence/use-store-keys-in-data-fence.spec.js +141 -0
  681. package/src/hooks/use-stores-list-fetcher/index.js +2 -0
  682. package/src/hooks/use-stores-list-fetcher/mocks/handlers.js +76 -0
  683. package/src/hooks/use-stores-list-fetcher/mocks/index.js +3 -0
  684. package/src/hooks/use-stores-list-fetcher/stores-list-query.ctp.graphql +52 -0
  685. package/src/hooks/use-stores-list-fetcher/use-stores-list-fetcher.js +71 -0
  686. package/src/hooks/use-stores-list-fetcher/use-stores-list-fetcher.spec.js +234 -0
  687. package/src/hooks/use-tracking/index.js +1 -0
  688. package/src/hooks/use-tracking/use-tracking.js +4 -0
  689. package/src/hooks/use-tracking/use-tracking.spec.js +29 -0
  690. package/src/hooks/use-tracking-shared/__mocks__/index.js +16 -0
  691. package/src/hooks/use-tracking-shared/index.js +1 -0
  692. package/src/hooks/use-tracking-shared/use-tracking-shared.js +58 -0
  693. package/src/index.js +489 -0
  694. package/src/internal-index.js +143 -0
  695. package/src/utils/active-modals/active-modals.js +7 -0
  696. package/src/utils/active-modals/active-modals.spec.js +27 -0
  697. package/src/utils/active-modals/index.js +1 -0
  698. package/src/utils/ariaset/ariaset.js +11 -0
  699. package/src/utils/ariaset/ariaset.spec.js +20 -0
  700. package/src/utils/ariaset/index.js +1 -0
  701. package/src/utils/array-helpers/array-helpers.js +2 -0
  702. package/src/utils/array-helpers/index.js +1 -0
  703. package/src/utils/attributes/attributes.js +38 -0
  704. package/src/utils/attributes/attributes.spec.js +180 -0
  705. package/src/utils/attributes/index.js +1 -0
  706. package/src/utils/build-search-query/build-search-query.js +27 -0
  707. package/src/utils/build-search-query/build-search-query.spec.js +129 -0
  708. package/src/utils/build-search-query/index.js +1 -0
  709. package/src/utils/bulk-notifications/get-bulk-notification.js +34 -0
  710. package/src/utils/bulk-notifications/get-bulk-notification.spec.js +142 -0
  711. package/src/utils/bulk-notifications/index.js +4 -0
  712. package/src/utils/business-roles/business-roles.js +24 -0
  713. package/src/utils/business-roles/index.js +4 -0
  714. package/src/utils/business-roles/messages.js +95 -0
  715. package/src/utils/capitalize-first/capitalize-first.js +3 -0
  716. package/src/utils/capitalize-first/capitalize-first.spec.js +7 -0
  717. package/src/utils/capitalize-first/index.js +1 -0
  718. package/src/utils/categories/categories.js +56 -0
  719. package/src/utils/categories/categories.spec.js +122 -0
  720. package/src/utils/categories/index.js +1 -0
  721. package/src/utils/clone/clone.js +3 -0
  722. package/src/utils/clone/clone.spec.js +23 -0
  723. package/src/utils/clone/index.js +1 -0
  724. package/src/utils/coerce-to-integer/coerce-to-integer.js +3 -0
  725. package/src/utils/coerce-to-integer/coerce-to-integer.spec.js +49 -0
  726. package/src/utils/coerce-to-integer/index.js +1 -0
  727. package/src/utils/connector/connector.js +30 -0
  728. package/src/utils/connector/connector.spec.js +174 -0
  729. package/src/utils/connector/index.js +1 -0
  730. package/src/utils/constants.js +43 -0
  731. package/src/utils/conversions/sort-array.js +6 -0
  732. package/src/utils/create-next-sort-definition/create-next-sort-definition.js +46 -0
  733. package/src/utils/create-next-sort-definition/create-next-sort-definition.spec.js +121 -0
  734. package/src/utils/create-next-sort-definition/index.js +1 -0
  735. package/src/utils/create-reducer/create-reducer.js +21 -0
  736. package/src/utils/create-reducer/create-reducer.spec.js +45 -0
  737. package/src/utils/create-reducer/index.js +1 -0
  738. package/src/utils/create-resource-reducer/create-resource-reducer.js +53 -0
  739. package/src/utils/create-resource-reducer/create-resource-reducer.spec.js +151 -0
  740. package/src/utils/create-resource-reducer/index.js +1 -0
  741. package/src/utils/customer/format-customer-address/format-customer-address.js +12 -0
  742. package/src/utils/customer/format-customer-address/format-customer-address.spec.js +43 -0
  743. package/src/utils/customer/format-customer-address/index.js +1 -0
  744. package/src/utils/customer/format-customer-name/format-customer-name.js +9 -0
  745. package/src/utils/customer/format-customer-name/format-customer-name.spec.js +44 -0
  746. package/src/utils/customer/format-customer-name/index.js +1 -0
  747. package/src/utils/customer/format-customer-title/format-customer-title.js +5 -0
  748. package/src/utils/customer/format-customer-title/format-customer-title.spec.js +23 -0
  749. package/src/utils/customer/format-customer-title/index.js +1 -0
  750. package/src/utils/dataset/dataset.js +34 -0
  751. package/src/utils/dataset/dataset.spec.js +70 -0
  752. package/src/utils/dataset/index.js +1 -0
  753. package/src/utils/encodings/encodings.js +24 -0
  754. package/src/utils/encodings/encodings.spec.js +21 -0
  755. package/src/utils/encodings/index.js +1 -0
  756. package/src/utils/filters/README.md +56 -0
  757. package/src/utils/filters/custom-fields/custom-fields.js +56 -0
  758. package/src/utils/filters/custom-fields/custom-fields.spec.js +328 -0
  759. package/src/utils/filters/custom-fields/index.js +1 -0
  760. package/src/utils/filters/date/date.js +114 -0
  761. package/src/utils/filters/date/date.spec.js +138 -0
  762. package/src/utils/filters/date/index.js +1 -0
  763. package/src/utils/filters/graphql/category-level/category-level.js +17 -0
  764. package/src/utils/filters/graphql/category-level/index.js +1 -0
  765. package/src/utils/filters/graphql/date/date.js +58 -0
  766. package/src/utils/filters/graphql/date/date.spec.js +122 -0
  767. package/src/utils/filters/graphql/date/index.js +1 -0
  768. package/src/utils/filters/graphql/graphql.js +42 -0
  769. package/src/utils/filters/graphql/graphql.spec.js +130 -0
  770. package/src/utils/filters/graphql/index.js +1 -0
  771. package/src/utils/filters/graphql/missing/index.js +1 -0
  772. package/src/utils/filters/graphql/missing/missing.js +7 -0
  773. package/src/utils/filters/graphql/missing/missing.spec.js +17 -0
  774. package/src/utils/filters/graphql/missing-locale/index.js +1 -0
  775. package/src/utils/filters/graphql/missing-locale/missing-locale.js +8 -0
  776. package/src/utils/filters/graphql/missing-locale/missing-locale.spec.js +17 -0
  777. package/src/utils/filters/graphql/number/index.js +1 -0
  778. package/src/utils/filters/graphql/number/number.js +37 -0
  779. package/src/utils/filters/graphql/number/number.spec.js +65 -0
  780. package/src/utils/filters/graphql/reference/index.js +1 -0
  781. package/src/utils/filters/graphql/reference/reference.js +26 -0
  782. package/src/utils/filters/graphql/reference/reference.spec.js +20 -0
  783. package/src/utils/filters/graphql/text/index.js +1 -0
  784. package/src/utils/filters/graphql/text/text.js +8 -0
  785. package/src/utils/filters/graphql/text/text.spec.js +35 -0
  786. package/src/utils/filters/is-date/index.js +1 -0
  787. package/src/utils/filters/is-date/is-date.js +17 -0
  788. package/src/utils/filters/is-date/is-date.spec.js +73 -0
  789. package/src/utils/filters/is-empty/index.js +1 -0
  790. package/src/utils/filters/is-empty/is-empty.js +9 -0
  791. package/src/utils/filters/is-empty/is-empty.spec.js +20 -0
  792. package/src/utils/filters/is-empty/range/index.js +1 -0
  793. package/src/utils/filters/is-empty/range/range.js +8 -0
  794. package/src/utils/filters/is-empty/range/range.spec.js +22 -0
  795. package/src/utils/filters/is-empty/single/index.js +1 -0
  796. package/src/utils/filters/is-empty/single/single.js +5 -0
  797. package/src/utils/filters/is-empty/single/single.spec.js +17 -0
  798. package/src/utils/filters/localized-string/index.js +1 -0
  799. package/src/utils/filters/localized-string/localized-string.js +4 -0
  800. package/src/utils/filters/localized-string/localized-string.spec.js +26 -0
  801. package/src/utils/filters/money/index.js +1 -0
  802. package/src/utils/filters/money/money.js +36 -0
  803. package/src/utils/filters/money/money.spec.js +55 -0
  804. package/src/utils/filters/time/index.js +1 -0
  805. package/src/utils/filters/time/time.js +65 -0
  806. package/src/utils/filters/time/time.spec.js +96 -0
  807. package/src/utils/filters/validation/custom-field/custom-field.js +70 -0
  808. package/src/utils/filters/validation/custom-field/custom-field.spec.js +237 -0
  809. package/src/utils/filters/validation/custom-field/index.js +1 -0
  810. package/src/utils/filters/validation/date/date.js +42 -0
  811. package/src/utils/filters/validation/date/date.spec.js +60 -0
  812. package/src/utils/filters/validation/date/index.js +1 -0
  813. package/src/utils/filters/validation/enum/enum.js +16 -0
  814. package/src/utils/filters/validation/enum/enum.spec.js +44 -0
  815. package/src/utils/filters/validation/enum/index.js +1 -0
  816. package/src/utils/filters/validation/number/index.js +1 -0
  817. package/src/utils/filters/validation/number/number.js +52 -0
  818. package/src/utils/filters/validation/number/number.spec.js +39 -0
  819. package/src/utils/filters/validation/text/index.js +1 -0
  820. package/src/utils/filters/validation/text/text.js +9 -0
  821. package/src/utils/filters/validation/text/text.spec.js +20 -0
  822. package/src/utils/formats/custom-field/custom-field.js +66 -0
  823. package/src/utils/formats/custom-field/custom-field.spec.js +91 -0
  824. package/src/utils/formats/custom-field/index.js +1 -0
  825. package/src/utils/formats/date/__mocks__/index.js +2 -0
  826. package/src/utils/formats/date/date.js +58 -0
  827. package/src/utils/formats/date/date.spec.js +241 -0
  828. package/src/utils/formats/date/index.js +1 -0
  829. package/src/utils/formats/discount/discount.js +12 -0
  830. package/src/utils/formats/discount/discount.spec.js +75 -0
  831. package/src/utils/formats/discount/index.js +1 -0
  832. package/src/utils/formats/index.js +4 -0
  833. package/src/utils/formats/money/index.js +6 -0
  834. package/src/utils/formats/money/money.js +50 -0
  835. package/src/utils/formats/money/money.spec.js +117 -0
  836. package/src/utils/formats/percentage/index.js +1 -0
  837. package/src/utils/formats/percentage/percentage.js +7 -0
  838. package/src/utils/formats/percentage/percentage.spec.js +18 -0
  839. package/src/utils/formats/product-attribute/index.js +1 -0
  840. package/src/utils/formats/product-attribute/messages.js +14 -0
  841. package/src/utils/formats/product-attribute/product-attribute.js +127 -0
  842. package/src/utils/formats/product-attribute/product-attribute.spec.js +128 -0
  843. package/src/utils/get-currency-code-data/currency-code-data.js +1247 -0
  844. package/src/utils/get-currency-code-data/get-currency-code-data.js +53 -0
  845. package/src/utils/get-currency-code-data/index.js +12 -0
  846. package/src/utils/get-prefix-search-bounds/get-prefix-search-bounds.js +26 -0
  847. package/src/utils/get-prefix-search-bounds/get-prefix-search-bounds.spec.js +14 -0
  848. package/src/utils/get-prefix-search-bounds/index.js +1 -0
  849. package/src/utils/graphql/__snapshots__/graphql.spec.js.snap +45 -0
  850. package/src/utils/graphql/fragments/address.ctp.graphql +39 -0
  851. package/src/utils/graphql/fragments/custom-fields.ctp.graphql +67 -0
  852. package/src/utils/graphql/fragments/store-basic-info.ctp.graphql +11 -0
  853. package/src/utils/graphql/graphql.js +579 -0
  854. package/src/utils/graphql/graphql.spec.js +1129 -0
  855. package/src/utils/graphql/index.js +1 -0
  856. package/src/utils/has-error-code/has-error-code.js +15 -0
  857. package/src/utils/has-error-code/has-error-code.spec.js +56 -0
  858. package/src/utils/has-error-code/has-invalid-input-error.js +7 -0
  859. package/src/utils/has-error-code/has-semantic-error.js +7 -0
  860. package/src/utils/has-error-code/has-semantic-error.spec.js +56 -0
  861. package/src/utils/has-error-code/index.js +3 -0
  862. package/src/utils/is-uuid/index.js +1 -0
  863. package/src/utils/is-uuid/is-uuid.js +6 -0
  864. package/src/utils/is-uuid/is-uuid.spec.js +25 -0
  865. package/src/utils/minusify/index.js +1 -0
  866. package/src/utils/minusify/minusify.js +4 -0
  867. package/src/utils/minusify/minusify.spec.js +9 -0
  868. package/src/utils/numbers/index.js +1 -0
  869. package/src/utils/numbers/numbers.js +32 -0
  870. package/src/utils/numbers/numbers.spec.js +57 -0
  871. package/src/utils/omit-deep/index.js +1 -0
  872. package/src/utils/omit-deep/omit-deep.js +20 -0
  873. package/src/utils/pim-query-clauses.js +43 -0
  874. package/src/utils/prices/index.js +1 -0
  875. package/src/utils/prices/prices.js +79 -0
  876. package/src/utils/prices/prices.spec.js +265 -0
  877. package/src/utils/product-selections/convert-product-selection-from-graphql.js +80 -0
  878. package/src/utils/product-selections/index.js +1 -0
  879. package/src/utils/product-types/index.js +1 -0
  880. package/src/utils/product-types/product-types.js +122 -0
  881. package/src/utils/product-types/product-types.spec.js +328 -0
  882. package/src/utils/products/index.js +1 -0
  883. package/src/utils/products/messages.js +16 -0
  884. package/src/utils/products/products.jsx +258 -0
  885. package/src/utils/products/products.spec.js +331 -0
  886. package/src/utils/query-string/index.js +1 -0
  887. package/src/utils/query-string/query-string.js +37 -0
  888. package/src/utils/query-string/query-string.spec.js +56 -0
  889. package/src/utils/request-cache/index.js +2 -0
  890. package/src/utils/request-cache/request-cache.js +52 -0
  891. package/src/utils/request-cache/request-cache.spec.js +118 -0
  892. package/src/utils/shallow-equal/index.js +1 -0
  893. package/src/utils/shallow-equal/shallow-equal.js +19 -0
  894. package/src/utils/shallow-equal/shallow-equal.spec.js +45 -0
  895. package/src/utils/should-update-attribute-input/index.js +1 -0
  896. package/src/utils/should-update-attribute-input/should-update-attribute-input.js +43 -0
  897. package/src/utils/should-update-attribute-input/should-update-attribute-input.spec.js +96 -0
  898. package/src/utils/slugify/index.js +1 -0
  899. package/src/utils/slugify/slugify.js +10 -0
  900. package/src/utils/slugify/slugify.spec.js +11 -0
  901. package/src/utils/swap-array-items/index.js +2 -0
  902. package/src/utils/swap-array-items/swap-array-items.js +13 -0
  903. package/src/utils/swap-array-items/swap-array-items.spec.js +52 -0
  904. package/src/utils/text-fallback/text-fallback.js +6 -0
  905. package/src/utils/time-zones/index.js +5 -0
  906. package/src/utils/time-zones/time-zone-utils.js +34 -0
  907. package/src/utils/time-zones/time-zone-utils.spec.js +47 -0
  908. package/src/utils/track-menu-click/index.js +1 -0
  909. package/src/utils/track-menu-click/track-menu-click.js +28 -0
  910. package/src/utils/track-menu-click/track-menu-click.spec.js +66 -0
  911. package/src/utils/transform-to-proper-noun-case/index.js +1 -0
  912. package/src/utils/transform-to-proper-noun-case/transform-to-proper-noun-case.js +10 -0
  913. package/src/utils/transform-to-proper-noun-case/transform-to-proper-noun-case.spec.js +23 -0
  914. package/src/utils/truncate/index.js +1 -0
  915. package/src/utils/truncate/truncate.js +9 -0
  916. package/src/utils/truncate/truncate.spec.js +23 -0
  917. package/src/utils/type-definitions/index.js +1 -0
  918. package/src/utils/type-definitions/type-definitions.js +118 -0
  919. package/src/utils/type-definitions/type-definitions.spec.js +547 -0
  920. package/src/utils/update-status-in-list/index.js +1 -0
  921. package/src/utils/update-status-in-list/update-status-in-list.js +16 -0
  922. package/src/utils/validation/get-indexes-of-invalid-values.js +16 -0
  923. package/src/utils/validation/get-indexes-of-invalid-values.spec.js +31 -0
  924. package/src/utils/validation/index.js +3 -0
  925. package/src/utils/validation/validation.js +169 -0
  926. package/src/utils/validation/validation.spec.js +99 -0
  927. package/src/utils/validation/without-empty-errors-by-field.js +5 -0
  928. package/src/utils/validation/without-empty-errors-by-field.spec.js +74 -0
  929. package/src/utils/with-pending-requests/index.js +1 -0
  930. package/src/utils/with-pending-requests/with-pending-requests.jsx +21 -0
  931. package/src/utils/with-pending-requests/with-pending-requests.spec.js +62 -0
@@ -0,0 +1,65 @@
1
+ import numberTransformer from './number';
2
+
3
+ const filterKey = 'level';
4
+
5
+ describe('number query builder', () => {
6
+ it('should correctly build a single, "equalTo" query', () => {
7
+ const queries = [{ type: 'equalTo', value: 6 }];
8
+ const result = numberTransformer(filterKey, queries);
9
+
10
+ const expected = `${filterKey}: range(6 to 6)`;
11
+ expect(result).toEqual(expected);
12
+ });
13
+
14
+ it('should correctly build a single, "lessThan" query', () => {
15
+ const queries = [{ type: 'lessThan', value: 6 }];
16
+ const result = numberTransformer(filterKey, queries);
17
+
18
+ const expected = `${filterKey}: range(* to 5)`;
19
+ expect(result).toEqual(expected);
20
+ });
21
+
22
+ it('should correctly build a single, "moreThan" query', () => {
23
+ const queries = [{ type: 'moreThan', value: 6 }];
24
+ const result = numberTransformer(filterKey, queries);
25
+
26
+ const expected = `${filterKey}: range(7 to *)`;
27
+ expect(result).toEqual(expected);
28
+ });
29
+
30
+ it('should correctly build a single, "range" query', () => {
31
+ const queries = [
32
+ {
33
+ type: 'range',
34
+ value: { from: 2, to: 4 },
35
+ },
36
+ ];
37
+ const result = numberTransformer(filterKey, queries);
38
+
39
+ const expected = `${filterKey}: range(2 to 4)`;
40
+ expect(result).toEqual(expected);
41
+ });
42
+
43
+ it('should correctly build a mix of queries', () => {
44
+ const queries = [
45
+ { type: 'equalTo', value: 1 },
46
+ { type: 'lessThan', value: 2 },
47
+ { type: 'moreThan', value: 3 },
48
+ {
49
+ type: 'range',
50
+ value: { from: 6, to: 7 },
51
+ },
52
+ ];
53
+ const result = numberTransformer(filterKey, queries);
54
+
55
+ const expected = `${filterKey}: range(1 to 1), (* to 1), (4 to *), (6 to 7)`;
56
+ expect(result).toEqual(expected);
57
+ });
58
+
59
+ it('should return null for invalid filters', () => {
60
+ const queries = [{ type: 'equalTo', value: 'something invalid' }];
61
+ const result = numberTransformer(filterKey, queries, () => false);
62
+
63
+ expect(result).toBe(null);
64
+ });
65
+ });
@@ -0,0 +1 @@
1
+ export { default } from './reference';
@@ -0,0 +1,26 @@
1
+ export default function referenceTransformer(
2
+ filterKey,
3
+ filters,
4
+ filterValidator = isFilterValid
5
+ ) {
6
+ const queries = filters.map(({ type, value }) => {
7
+ if (!filterValidator({ type, value })) return '';
8
+
9
+ switch (type) {
10
+ case 'equalTo':
11
+ return `"${value}"`;
12
+ default:
13
+ return '';
14
+ }
15
+ });
16
+
17
+ const queryString = queries.filter((q) => q !== '').join(', ');
18
+
19
+ return queryString === '' ? null : `${filterKey}.id: ${queryString}`;
20
+ }
21
+
22
+ export function isFilterValid({ type, value }) {
23
+ if (type === 'equalTo' && ![null, undefined, ''].includes(value)) return true;
24
+
25
+ return false;
26
+ }
@@ -0,0 +1,20 @@
1
+ import referenceTransformer from './reference';
2
+
3
+ const filterKey = 'parent';
4
+
5
+ describe('reference query builder', () => {
6
+ it('should correctly build a single, "equalTo" query', () => {
7
+ const queries = [{ type: 'equalTo', value: 'something' }];
8
+ const result = referenceTransformer(filterKey, queries);
9
+
10
+ const expected = `${filterKey}.id: "something"`;
11
+ expect(result).toEqual(expected);
12
+ });
13
+
14
+ it('should return null for invalid filters', () => {
15
+ const queries = [{ type: 'equalTo', value: 'something invalid' }];
16
+ const result = referenceTransformer(filterKey, queries, () => false);
17
+
18
+ expect(result).toBe(null);
19
+ });
20
+ });
@@ -0,0 +1 @@
1
+ export { default } from './text';
@@ -0,0 +1,8 @@
1
+ export default function textTransformer(filterKey, queries) {
2
+ if (queries.length === 0) return null;
3
+
4
+ // Note: we assume for now that there can only be 1 text filter.
5
+ const queryValue = queries[0].value;
6
+
7
+ return queryValue ? `${filterKey}:"${queryValue}"` : null;
8
+ }
@@ -0,0 +1,35 @@
1
+ import textTransformer from './text';
2
+
3
+ const filterKey = 'productTypeNames';
4
+
5
+ describe('text query builder', () => {
6
+ describe('with `queries`', () => {
7
+ let queries;
8
+ let expected;
9
+
10
+ beforeEach(() => {
11
+ queries = [{ type: 'text', value: 'foo' }];
12
+ expected = `${filterKey}:"${queries[0].value}"`;
13
+ });
14
+
15
+ it('should build with `key` and `value`', () => {
16
+ expect(textTransformer(filterKey, queries)).toEqual(expected);
17
+ });
18
+
19
+ describe('without `value`', () => {
20
+ beforeEach(() => {
21
+ queries = [{ type: 'text', value: null }];
22
+ });
23
+
24
+ it('return `null`', () => {
25
+ expect(textTransformer(filterKey, [])).toBe(null);
26
+ });
27
+ });
28
+ });
29
+
30
+ describe('without `queries`', () => {
31
+ it('return `null`', () => {
32
+ expect(textTransformer(filterKey, [])).toBe(null);
33
+ });
34
+ });
35
+ });
@@ -0,0 +1 @@
1
+ export * from './is-date';
@@ -0,0 +1,17 @@
1
+ import moment from 'moment';
2
+
3
+ export function isValidISOTime({ value = '', strict = true }) {
4
+ return moment(value.trim(), 'HH:mm:ss.SSS', strict).isValid();
5
+ }
6
+
7
+ export function isValidISODate({ value = '', strict = true }) {
8
+ return moment(value.trim(), 'YYYY-MM-DD', strict).isValid();
9
+ }
10
+
11
+ export function isValidISODateTime({ value = '', strict = true }) {
12
+ const trimmedValue = value.trim();
13
+ return (
14
+ moment(trimmedValue, 'YYYY-MM-DDTHH:mm:ss.SSSZ', strict).isValid() ||
15
+ moment(trimmedValue, 'YYYY-MM-DDTHH:mm:ss.SSS', strict).isValid()
16
+ );
17
+ }
@@ -0,0 +1,73 @@
1
+ import { isValidISOTime, isValidISODate, isValidISODateTime } from './is-date';
2
+
3
+ describe('is date', () => {
4
+ describe('isValidISOTime', () => {
5
+ describe('when strict flag enabled', () => {
6
+ it('should return true when valid ISO time format and delimiters', () => {
7
+ expect(isValidISOTime({ value: '13:00:00.123' })).toBe(true);
8
+ });
9
+ it('should return false when invalid ISO time format', () => {
10
+ expect(isValidISOTime({ value: '13:0:0.123' })).toBe(false);
11
+ });
12
+ it('should return false when non-strict valid ISO time format', () => {
13
+ expect(isValidISOTime({ value: 'Time 13:00:00.123' })).toBe(false);
14
+ });
15
+ });
16
+ describe('when strict flag disabled', () => {
17
+ it('should return true when non strict valid ISO time format', () => {
18
+ expect(
19
+ isValidISOTime({ value: 'Time 13:00:00.123', strict: false })
20
+ ).toBe(true);
21
+ });
22
+ });
23
+ });
24
+ describe('isValidISODate', () => {
25
+ describe('when strict flag enabled', () => {
26
+ it('should return true when valid ISO date format and delimiters', () => {
27
+ expect(isValidISODate({ value: '2017-06-30' })).toBe(true);
28
+ });
29
+ it('should return false when invalid ISO date format', () => {
30
+ expect(isValidISODate({ value: '2017-6-30' })).toBe(false);
31
+ });
32
+ it('should return false when non-strict valid ISO date format', () => {
33
+ expect(isValidISODate({ value: 'Date 2017-06-30' })).toBe(false);
34
+ });
35
+ });
36
+ describe('when strict flag disabled', () => {
37
+ it('should return true when non strict valid ISO date format', () => {
38
+ expect(
39
+ isValidISODate({ value: 'Date 2017-06-30', strict: false })
40
+ ).toBe(true);
41
+ });
42
+ });
43
+ });
44
+ describe('isValidISODateTime', () => {
45
+ describe('when strict flag enabled', () => {
46
+ it('should return true when valid ISO datetime format and delimiters', () => {
47
+ expect(isValidISODateTime({ value: '2017-06-30T13:00:00.123Z' })).toBe(
48
+ true
49
+ );
50
+ });
51
+ it('should return false when invalid ISO datetime format', () => {
52
+ expect(isValidISODateTime({ value: '2017-6-30T13:00:00.123Z' })).toBe(
53
+ false
54
+ );
55
+ });
56
+ it('should return false when non-strict valid ISO datetime format', () => {
57
+ expect(
58
+ isValidISODateTime({ value: 'Datetime 2017-06-30T13:00:00.123Z' })
59
+ ).toBe(false);
60
+ });
61
+ });
62
+ describe('when strict flag disabled', () => {
63
+ it('should return true when non strict valid ISO datetime format', () => {
64
+ expect(
65
+ isValidISODateTime({
66
+ value: 'Datetime 2017-06-30T13:00:00.123Z',
67
+ strict: false,
68
+ })
69
+ ).toBe(true);
70
+ });
71
+ });
72
+ });
73
+ });
@@ -0,0 +1 @@
1
+ export { default } from './is-empty';
@@ -0,0 +1,9 @@
1
+ import { FILTER_TYPES } from '../../constants';
2
+ import isEmptyRange from './range';
3
+ import isEmptySingle from './single';
4
+
5
+ export default function isEmptyFilter({ type, value }) {
6
+ if (type === FILTER_TYPES.range) return isEmptyRange({ value });
7
+
8
+ return isEmptySingle({ value });
9
+ }
@@ -0,0 +1,20 @@
1
+ import isEmptyFilter from './is-empty';
2
+
3
+ jest.mock('./single', () => jest.fn(() => '__single_return_value__'));
4
+ jest.mock('./range', () => jest.fn(() => '__range_return_value__'));
5
+
6
+ describe('isEmptyFilter', () => {
7
+ describe('without `type`', () => {
8
+ describe('with `value`', () => {
9
+ it('should invoke single validator (as standard validator)', () => {
10
+ expect(isEmptyFilter({ value: 1 })).toBe('__single_return_value__');
11
+ });
12
+ });
13
+ });
14
+
15
+ describe('with `range` type', () => {
16
+ it('should invoke range validator', () => {
17
+ expect(isEmptyFilter({ type: 'range' })).toBe('__range_return_value__');
18
+ });
19
+ });
20
+ });
@@ -0,0 +1 @@
1
+ export { default } from './range';
@@ -0,0 +1,8 @@
1
+ const invalidValues = [null, undefined, ''];
2
+
3
+ export default function isEmpty({ value }) {
4
+ return (
5
+ invalidValues.includes(value) ||
6
+ (invalidValues.includes(value.from) && invalidValues.includes(value.to))
7
+ );
8
+ }
@@ -0,0 +1,22 @@
1
+ import isEmpty from './range';
2
+
3
+ describe('range filter validator', () => {
4
+ it('should return true for an "undefined" filter', () => {
5
+ expect(isEmpty({})).toEqual(true);
6
+ });
7
+ it('should return true for an "null" filter', () => {
8
+ expect(isEmpty({ value: null })).toEqual(true);
9
+ });
10
+ it('should return false when from === null', () => {
11
+ const filter = { value: { from: null, to: 'nice' } };
12
+ expect(isEmpty(filter)).toEqual(false);
13
+ });
14
+ it('should return false when to === null', () => {
15
+ const filter = { value: { from: 'nice', to: null } };
16
+ expect(isEmpty(filter)).toEqual(false);
17
+ });
18
+ it('should return false for a valid filter', () => {
19
+ const filter = { value: { from: 'nice', to: 'nicer' } };
20
+ expect(isEmpty(filter)).toEqual(false);
21
+ });
22
+ });
@@ -0,0 +1 @@
1
+ export { default } from './single';
@@ -0,0 +1,5 @@
1
+ const invalidValues = [null, undefined, ''];
2
+
3
+ export default function validateSingleFilter({ value }) {
4
+ return invalidValues.includes(value);
5
+ }
@@ -0,0 +1,17 @@
1
+ import validateSingleFilter from './single';
2
+
3
+ describe('single filter validator', () => {
4
+ it('should return true for an "undefined" filter', () => {
5
+ expect(validateSingleFilter({})).toBe(true);
6
+ });
7
+ it('should return true for a "null" filter', () => {
8
+ expect(validateSingleFilter({ value: null })).toBe(true);
9
+ });
10
+ it('should return true for an empty string', () => {
11
+ expect(validateSingleFilter({ value: '' })).toBe(true);
12
+ });
13
+ it('should return false for a valid filter', () => {
14
+ const filter = { value: 'nice' };
15
+ expect(validateSingleFilter(filter)).toBe(false);
16
+ });
17
+ });
@@ -0,0 +1 @@
1
+ export { default } from './localized-string';
@@ -0,0 +1,4 @@
1
+ export default (localizedString) =>
2
+ Object.keys(localizedString)
3
+ .map((locale) => `${locale} = "${localizedString[locale]}"`)
4
+ .join(' and ');
@@ -0,0 +1,26 @@
1
+ import localizedTextTransformer from './localized-string';
2
+
3
+ const simpleValue = {
4
+ en: 'test',
5
+ };
6
+
7
+ const multipleValue = {
8
+ en: 'test',
9
+ es: 'prueba',
10
+ };
11
+
12
+ describe('localized string query builder', () => {
13
+ let result;
14
+ let expected;
15
+ it('should correctly build a single value query', () => {
16
+ expected = 'en = "test"';
17
+ result = localizedTextTransformer(simpleValue);
18
+ expect(result).toEqual(expected);
19
+ });
20
+
21
+ it('should correctly build a multiple value query', () => {
22
+ expected = 'en = "test" and es = "prueba"';
23
+ result = localizedTextTransformer(multipleValue);
24
+ expect(result).toEqual(expected);
25
+ });
26
+ });
@@ -0,0 +1 @@
1
+ export { default } from './money';
@@ -0,0 +1,36 @@
1
+ import { MoneyInput } from '@commercetools-frontend/ui-kit';
2
+ import { FILTER_TYPES } from '../../constants';
3
+
4
+ const getCentAmountClause = (value, operator, locale) =>
5
+ `centAmount ${operator} ${
6
+ MoneyInput.convertToMoneyValue(value, locale).centAmount
7
+ }`;
8
+
9
+ export default function moneyTransformer(value, option, locale) {
10
+ const clauses = [];
11
+
12
+ if (option === FILTER_TYPES.range) {
13
+ clauses[0] = `currencyCode = "${value.from.currencyCode}"`;
14
+ clauses[1] = getCentAmountClause(value.from, '>=', locale);
15
+ clauses[2] = getCentAmountClause(value.to, '<=', locale);
16
+
17
+ return clauses.join(' and ');
18
+ }
19
+
20
+ clauses[0] = `currencyCode = "${value.currencyCode}"`;
21
+ switch (option) {
22
+ case FILTER_TYPES.lessThan:
23
+ clauses[1] = getCentAmountClause(value, '<', locale);
24
+ break;
25
+ case FILTER_TYPES.moreThan:
26
+ clauses[1] = getCentAmountClause(value, '>', locale);
27
+ break;
28
+ case FILTER_TYPES.equalTo:
29
+ clauses[1] = getCentAmountClause(value, '=', locale);
30
+ break;
31
+ default:
32
+ return '';
33
+ }
34
+
35
+ return clauses.join(' and ');
36
+ }
@@ -0,0 +1,55 @@
1
+ import { FILTER_TYPES } from '../../constants';
2
+ import moneyTransformer from './money';
3
+
4
+ const simpleFilterValue = {
5
+ currencyCode: 'EUR',
6
+ amount: '200,00',
7
+ };
8
+
9
+ const rangeFilterValue = {
10
+ from: {
11
+ currencyCode: 'EUR',
12
+ amount: '200,00',
13
+ },
14
+ to: {
15
+ currencyCode: 'EUR',
16
+ amount: '400,00',
17
+ },
18
+ };
19
+
20
+ describe('money query builder', () => {
21
+ let option;
22
+ let result;
23
+ let expected;
24
+ it('should correctly build a single, "lessThan" query', () => {
25
+ option = FILTER_TYPES.lessThan;
26
+ result = moneyTransformer(simpleFilterValue, option);
27
+
28
+ expected = `currencyCode = "EUR" and centAmount < 20000`;
29
+ expect(result).toEqual(expected);
30
+ });
31
+
32
+ it('should correctly build a single, "moreThan" query', () => {
33
+ option = FILTER_TYPES.moreThan;
34
+ result = moneyTransformer(simpleFilterValue, option);
35
+
36
+ expected = `currencyCode = "EUR" and centAmount > 20000`;
37
+ expect(result).toEqual(expected);
38
+ });
39
+
40
+ it('should correctly build a single, "equalTo" query', () => {
41
+ option = FILTER_TYPES.equalTo;
42
+ result = moneyTransformer(simpleFilterValue, option);
43
+
44
+ expected = `currencyCode = "EUR" and centAmount = 20000`;
45
+ expect(result).toEqual(expected);
46
+ });
47
+
48
+ it('should correctly build a single, "range" query', () => {
49
+ option = FILTER_TYPES.range;
50
+ result = moneyTransformer(rangeFilterValue, option);
51
+
52
+ expected = `currencyCode = "EUR" and centAmount >= 20000 and centAmount <= 40000`;
53
+ expect(result).toEqual(expected);
54
+ });
55
+ });
@@ -0,0 +1 @@
1
+ export { default } from './time';
@@ -0,0 +1,65 @@
1
+ import moment from 'moment';
2
+ import oneLine from 'common-tags/lib/oneLine';
3
+ import { FILTER_TYPES } from '../../constants';
4
+ import rangeIsEmpty from '../is-empty/range';
5
+ import singleIsEmpty from '../is-empty/single';
6
+
7
+ const formatTime = 'HH:mm:ss.SSS';
8
+
9
+ /* TimeInput only allows HH:mm:ss and adds the seconds as 00 and
10
+ * the milliseconds always as 000.
11
+ * This function returns the same time with the
12
+ */
13
+ const getEndOfSecond = (value) =>
14
+ moment(value, formatTime).endOf('minute').format(formatTime);
15
+
16
+ const defaultFilterValidator = ({ type, value }) => {
17
+ if (type !== FILTER_TYPES.range && singleIsEmpty({ value })) return false;
18
+
19
+ if (type === FILTER_TYPES.range && rangeIsEmpty({ value })) return false;
20
+
21
+ return true;
22
+ };
23
+
24
+ const timeTransformer = (
25
+ filterKey,
26
+ filters,
27
+ filterValidator = defaultFilterValidator
28
+ ) => {
29
+ const queries = filters.map(({ type, value }) => {
30
+ if (!filterValidator({ type, value })) return '';
31
+
32
+ switch (type) {
33
+ case FILTER_TYPES.lessThan:
34
+ return `${filterKey} < "${value}"`;
35
+ case FILTER_TYPES.moreThan:
36
+ return `${filterKey} > "${value}"`;
37
+ case FILTER_TYPES.equalTo:
38
+ return oneLine`
39
+ (${filterKey} >= "${value}"
40
+ and ${filterKey} <= "${getEndOfSecond(value)}")
41
+ `;
42
+ case FILTER_TYPES.range:
43
+ return oneLine`
44
+ (${filterKey} >= "${value.from}"
45
+ and ${filterKey} <= "${getEndOfSecond(value.to)}")
46
+ `;
47
+ default:
48
+ return '';
49
+ }
50
+ });
51
+
52
+ // The separator is and `or` as they are the same filter
53
+ const queryString = queries.filter((q) => q !== '').join(' or ');
54
+
55
+ /* The parenthesis involing the `queryString` are needed since they are all part of the
56
+ * same filter so we need something to work with
57
+ * (
58
+ * (pickUpTime >= "12:00" and pickUpTime <= "13:00") o
59
+ * (pickUpTime >= "14:00" and pickUpTime <= "15:00")
60
+ * ) or some_more_filters
61
+ */
62
+ return queryString === '' ? null : `(${queryString})`;
63
+ };
64
+
65
+ export { timeTransformer as default, getEndOfSecond, defaultFilterValidator };
@@ -0,0 +1,96 @@
1
+ import oneLine from 'common-tags/lib/oneLine';
2
+ import timeTransformer, { defaultFilterValidator } from './time';
3
+
4
+ const filterKey = 'pickUpTime';
5
+
6
+ describe('date query builder', () => {
7
+ it('should correctly build a single, "equalTo" query', () => {
8
+ const queries = [{ type: 'equalTo', value: '12:00:00.000' }];
9
+ const result = timeTransformer(filterKey, queries);
10
+
11
+ const expected = `((${filterKey} >= "12:00:00.000" and ${filterKey} <= "12:00:59.999"))`;
12
+ expect(result).toEqual(expected);
13
+ });
14
+
15
+ it('should correctly build a single, "lessThan" query', () => {
16
+ const queries = [{ type: 'lessThan', value: '12:00:00.000' }];
17
+ const result = timeTransformer(filterKey, queries);
18
+
19
+ const expected = `(${filterKey} < "12:00:00.000")`;
20
+ expect(result).toEqual(expected);
21
+ });
22
+
23
+ it('should correctly build a single, "moreThan" query', () => {
24
+ const queries = [{ type: 'moreThan', value: '12:00:00.000' }];
25
+ const result = timeTransformer(filterKey, queries);
26
+
27
+ const expected = `(${filterKey} > "12:00:00.000")`;
28
+ expect(result).toEqual(expected);
29
+ });
30
+
31
+ it('should correctly build a single, "range" query', () => {
32
+ const queries = [
33
+ {
34
+ type: 'range',
35
+ value: { from: '12:00:00.000', to: '13:00:00.000' },
36
+ },
37
+ ];
38
+ const result = timeTransformer(filterKey, queries);
39
+
40
+ const expected = `((${filterKey} >= "12:00:00.000" and ${filterKey} <= "13:00:59.999"))`;
41
+ expect(result).toEqual(expected);
42
+ });
43
+
44
+ it('should correctly build a mix of queries', () => {
45
+ const queries = [
46
+ { type: 'equalTo', value: '12:00:00.000' },
47
+ { type: 'lessThan', value: '12:00:00.000' },
48
+ { type: 'moreThan', value: '12:00:00.000' },
49
+ {
50
+ type: 'range',
51
+ value: { from: '12:00:00.000', to: '13:00:00.000' },
52
+ },
53
+ ];
54
+ const result = timeTransformer(filterKey, queries);
55
+
56
+ const expected = oneLine`
57
+ ((${filterKey} >= "12:00:00.000" and ${filterKey} <= "12:00:59.999") or
58
+ ${filterKey} < "12:00:00.000" or ${filterKey} > "12:00:00.000" or
59
+ (${filterKey} >= "12:00:00.000" and ${filterKey} <= "13:00:59.999"))
60
+ `;
61
+
62
+ expect(result).toEqual(expected);
63
+ });
64
+
65
+ it('should return null for invalid filters', () => {
66
+ const queries = [{ type: 'equalTo', value: 'something invalid' }];
67
+ const result = timeTransformer(filterKey, queries, () => false);
68
+
69
+ expect(result).toBe(null);
70
+ });
71
+ });
72
+
73
+ describe('defaultFilterValidator', () => {
74
+ it('should detect an invalid non-range filter', () => {
75
+ const filter = { type: 'non-range', value: '' };
76
+ expect(defaultFilterValidator(filter)).toBe(false);
77
+ });
78
+ it('should detect an invalid range filter', () => {
79
+ const filter = { type: 'range', value: '' };
80
+ expect(defaultFilterValidator(filter)).toBe(false);
81
+ });
82
+ it('should allow a valid non-range filter', () => {
83
+ const filter = { type: 'non-range', value: '2000-01-01' };
84
+ expect(defaultFilterValidator(filter)).toBe(true);
85
+ });
86
+ it('should allow a valid range filter', () => {
87
+ const filter = {
88
+ type: 'non-range',
89
+ value: {
90
+ from: '2003-01-01',
91
+ to: '2004-01-01',
92
+ },
93
+ };
94
+ expect(defaultFilterValidator(filter)).toBe(true);
95
+ });
96
+ });