mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-29 03:51:50 +08:00
76 lines
2.3 KiB
JavaScript
76 lines
2.3 KiB
JavaScript
import ErrorBoundary from '@elementor/ui/ErrorBoundary';
|
|
import { Notifications } from '@ea11y/components';
|
|
import { useNotificationSettings } from '@ea11y-apps/global/hooks/use-notifications';
|
|
import { ErrorMessage } from '@ea11y-apps/scanner/components/error-message';
|
|
import { Header } from '@ea11y-apps/scanner/components/header';
|
|
import { Loader } from '@ea11y-apps/scanner/components/main-list/loader';
|
|
import { QuotaMessage } from '@ea11y-apps/scanner/components/quota-message';
|
|
import { ResolvedMessage } from '@ea11y-apps/scanner/components/resolved-message';
|
|
import { BLOCKS, PAGE_QUOTA_LIMIT } from '@ea11y-apps/scanner/constants';
|
|
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
|
|
import {
|
|
AltTextLayout,
|
|
MainLayout,
|
|
ManualLayout,
|
|
} from '@ea11y-apps/scanner/layouts';
|
|
import { StyledPaper } from '@ea11y-apps/scanner/styles/app.styles';
|
|
import { removeExistingFocus } from '@ea11y-apps/scanner/utils/focus-on-element';
|
|
import { useEffect, useState } from '@wordpress/element';
|
|
|
|
const App = () => {
|
|
const { notificationMessage, notificationType } = useNotificationSettings();
|
|
const { setOpenedBlock, violation, resolved, openedBlock, isError, loading } =
|
|
useScannerWizardContext();
|
|
const [showIssues, setShowIssues] = useState(false);
|
|
|
|
const showResolvedMessage = Boolean(
|
|
!showIssues &&
|
|
((resolved > 0 && violation === resolved) || violation === 0),
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (showResolvedMessage) {
|
|
removeExistingFocus();
|
|
setOpenedBlock(BLOCKS.main);
|
|
}
|
|
}, [showResolvedMessage]);
|
|
|
|
const openIssuesList = () => setShowIssues(true);
|
|
|
|
const getBlock = () => {
|
|
if (!PAGE_QUOTA_LIMIT) {
|
|
return <QuotaMessage />;
|
|
}
|
|
if (isError) {
|
|
return <ErrorMessage />;
|
|
}
|
|
if (loading) {
|
|
return <Loader />;
|
|
}
|
|
|
|
switch (openedBlock) {
|
|
case BLOCKS.main:
|
|
return <MainLayout />;
|
|
case BLOCKS.altText:
|
|
return <AltTextLayout />;
|
|
default:
|
|
return <ManualLayout />;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<StyledPaper>
|
|
<ErrorBoundary fallback={<ErrorMessage />}>
|
|
<Header />
|
|
{showResolvedMessage ? (
|
|
<ResolvedMessage setShowIssues={openIssuesList} />
|
|
) : (
|
|
getBlock()
|
|
)}
|
|
<Notifications message={notificationMessage} type={notificationType} />
|
|
</ErrorBoundary>
|
|
</StyledPaper>
|
|
);
|
|
};
|
|
|
|
export default App;
|