mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-22 12:27:13 +08:00
286 lines
8.1 KiB
JavaScript
286 lines
8.1 KiB
JavaScript
import ChevronDownIcon from '@elementor/icons/ChevronDownIcon';
|
|
import ChevronUpIcon from '@elementor/icons/ChevronUpIcon';
|
|
import HistoryIcon from '@elementor/icons/HistoryIcon';
|
|
import Box from '@elementor/ui/Box';
|
|
import LinearProgress from '@elementor/ui/LinearProgress';
|
|
import Table from '@elementor/ui/Table';
|
|
import TableBody from '@elementor/ui/TableBody';
|
|
import TableCell from '@elementor/ui/TableCell';
|
|
import TableContainer from '@elementor/ui/TableContainer';
|
|
import TableFooter from '@elementor/ui/TableFooter';
|
|
import TableHead from '@elementor/ui/TableHead';
|
|
import TableRow from '@elementor/ui/TableRow';
|
|
import Tooltip from '@elementor/ui/Tooltip';
|
|
import Typography from '@elementor/ui/Typography';
|
|
import { styled } from '@elementor/ui/styles';
|
|
import PropTypes from 'prop-types';
|
|
import Button from '@ea11y/components/button';
|
|
import VisuallyHidden from '@ea11y/components/visually-hidden';
|
|
import TableLoader from '@ea11y/pages/assistant/loaders/table-loader';
|
|
import AccessibilityAssistantResultsTableCTA from '@ea11y/pages/assistant/results/cta';
|
|
import { DropdownMenu } from '@ea11y/pages/assistant/results/dropdown-menu';
|
|
import AccessibilityAssistantResultsPagination from '@ea11y/pages/assistant/results/pagination';
|
|
import AccessibilityAssistantResultsTableProgressChip from '@ea11y/pages/assistant/results/progress-chip';
|
|
import AccessibilityAssistantTooltip from '@ea11y/pages/assistant/tooltip';
|
|
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
|
|
import { dateI18n } from '@wordpress/date';
|
|
import { forwardRef, Fragment, useState } from '@wordpress/element';
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
const AccessibilityAssistantResultsTable = ({ scannerResults, loading }) => {
|
|
const [openRows, setOpenRows] = useState({});
|
|
|
|
const handleToggleRow = (index) => {
|
|
const willBeOpen = !openRows[index];
|
|
|
|
setOpenRows((prev) => ({
|
|
...prev,
|
|
[index]: willBeOpen,
|
|
}));
|
|
|
|
mixpanelService.sendEvent(
|
|
mixpanelEvents.assistantDashboardHistoryLogsButtonClicked,
|
|
{
|
|
state: willBeOpen ? 'open' : 'closed',
|
|
},
|
|
);
|
|
};
|
|
|
|
const formatDate = (dateString) => {
|
|
const date = new Date(dateString);
|
|
|
|
return dateI18n(__('d.m.Y, H:i', 'pojo-accessibility'), date, undefined);
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<StyledTableContainer>
|
|
<TableLoader />
|
|
</StyledTableContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledTableContainer>
|
|
<Table aria-label={__('Scan results', 'pojo-accessibility')}>
|
|
<TableHead>
|
|
<TableRow>
|
|
<TableCell sx={{ width: '148px' }}>
|
|
{__('Page', 'pojo-accessibility')}
|
|
</TableCell>
|
|
<TableCell sx={{ width: '220px' }}>
|
|
{__('URL', 'pojo-accessibility')}
|
|
</TableCell>
|
|
<TableCell sx={{ width: '148px' }}>
|
|
{__('Last scan', 'pojo-accessibility')}
|
|
</TableCell>
|
|
<TableCell sx={{ width: '220px' }}>
|
|
{__('Issues resolved', 'pojo-accessibility')}
|
|
</TableCell>
|
|
<TableCell>
|
|
<VisuallyHidden>
|
|
<Typography as="span">
|
|
{__('Actions', 'pojo-accessibility')}
|
|
</Typography>
|
|
</VisuallyHidden>
|
|
</TableCell>
|
|
</TableRow>
|
|
</TableHead>
|
|
|
|
<TableBody>
|
|
{scannerResults.map((result, index) => {
|
|
const resolvedPercentage = result.issues_total
|
|
? Math.round((result.issues_fixed / result.issues_total) * 100)
|
|
: 0;
|
|
|
|
return (
|
|
<Fragment key={result.id}>
|
|
<TableRow>
|
|
<StyledShortCell component="th" scope="row">
|
|
<Tooltip arrow title={result.page_title}>
|
|
<span>{result.page_title}</span>
|
|
</Tooltip>
|
|
</StyledShortCell>
|
|
|
|
<StyledLongCell>
|
|
<Tooltip arrow title={result.page_url}>
|
|
<span>{result.page_url}</span>
|
|
</Tooltip>
|
|
</StyledLongCell>
|
|
|
|
<StyledShortCell>
|
|
{formatDate(result.last_scan)}
|
|
</StyledShortCell>
|
|
|
|
<StyledLongCell>
|
|
<StyledProgressContainer>
|
|
<StyledLinearProgress
|
|
value={resolvedPercentage}
|
|
variant="determinate"
|
|
color="secondary"
|
|
/>
|
|
{result.issues_fixed}/{result.issues_total}
|
|
<AccessibilityAssistantResultsTableProgressChip
|
|
percentage={resolvedPercentage}
|
|
/>
|
|
</StyledProgressContainer>
|
|
</StyledLongCell>
|
|
|
|
<TableCell>
|
|
<StyledControlsContainer>
|
|
<AccessibilityAssistantTooltip
|
|
content={__('View scan history', 'pojo-accessibility')}
|
|
>
|
|
<span role="none">
|
|
<StyledHistoryButton
|
|
color="secondary"
|
|
size="small"
|
|
startIcon={<HistoryIcon />}
|
|
endIcon={
|
|
openRows[index] ? (
|
|
<ChevronUpIcon />
|
|
) : (
|
|
<ChevronDownIcon />
|
|
)
|
|
}
|
|
aria-label={__(
|
|
'View scan history',
|
|
'pojo-accessibility',
|
|
)}
|
|
disabled={!result.scans.length}
|
|
onClick={() => handleToggleRow(index)}
|
|
/>
|
|
</span>
|
|
</AccessibilityAssistantTooltip>
|
|
|
|
<AccessibilityAssistantResultsTableCTA
|
|
percentage={resolvedPercentage}
|
|
pageUrl={result.page_url}
|
|
/>
|
|
|
|
<DropdownMenu
|
|
pageUrl={result.page_url}
|
|
remediationCount={result.remediation_count}
|
|
/>
|
|
</StyledControlsContainer>
|
|
</TableCell>
|
|
</TableRow>
|
|
|
|
{openRows[index] &&
|
|
result.scans.map((scan, scanIndex) => {
|
|
const resolvedScanPercentage = scan.issues_total
|
|
? Math.round(
|
|
(scan.issues_fixed / scan.issues_total) * 100,
|
|
)
|
|
: 0;
|
|
|
|
return (
|
|
<StyledScanRow
|
|
key={`${result.page_title}-scan-${scanIndex}`}
|
|
>
|
|
<TableCell colSpan={2} />
|
|
<StyledShortCell>
|
|
{formatDate(scan.date)}
|
|
</StyledShortCell>
|
|
|
|
<StyledLongCell>
|
|
<StyledProgressContainer>
|
|
<StyledLinearProgress
|
|
value={resolvedScanPercentage}
|
|
variant="determinate"
|
|
color="secondary"
|
|
/>
|
|
{scan.issues_fixed}/{scan.issues_total}
|
|
<AccessibilityAssistantResultsTableProgressChip
|
|
percentage={resolvedScanPercentage}
|
|
/>
|
|
</StyledProgressContainer>
|
|
</StyledLongCell>
|
|
<TableCell />
|
|
</StyledScanRow>
|
|
);
|
|
})}
|
|
</Fragment>
|
|
);
|
|
})}
|
|
</TableBody>
|
|
|
|
{scannerResults.length > 0 && (
|
|
<TableFooter>
|
|
<TableRow disableDivider>
|
|
<AccessibilityAssistantResultsPagination />
|
|
</TableRow>
|
|
</TableFooter>
|
|
)}
|
|
</Table>
|
|
</StyledTableContainer>
|
|
);
|
|
};
|
|
|
|
AccessibilityAssistantResultsTable.propTypes = {
|
|
scannerResults: PropTypes.array.isRequired,
|
|
loading: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
const StyledTableContainer = styled(TableContainer)`
|
|
margin-block-start: ${({ theme }) => theme.spacing(3)};
|
|
padding: ${({ theme }) => theme.spacing(2)};
|
|
border: 1px solid ${({ theme }) => theme.palette.divider};
|
|
border-radius: ${({ theme }) => theme.shape.borderRadius}px;
|
|
`;
|
|
|
|
const StyledProgressContainer = styled(Box)`
|
|
display: flex;
|
|
align-items: center;
|
|
gap: ${({ theme }) => theme.spacing(1)};
|
|
`;
|
|
|
|
const StyledControlsContainer = styled(Box)`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
const ForwardedButton = forwardRef((props, ref) => (
|
|
<Button ref={ref} {...props} />
|
|
));
|
|
|
|
const StyledHistoryButton = styled(ForwardedButton)`
|
|
min-width: 50px;
|
|
max-width: 50px;
|
|
|
|
span {
|
|
margin: 0;
|
|
}
|
|
|
|
span:first-of-type {
|
|
margin-inline-end: ${({ theme }) => theme.spacing(1)};
|
|
}
|
|
`;
|
|
|
|
const StyledLinearProgress = styled(LinearProgress)`
|
|
width: 89px;
|
|
`;
|
|
|
|
const StyledScanRow = styled(TableRow)`
|
|
background-color: #f9f9f9;
|
|
`;
|
|
|
|
const StyledShortCell = styled(TableCell)`
|
|
max-width: 148px;
|
|
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
`;
|
|
|
|
const StyledLongCell = styled(TableCell)`
|
|
max-width: 220px;
|
|
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
`;
|
|
|
|
export default AccessibilityAssistantResultsTable;
|