@gechiui/components
Version:
UI components for GeChiUI.
135 lines (112 loc) • 3.5 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import { createElement } from "@gechiui/element";
/**
* External dependencies
*/
import { includes, debounce } from 'lodash';
import classnames from 'classnames';
/**
* GeChiUI dependencies
*/
import { createContext, useCallback, useLayoutEffect, useRef } from '@gechiui/element';
import { focus } from '@gechiui/dom';
/**
* Internal dependencies
*/
import { StyledWrapper } from './styles/disabled-styles';
const Context = createContext(false);
const {
Consumer,
Provider
} = Context;
/**
* Names of control nodes which qualify for disabled behavior.
*
* See WHATWG HTML Standard: 4.10.18.5: "Enabling and disabling form controls: the disabled attribute".
*
* @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#enabling-and-disabling-form-controls:-the-disabled-attribute
*
* @type {string[]}
*/
const DISABLED_ELIGIBLE_NODE_NAMES = ['BUTTON', 'FIELDSET', 'INPUT', 'OPTGROUP', 'OPTION', 'SELECT', 'TEXTAREA'];
/**
* @typedef OwnProps
* @property {string} [className] Classname for the disabled element.
* @property {import('react').ReactNode} children Children to disable.
* @property {boolean} [isDisabled=true] Whether to disable the children.
*/
/**
* @param {OwnProps & import('react').HTMLAttributes<HTMLDivElement>} props
* @return {JSX.Element} Element wrapping the children to disable them when isDisabled is true.
*/
function Disabled(_ref) {
let {
className,
children,
isDisabled = true,
...props
} = _ref;
/** @type {import('react').RefObject<HTMLDivElement>} */
const node = useRef(null);
const disable = () => {
if (!node.current) {
return;
}
focus.focusable.find(node.current).forEach(focusable => {
if (includes(DISABLED_ELIGIBLE_NODE_NAMES, focusable.nodeName)) {
focusable.setAttribute('disabled', '');
}
if (focusable.nodeName === 'A') {
focusable.setAttribute('tabindex', '-1');
}
const tabIndex = focusable.getAttribute('tabindex');
if (tabIndex !== null && tabIndex !== '-1') {
focusable.removeAttribute('tabindex');
}
if (focusable.hasAttribute('contenteditable')) {
focusable.setAttribute('contenteditable', 'false');
}
});
}; // Debounce re-disable since disabling process itself will incur
// additional mutations which should be ignored.
const debouncedDisable = useCallback(debounce(disable, undefined, {
leading: true
}), []);
useLayoutEffect(() => {
if (!isDisabled) {
return;
}
disable();
/** @type {MutationObserver | undefined} */
let observer;
if (node.current) {
observer = new window.MutationObserver(debouncedDisable);
observer.observe(node.current, {
childList: true,
attributes: true,
subtree: true
});
}
return () => {
if (observer) {
observer.disconnect();
}
debouncedDisable.cancel();
};
}, []);
if (!isDisabled) {
return createElement(Provider, {
value: false
}, children);
}
return createElement(Provider, {
value: true
}, createElement(StyledWrapper, _extends({
ref: node,
className: classnames(className, 'components-disabled')
}, props), children));
}
Disabled.Context = Context;
Disabled.Consumer = Consumer;
export default Disabled;
//# sourceMappingURL=index.js.map