one-click-accessibility/modules/scanner/assets/js/hooks/use-prevent-aria-hidden.js
Nirbhay Singh 63ed290ba7
Feature/app 2261 bulk alt manager (#512) (#524)
* add: preview images for bulk-alt-text

* add: bulk alt text banner

* fix: padding

* add: bulk alt text banner component

* add: icons

* add: support for aborting the fetch request

* add: bulk alt text manager

* update: husky

* fix: optimized images

* update: memoize images

* fix: imports

* add: focustrap

* add: mixpanel events

* update: add logic to save alt text when editing manually

* fix: abort controller reference and cleanup

* fix: improve key stability in image grid rendering

* refactor: add PropTypes validation and memoization to ImageCard component

* feat: add error handling for ImageCard component using ErrorBoundary

* fix: auto selection logic for card with bulk generation

* add: loading and generation states

* refactor: restructure bulk alt text components and enhance progress handling and decentralized logic

* refactor: extract logic from progress bar to hook

* add: quota exceeded alert

* add: promotional banner for generate button

* update: Generate button for selection mode

* fix: button alignment

* update: hide banner for 2 or less images

* fix: box shadow

* add: mixpanel events

* update: rename variable

* add: bulk upgrade url

* update: link handling for upgrade

* fix: box shadow

* add: border radius to dialog

* update: improved accessibility notifications

* fix: height and padding for banner

* update: add more context to image card

* add: ARIA labels

* add: focus on card

* add: decode URI component

* fix: accessibility issues

* add: encoding for file names

* fix: styled components

* update: made progress bar sticky

* update: add logic to disable button on bulk generation

* fix: style

* fix: closing the dialog while generating

* add: error handling

* fix: mark prop as not required

* Fix: Prevent MUI from adding aria-hidden to dialog parent elements [APP-2261]

* add: error handling for quota api error

* fix: prop requirement

* add: close handler to dialog

* fix: ui

* fix: icons

* fix: width of dialog

* fix: width of bulk dialog

---------

Co-authored-by: Kniazevych <pavlok@elementor.red>
2026-02-18 21:52:36 +02:00

79 lines
2.1 KiB
JavaScript

import { useLayoutEffect, useRef } from '@wordpress/element';
/**
* Prevents MUI's ModalManager from adding aria-hidden="true" to document.body
* children. Inside a shadow root the ModalManager can't associate the modal
* with its shadow host, so it inadvertently hides the shadow host (and
* therefore the dialog itself) from screen readers.
*
* MUI sets aria-hidden via a ref callback during React's commit phase, before
* any effects run. We capture a snapshot of pre-existing aria-hidden state
* during render (before commit), then use useLayoutEffect to clean up what MUI
* added and attach an observer for any future mutations.
*
* MUI issue: https://github.com/mui/material-ui/issues/19450
*
* @param {boolean} active
*/
const usePreventAriaHidden = (active) => {
const snapshot = useRef(null);
// Capture which body children already have aria-hidden during the render
// phase, before React's commit phase where MUI's ref callbacks fire.
if (active && snapshot.current === null) {
const preserved = new Set();
for (const child of document.body.children) {
if (child.getAttribute('aria-hidden') !== null) {
preserved.add(child);
}
}
snapshot.current = preserved;
}
if (!active) {
snapshot.current = null;
}
useLayoutEffect(() => {
if (!active) {
return;
}
const preserved = snapshot.current || new Set();
const strip = (element) => {
if (
!preserved.has(element) &&
element.getAttribute('aria-hidden') === 'true'
) {
element.removeAttribute('aria-hidden');
}
};
const observer = new MutationObserver((mutations) => {
for (const mutation of mutations) {
if (mutation.attributeName === 'aria-hidden') {
strip(mutation.target);
}
}
});
for (const child of document.body.children) {
observer.observe(child, {
attributes: true,
attributeFilter: ['aria-hidden'],
});
// Clean up aria-hidden that MUI already set via ref callbacks
// during the commit phase (before this layout effect ran).
strip(child);
}
return () => {
observer.disconnect();
};
}, [active]);
};
export default usePreventAriaHidden;