one-click-accessibility/modules/scanner/assets/js/components/alt-text-navigation/index.js
VasylD e1850639a4
[APP-1387] add mixpanel events (#288)
* [APP-1387] add mixpanel events

* [APP-1387] add mixpanel events
2025-06-05 11:23:30 +02:00

72 lines
1.9 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 navigate = (index, direction) => () => {
setCurrent(index);
mixpanelService.sendEvent(mixpanelEvents.navigationImageClicked, {
direction,
});
};
return (
<StyledBox>
<StyledNavigation>
<StyledIconButton
onClick={navigate(--current, 'previous')}
disabled={current === 0}
>
<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(++current, 'next')}
disabled={current === total - 1}
>
<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,
};