one-click-accessibility/modules/scanner/assets/js/components/resolved-message/index.js

66 lines
1.7 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Button from '@elementor/ui/Button';
import Typography from '@elementor/ui/Typography';
import { BLOCKS, ROOT_ID } from '@ea11y-apps/scanner/constants';
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
import { ResolvedImage } from '@ea11y-apps/scanner/images';
import {
ResolvedButtonsBox,
StateContainer,
} from '@ea11y-apps/scanner/styles/app.styles';
import { closeWidget } from '@ea11y-apps/scanner/utils/close-widget';
import { __ } from '@wordpress/i18n';
export const ResolvedMessage = () => {
const { remediations, setOpenedBlock, setIsManage } =
useScannerWizardContext();
const onClose = () => {
const widget = document.getElementById(ROOT_ID);
closeWidget(widget);
};
const showIssues = () => {
setIsManage(true);
setOpenedBlock(BLOCKS.management);
};
return (
<StateContainer sx={{ px: 4 }}>
<ResolvedImage />
<Typography variant="subtitle1" as="h3" align="center">
{__('Youre all set!', 'pojo-accessibility')}
</Typography>
<Typography variant="body2" align="center" color="text.secondary">
{__(
'This page is now issuefree. View all scans to track your progress, or review the fixes you just made.',
'pojo-accessibility',
)}
</Typography>
<ResolvedButtonsBox>
{remediations?.length > 0 && (
<Button
size="small"
variant="outlined"
color="secondary"
onClick={showIssues}
>
{__('Review fixes', 'pojo-accessibility')}
</Button>
)}
<Button
href={window?.ea11yScannerData?.dashboardUrl}
size="small"
variant="contained"
color="info"
onClick={onClose}
>
{__('View all scans', 'pojo-accessibility')}
</Button>
</ResolvedButtonsBox>
</StateContainer>
);
};