@commercetools-frontend/experimental-components 2.0.0 → 3.1.0
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.
|
@@ -16,7 +16,7 @@ import _getPrototypeOf from '@babel/runtime-corejs3/helpers/esm/getPrototypeOf';
|
|
|
16
16
|
import _someInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/some';
|
|
17
17
|
import _includesInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/includes';
|
|
18
18
|
import _mapInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/map';
|
|
19
|
-
import React, { useEffect, useCallback, useState, useContext, useRef, useMemo, PureComponent, Component,
|
|
19
|
+
import React, { useEffect, useCallback, useState, useContext, useRef, useMemo, PureComponent, Component, memo, createContext, isValidElement } from 'react';
|
|
20
20
|
import flowRight from 'lodash.flowright';
|
|
21
21
|
import { graphql as graphql$1, withApollo } from '@apollo/client/react/hoc';
|
|
22
22
|
import flatten from 'lodash.flatten';
|
|
@@ -37,15 +37,15 @@ import _taggedTemplateLiteral from '@babel/runtime-corejs3/helpers/esm/taggedTem
|
|
|
37
37
|
import oneLine from 'common-tags/lib/oneLine';
|
|
38
38
|
import moment from 'moment-timezone';
|
|
39
39
|
import isNil$1 from 'lodash.isnil';
|
|
40
|
-
import { NO_VALUE_FALLBACK, GRAPHQL_TARGETS, DOMAINS, MC_API_PROXY_TARGETS } from '@commercetools-frontend/constants';
|
|
40
|
+
import { NO_VALUE_FALLBACK, GRAPHQL_TARGETS, DOMAINS, MC_API_PROXY_TARGETS, SUPPORT_PORTAL_URL } from '@commercetools-frontend/constants';
|
|
41
41
|
import { reportErrorToSentry } from '@commercetools-frontend/sentry';
|
|
42
42
|
import _findInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/find';
|
|
43
43
|
import _valuesInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/values';
|
|
44
|
-
import { usePaginationState, useDataTableSortingState, useToggleState, Spacings, Text, Link, LoadingSpinner, Constraints, AsyncSelectInput, AccessibleHidden, SecondaryIconButton, CloseIcon, SearchIcon, Tooltip, MoneyInput, TextInput, MultilineTextInput, LocalizedTextInput, LocalizedMultilineTextInput, SelectInput, NumberInput, SearchSelectInput, DateInput, DateTimeInput, TimeInput, FlatButton, AngleUpIcon, AngleDownIcon, IconButton, BinFilledIcon, BinLinearIcon, PlusBoldIcon, ErrorIcon, FieldLabel, WarningIcon, InformationIcon, customProperties, SecondaryButton, RevertIcon, Grid, SubdirectoryArrowIcon, Tag, EditIcon, Card, SelectField, AsyncSelectField, SearchSelectField, FieldErrors, ContentNotification, ListIcon, CheckboxInput } from '@commercetools-frontend/ui-kit';
|
|
44
|
+
import { usePaginationState, useDataTableSortingState, useToggleState, Spacings, Text, Link, LoadingSpinner, Constraints, AsyncSelectInput, AccessibleHidden, SecondaryIconButton, CloseIcon, SearchIcon, Tooltip, MoneyInput, TextInput, MultilineTextInput, LocalizedTextInput, LocalizedMultilineTextInput, SelectInput, NumberInput, SearchSelectInput, DateInput, DateTimeInput, TimeInput, FlatButton, AngleUpIcon, AngleDownIcon, IconButton, BinFilledIcon, BinLinearIcon, PlusBoldIcon, ErrorIcon, FieldLabel, WarningIcon, InformationIcon, customProperties, SecondaryButton, RevertIcon, Grid, SubdirectoryArrowIcon, Tag, EditIcon, Card, SelectField, AsyncSelectField, SearchSelectField, FieldErrors, ContentNotification, ListIcon, CheckboxInput, SearchTextInput } from '@commercetools-frontend/ui-kit';
|
|
45
45
|
import { jsx, jsxs, Fragment } from '@emotion/react/jsx-runtime';
|
|
46
46
|
import { useShowNotification, useShowApiErrorNotification, useOnActionError, useHideAllPageNotifications } from '@commercetools-frontend/actions-global';
|
|
47
47
|
import PropTypes from 'prop-types';
|
|
48
|
-
import { useModalState, CustomFormModalPage, ConfirmationDialog, InfoDialog } from '@commercetools-frontend/application-components';
|
|
48
|
+
import { useModalState, CustomFormModalPage, PageContentNarrow, ConfirmationDialog, InfoDialog } from '@commercetools-frontend/application-components';
|
|
49
49
|
import _JSON$stringify from '@babel/runtime-corejs3/core-js-stable/json/stringify';
|
|
50
50
|
import { useApplicationContext, ApplicationContext, withApplicationContext } from '@commercetools-frontend/application-shell-connectors';
|
|
51
51
|
import { GtmContext, useFeatureToggle, useAdapterStatus } from '@commercetools-frontend/application-shell';
|
|
@@ -1623,8 +1623,8 @@ var getFractionDigit = function getFractionDigit(code) {
|
|
|
1623
1623
|
return getData(code, 'fractionDigit');
|
|
1624
1624
|
};
|
|
1625
1625
|
|
|
1626
|
-
function ownKeys$
|
|
1627
|
-
function _objectSpread$
|
|
1626
|
+
function ownKeys$1p(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1627
|
+
function _objectSpread$1p(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1p(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1p(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1628
1628
|
function formatMoneyRangeValue(value, intl) {
|
|
1629
1629
|
var _context;
|
|
1630
1630
|
if (value.from === value.to) return formatMoneyValue(value.from, value.currency, intl);
|
|
@@ -1634,7 +1634,7 @@ function formatMoneyRangeValue(value, intl) {
|
|
|
1634
1634
|
return '';
|
|
1635
1635
|
}
|
|
1636
1636
|
function formatMoneyValue(amount, currency, intl) {
|
|
1637
|
-
return formatMoney$1(_objectSpread$
|
|
1637
|
+
return formatMoney$1(_objectSpread$1p({
|
|
1638
1638
|
centAmount: amount,
|
|
1639
1639
|
fractionDigits: getFractionDigit(currency)
|
|
1640
1640
|
}, currency ? {
|
|
@@ -1651,7 +1651,7 @@ function getFractionedAmount(moneyValue) {
|
|
|
1651
1651
|
}
|
|
1652
1652
|
function formatMoney$1(moneyValue, intl, options) {
|
|
1653
1653
|
var _moneyValue$fractione;
|
|
1654
|
-
return intl.formatNumber((_moneyValue$fractione = moneyValue.fractionedAmount) !== null && _moneyValue$fractione !== void 0 ? _moneyValue$fractione : getFractionedAmount(moneyValue), _objectSpread$
|
|
1654
|
+
return intl.formatNumber((_moneyValue$fractione = moneyValue.fractionedAmount) !== null && _moneyValue$fractione !== void 0 ? _moneyValue$fractione : getFractionedAmount(moneyValue), _objectSpread$1p({
|
|
1655
1655
|
style: 'currency',
|
|
1656
1656
|
currency: moneyValue.currencyCode,
|
|
1657
1657
|
minimumFractionDigits: moneyValue.fractionDigits
|
|
@@ -1906,8 +1906,8 @@ var wrapDisplayName = function wrapDisplayName(BaseComponent, hocName) {
|
|
|
1906
1906
|
return _concatInstanceProperty(_context = "".concat(hocName, "(")).call(_context, getDisplayName(BaseComponent), ")");
|
|
1907
1907
|
};
|
|
1908
1908
|
|
|
1909
|
-
function ownKeys$
|
|
1910
|
-
function _objectSpread$
|
|
1909
|
+
function ownKeys$1o(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1910
|
+
function _objectSpread$1o(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1o(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1o(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1911
1911
|
var injectDataTablePaginationState = function injectDataTablePaginationState(initialValues) {
|
|
1912
1912
|
return function (Component) {
|
|
1913
1913
|
var WithDataTablePaginationState = function WithDataTablePaginationState(props) {
|
|
@@ -1922,7 +1922,7 @@ var injectDataTablePaginationState = function injectDataTablePaginationState(ini
|
|
|
1922
1922
|
key: initialValues === null || initialValues === void 0 ? void 0 : (_initialValues$tableS = initialValues.tableSorting) === null || _initialValues$tableS === void 0 ? void 0 : _initialValues$tableS.key,
|
|
1923
1923
|
order: initialValues === null || initialValues === void 0 ? void 0 : (_initialValues$tableS2 = initialValues.tableSorting) === null || _initialValues$tableS2 === void 0 ? void 0 : _initialValues$tableS2.order
|
|
1924
1924
|
});
|
|
1925
|
-
return jsx(Component, _objectSpread$
|
|
1925
|
+
return jsx(Component, _objectSpread$1o(_objectSpread$1o({}, props), {}, {
|
|
1926
1926
|
dataTablePaginationState: {
|
|
1927
1927
|
page: page,
|
|
1928
1928
|
perPage: perPage,
|
|
@@ -1935,8 +1935,8 @@ var injectDataTablePaginationState = function injectDataTablePaginationState(ini
|
|
|
1935
1935
|
};
|
|
1936
1936
|
};
|
|
1937
1937
|
|
|
1938
|
-
function ownKeys$
|
|
1939
|
-
function _objectSpread$
|
|
1938
|
+
function ownKeys$1n(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1939
|
+
function _objectSpread$1n(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1n(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1n(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1940
1940
|
var injectNotifications = function injectNotifications() {
|
|
1941
1941
|
var propName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'notifications';
|
|
1942
1942
|
return function (Component) {
|
|
@@ -1951,31 +1951,31 @@ var injectNotifications = function injectNotifications() {
|
|
|
1951
1951
|
onActionError: onActionError,
|
|
1952
1952
|
hideAllPageNotifications: hideAllPageNotifications
|
|
1953
1953
|
};
|
|
1954
|
-
return jsx(Component, _objectSpread$
|
|
1954
|
+
return jsx(Component, _objectSpread$1n(_objectSpread$1n({}, props), _defineProperty({}, propName, notifications)));
|
|
1955
1955
|
};
|
|
1956
1956
|
WrappedComponent.displayName = "withNotifications(".concat(getDisplayName(Component));
|
|
1957
1957
|
return WrappedComponent;
|
|
1958
1958
|
};
|
|
1959
1959
|
};
|
|
1960
1960
|
|
|
1961
|
-
function ownKeys$
|
|
1962
|
-
function _objectSpread$
|
|
1961
|
+
function ownKeys$1m(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1962
|
+
function _objectSpread$1m(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1m(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1m(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1963
1963
|
function isPropsMapper(mapProps) {
|
|
1964
1964
|
return typeof mapProps === 'function';
|
|
1965
1965
|
}
|
|
1966
1966
|
var withProps = function withProps(mapProps) {
|
|
1967
1967
|
return function (Component) {
|
|
1968
1968
|
var EnhancedWithProps = function EnhancedWithProps(ownProps) {
|
|
1969
|
-
var enhancedProps = isPropsMapper(mapProps) ? _objectSpread$
|
|
1970
|
-
return jsx(Component, _objectSpread$
|
|
1969
|
+
var enhancedProps = isPropsMapper(mapProps) ? _objectSpread$1m(_objectSpread$1m({}, ownProps), mapProps(ownProps)) : _objectSpread$1m(_objectSpread$1m({}, ownProps), mapProps);
|
|
1970
|
+
return jsx(Component, _objectSpread$1m({}, enhancedProps));
|
|
1971
1971
|
};
|
|
1972
1972
|
EnhancedWithProps.displayName = wrapDisplayName(Component, 'withProps');
|
|
1973
1973
|
return EnhancedWithProps;
|
|
1974
1974
|
};
|
|
1975
1975
|
};
|
|
1976
1976
|
|
|
1977
|
-
function ownKeys$
|
|
1978
|
-
function _objectSpread$
|
|
1977
|
+
function ownKeys$1l(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
1978
|
+
function _objectSpread$1l(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1l(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1l(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
1979
1979
|
var useRedirectEffect = function useRedirectEffect(_ref) {
|
|
1980
1980
|
var goTo = _ref.goTo;
|
|
1981
1981
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
@@ -1998,58 +1998,58 @@ var defaultOptions$5 = {
|
|
|
1998
1998
|
};
|
|
1999
1999
|
var withRedirectTo = function withRedirectTo(options) {
|
|
2000
2000
|
return function (Component) {
|
|
2001
|
-
var mergedOptions = _objectSpread$
|
|
2001
|
+
var mergedOptions = _objectSpread$1l(_objectSpread$1l({}, defaultOptions$5), options);
|
|
2002
2002
|
var WithRedirectTo = function WithRedirectTo(props) {
|
|
2003
2003
|
if (!mergedOptions.skip(props)) {
|
|
2004
2004
|
return jsx(RedirectTo, {
|
|
2005
2005
|
goTo: options.selectGoTo(props)
|
|
2006
2006
|
});
|
|
2007
2007
|
}
|
|
2008
|
-
return jsx(Component, _objectSpread$
|
|
2008
|
+
return jsx(Component, _objectSpread$1l({}, props));
|
|
2009
2009
|
};
|
|
2010
2010
|
WithRedirectTo.displayName = 'WithFirstStepRedirect';
|
|
2011
2011
|
return WithRedirectTo;
|
|
2012
2012
|
};
|
|
2013
2013
|
};
|
|
2014
2014
|
|
|
2015
|
-
function ownKeys$
|
|
2016
|
-
function _objectSpread$
|
|
2015
|
+
function ownKeys$1k(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2016
|
+
function _objectSpread$1k(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1k(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1k(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2017
2017
|
var defaultOptions$4 = {
|
|
2018
2018
|
propName: 'modalState',
|
|
2019
2019
|
isInitiallyOpen: false
|
|
2020
2020
|
};
|
|
2021
2021
|
var injectModalState$1 = function injectModalState(options) {
|
|
2022
2022
|
return function (Component) {
|
|
2023
|
-
var mergedOptions = _objectSpread$
|
|
2023
|
+
var mergedOptions = _objectSpread$1k(_objectSpread$1k({}, defaultOptions$4), options);
|
|
2024
2024
|
var WithModalState = function WithModalState(props) {
|
|
2025
2025
|
var modalState = useModalState(mergedOptions.isInitiallyOpen);
|
|
2026
|
-
return jsx(Component, _objectSpread$
|
|
2026
|
+
return jsx(Component, _objectSpread$1k(_objectSpread$1k({}, props), _defineProperty({}, mergedOptions.propName, modalState)));
|
|
2027
2027
|
};
|
|
2028
2028
|
WithModalState.displayName = wrapDisplayName(WithModalState, 'WithModalState');
|
|
2029
2029
|
return WithModalState;
|
|
2030
2030
|
};
|
|
2031
2031
|
};
|
|
2032
2032
|
|
|
2033
|
-
function ownKeys$
|
|
2034
|
-
function _objectSpread$
|
|
2033
|
+
function ownKeys$1j(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2034
|
+
function _objectSpread$1j(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1j(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1j(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2035
2035
|
var defaultOptions$3 = {
|
|
2036
2036
|
propName: 'toggleState',
|
|
2037
2037
|
isInitiallyOpen: false
|
|
2038
2038
|
};
|
|
2039
2039
|
var injectModalState = function injectModalState(options) {
|
|
2040
2040
|
return function (Component) {
|
|
2041
|
-
var mergedOptions = _objectSpread$
|
|
2041
|
+
var mergedOptions = _objectSpread$1j(_objectSpread$1j({}, defaultOptions$3), options);
|
|
2042
2042
|
var WithToggleState = function WithToggleState(props) {
|
|
2043
2043
|
var toggleState = useToggleState(mergedOptions.isInitiallyOpen);
|
|
2044
|
-
return jsx(Component, _objectSpread$
|
|
2044
|
+
return jsx(Component, _objectSpread$1j(_objectSpread$1j({}, props), _defineProperty({}, mergedOptions.propName, toggleState)));
|
|
2045
2045
|
};
|
|
2046
2046
|
WithToggleState.displayName = wrapDisplayName(WithToggleState, 'WithToggleState');
|
|
2047
2047
|
return WithToggleState;
|
|
2048
2048
|
};
|
|
2049
2049
|
};
|
|
2050
2050
|
|
|
2051
|
-
function ownKeys$
|
|
2052
|
-
function _objectSpread$
|
|
2051
|
+
function ownKeys$1i(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2052
|
+
function _objectSpread$1i(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1i(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1i(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2053
2053
|
var defaultOptions$2 = {
|
|
2054
2054
|
storageType: 'local',
|
|
2055
2055
|
segregateByUser: true
|
|
@@ -2073,7 +2073,7 @@ var isNil = function isNil(value) {
|
|
|
2073
2073
|
};
|
|
2074
2074
|
var useStorage = function useStorage(storageKey, initialStorageValue, options) {
|
|
2075
2075
|
var _context;
|
|
2076
|
-
var mergedOptions = _objectSpread$
|
|
2076
|
+
var mergedOptions = _objectSpread$1i(_objectSpread$1i({}, defaultOptions$2), options);
|
|
2077
2077
|
var userId = useApplicationContext(function (context) {
|
|
2078
2078
|
var _context$user;
|
|
2079
2079
|
return (_context$user = context.user) === null || _context$user === void 0 ? void 0 : _context$user.id;
|
|
@@ -2121,8 +2121,8 @@ var useStorage = function useStorage(storageKey, initialStorageValue, options) {
|
|
|
2121
2121
|
return [actualStorageValue, writeToStorage, readFromStorage];
|
|
2122
2122
|
};
|
|
2123
2123
|
|
|
2124
|
-
function ownKeys$
|
|
2125
|
-
function _objectSpread$
|
|
2124
|
+
function ownKeys$1h(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2125
|
+
function _objectSpread$1h(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1h(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1h(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2126
2126
|
var defaultOptions$1 = {
|
|
2127
2127
|
propName: 'storage',
|
|
2128
2128
|
storageKey: '',
|
|
@@ -2136,7 +2136,7 @@ var injectStorage = function injectStorage(options) {
|
|
|
2136
2136
|
* Options are being merged by spreading as destructuring and defaulting in
|
|
2137
2137
|
* argument position does not allow passing specification of option(s).
|
|
2138
2138
|
*/
|
|
2139
|
-
var mergedOptions = _objectSpread$
|
|
2139
|
+
var mergedOptions = _objectSpread$1h(_objectSpread$1h({}, defaultOptions$1), options);
|
|
2140
2140
|
var WithStorage = function WithStorage(props) {
|
|
2141
2141
|
var _useStorage = useStorage(mergedOptions.storageKey(props), mergedOptions.initalStorageValue, mergedOptions.options),
|
|
2142
2142
|
_useStorage2 = _slicedToArray(_useStorage, 3),
|
|
@@ -2148,7 +2148,7 @@ var injectStorage = function injectStorage(options) {
|
|
|
2148
2148
|
writeToStorage: writeToStorage,
|
|
2149
2149
|
readFromStorage: readFromStorage
|
|
2150
2150
|
});
|
|
2151
|
-
return jsx(WrappedComponent, _objectSpread$
|
|
2151
|
+
return jsx(WrappedComponent, _objectSpread$1h(_objectSpread$1h({}, props), storageProp));
|
|
2152
2152
|
};
|
|
2153
2153
|
WithStorage.displayName = wrapDisplayName(WrappedComponent, 'WithStorage');
|
|
2154
2154
|
return WithStorage;
|
|
@@ -2199,8 +2199,8 @@ var usePrevious = function usePrevious(value) {
|
|
|
2199
2199
|
return ref.current;
|
|
2200
2200
|
};
|
|
2201
2201
|
|
|
2202
|
-
function ownKeys$
|
|
2203
|
-
function _objectSpread$
|
|
2202
|
+
function ownKeys$1g(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2203
|
+
function _objectSpread$1g(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1g(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1g(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2204
2204
|
var FetchStoresQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchStoresQuery" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "limit" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "offset" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "sort" } }, type: { kind: "ListType", type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "where" } }, type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "excludeExtendedStoresList" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "Boolean" } } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "excludeProductSelections" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "Boolean" } } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "stores" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "limit" }, value: { kind: "Variable", name: { kind: "Name", value: "limit" } } }, { kind: "Argument", name: { kind: "Name", value: "offset" }, value: { kind: "Variable", name: { kind: "Name", value: "offset" } } }, { kind: "Argument", name: { kind: "Name", value: "sort" }, value: { kind: "Variable", name: { kind: "Name", value: "sort" } } }, { kind: "Argument", name: { kind: "Name", value: "where" }, value: { kind: "Variable", name: { kind: "Name", value: "where" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "total" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "count" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "offset" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "results" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "FragmentSpread", name: { kind: "Name", value: "StoreBasicInfo" }, directives: [] }, { kind: "Field", name: { kind: "Name", value: "countries" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "code" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "languages" }, arguments: [], directives: [{ kind: "Directive", name: { kind: "Name", value: "skip" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "if" }, value: { kind: "Variable", name: { kind: "Name", value: "excludeExtendedStoresList" } } }] }] }, { kind: "Field", name: { kind: "Name", value: "distributionChannelsRef" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "distributionChannels" }, arguments: [], directives: [{ kind: "Directive", name: { kind: "Name", value: "skip" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "if" }, value: { kind: "Variable", name: { kind: "Name", value: "excludeExtendedStoresList" } } }] }], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }, { kind: "Field", name: { kind: "Name", value: "supplyChannels" }, arguments: [], directives: [{ kind: "Directive", name: { kind: "Name", value: "skip" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "if" }, value: { kind: "Variable", name: { kind: "Name", value: "excludeExtendedStoresList" } } }] }], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }, { kind: "Field", name: { kind: "Name", value: "productSelections" }, arguments: [], directives: [{ kind: "Directive", name: { kind: "Name", value: "skip" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "if" }, value: { kind: "Variable", name: { kind: "Name", value: "excludeProductSelections" } } }] }], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "active" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "productSelection" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }] } }] } }] } }, { kind: "FragmentDefinition", name: { kind: "Name", value: "StoreBasicInfo" }, typeCondition: { kind: "NamedType", name: { kind: "Name", value: "Store" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "version" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "createdAt" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "lastModifiedAt" }, arguments: [], directives: [] }] } }], loc: { start: 0, end: 1074, source: { body: "#import '../../utils/graphql/fragments/store-basic-info.ctp.graphql'\n\nquery FetchStoresQuery(\n $limit: Int\n $offset: Int\n $sort: [String!]\n $where: String\n $excludeExtendedStoresList: Boolean!\n $excludeProductSelections: Boolean!\n) {\n stores(limit: $limit, offset: $offset, sort: $sort, where: $where) {\n total\n count\n offset\n results {\n ...StoreBasicInfo\n countries {\n code\n }\n languages @skip(if: $excludeExtendedStoresList)\n distributionChannelsRef {\n id\n }\n distributionChannels @skip(if: $excludeExtendedStoresList) {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n supplyChannels @skip(if: $excludeExtendedStoresList) {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n productSelections @skip(if: $excludeProductSelections) {\n active\n productSelection {\n id\n nameAllLocales {\n locale\n value\n }\n }\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
2205
2205
|
var filterStoresOutdatedDanglingProductSelections = function filterStoresOutdatedDanglingProductSelections(storesQueryResult) {
|
|
2206
2206
|
var _storesQueryResult$re;
|
|
@@ -2211,7 +2211,7 @@ var filterStoresOutdatedDanglingProductSelections = function filterStoresOutdate
|
|
|
2211
2211
|
offset: storesQueryResult.offset,
|
|
2212
2212
|
results: (_storesQueryResult$re = storesQueryResult.results) === null || _storesQueryResult$re === void 0 ? void 0 : _mapInstanceProperty(_storesQueryResult$re).call(_storesQueryResult$re, function (store) {
|
|
2213
2213
|
var _store$productSelecti;
|
|
2214
|
-
return _objectSpread$
|
|
2214
|
+
return _objectSpread$1g(_objectSpread$1g({}, store), {}, {
|
|
2215
2215
|
productSelections: (_store$productSelecti = store.productSelections) === null || _store$productSelecti === void 0 ? void 0 : _filterInstanceProperty(_store$productSelecti).call(_store$productSelecti, function (productSelectionRef) {
|
|
2216
2216
|
return Boolean(productSelectionRef.productSelection);
|
|
2217
2217
|
})
|
|
@@ -2221,7 +2221,7 @@ var filterStoresOutdatedDanglingProductSelections = function filterStoresOutdate
|
|
|
2221
2221
|
};
|
|
2222
2222
|
var createQueryVariables$8 = function createQueryVariables(ownProps) {
|
|
2223
2223
|
var _context;
|
|
2224
|
-
return _objectSpread$
|
|
2224
|
+
return _objectSpread$1g(_objectSpread$1g({
|
|
2225
2225
|
limit: ownProps.limit,
|
|
2226
2226
|
offset: ownProps.offset,
|
|
2227
2227
|
sort: _sortInstanceProperty(ownProps)
|
|
@@ -2389,8 +2389,8 @@ function useDidFormValidationFail() {
|
|
|
2389
2389
|
return Boolean(didFormValidationFail);
|
|
2390
2390
|
}
|
|
2391
2391
|
|
|
2392
|
-
function ownKeys$
|
|
2393
|
-
function _objectSpread$
|
|
2392
|
+
function ownKeys$1f(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2393
|
+
function _objectSpread$1f(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1f(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1f(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2394
2394
|
var TEN_MINUTES_IN_MS = 600000;
|
|
2395
2395
|
var defaultOptions = {
|
|
2396
2396
|
reminderInterval: REMINDER_OPTION_1_DAY,
|
|
@@ -2418,7 +2418,7 @@ var useHasReminderExpired = function useHasReminderExpired(readReminderInterval)
|
|
|
2418
2418
|
};
|
|
2419
2419
|
var usePersistedReminder = function usePersistedReminder() {
|
|
2420
2420
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
2421
|
-
var mergedOptions = _objectSpread$
|
|
2421
|
+
var mergedOptions = _objectSpread$1f(_objectSpread$1f({}, defaultOptions), options);
|
|
2422
2422
|
var _useStorage = useStorage(mergedOptions.storageKey, null),
|
|
2423
2423
|
_useStorage2 = _slicedToArray(_useStorage, 3),
|
|
2424
2424
|
initialChosenReminderInterval = _useStorage2[0],
|
|
@@ -2486,8 +2486,8 @@ var messages$H = defineMessages({
|
|
|
2486
2486
|
}
|
|
2487
2487
|
});
|
|
2488
2488
|
|
|
2489
|
-
function ownKeys$
|
|
2490
|
-
function _objectSpread$
|
|
2489
|
+
function ownKeys$1e(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2490
|
+
function _objectSpread$1e(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$1e(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$1e(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2491
2491
|
var LinkToProfile = function LinkToProfile(props) {
|
|
2492
2492
|
var _useTrackingShared = useTrackingShared(),
|
|
2493
2493
|
trackClickOnInfoNotification = _useTrackingShared.trackClickOnInfoNotification;
|
|
@@ -2515,7 +2515,7 @@ var NotificationText = function NotificationText() {
|
|
|
2515
2515
|
isBold: true,
|
|
2516
2516
|
intlMessage: messages$H.profileUpdated
|
|
2517
2517
|
}), jsx(Text.Body, {
|
|
2518
|
-
intlMessage: _objectSpread$
|
|
2518
|
+
intlMessage: _objectSpread$1e(_objectSpread$1e({}, messages$H.addMoreInformation), {}, {
|
|
2519
2519
|
values: {
|
|
2520
2520
|
newline: getNewLine
|
|
2521
2521
|
}
|
|
@@ -2524,7 +2524,7 @@ var NotificationText = function NotificationText() {
|
|
|
2524
2524
|
}), jsx(Spacings.Stack, {
|
|
2525
2525
|
scale: "xs",
|
|
2526
2526
|
children: jsx(Text.Body, {
|
|
2527
|
-
intlMessage: _objectSpread$
|
|
2527
|
+
intlMessage: _objectSpread$1e(_objectSpread$1e({}, messages$H.informationAndProfileLink), {}, {
|
|
2528
2528
|
values: {
|
|
2529
2529
|
newline: getNewLine,
|
|
2530
2530
|
link: getLinkToProfile
|
|
@@ -2744,8 +2744,8 @@ var useDebouncedPromiseCallback = function useDebouncedPromiseCallback(promiseCa
|
|
|
2744
2744
|
);
|
|
2745
2745
|
};
|
|
2746
2746
|
|
|
2747
|
-
function ownKeys$
|
|
2748
|
-
function _objectSpread$
|
|
2747
|
+
function ownKeys$1d(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2748
|
+
function _objectSpread$1d(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1d(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1d(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2749
2749
|
var prepareMutableColumnProps = function prepareMutableColumnProps(columnConfig, mutableColumnProps) {
|
|
2750
2750
|
var updatedColumnProps = {};
|
|
2751
2751
|
_forEachInstanceProperty(mutableColumnProps).call(mutableColumnProps, function (columnProp) {
|
|
@@ -2771,14 +2771,14 @@ var retrieveColumnsWithCachedConfiguration = function retrieveColumnsWithCachedC
|
|
|
2771
2771
|
var initialColumnConfig = _findInstanceProperty(allAvailableColumnsConfiguration).call(allAvailableColumnsConfiguration, function (initialConfig) {
|
|
2772
2772
|
return initialConfig.key === cachedConfig.key;
|
|
2773
2773
|
});
|
|
2774
|
-
return _objectSpread$
|
|
2774
|
+
return _objectSpread$1d(_objectSpread$1d({}, initialColumnConfig), prepareMutableColumnProps(cachedConfig, mutableColumnProps));
|
|
2775
2775
|
});
|
|
2776
2776
|
};
|
|
2777
2777
|
var handleCacheUpdate = function handleCacheUpdate(_ref2) {
|
|
2778
2778
|
var update = _ref2.update,
|
|
2779
2779
|
cachedVisibleTableConfiguration = _ref2.cachedVisibleTableConfiguration,
|
|
2780
2780
|
updateCachedTableConfiguration = _ref2.updateCachedTableConfiguration;
|
|
2781
|
-
return updateCachedTableConfiguration(_objectSpread$
|
|
2781
|
+
return updateCachedTableConfiguration(_objectSpread$1d(_objectSpread$1d({}, pick(cachedVisibleTableConfiguration, ['columnsConfig', 'displaySettings'])), update));
|
|
2782
2782
|
};
|
|
2783
2783
|
|
|
2784
2784
|
// Signature:
|
|
@@ -2809,7 +2809,7 @@ var usePersistedTableConfiguration = function usePersistedTableConfiguration(pro
|
|
|
2809
2809
|
var visibleColumnConfig = _findInstanceProperty(allAvailableColumnsConfiguration).call(allAvailableColumnsConfiguration, function (columnConfig) {
|
|
2810
2810
|
return columnConfig.key === visibleColumnKey;
|
|
2811
2811
|
});
|
|
2812
|
-
return _objectSpread$
|
|
2812
|
+
return _objectSpread$1d({
|
|
2813
2813
|
key: visibleColumnKey
|
|
2814
2814
|
}, prepareMutableColumnProps(visibleColumnConfig, mutableColumnProps));
|
|
2815
2815
|
}),
|
|
@@ -2888,15 +2888,15 @@ var handlers$6 = {
|
|
|
2888
2888
|
}
|
|
2889
2889
|
};
|
|
2890
2890
|
|
|
2891
|
-
function ownKeys$
|
|
2892
|
-
function _objectSpread$
|
|
2891
|
+
function ownKeys$1c(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2892
|
+
function _objectSpread$1c(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1c(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1c(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
2893
2893
|
|
|
2894
2894
|
// eslint-disable-next-line import/prefer-default-export
|
|
2895
2895
|
var convertProductSelectionsFromGraphQl = function convertProductSelectionsFromGraphQl(productSelections) {
|
|
2896
2896
|
var _context;
|
|
2897
|
-
return (productSelections === null || productSelections === void 0 ? void 0 : productSelections.results) && _objectSpread$
|
|
2897
|
+
return (productSelections === null || productSelections === void 0 ? void 0 : productSelections.results) && _objectSpread$1c(_objectSpread$1c({}, productSelections), {}, {
|
|
2898
2898
|
results: _mapInstanceProperty(_context = productSelections.results).call(_context, function (productSelection) {
|
|
2899
|
-
return _objectSpread$
|
|
2899
|
+
return _objectSpread$1c({}, applyTransformedLocalizedFields(productSelection, [{
|
|
2900
2900
|
from: 'nameAllLocales',
|
|
2901
2901
|
to: 'name'
|
|
2902
2902
|
}]));
|
|
@@ -3106,6 +3106,8 @@ var trackingEvents$4 = {
|
|
|
3106
3106
|
}
|
|
3107
3107
|
};
|
|
3108
3108
|
|
|
3109
|
+
function ownKeys$1b(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3110
|
+
function _objectSpread$1b(target) { for (var i = 1; i < arguments.length; i++) { var _context3, _context4; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context3 = ownKeys$1b(Object(source), !0)).call(_context3, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context4 = ownKeys$1b(Object(source))).call(_context4, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
3109
3111
|
var GetChannelsQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "GetChannelsQuery" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "where" } }, type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "sortByNamePath" } }, type: { kind: "NonNullType", type: { kind: "NamedType", name: { kind: "Name", value: "String" } } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "channels" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "where" }, value: { kind: "Variable", name: { kind: "Name", value: "where" } } }, { kind: "Argument", name: { kind: "Name", value: "sort" }, value: { kind: "ListValue", values: [{ kind: "Variable", name: { kind: "Name", value: "sortByNamePath" } }, { kind: "StringValue", value: "key", block: false }] } }, { kind: "Argument", name: { kind: "Name", value: "limit" }, value: { kind: "IntValue", value: "60" } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "total" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "results" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }] } }], loc: { start: 0, end: 385, source: { body: "query GetChannelsQuery($where: String, $sortByNamePath: String!) {\n channels(where: $where, sort: [$sortByNamePath, \"key\"], limit: 60) {\n total\n results {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n }\n}\n\nquery GetChannelQuery($id: String) {\n channel(id: $id) {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
3110
3112
|
var GetChannelQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "GetChannelQuery" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "id" } }, type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "channel" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "id" }, value: { kind: "Variable", name: { kind: "Name", value: "id" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }], loc: { start: 0, end: 385, source: { body: "query GetChannelsQuery($where: String, $sortByNamePath: String!) {\n channels(where: $where, sort: [$sortByNamePath, \"key\"], limit: 60) {\n total\n results {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n }\n}\n\nquery GetChannelQuery($id: String) {\n channel(id: $id) {\n id\n key\n nameAllLocales {\n locale\n value\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
3111
3113
|
var getTrackingEvent$4 = function getTrackingEvent(inputValue, selectedValue) {
|
|
@@ -3125,7 +3127,9 @@ var ChannelPickerInput = function ChannelPickerInput(_ref) {
|
|
|
3125
3127
|
onBlur = _ref.onBlur,
|
|
3126
3128
|
value = _ref.value,
|
|
3127
3129
|
hasError = _ref.hasError,
|
|
3128
|
-
onError = _ref.onError
|
|
3130
|
+
onError = _ref.onError,
|
|
3131
|
+
placeholder = _ref.placeholder,
|
|
3132
|
+
role = _ref.role;
|
|
3129
3133
|
var formatLocalizedFieldToString = useFormatLocalizedFieldToString();
|
|
3130
3134
|
var _useIntl = useIntl(),
|
|
3131
3135
|
formatMessage = _useIntl.formatMessage;
|
|
@@ -3133,10 +3137,12 @@ var ChannelPickerInput = function ChannelPickerInput(_ref) {
|
|
|
3133
3137
|
return applicationContext.dataLocale;
|
|
3134
3138
|
});
|
|
3135
3139
|
var variables = useMemo(function () {
|
|
3136
|
-
return {
|
|
3140
|
+
return _objectSpread$1b({
|
|
3137
3141
|
sortByNamePath: "name.".concat(dataLocale)
|
|
3138
|
-
}
|
|
3139
|
-
|
|
3142
|
+
}, role && {
|
|
3143
|
+
where: "roles contains any (\"".concat(role, "\")")
|
|
3144
|
+
});
|
|
3145
|
+
}, [dataLocale, role]);
|
|
3140
3146
|
var _useState = useState(),
|
|
3141
3147
|
_useState2 = _slicedToArray(_useState, 2),
|
|
3142
3148
|
loadingError = _useState2[0],
|
|
@@ -3207,7 +3213,7 @@ var ChannelPickerInput = function ChannelPickerInput(_ref) {
|
|
|
3207
3213
|
children: jsx(AsyncSelectInput, {
|
|
3208
3214
|
id: name,
|
|
3209
3215
|
name: name,
|
|
3210
|
-
placeholder: formatMessage(messages$F.placeholder),
|
|
3216
|
+
placeholder: placeholder !== null && placeholder !== void 0 ? placeholder : formatMessage(messages$F.placeholder),
|
|
3211
3217
|
loadOptions: loadOptionsDebounced,
|
|
3212
3218
|
defaultOptions: true,
|
|
3213
3219
|
showOptionGroupDivider: true,
|
|
@@ -3233,11 +3239,11 @@ var ChannelPickerInput = function ChannelPickerInput(_ref) {
|
|
|
3233
3239
|
};
|
|
3234
3240
|
ChannelPickerInput.displayName = 'ChannelPickerInput';
|
|
3235
3241
|
|
|
3236
|
-
function _createSuper$
|
|
3237
|
-
function _isNativeReflectConstruct$
|
|
3242
|
+
function _createSuper$9(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$9(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
3243
|
+
function _isNativeReflectConstruct$9() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
3238
3244
|
var FormattedDateTime = /*#__PURE__*/function (_PureComponent) {
|
|
3239
3245
|
_inherits(FormattedDateTime, _PureComponent);
|
|
3240
|
-
var _super = _createSuper$
|
|
3246
|
+
var _super = _createSuper$9(FormattedDateTime);
|
|
3241
3247
|
function FormattedDateTime() {
|
|
3242
3248
|
_classCallCheck(this, FormattedDateTime);
|
|
3243
3249
|
return _super.apply(this, arguments);
|
|
@@ -3269,12 +3275,12 @@ var keepDisplayName = function keepDisplayName(component) {
|
|
|
3269
3275
|
|
|
3270
3276
|
function ownKeys$1a(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3271
3277
|
function _objectSpread$1a(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$1a(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$1a(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
3272
|
-
function _createSuper$
|
|
3273
|
-
function _isNativeReflectConstruct$
|
|
3278
|
+
function _createSuper$8(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$8(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
3279
|
+
function _isNativeReflectConstruct$8() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
3274
3280
|
var withMouseOverState = function withMouseOverState(BaseComponent) {
|
|
3275
3281
|
var WithMouseOverState = /*#__PURE__*/function (_Component) {
|
|
3276
3282
|
_inherits(WithMouseOverState, _Component);
|
|
3277
|
-
var _super = _createSuper$
|
|
3283
|
+
var _super = _createSuper$8(WithMouseOverState);
|
|
3278
3284
|
function WithMouseOverState() {
|
|
3279
3285
|
var _context;
|
|
3280
3286
|
var _this;
|
|
@@ -3318,8 +3324,8 @@ var withMouseOverState = function withMouseOverState(BaseComponent) {
|
|
|
3318
3324
|
|
|
3319
3325
|
function ownKeys$19(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
3320
3326
|
function _objectSpread$19(target) { for (var i = 1; i < arguments.length; i++) { var _context2, _context3; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context2 = ownKeys$19(Object(source), !0)).call(_context2, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context3 = ownKeys$19(Object(source))).call(_context3, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
3321
|
-
function _createSuper$
|
|
3322
|
-
function _isNativeReflectConstruct$
|
|
3327
|
+
function _createSuper$7(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$7(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
3328
|
+
function _isNativeReflectConstruct$7() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
3323
3329
|
var styles$i = {
|
|
3324
3330
|
"size": "throttled-field-module__size___324jx",
|
|
3325
3331
|
"input-text": "throttled-field-module__input-text___3zFFp",
|
|
@@ -3334,7 +3340,7 @@ var styles$i = {
|
|
|
3334
3340
|
};
|
|
3335
3341
|
var ThrottledField = /*#__PURE__*/function (_PureComponent) {
|
|
3336
3342
|
_inherits(ThrottledField, _PureComponent);
|
|
3337
|
-
var _super = _createSuper$
|
|
3343
|
+
var _super = _createSuper$7(ThrottledField);
|
|
3338
3344
|
function ThrottledField() {
|
|
3339
3345
|
var _context;
|
|
3340
3346
|
var _this;
|
|
@@ -3493,8 +3499,8 @@ var messages$E = defineMessages({
|
|
|
3493
3499
|
}
|
|
3494
3500
|
});
|
|
3495
3501
|
|
|
3496
|
-
function _createSuper$
|
|
3497
|
-
function _isNativeReflectConstruct$
|
|
3502
|
+
function _createSuper$6(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$6(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
3503
|
+
function _isNativeReflectConstruct$6() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
3498
3504
|
var styles$h = {
|
|
3499
3505
|
"block": "search-input-module__block___1uM-y",
|
|
3500
3506
|
"container": "search-input-module__container___9u6if",
|
|
@@ -3512,7 +3518,7 @@ var styles$h = {
|
|
|
3512
3518
|
};
|
|
3513
3519
|
var SearchInput = /*#__PURE__*/function (_Component) {
|
|
3514
3520
|
_inherits(SearchInput, _Component);
|
|
3515
|
-
var _super = _createSuper$
|
|
3521
|
+
var _super = _createSuper$6(SearchInput);
|
|
3516
3522
|
function SearchInput() {
|
|
3517
3523
|
var _context;
|
|
3518
3524
|
var _this;
|
|
@@ -5124,13 +5130,13 @@ var GetProductTypesQuery = { kind: "Document", definitions: [{ kind: "OperationD
|
|
|
5124
5130
|
|
|
5125
5131
|
function ownKeys$10(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
5126
5132
|
function _objectSpread$10(target) { for (var i = 1; i < arguments.length; i++) { var _context4, _context5; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context4 = ownKeys$10(Object(source), !0)).call(_context4, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context5 = ownKeys$10(Object(source))).call(_context5, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
5127
|
-
function _createSuper$
|
|
5128
|
-
function _isNativeReflectConstruct$
|
|
5133
|
+
function _createSuper$5(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$5(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
5134
|
+
function _isNativeReflectConstruct$5() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
5129
5135
|
var FetchTypeDefinitionsQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchTypeDefinitionsQuery" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "where" } }, type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "limit" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "offset" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "typeDefinitions" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "where" }, value: { kind: "Variable", name: { kind: "Name", value: "where" } } }, { kind: "Argument", name: { kind: "Name", value: "limit" }, value: { kind: "Variable", name: { kind: "Name", value: "limit" } } }, { kind: "Argument", name: { kind: "Name", value: "offset" }, value: { kind: "Variable", name: { kind: "Name", value: "offset" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "results" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "fieldDefinitions" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "type" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "SetType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "elementType" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "label" }, arguments: [], directives: [] }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "LocalizedEnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }] } }] } }] } }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "label" }, arguments: [], directives: [] }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "LocalizedEnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }] } }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "ReferenceType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "referenceTypeId" }, arguments: [], directives: [] }] } }] } }, { kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }] } }] } }] } }] } }] } }], loc: { start: 0, end: 1172, source: { body: "query FetchTypeDefinitionsQuery($where: String, $limit: Int, $offset: Int) {\n typeDefinitions(where: $where, limit: $limit, offset: $offset) {\n results {\n fieldDefinitions {\n type {\n name\n ... on SetType {\n elementType {\n name\n ... on EnumType {\n values {\n key\n label\n }\n }\n ... on LocalizedEnumType {\n values {\n key\n labelAllLocales {\n value\n locale\n }\n }\n }\n }\n }\n ... on EnumType {\n values {\n key\n label\n }\n }\n ... on LocalizedEnumType {\n values {\n key\n labelAllLocales {\n value\n locale\n }\n }\n }\n ... on ReferenceType {\n referenceTypeId\n }\n }\n name\n labelAllLocales {\n value\n locale\n }\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
5130
5136
|
var customizableResources$1 = ['asset', 'category', 'channel', 'customer', 'order', 'discount-code', 'cart-discount', 'inventory-entry', 'line-item', 'custom-line-item', 'product-price', 'payment', 'payment-interface-interaction', 'shopping-list', 'shopping-list-text-line-item', 'standalone-price', 'review'];
|
|
5131
5137
|
var CustomFieldDefinitionsConnector = /*#__PURE__*/function (_Component) {
|
|
5132
5138
|
_inherits(CustomFieldDefinitionsConnector, _Component);
|
|
5133
|
-
var _super = _createSuper$
|
|
5139
|
+
var _super = _createSuper$5(CustomFieldDefinitionsConnector);
|
|
5134
5140
|
function CustomFieldDefinitionsConnector() {
|
|
5135
5141
|
_classCallCheck(this, CustomFieldDefinitionsConnector);
|
|
5136
5142
|
return _super.apply(this, arguments);
|
|
@@ -5305,8 +5311,8 @@ var createEmptyCustomFields = function createEmptyCustomFields(typeDefinition) {
|
|
|
5305
5311
|
};
|
|
5306
5312
|
};
|
|
5307
5313
|
|
|
5308
|
-
function _createSuper$
|
|
5309
|
-
function _isNativeReflectConstruct$
|
|
5314
|
+
function _createSuper$4(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$4(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
5315
|
+
function _isNativeReflectConstruct$4() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
5310
5316
|
var FetchTypeDefinitionsWithNamesQuery = { kind: "Document", definitions: [{ kind: "OperationDefinition", operation: "query", name: { kind: "Name", value: "FetchTypeDefinitionsWithNamesQuery" }, variableDefinitions: [{ kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "where" } }, type: { kind: "NamedType", name: { kind: "Name", value: "String" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "limit" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }, { kind: "VariableDefinition", variable: { kind: "Variable", name: { kind: "Name", value: "offset" } }, type: { kind: "NamedType", name: { kind: "Name", value: "Int" } }, directives: [] }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "typeDefinitions" }, arguments: [{ kind: "Argument", name: { kind: "Name", value: "where" }, value: { kind: "Variable", name: { kind: "Name", value: "where" } } }, { kind: "Argument", name: { kind: "Name", value: "limit" }, value: { kind: "Variable", name: { kind: "Name", value: "limit" } } }, { kind: "Argument", name: { kind: "Name", value: "offset" }, value: { kind: "Variable", name: { kind: "Name", value: "offset" } } }], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "results" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "fieldDefinitions" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "required" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "type" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "ReferenceType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "referenceTypeId" }, arguments: [], directives: [] }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "SetType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "elementType" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "ReferenceType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "referenceTypeId" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "label" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "LocalizedEnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "LocalizedEnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }, { kind: "InlineFragment", typeCondition: { kind: "NamedType", name: { kind: "Name", value: "EnumType" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "values" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "key" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "label" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }] } }] } }, { kind: "Field", name: { kind: "Name", value: "name" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "labelAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "inputHint" }, arguments: [], directives: [] }] } }] } }] } }] } }], loc: { start: 0, end: 1445, source: { body: "query FetchTypeDefinitionsWithNamesQuery(\n $where: String\n $limit: Int\n $offset: Int\n) {\n typeDefinitions(where: $where, limit: $limit, offset: $offset) {\n results {\n id\n key\n nameAllLocales {\n value\n locale\n }\n fieldDefinitions {\n required\n type {\n name\n ... on ReferenceType {\n referenceTypeId\n }\n ... on SetType {\n elementType {\n name\n ... on ReferenceType {\n referenceTypeId\n name\n }\n ... on EnumType {\n values {\n key\n label\n }\n name\n }\n ... on LocalizedEnumType {\n values {\n key\n labelAllLocales {\n locale\n value\n }\n }\n }\n }\n }\n ... on LocalizedEnumType {\n values {\n key\n labelAllLocales {\n locale\n value\n }\n }\n }\n ... on EnumType {\n values {\n key\n label\n }\n name\n }\n }\n name\n labelAllLocales {\n value\n locale\n }\n inputHint\n }\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
5311
5317
|
var customizableResources = ['asset', 'address', 'business-unit', 'category', 'channel', 'customer', 'order', 'store', 'discount-code', 'inventory-entry', 'line-item', 'custom-line-item', 'product-price', 'payment', 'payment-interface-interaction', 'shopping-list', 'shopping-list-text-line-item', 'standalone-price', 'review', 'cart-discount', 'product-selection'];
|
|
5312
5318
|
var emptyTypeDefinitions = {
|
|
@@ -5316,7 +5322,7 @@ var emptyTypeDefinitions = {
|
|
|
5316
5322
|
};
|
|
5317
5323
|
var CustomFieldTypeDefinitionsConnector = /*#__PURE__*/function (_Component) {
|
|
5318
5324
|
_inherits(CustomFieldTypeDefinitionsConnector, _Component);
|
|
5319
|
-
var _super = _createSuper$
|
|
5325
|
+
var _super = _createSuper$4(CustomFieldTypeDefinitionsConnector);
|
|
5320
5326
|
function CustomFieldTypeDefinitionsConnector() {
|
|
5321
5327
|
_classCallCheck(this, CustomFieldTypeDefinitionsConnector);
|
|
5322
5328
|
return _super.apply(this, arguments);
|
|
@@ -7274,84 +7280,6 @@ function CustomNestedFieldInput(props) {
|
|
|
7274
7280
|
}
|
|
7275
7281
|
CustomNestedFieldInput.displayName = 'CustomNestedFieldInput';
|
|
7276
7282
|
|
|
7277
|
-
function _createSuper$5(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$5(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
7278
|
-
function _isNativeReflectConstruct$5() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
7279
|
-
var isEmptyChildren = function isEmptyChildren(children) {
|
|
7280
|
-
return Children.count(children) === 0;
|
|
7281
|
-
};
|
|
7282
|
-
var Match = /*#__PURE__*/function (_PureComponent) {
|
|
7283
|
-
_inherits(Match, _PureComponent);
|
|
7284
|
-
var _super = _createSuper$5(Match);
|
|
7285
|
-
function Match() {
|
|
7286
|
-
_classCallCheck(this, Match);
|
|
7287
|
-
return _super.apply(this, arguments);
|
|
7288
|
-
}
|
|
7289
|
-
_createClass(Match, [{
|
|
7290
|
-
key: "render",
|
|
7291
|
-
value: function render() {
|
|
7292
|
-
if (this.props.isTouched && this.props.hasError) {
|
|
7293
|
-
if (this.props.component) return /*#__PURE__*/createElement(this.props.component);
|
|
7294
|
-
if (this.props.children && !isEmptyChildren(this.props.children)) return Children.only(this.props.children);
|
|
7295
|
-
}
|
|
7296
|
-
return null;
|
|
7297
|
-
}
|
|
7298
|
-
}]);
|
|
7299
|
-
return Match;
|
|
7300
|
-
}(PureComponent);
|
|
7301
|
-
Match.displayName = 'ValidationErrorMatch';
|
|
7302
|
-
|
|
7303
|
-
function _createSuper$4(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$4(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
7304
|
-
function _isNativeReflectConstruct$4() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
7305
|
-
var hasUnknownChildren = function hasUnknownChildren(children) {
|
|
7306
|
-
var _context;
|
|
7307
|
-
return _someInstanceProperty(_context = Children.toArray(children)).call(_context, function (child) {
|
|
7308
|
-
return child.type.displayName !== Match.displayName;
|
|
7309
|
-
});
|
|
7310
|
-
};
|
|
7311
|
-
var hasError = function hasError(errors, rule) {
|
|
7312
|
-
return Boolean(errors[rule]);
|
|
7313
|
-
};
|
|
7314
|
-
var Switch = /*#__PURE__*/function (_PureComponent) {
|
|
7315
|
-
_inherits(Switch, _PureComponent);
|
|
7316
|
-
var _super = _createSuper$4(Switch);
|
|
7317
|
-
function Switch() {
|
|
7318
|
-
_classCallCheck(this, Switch);
|
|
7319
|
-
return _super.apply(this, arguments);
|
|
7320
|
-
}
|
|
7321
|
-
_createClass(Switch, [{
|
|
7322
|
-
key: "componentDidMount",
|
|
7323
|
-
value: function componentDidMount() {
|
|
7324
|
-
/**
|
|
7325
|
-
* NOTE:
|
|
7326
|
-
* The `<ValidationError.Switch>` only works with `<ValidationError.Match>` as its children.
|
|
7327
|
-
*/
|
|
7328
|
-
!!hasUnknownChildren(this.props.children) ? process.env.NODE_ENV !== "production" ? invariant(false, '@commercetools-local/core/src/validation-error/validation-error-switch: children can only be of type <ValidationError.Match>') : invariant(false) : void 0;
|
|
7329
|
-
}
|
|
7330
|
-
}, {
|
|
7331
|
-
key: "render",
|
|
7332
|
-
value: function render() {
|
|
7333
|
-
var _this = this;
|
|
7334
|
-
return _mapInstanceProperty(Children).call(Children, this.props.children, function (child) {
|
|
7335
|
-
return /*#__PURE__*/cloneElement(child, {
|
|
7336
|
-
isTouched: _this.props.isTouched,
|
|
7337
|
-
hasError: hasError(_this.props.errors, child.props.rule)
|
|
7338
|
-
});
|
|
7339
|
-
});
|
|
7340
|
-
}
|
|
7341
|
-
}]);
|
|
7342
|
-
return Switch;
|
|
7343
|
-
}(PureComponent);
|
|
7344
|
-
Switch.displayName = 'ValidationErrorSwitch';
|
|
7345
|
-
Switch.defaultProps = {
|
|
7346
|
-
errors: {},
|
|
7347
|
-
isTouched: false
|
|
7348
|
-
};
|
|
7349
|
-
|
|
7350
|
-
var ValidationError = {
|
|
7351
|
-
Switch: Switch,
|
|
7352
|
-
Match: Match
|
|
7353
|
-
};
|
|
7354
|
-
|
|
7355
7283
|
function ownKeys$Q(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
7356
7284
|
function _objectSpread$Q(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$Q(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$Q(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
7357
7285
|
var mergeSetItemsErrors = function mergeSetItemsErrors(errors) {
|
|
@@ -7367,19 +7295,11 @@ var CustomFieldErrors = function CustomFieldErrors(props) {
|
|
|
7367
7295
|
// but also after manually triggered form validation.
|
|
7368
7296
|
var didFormValidationFail = useDidFormValidationFail();
|
|
7369
7297
|
var errors = _Array$isArray(props.errors) ? mergeSetItemsErrors(props.errors) : props.errors;
|
|
7370
|
-
return jsxs(
|
|
7371
|
-
errors: errors,
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
children: jsx(ErrorMessage, {
|
|
7376
|
-
intlMessage: messages$J.required
|
|
7377
|
-
})
|
|
7378
|
-
}), jsx(ValidationError.Match, {
|
|
7379
|
-
rule: "duplicated",
|
|
7380
|
-
children: jsx(ErrorMessage, {
|
|
7381
|
-
intlMessage: messages$J.unique
|
|
7382
|
-
})
|
|
7298
|
+
return jsxs(Fragment, {
|
|
7299
|
+
children: [props.isTouched || didFormValidationFail && (errors === null || errors === void 0 ? void 0 : errors.missing) && jsx(ErrorMessage, {
|
|
7300
|
+
intlMessage: messages$J.required
|
|
7301
|
+
}), props.isTouched || didFormValidationFail && (errors === null || errors === void 0 ? void 0 : errors.duplicated) && jsx(ErrorMessage, {
|
|
7302
|
+
intlMessage: messages$J.unique
|
|
7383
7303
|
})]
|
|
7384
7304
|
});
|
|
7385
7305
|
};
|
|
@@ -7896,6 +7816,8 @@ var NestedAttributeModalPage = function NestedAttributeModalPage(props) {
|
|
|
7896
7816
|
var _useIntl3 = useIntl(),
|
|
7897
7817
|
formatMessage = _useIntl3.formatMessage;
|
|
7898
7818
|
var formik = useFormikContext();
|
|
7819
|
+
var _useTheme = useTheme(),
|
|
7820
|
+
isNewTheme = _useTheme.isNewTheme;
|
|
7899
7821
|
var confirmationModal = useModalState();
|
|
7900
7822
|
var nestingLevel = useContext(NestingLevelContext);
|
|
7901
7823
|
var handleClose = function handleClose() {
|
|
@@ -7906,7 +7828,7 @@ var NestedAttributeModalPage = function NestedAttributeModalPage(props) {
|
|
|
7906
7828
|
confirmationModal.closeModal();
|
|
7907
7829
|
props.onClose();
|
|
7908
7830
|
};
|
|
7909
|
-
var columnsTemplate = nestingLevel === 1 ? "repeat(2, ".concat(customProperties.constraint11, ")") : nestingLevel === 5 ? "".concat(customProperties.constraint10) : "repeat(2, ".concat(customProperties.constraint10, ")");
|
|
7831
|
+
var columnsTemplate = isNewTheme ? "".concat(customProperties.constraint15) : nestingLevel === 1 ? "repeat(2, ".concat(customProperties.constraint11, ")") : nestingLevel === 5 ? "".concat(customProperties.constraint10) : "repeat(2, ".concat(customProperties.constraint10, ")");
|
|
7910
7832
|
return jsxs(Fragment, {
|
|
7911
7833
|
children: [jsx(CustomFormModalPage, {
|
|
7912
7834
|
isOpen: props.isOpen,
|
|
@@ -7925,13 +7847,15 @@ var NestedAttributeModalPage = function NestedAttributeModalPage(props) {
|
|
|
7925
7847
|
onClose: handleClose,
|
|
7926
7848
|
shouldDelayOnClose: false,
|
|
7927
7849
|
title: props.title,
|
|
7928
|
-
children:
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
|
|
7850
|
+
children: jsx(PageContentNarrow, {
|
|
7851
|
+
children: props.isOpen && jsx(Grid, {
|
|
7852
|
+
gridTemplateColumns: columnsTemplate,
|
|
7853
|
+
gridGap: customProperties.spacingM,
|
|
7854
|
+
children: jsx(ProductAttributes, {
|
|
7855
|
+
isDisabled: props.isDisabled,
|
|
7856
|
+
isReadOnly: props.isReadOnly,
|
|
7857
|
+
attributeDefinitions: props.productType.attributeDefinitions
|
|
7858
|
+
})
|
|
7935
7859
|
})
|
|
7936
7860
|
})
|
|
7937
7861
|
}), jsx(DropChangesConfirmation, {
|
|
@@ -8732,7 +8656,8 @@ var CustomerGroupPickerInput = function CustomerGroupPickerInput(_ref) {
|
|
|
8732
8656
|
onBlur = _ref.onBlur,
|
|
8733
8657
|
value = _ref.value,
|
|
8734
8658
|
hasError = _ref.hasError,
|
|
8735
|
-
onError = _ref.onError
|
|
8659
|
+
onError = _ref.onError,
|
|
8660
|
+
placeholder = _ref.placeholder;
|
|
8736
8661
|
var _useIntl = useIntl(),
|
|
8737
8662
|
formatMessage = _useIntl.formatMessage;
|
|
8738
8663
|
var variables = useMemo(function () {
|
|
@@ -8812,7 +8737,7 @@ var CustomerGroupPickerInput = function CustomerGroupPickerInput(_ref) {
|
|
|
8812
8737
|
children: jsx(AsyncSelectInput, {
|
|
8813
8738
|
id: name,
|
|
8814
8739
|
name: name,
|
|
8815
|
-
placeholder: formatMessage(messages$t.placeholder),
|
|
8740
|
+
placeholder: placeholder !== null && placeholder !== void 0 ? placeholder : formatMessage(messages$t.placeholder),
|
|
8816
8741
|
loadOptions: loadOptionsDebounced,
|
|
8817
8742
|
defaultOptions: true,
|
|
8818
8743
|
showOptionGroupDivider: true,
|
|
@@ -10482,7 +10407,6 @@ var RESOURCES_WITH_PLATFORM_LIMITS = {
|
|
|
10482
10407
|
shippingMethods: 'shippingMethods',
|
|
10483
10408
|
carts: 'carts'
|
|
10484
10409
|
};
|
|
10485
|
-
var CUSTOMER_SUPPORT_LINK = 'https://jira.commercetools.com/servicedesk/customer/portal/1';
|
|
10486
10410
|
|
|
10487
10411
|
function ownKeys$A(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
10488
10412
|
function _objectSpread$A(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys$A(Object(source), !0)).call(_context, function (key) { _defineProperty(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys$A(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
@@ -10596,26 +10520,26 @@ function _objectSpread$z(target) { for (var i = 1; i < arguments.length; i++) {
|
|
|
10596
10520
|
var getCustomerSupportLink$1 = function getCustomerSupportLink(msg) {
|
|
10597
10521
|
return jsx(Link, {
|
|
10598
10522
|
isExternal: true,
|
|
10599
|
-
to:
|
|
10523
|
+
to: SUPPORT_PORTAL_URL,
|
|
10600
10524
|
children: msg
|
|
10601
10525
|
});
|
|
10602
10526
|
};
|
|
10603
10527
|
var PlatformLimitWarningNotification = function PlatformLimitWarningNotification(_ref) {
|
|
10604
10528
|
var resource = _ref.resource,
|
|
10605
10529
|
limit = _ref.limit;
|
|
10606
|
-
return
|
|
10607
|
-
|
|
10608
|
-
children:
|
|
10609
|
-
|
|
10610
|
-
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
|
|
10614
|
-
|
|
10615
|
-
|
|
10616
|
-
}
|
|
10617
|
-
}
|
|
10618
|
-
})
|
|
10530
|
+
return jsx(ContentNotification, {
|
|
10531
|
+
type: "warning",
|
|
10532
|
+
children: jsx(FormattedMessage, _objectSpread$z(_objectSpread$z({}, messages$m[resource]), {}, {
|
|
10533
|
+
values: {
|
|
10534
|
+
limit: limit,
|
|
10535
|
+
customersupport: getCustomerSupportLink$1
|
|
10536
|
+
},
|
|
10537
|
+
children: function children(message) {
|
|
10538
|
+
return jsx("div", {
|
|
10539
|
+
children: message
|
|
10540
|
+
});
|
|
10541
|
+
}
|
|
10542
|
+
}))
|
|
10619
10543
|
});
|
|
10620
10544
|
};
|
|
10621
10545
|
PlatformLimitWarningNotification.displayName = 'PlatformLimitWarningNotification';
|
|
@@ -10653,7 +10577,7 @@ function _objectSpread$y(target) { for (var i = 1; i < arguments.length; i++) {
|
|
|
10653
10577
|
var getCustomerSupportLink = function getCustomerSupportLink(msg) {
|
|
10654
10578
|
return jsx(Link, {
|
|
10655
10579
|
isExternal: true,
|
|
10656
|
-
to:
|
|
10580
|
+
to: SUPPORT_PORTAL_URL,
|
|
10657
10581
|
children: msg
|
|
10658
10582
|
}, msg);
|
|
10659
10583
|
};
|
|
@@ -13018,6 +12942,10 @@ function validatedInput(InnerComponent, validators) {
|
|
|
13018
12942
|
if (onChange && triggerUpdate) onChange(event);
|
|
13019
12943
|
_this.conditionalSetValidStatus(nextValidStatus);
|
|
13020
12944
|
};
|
|
12945
|
+
/**
|
|
12946
|
+
* Only triggers when there is a value, but its not valid
|
|
12947
|
+
* so it must be an invalid numeric value
|
|
12948
|
+
*/
|
|
13021
12949
|
_this.handleInvalid = function () {
|
|
13022
12950
|
var nextValidStatus = _objectSpread$8({}, _this.state.validStatus);
|
|
13023
12951
|
if (has(nextValidStatus, 'numeric')) {
|
|
@@ -13258,7 +13186,6 @@ var MultiValueSelectorDropdown = function MultiValueSelectorDropdown(props) {
|
|
|
13258
13186
|
};
|
|
13259
13187
|
MultiValueSelectorDropdown.displayName = 'MultiValueSelectorDropdown';
|
|
13260
13188
|
var MultiValueSearchInput = function MultiValueSearchInput(props) {
|
|
13261
|
-
var multiValueSearchInputRef = useRef(null);
|
|
13262
13189
|
var _useState = useState(''),
|
|
13263
13190
|
_useState2 = _slicedToArray(_useState, 2),
|
|
13264
13191
|
value = _useState2[0],
|
|
@@ -13278,8 +13205,9 @@ var MultiValueSearchInput = function MultiValueSearchInput(props) {
|
|
|
13278
13205
|
var clearRunningTooltipTimer = function clearRunningTooltipTimer() {
|
|
13279
13206
|
if (tooltipTimeoutHandler) clearTimeout(tooltipTimeoutHandler);
|
|
13280
13207
|
};
|
|
13281
|
-
var handleInputChange = function handleInputChange(
|
|
13282
|
-
var
|
|
13208
|
+
var handleInputChange = function handleInputChange(event) {
|
|
13209
|
+
var _event$target$value = event.target.value,
|
|
13210
|
+
inputValue = _event$target$value === void 0 ? '' : _event$target$value;
|
|
13283
13211
|
setValue(inputValue);
|
|
13284
13212
|
var multiInput = _trimInstanceProperty(inputValue).call(inputValue).split(' ');
|
|
13285
13213
|
setMultiValue(multiInput);
|
|
@@ -13300,7 +13228,8 @@ var MultiValueSearchInput = function MultiValueSearchInput(props) {
|
|
|
13300
13228
|
setValue('');
|
|
13301
13229
|
setMultiValue([]);
|
|
13302
13230
|
};
|
|
13303
|
-
var handleSubmit = function handleSubmit(
|
|
13231
|
+
var handleSubmit = function handleSubmit() {
|
|
13232
|
+
var inputValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
13304
13233
|
clearInputValues();
|
|
13305
13234
|
clearRunningTooltipTimer();
|
|
13306
13235
|
setIsTooltipVisible(false);
|
|
@@ -13333,16 +13262,13 @@ var MultiValueSearchInput = function MultiValueSearchInput(props) {
|
|
|
13333
13262
|
className: styles$1.container,
|
|
13334
13263
|
children: [jsx(Spacings.Stack, {
|
|
13335
13264
|
size: "s",
|
|
13336
|
-
children: jsx(
|
|
13337
|
-
|
|
13338
|
-
disabled: props.isDisabled,
|
|
13339
|
-
initialValue: value,
|
|
13340
|
-
throttleMS: 0,
|
|
13265
|
+
children: jsx(SearchTextInput, {
|
|
13266
|
+
isDisabled: props.isDisabled,
|
|
13341
13267
|
placeholder: props.placeholder,
|
|
13342
|
-
onSubmit: handleSubmit,
|
|
13343
13268
|
onChange: handleInputChange,
|
|
13344
|
-
|
|
13345
|
-
|
|
13269
|
+
onReset: handleClearSearchField,
|
|
13270
|
+
onSubmit: handleSubmit,
|
|
13271
|
+
value: value
|
|
13346
13272
|
})
|
|
13347
13273
|
}), jsx(MultiValueSelectorDropdown, {
|
|
13348
13274
|
isOpen: isTooltipVisible,
|
|
@@ -14396,4 +14322,4 @@ function withPendingRequests() {
|
|
|
14396
14322
|
|
|
14397
14323
|
var CategorySearchPickerOptionFragment = { kind: "Document", definitions: [{ kind: "FragmentDefinition", name: { kind: "Name", value: "CategorySearchPickerOptionFragment" }, typeCondition: { kind: "NamedType", name: { kind: "Name", value: "CategorySearch" } }, directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "id" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "externalId" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "slugAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }, { kind: "Field", name: { kind: "Name", value: "parent" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }, { kind: "Field", name: { kind: "Name", value: "ancestors" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "nameAllLocales" }, arguments: [], directives: [], selectionSet: { kind: "SelectionSet", selections: [{ kind: "Field", name: { kind: "Name", value: "locale" }, arguments: [], directives: [] }, { kind: "Field", name: { kind: "Name", value: "value" }, arguments: [], directives: [] }] } }] } }] } }], loc: { start: 0, end: 685, source: { body: "query SearchCategoryReference($locale: Locale!, $text: String!) {\n categories: categoryAutocomplete(locale: $locale, text: $text) {\n results {\n ...CategorySearchPickerOptionFragment\n }\n }\n}\n\nquery FetchCategoriesByIds($where: String!) {\n categories(where: $where) {\n results {\n id\n nameAllLocales {\n locale\n value\n }\n }\n }\n}\n\nfragment CategorySearchPickerOptionFragment on CategorySearch {\n id\n externalId\n nameAllLocales {\n locale\n value\n }\n slugAllLocales {\n locale\n value\n }\n parent {\n nameAllLocales {\n locale\n value\n }\n }\n ancestors {\n nameAllLocales {\n locale\n value\n }\n }\n}\n", name: "GraphQL request", locationOffset: { line: 1, column: 1 } } } };
|
|
14398
14324
|
|
|
14399
|
-
export { booleanField as BooleanField, BusinessUnitSelectField, BusinessUnitSelectInput, Button, ButtonCancel, ButtonConfirm, ButtonSave, CartDiscountReferenceSearch, CategoryReferenceSearch, CategorySearchPickerOptionFragment, CenteredLoadingSpinner, ChannelPickerInput, CountriesPicker, customFieldDefinitionsConnector as CustomFieldDefinitionsConnector, customFieldTypeDefinitionsConnector as CustomFieldTypeDefinitionsConnector, CustomFields, CustomFieldsErrorTextNotification, CustomerGroupPickerInput, DefaultPageSizes, Divider, EMAIL_REGEX, FileInput, FormattedDateTime$1 as FormattedDateTime, LabelRange, MissingValueField, MultiValueSearchInput, numericFormatInput as NumericFormatInput, PRECISION_TYPES, pimIndexerProvider as PimIndexerProvider, ProductAttributeInput, ProductAttributes, ProductPickerInput, ProductSelectionsPicker as ProductSelectionPicker, RequestCache, RequiredIndicator, ScrollToFieldError, SearchInput$1 as SearchInput, SelectableFieldSearchInput, StoreSelectField, StoreSelectInput, ThrottledField, VALIDATOR_INTEGER, VALIDATOR_NUMERIC, VALIDATOR_REQUIRED,
|
|
14325
|
+
export { booleanField as BooleanField, BusinessUnitSelectField, BusinessUnitSelectInput, Button, ButtonCancel, ButtonConfirm, ButtonSave, CartDiscountReferenceSearch, CategoryReferenceSearch, CategorySearchPickerOptionFragment, CenteredLoadingSpinner, ChannelPickerInput, CountriesPicker, customFieldDefinitionsConnector as CustomFieldDefinitionsConnector, customFieldTypeDefinitionsConnector as CustomFieldTypeDefinitionsConnector, CustomFields, CustomFieldsErrorTextNotification, CustomerGroupPickerInput, DefaultPageSizes, Divider, EMAIL_REGEX, FileInput, FormattedDateTime$1 as FormattedDateTime, LabelRange, MissingValueField, MultiValueSearchInput, numericFormatInput as NumericFormatInput, PRECISION_TYPES, pimIndexerProvider as PimIndexerProvider, ProductAttributeInput, ProductAttributes, ProductPickerInput, ProductSelectionsPicker as ProductSelectionPicker, RequestCache, RequiredIndicator, ScrollToFieldError, SearchInput$1 as SearchInput, SelectableFieldSearchInput, StoreSelectField, StoreSelectInput, ThrottledField, VALIDATOR_INTEGER, VALIDATOR_NUMERIC, VALIDATOR_REQUIRED, WithPimIndexer, allowedProperties, and, attributesMapToNameValuePairs, base64ToString, messages$7 as booleanMessages, buildSearchQuery, messages$q as businessRoleMessages, businessRoleKeys as businessRoles, capitalizeFirst, clone, coerceToInteger, computedProperties, convertApolloNetworkStatusToLoadingState, convertApolloQueryDataToConnectorData, convertProductSelectionFromGraphQl, convertRatioToPercentage, createGraphQlUpdateActions, createNextSortDefinition, createReducer, createResourceReducer, handlers$4 as customFieldDefinitionsMockHanders, customFields as customFieldsTransformer, dateTransformer$1 as dateTransformer, exact, exists, extractErrorFromGraphQlResponse, filterCustomTypeUpdateActionValues, filterDataAttributes, filterEmptyValues, formatCustomField, formatCustomerAddress, formatCustomerName, formatDateRangeValue, formatDateTime$1 as formatDateTime, formatDiscount, formatMoney$1 as formatMoney, formatMoneyRangeValue, formatMoneyValue, formatPercentage, formatAttribute as formatProductAttribute, getAncestors, getAttributeValueByType, getAttributeValueType, getBulkNotification, getCategoryLevel, getCountsFromBulkSummary, getDiscountValue, getDisplayName, getFractionedAmount, getIndexesOfInvalidValues, getMinimumPricesByCurrencyCode, getNetUnitPrice, getPathName, getPrefixSearchBounds, getPriceChannelName, getReferenceTypeId, getSelectedPrice, getTimeZoneId, getTimeZoneLabel, getTypeNameOfType, graphqlCategoryLevelTransformer, dateTransformer as graphqlDateTransformer, missingLocaleTransformer as graphqlMissingLocaleTransformer, missingTransformer as graphqlMissingTransformer, numberTransformer as graphqlNumberTransformer, graphqlQueryBuilder, referenceTransformer as graphqlReferenceTransformer, textTransformer as graphqlTextTransformer, hasInvalidInputError, hasSemanticError, injectCustomerGroupsPlatformLimits, injectCustomersPlatformLimits, injectDataTablePaginationState, injectModalState$1 as injectModalState, injectNotifications, injectPimIndexer, injectShippingMethodsPlatformLimits, injectStorage, injectTaxCategoriesPlatformLimits, injectModalState as injectToggleState, injectZonesPlatformLimits, isEmptyFilter as isEmpty, isEmptyValue, isUUID, isValidISODate, isValidISODateTime, isValidISOTime, keepDisplayName, mapTimeZonesToOptions, minusify, messages$6 as missingValueMessages, nameValuePairsToMap, normalizeProductSettings, not, omitDeep, omitSetsOfSets, or, commonPickerMessages as pickerMessages, handlers as platformLimitsMockHandlers, handlers$5 as productSelectionsFetcherMockHandler, handlers$6 as productSelectionsTotalFetcherMockHandler, range, reorderArrayItems, resolveStatusType, safelyAddFallback, sanitize, searchCategories, messages$E as searchInputMessages, setDisplayName, setToArray, shallowEqual, shouldUpdateAttributeInput, slugify, sortDataByIdsArray, sortRequiresLanguage, splitVariantAttributesByConstraint, handlers$7 as storesListConnectorMockHandlers, stringToBase64, swapArrayItems, trackMenuClick, transformAllToProperNounCase, transformCustomFieldsRawToCustomFields, transformLocalizedFieldsForCategory, truncate, unique, uniqueObjects, handlers$2 as useBusinessUnitsListFetcherMockHandler, useCachedCategoryOptions, useCustomerGroupsPlatformLimits, useCustomersPlatformLimits, useDebouncedPromiseCallback, useFormatLocalizedFieldToString, useLocalizedKeyFallback, usePendingRequests, usePersistedTableConfiguration, usePimIndexer, usePrevious, useProductSelectionsFetcher, useProductSelectionsTotalFetcher, useRoleNotificationEffect, useShippingMethodsLimits as useShippingMethodsPlatformLimits, useStorage, useStoreKeysInDataFences, useStoresListFetcher, useTaxCategoriesLimits as useTaxCategoriesPlatformLimits, handlers$1 as useTotalNumberOfBusinessUnitsFetcherHandlers, useTotalNumberOfStoresFetcher, handlers$3 as useTotalNumberOfStoresFetcherHandlers, useTracking, useTracking as useTrackingContext, useTrackingShared, validateFilter$2 as validateCustomField, validations as validateCustomFields, validateFilter$1 as validateDate, validateMultiOptionEnum, validateFilter as validateNumber, validateSingleOptionEnum, validateText, validatedInput, messages$J as validationMessages, withPendingRequests, withProps, withRedirectTo, withoutEmptyErrorsByField, wrapDisplayName };
|