one-click-accessibility/modules/scanner/assets/js/components/header/breadcrumbs.js
2025-07-14 15:10:35 +03:00

97 lines
2.4 KiB
JavaScript

import ArrowLeftIcon from '@elementor/icons/ArrowLeftIcon';
import InfoCircleIcon from '@elementor/icons/InfoCircleIcon';
import Box from '@elementor/ui/Box';
import Chip from '@elementor/ui/Chip';
import IconButton from '@elementor/ui/IconButton';
import Infotip from '@elementor/ui/Infotip';
import Typography from '@elementor/ui/Typography';
import { styled } from '@elementor/ui/styles';
import {
BLOCK_INFO,
BLOCK_TITLES,
BLOCKS,
} from '@ea11y-apps/scanner/constants';
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
import { removeExistingFocus } from '@ea11y-apps/scanner/utils/focus-on-element';
import { __ } from '@wordpress/i18n';
export const Breadcrumbs = () => {
const {
openedBlock,
sortedViolations,
sortedRemediation,
setOpenedBlock,
altTextData,
manualData,
isManage,
} = useScannerWizardContext();
const handleClick = () => {
removeExistingFocus();
setOpenedBlock(isManage ? BLOCKS.management : BLOCKS.main);
};
const itemsData =
openedBlock === BLOCKS.altText ? altTextData : manualData[openedBlock];
const resolved =
itemsData?.filter((item) => item?.resolved === true).length || 0;
const items = isManage ? sortedRemediation : sortedViolations;
const count = isManage
? items[openedBlock].length
: items[openedBlock].length - resolved;
return (
<Box>
<BreadcrumbsBox>
<IconButton
color="secondary"
onClick={handleClick}
sx={{ whiteSpace: 'nowrap' }}
aria-label={__('All issues', 'pojo-accessibility')}
size="small"
>
<ArrowLeftIcon />
</IconButton>
<Box display="flex" alignItems="center" gap={1}>
<Typography variant="subtitle2" as="h3">
{BLOCK_TITLES[openedBlock]}
</Typography>
{BLOCK_INFO[openedBlock] && (
<Infotip
tabIndex="0"
PopperProps={{
disablePortal: true,
}}
content={
<Typography variant="body2" sx={{ p: 2, maxWidth: '300px' }}>
{BLOCK_INFO[openedBlock]}
</Typography>
}
>
<InfoCircleIcon fontSize="small" />
</Infotip>
)}
{items[openedBlock].length > 0 && (
<Chip
label={count}
color={isManage ? 'info' : 'error'}
variant="standard"
size="small"
sx={{ fontWeight: 500 }}
/>
)}
</Box>
</BreadcrumbsBox>
</Box>
);
};
const BreadcrumbsBox = styled(Box)`
display: flex;
align-items: center;
gap: ${({ theme }) => theme.spacing(1)};
`;