Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
321 lines
14 KiB
JavaScript
321 lines
14 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var _rollupPluginBabelHelpers = require('../_rollupPluginBabelHelpers-8f9a8751.js');
|
|
var createComponent = require('reakit-system/createComponent');
|
|
var createHook = require('reakit-system/createHook');
|
|
require('reakit-utils/shallowEqual');
|
|
var React = require('react');
|
|
var useForkRef = require('reakit-utils/useForkRef');
|
|
require('reakit-utils/isButton');
|
|
var reakitWarning = require('reakit-warning');
|
|
var useLiveRef = require('reakit-utils/useLiveRef');
|
|
require('reakit-utils/isSelfTarget');
|
|
require('reakit-utils/useIsomorphicEffect');
|
|
require('reakit-utils/hasFocusWithin');
|
|
require('reakit-utils/isPortalEvent');
|
|
require('reakit-utils/dom');
|
|
require('reakit-utils/tabbable');
|
|
require('../Role/Role.js');
|
|
require('../Tabbable/Tabbable.js');
|
|
var useUpdateEffect = require('reakit-utils/useUpdateEffect');
|
|
require('reakit-system/useCreateElement');
|
|
require('reakit-utils/getDocument');
|
|
require('reakit-utils/fireBlurEvent');
|
|
require('reakit-utils/fireKeyboardEvent');
|
|
require('reakit-utils/canUseDOM');
|
|
require('reakit-utils/getNextActiveElementOnBlur');
|
|
require('../reverse-4756a49e.js');
|
|
require('../getCurrentId-eade2850.js');
|
|
require('../findEnabledItemById-03112678.js');
|
|
require('../__keys-3b597476.js');
|
|
require('../userFocus-0afea51a.js');
|
|
var Composite_Composite = require('../Composite/Composite.js');
|
|
var __keys = require('../__keys-a7141fdd.js');
|
|
var getMenuId = require('../getMenuId-ae301adb.js');
|
|
|
|
function getControls(baseId, ariaControls) {
|
|
var menuId = getMenuId.getMenuId(baseId);
|
|
|
|
if (ariaControls) {
|
|
return ariaControls + " " + menuId;
|
|
}
|
|
|
|
return menuId;
|
|
}
|
|
|
|
function getAutocomplete(options) {
|
|
if (options.list && options.inline) return "both";
|
|
if (options.list) return "list";
|
|
if (options.inline) return "inline";
|
|
return "none";
|
|
}
|
|
|
|
function isFirstItemAutoSelected(items, autoSelect, currentId) {
|
|
if (!autoSelect) return false;
|
|
var firstItem = items.find(function (item) {
|
|
return !item.disabled;
|
|
});
|
|
return currentId && (firstItem === null || firstItem === void 0 ? void 0 : firstItem.id) === currentId;
|
|
}
|
|
|
|
function hasCompletionString(inputValue, currentValue) {
|
|
return !!currentValue && currentValue.length > inputValue.length && currentValue.toLowerCase().indexOf(inputValue.toLowerCase()) === 0;
|
|
}
|
|
|
|
function getCompletionString(inputValue, currentValue) {
|
|
if (!currentValue) return "";
|
|
var index = currentValue.toLowerCase().indexOf(inputValue.toLowerCase());
|
|
return currentValue.slice(index + inputValue.length);
|
|
}
|
|
|
|
function useValue(options) {
|
|
return React.useMemo(function () {
|
|
if (!options.inline) {
|
|
return options.inputValue;
|
|
}
|
|
|
|
var firstItemAutoSelected = isFirstItemAutoSelected(options.items, options.autoSelect, options.currentId);
|
|
|
|
if (firstItemAutoSelected) {
|
|
if (hasCompletionString(options.inputValue, options.currentValue)) {
|
|
return options.inputValue + getCompletionString(options.inputValue, options.currentValue);
|
|
}
|
|
|
|
return options.inputValue;
|
|
}
|
|
|
|
return options.currentValue || options.inputValue;
|
|
}, [options.inline, options.inputValue, options.autoSelect, options.items, options.currentId, options.currentValue]);
|
|
}
|
|
|
|
function getFirstEnabledItemId(items) {
|
|
var _items$find;
|
|
|
|
return (_items$find = items.find(function (item) {
|
|
return !item.disabled;
|
|
})) === null || _items$find === void 0 ? void 0 : _items$find.id;
|
|
}
|
|
|
|
var unstable_useCombobox = createHook.createHook({
|
|
name: "Combobox",
|
|
compose: Composite_Composite.useComposite,
|
|
keys: __keys.COMBOBOX_KEYS,
|
|
useOptions: function useOptions(_ref) {
|
|
var _ref$menuRole = _ref.menuRole,
|
|
menuRole = _ref$menuRole === void 0 ? "listbox" : _ref$menuRole,
|
|
_ref$hideOnEsc = _ref.hideOnEsc,
|
|
hideOnEsc = _ref$hideOnEsc === void 0 ? true : _ref$hideOnEsc,
|
|
options = _rollupPluginBabelHelpers._objectWithoutPropertiesLoose(_ref, ["menuRole", "hideOnEsc"]);
|
|
|
|
return _rollupPluginBabelHelpers._objectSpread2({
|
|
menuRole: menuRole,
|
|
hideOnEsc: hideOnEsc
|
|
}, options);
|
|
},
|
|
useProps: function useProps(options, _ref2) {
|
|
var htmlRef = _ref2.ref,
|
|
htmlOnKeyDown = _ref2.onKeyDown,
|
|
htmlOnKeyPress = _ref2.onKeyPress,
|
|
htmlOnChange = _ref2.onChange,
|
|
htmlOnClick = _ref2.onClick,
|
|
htmlOnBlur = _ref2.onBlur,
|
|
ariaControls = _ref2["aria-controls"],
|
|
htmlProps = _rollupPluginBabelHelpers._objectWithoutPropertiesLoose(_ref2, ["ref", "onKeyDown", "onKeyPress", "onChange", "onClick", "onBlur", "aria-controls"]);
|
|
|
|
var ref = React.useRef(null);
|
|
|
|
var _React$useReducer = React.useReducer(function () {
|
|
return {};
|
|
}, {}),
|
|
updated = _React$useReducer[0],
|
|
update = _React$useReducer[1];
|
|
|
|
var onKeyDownRef = useLiveRef.useLiveRef(htmlOnKeyDown);
|
|
var onKeyPressRef = useLiveRef.useLiveRef(htmlOnKeyPress);
|
|
var onChangeRef = useLiveRef.useLiveRef(htmlOnChange);
|
|
var onClickRef = useLiveRef.useLiveRef(htmlOnClick);
|
|
var onBlurRef = useLiveRef.useLiveRef(htmlOnBlur);
|
|
var value = useValue(options);
|
|
var hasInsertedTextRef = React.useRef(false); // Completion string
|
|
|
|
React.useEffect(function () {
|
|
if (!options.inline) return;
|
|
if (!options.autoSelect) return;
|
|
if (!options.currentValue) return;
|
|
if (options.currentId !== getFirstEnabledItemId(options.items)) return;
|
|
|
|
if (!hasCompletionString(options.inputValue, options.currentValue)) {
|
|
return;
|
|
}
|
|
|
|
var element = ref.current;
|
|
process.env.NODE_ENV !== "production" ? reakitWarning.warning(!element, "Can't auto select combobox because `ref` wasn't passed to the component", "See https://reakit.io/docs/combobox") : void 0;
|
|
element === null || element === void 0 ? void 0 : element.setSelectionRange(options.inputValue.length, options.currentValue.length);
|
|
}, [updated, options.inline, options.autoSelect, options.currentValue, options.inputValue, options.currentId, options.items]); // Auto select on type
|
|
|
|
useUpdateEffect.useUpdateEffect(function () {
|
|
if (options.autoSelect && options.items.length && hasInsertedTextRef.current) {
|
|
// If autoSelect is set to true and the last change was a text
|
|
// insertion, we want to automatically focus on the first suggestion.
|
|
// This effect will run both when inputValue changes and when items
|
|
// change so we can also catch async items.
|
|
options.setCurrentId(undefined);
|
|
} else {
|
|
// Without autoSelect, we'll always blur the combobox option and move
|
|
// focus onto the combobox input.
|
|
options.setCurrentId(null);
|
|
}
|
|
}, [options.items, options.inputValue, options.autoSelect, options.setCurrentId]);
|
|
var onKeyDown = React.useCallback(function (event) {
|
|
var _onKeyDownRef$current;
|
|
|
|
(_onKeyDownRef$current = onKeyDownRef.current) === null || _onKeyDownRef$current === void 0 ? void 0 : _onKeyDownRef$current.call(onKeyDownRef, event); // Resets the reference on key down so we can figure it out later on
|
|
// key press.
|
|
|
|
hasInsertedTextRef.current = false;
|
|
if (event.defaultPrevented) return;
|
|
|
|
if (event.key === "Escape" && options.hideOnEsc) {
|
|
var _options$hide;
|
|
|
|
(_options$hide = options.hide) === null || _options$hide === void 0 ? void 0 : _options$hide.call(options);
|
|
}
|
|
}, [options.hideOnEsc, options.hide]);
|
|
var onKeyPress = React.useCallback(function (event) {
|
|
var _onKeyPressRef$curren;
|
|
|
|
(_onKeyPressRef$curren = onKeyPressRef.current) === null || _onKeyPressRef$curren === void 0 ? void 0 : _onKeyPressRef$curren.call(onKeyPressRef, event); // onKeyPress will catch only printable character presses, so we skip
|
|
// text removal and paste.
|
|
|
|
hasInsertedTextRef.current = true;
|
|
}, []);
|
|
var onChange = React.useCallback(function (event) {
|
|
var _onChangeRef$current, _options$show, _options$setInputValu;
|
|
|
|
(_onChangeRef$current = onChangeRef.current) === null || _onChangeRef$current === void 0 ? void 0 : _onChangeRef$current.call(onChangeRef, event);
|
|
if (event.defaultPrevented) return;
|
|
(_options$show = options.show) === null || _options$show === void 0 ? void 0 : _options$show.call(options);
|
|
(_options$setInputValu = options.setInputValue) === null || _options$setInputValu === void 0 ? void 0 : _options$setInputValu.call(options, event.target.value);
|
|
update();
|
|
|
|
if (!options.autoSelect || !hasInsertedTextRef.current) {
|
|
var _options$setCurrentId;
|
|
|
|
// If autoSelect is not set or it's not an insertion of text, focus
|
|
// on the combobox input after changing the value.
|
|
(_options$setCurrentId = options.setCurrentId) === null || _options$setCurrentId === void 0 ? void 0 : _options$setCurrentId.call(options, null);
|
|
} else {
|
|
var _options$setCurrentId2;
|
|
|
|
// Selects first item
|
|
(_options$setCurrentId2 = options.setCurrentId) === null || _options$setCurrentId2 === void 0 ? void 0 : _options$setCurrentId2.call(options, undefined);
|
|
}
|
|
}, [options.show, options.autoSelect, options.setCurrentId, options.setInputValue]);
|
|
var onClick = React.useCallback(function (event) {
|
|
var _onClickRef$current, _options$setCurrentId3;
|
|
|
|
(_onClickRef$current = onClickRef.current) === null || _onClickRef$current === void 0 ? void 0 : _onClickRef$current.call(onClickRef, event);
|
|
if (event.defaultPrevented) return; // https://github.com/reakit/reakit/issues/808
|
|
|
|
if (!options.minValueLength || value.length >= options.minValueLength) {
|
|
var _options$show2;
|
|
|
|
(_options$show2 = options.show) === null || _options$show2 === void 0 ? void 0 : _options$show2.call(options);
|
|
}
|
|
|
|
(_options$setCurrentId3 = options.setCurrentId) === null || _options$setCurrentId3 === void 0 ? void 0 : _options$setCurrentId3.call(options, null);
|
|
options.setInputValue(value);
|
|
}, [options.show, options.setCurrentId, options.setInputValue, options.minValueLength, value]);
|
|
var onBlur = React.useCallback(function (event) {
|
|
var _onBlurRef$current;
|
|
|
|
(_onBlurRef$current = onBlurRef.current) === null || _onBlurRef$current === void 0 ? void 0 : _onBlurRef$current.call(onBlurRef, event);
|
|
if (event.defaultPrevented) return;
|
|
options.setInputValue(value);
|
|
}, [options.setInputValue, value]);
|
|
return _rollupPluginBabelHelpers._objectSpread2({
|
|
ref: useForkRef.useForkRef(ref, useForkRef.useForkRef(options.unstable_referenceRef, htmlRef)),
|
|
role: "combobox",
|
|
autoComplete: "off",
|
|
"aria-controls": getControls(options.baseId, ariaControls),
|
|
"aria-haspopup": options.menuRole,
|
|
"aria-expanded": options.visible,
|
|
"aria-autocomplete": getAutocomplete(options),
|
|
value: value,
|
|
onKeyDown: onKeyDown,
|
|
onKeyPress: onKeyPress,
|
|
onChange: onChange,
|
|
onClick: onClick,
|
|
onBlur: onBlur
|
|
}, htmlProps);
|
|
},
|
|
useComposeProps: function useComposeProps(options, _ref3) {
|
|
var onKeyUp = _ref3.onKeyUp,
|
|
htmlOnKeyDownCapture = _ref3.onKeyDownCapture,
|
|
htmlOnKeyDown = _ref3.onKeyDown,
|
|
htmlProps = _rollupPluginBabelHelpers._objectWithoutPropertiesLoose(_ref3, ["onKeyUp", "onKeyDownCapture", "onKeyDown"]);
|
|
|
|
var compositeHTMLProps = Composite_Composite.useComposite(options, htmlProps, true);
|
|
var onKeyDownCaptureRef = useLiveRef.useLiveRef(htmlOnKeyDownCapture);
|
|
var onKeyDownRef = useLiveRef.useLiveRef(htmlOnKeyDown);
|
|
var onKeyDownCapture = React.useCallback(function (event) {
|
|
var _onKeyDownCaptureRef$, _compositeHTMLProps$o;
|
|
|
|
(_onKeyDownCaptureRef$ = onKeyDownCaptureRef.current) === null || _onKeyDownCaptureRef$ === void 0 ? void 0 : _onKeyDownCaptureRef$.call(onKeyDownCaptureRef, event);
|
|
if (event.defaultPrevented) return;
|
|
|
|
if (options.menuRole !== "grid") {
|
|
// If menu is a one-dimensional list and there's an option with
|
|
// focus, we don't want Home/End and printable characters to perform
|
|
// actions on the option, only on the combobox input.
|
|
if (event.key === "Home") return;
|
|
if (event.key === "End") return;
|
|
}
|
|
|
|
if (event.key.length === 1) return; // Composite's onKeyDownCapture will proxy this event to the active
|
|
// item.
|
|
|
|
(_compositeHTMLProps$o = compositeHTMLProps.onKeyDownCapture) === null || _compositeHTMLProps$o === void 0 ? void 0 : _compositeHTMLProps$o.call(compositeHTMLProps, event);
|
|
}, [options.menuRole, compositeHTMLProps.onKeyDownCapture]);
|
|
var onKeyDown = React.useCallback(function (event) {
|
|
var _onKeyDownRef$current2, _compositeHTMLProps$o2;
|
|
|
|
(_onKeyDownRef$current2 = onKeyDownRef.current) === null || _onKeyDownRef$current2 === void 0 ? void 0 : _onKeyDownRef$current2.call(onKeyDownRef, event);
|
|
if (event.defaultPrevented) return;
|
|
var onlyInputHasFocus = options.currentId === null;
|
|
if (!onlyInputHasFocus) return; // Do not perform list actions when pressing horizontal arrow keys when
|
|
// focusing the combobox input while no option has focus.
|
|
|
|
if (event.key === "ArrowLeft") return;
|
|
if (event.key === "ArrowRight") return;
|
|
if (event.key === "Home") return;
|
|
if (event.key === "End") return;
|
|
|
|
if (!event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey && (event.key === "ArrowUp" || event.key === "ArrowDown" || event.key.length === 1)) {
|
|
var _options$show3;
|
|
|
|
// Up/Down arrow keys and printable characters should open the
|
|
// combobox popover.
|
|
(_options$show3 = options.show) === null || _options$show3 === void 0 ? void 0 : _options$show3.call(options);
|
|
}
|
|
|
|
(_compositeHTMLProps$o2 = compositeHTMLProps.onKeyDown) === null || _compositeHTMLProps$o2 === void 0 ? void 0 : _compositeHTMLProps$o2.call(compositeHTMLProps, event);
|
|
}, [options.currentId, options.show, compositeHTMLProps.onKeyDown]);
|
|
return _rollupPluginBabelHelpers._objectSpread2(_rollupPluginBabelHelpers._objectSpread2({}, compositeHTMLProps), {}, {
|
|
onKeyDownCapture: onKeyDownCapture,
|
|
onKeyDown: onKeyDown,
|
|
onKeyUp: onKeyUp
|
|
});
|
|
}
|
|
});
|
|
var unstable_Combobox = createComponent.createComponent({
|
|
as: "input",
|
|
memo: true,
|
|
useHook: unstable_useCombobox
|
|
});
|
|
|
|
exports.unstable_Combobox = unstable_Combobox;
|
|
exports.unstable_useCombobox = unstable_useCombobox;
|