bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenreader-alert/component.jsx

19 lines
623 B
React
Raw Normal View History

import { createPortal } from 'react-dom';
import { useEffect } from 'react';
import { removeAlert } from './service';
const ARIA_ALERT_EXT_TIMEOUT = 15000;
const ScreenReaderAlert = ({ olderAlert }) => {
useEffect(() => {
if (olderAlert) setTimeout(() => removeAlert(olderAlert.id), ARIA_ALERT_EXT_TIMEOUT);
}, [olderAlert?.id]);
const ariaAlertsElement = document.getElementById('aria-polite-alert');
const shouldAddAlert = olderAlert && olderAlert.text && ariaAlertsElement !== null;
return shouldAddAlert ? createPortal(olderAlert.text, ariaAlertsElement) : null;
};
export default ScreenReaderAlert;