mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-23 09:25:01 +08:00
* [APP-1512] add backend logic for remediation management * [APP-1512] add backend logic for remediation management * Update modules/remediation/database/remediation-entry.php Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com> * Update modules/remediation/rest/items.php Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com> * [APP-1512] add backend logic for remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management * [APP-1512] add FE remediation management --------- Co-authored-by: gitstream-cm[bot] <111687743+gitstream-cm[bot]@users.noreply.github.com>
76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
import ChevronLeftIcon from '@elementor/icons/ChevronLeftIcon';
|
|
import ChevronRightIcon from '@elementor/icons/ChevronRightIcon';
|
|
import Box from '@elementor/ui/Box';
|
|
import IconButton from '@elementor/ui/IconButton';
|
|
import Typography from '@elementor/ui/Typography';
|
|
import { styled } from '@elementor/ui/styles';
|
|
import PropTypes from 'prop-types';
|
|
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
|
|
import { isRTL } from '@ea11y-apps/scanner/constants';
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
export const AltTextNavigation = ({ total, current, setCurrent }) => {
|
|
const previous = current - 1;
|
|
const next = current + 1;
|
|
const navigate = (index, direction) => () => {
|
|
setCurrent(index);
|
|
mixpanelService.sendEvent(mixpanelEvents.navigationImageClicked, {
|
|
direction,
|
|
});
|
|
};
|
|
return (
|
|
<StyledBox>
|
|
<StyledNavigation>
|
|
<StyledIconButton
|
|
onClick={navigate(previous, 'previous')}
|
|
disabled={current === 0}
|
|
aria-label={__('Previous image', 'pojo-accessibility')}
|
|
>
|
|
<ChevronLeftIcon />
|
|
</StyledIconButton>
|
|
<Typography variant="body1">
|
|
{sprintf(
|
|
// Translators: %1$s - current, %2$s - total
|
|
__('%1$s of %2$s issues', 'pojo-accessibility'),
|
|
current + 1,
|
|
total,
|
|
)}
|
|
</Typography>
|
|
<StyledIconButton
|
|
onClick={navigate(next, 'next')}
|
|
disabled={current === total - 1}
|
|
aria-label={__('Next image', 'pojo-accessibility')}
|
|
>
|
|
<ChevronRightIcon />
|
|
</StyledIconButton>
|
|
</StyledNavigation>
|
|
</StyledBox>
|
|
);
|
|
};
|
|
|
|
const StyledBox = styled(Box)`
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
padding-block: ${({ theme }) => theme.spacing(2)};
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
`;
|
|
const StyledNavigation = styled(Box)`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const StyledIconButton = styled(IconButton)`
|
|
${isRTL ? 'transform: rotate(180deg)' : ''}
|
|
`;
|
|
|
|
AltTextNavigation.propTypes = {
|
|
total: PropTypes.number.isRequired,
|
|
current: PropTypes.number.isRequired,
|
|
setCurrent: PropTypes.func.isRequired,
|
|
};
|