mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 11:32:30 +08:00
86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
import CircleCheckFilledIcon from '@elementor/icons/CircleCheckFilledIcon';
|
|
import { Chip } from '@elementor/ui';
|
|
import Box from '@elementor/ui/Box';
|
|
import Typography from '@elementor/ui/Typography';
|
|
import PropTypes from 'prop-types';
|
|
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
|
|
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
|
|
import {
|
|
StyledButton,
|
|
StyledButtonContainer,
|
|
} from '@ea11y-apps/scanner/styles/app.styles';
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
export const BlockButton = ({
|
|
title,
|
|
count,
|
|
block,
|
|
total,
|
|
isManage = false,
|
|
}) => {
|
|
const { setOpenedBlock, isResolved } = useScannerWizardContext();
|
|
|
|
const handleClick = () => {
|
|
setOpenedBlock(block);
|
|
mixpanelService.sendEvent(mixpanelEvents.categoryClicked, {
|
|
page_url: window.ea11yScannerData?.pageData?.url,
|
|
issue_count: count,
|
|
category_name: title,
|
|
source: isManage ? 'remediation' : 'assistant',
|
|
});
|
|
};
|
|
|
|
const resolved = !isManage && (count === 0 || isResolved(block));
|
|
const showChip = !isManage && !resolved;
|
|
|
|
return (
|
|
<StyledButton
|
|
variant="outlined"
|
|
color="secondary"
|
|
size="large"
|
|
fullWidth
|
|
onClick={handleClick}
|
|
>
|
|
<StyledButtonContainer
|
|
elevation={0}
|
|
variant="elevation"
|
|
color={resolved ? 'success' : 'default'}
|
|
>
|
|
<Box display="flex" alignItems="center" gap={0.5}>
|
|
<Typography variant="subtitle2" as="h4">
|
|
{title}
|
|
</Typography>
|
|
|
|
{showChip && (
|
|
<Chip label={count} color="error" variant="standard" size="tiny" />
|
|
)}
|
|
</Box>
|
|
|
|
{resolved && <CircleCheckFilledIcon color="success" />}
|
|
|
|
{isManage && (
|
|
<Chip
|
|
label={sprintf(
|
|
// Translators: %1$s - active, %2$s - total
|
|
__('%1$s/%2$s active', 'pojo-accessibility'),
|
|
count,
|
|
total,
|
|
)}
|
|
color={count > 0 ? 'info' : 'default'}
|
|
variant="standard"
|
|
size="tiny"
|
|
disabled={count === 0}
|
|
/>
|
|
)}
|
|
</StyledButtonContainer>
|
|
</StyledButton>
|
|
);
|
|
};
|
|
|
|
BlockButton.propTypes = {
|
|
title: PropTypes.string.isRequired,
|
|
count: PropTypes.number.isRequired,
|
|
block: PropTypes.string.isRequired,
|
|
total: PropTypes.number,
|
|
isManage: PropTypes.bool,
|
|
};
|