mirror of
https://ghproxy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-07-23 12:37:39 +08:00
143 lines
3.5 KiB
JavaScript
143 lines
3.5 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import { speak } from '@wordpress/a11y';
|
|
import {
|
|
createContext,
|
|
useContext,
|
|
useState,
|
|
useRef,
|
|
useCallback,
|
|
} from '@wordpress/element';
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
|
|
const BulkGenerationContext = createContext(null);
|
|
|
|
export const BulkGenerationProvider = ({ children }) => {
|
|
const [currentGeneratingIndex, setCurrentGeneratingIndex] = useState(null);
|
|
const [isGenerating, setIsGenerating] = useState(false);
|
|
const [quotaError, setQuotaError] = useState(null);
|
|
const shouldAbortRef = useRef(false);
|
|
const queueRef = useRef([]);
|
|
const progressRef = useRef({ completed: 0, total: 0, errors: 0 });
|
|
const [progress, setProgress] = useState({
|
|
completed: 0,
|
|
total: 0,
|
|
errors: 0,
|
|
});
|
|
|
|
const startBulkGeneration = useCallback((cardIndices) => {
|
|
shouldAbortRef.current = false;
|
|
queueRef.current = [...cardIndices];
|
|
progressRef.current = {
|
|
completed: 0,
|
|
total: cardIndices.length,
|
|
errors: 0,
|
|
};
|
|
setProgress({ completed: 0, total: cardIndices.length, errors: 0 });
|
|
setQuotaError(null);
|
|
setIsGenerating(true);
|
|
|
|
if (cardIndices.length > 0) {
|
|
setCurrentGeneratingIndex(cardIndices[0]);
|
|
} else {
|
|
setIsGenerating(false);
|
|
}
|
|
}, []);
|
|
|
|
const stopBulkGeneration = useCallback(() => {
|
|
shouldAbortRef.current = true;
|
|
queueRef.current = [];
|
|
setCurrentGeneratingIndex(null);
|
|
setIsGenerating(false);
|
|
}, []);
|
|
|
|
const onCardComplete = useCallback((success) => {
|
|
progressRef.current.completed += 1;
|
|
if (!success) {
|
|
progressRef.current.errors += 1;
|
|
}
|
|
setProgress({ ...progressRef.current });
|
|
|
|
queueRef.current.shift();
|
|
|
|
if (shouldAbortRef.current || queueRef.current.length === 0) {
|
|
setCurrentGeneratingIndex(null);
|
|
setIsGenerating(false);
|
|
|
|
// Announce completion
|
|
if (queueRef.current.length === 0) {
|
|
const { completed, errors } = progressRef.current;
|
|
if (errors > 0) {
|
|
const message = sprintf(
|
|
// Translators: %1$d successful count, %2$d failed count
|
|
__(
|
|
'Generation complete. %1$d succeeded, %2$d failed',
|
|
'pojo-accessibility',
|
|
),
|
|
completed - errors,
|
|
errors,
|
|
);
|
|
speak(message, 'assertive');
|
|
} else {
|
|
const message = sprintf(
|
|
// Translators: %d number of images
|
|
__(
|
|
'Generation complete. %d images processed successfully',
|
|
'pojo-accessibility',
|
|
),
|
|
completed,
|
|
);
|
|
speak(message, 'assertive');
|
|
}
|
|
}
|
|
} else {
|
|
setCurrentGeneratingIndex(queueRef.current[0]);
|
|
}
|
|
}, []);
|
|
|
|
const resetProgress = useCallback(() => {
|
|
setIsGenerating(false);
|
|
shouldAbortRef.current = false;
|
|
queueRef.current = [];
|
|
setCurrentGeneratingIndex(null);
|
|
progressRef.current = { completed: 0, total: 0, errors: 0 };
|
|
setProgress({ completed: 0, total: 0, errors: 0 });
|
|
setQuotaError(null);
|
|
}, []);
|
|
|
|
const setQuotaExceeded = useCallback((errorMessage) => {
|
|
setQuotaError(errorMessage);
|
|
shouldAbortRef.current = true;
|
|
queueRef.current = [];
|
|
setCurrentGeneratingIndex(null);
|
|
setIsGenerating(false);
|
|
speak(errorMessage, 'assertive');
|
|
}, []);
|
|
|
|
const value = {
|
|
currentGeneratingIndex,
|
|
isGenerating,
|
|
shouldAbort: shouldAbortRef,
|
|
progress,
|
|
quotaError,
|
|
startBulkGeneration,
|
|
stopBulkGeneration,
|
|
onCardComplete,
|
|
resetProgress,
|
|
setQuotaExceeded,
|
|
};
|
|
|
|
return (
|
|
<BulkGenerationContext.Provider value={value}>
|
|
{children}
|
|
</BulkGenerationContext.Provider>
|
|
);
|
|
};
|
|
|
|
BulkGenerationProvider.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
};
|
|
|
|
export const useBulkGeneration = () => {
|
|
const context = useContext(BulkGenerationContext);
|
|
return context;
|
|
};
|