mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-23 17:03:34 +08:00
* [APP-1611] trigger save entry for clean cache * [APP-1611] fix comments * [APP-1611] fix comments * [APP-1611] fix comments * [APP-1611] fix comments
172 lines
4.7 KiB
JavaScript
172 lines
4.7 KiB
JavaScript
import { useToastNotification } from '@ea11y-apps/global/hooks';
|
|
import { mixpanelEvents, mixpanelService } from '@ea11y-apps/global/services';
|
|
import { APIScanner } from '@ea11y-apps/scanner/api/APIScanner';
|
|
import { BLOCK_TITLES } from '@ea11y-apps/scanner/constants';
|
|
import { useScannerWizardContext } from '@ea11y-apps/scanner/context/scanner-wizard-context';
|
|
import { useState } from '@wordpress/element';
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
export const useManageActions = (current = null) => {
|
|
const { error } = useToastNotification();
|
|
const {
|
|
remediations,
|
|
sortedRemediation,
|
|
openedBlock,
|
|
setSortedRemediation,
|
|
setLoading,
|
|
updateRemediationList,
|
|
setIsManageChanged,
|
|
} = useScannerWizardContext();
|
|
|
|
const [activeRequest, setActiveRequest] = useState(false);
|
|
|
|
const updateAllRemediationForPage = (active) => async () => {
|
|
try {
|
|
setLoading(true);
|
|
await APIScanner.updateRemediationStatusForPage({
|
|
url: window?.ea11yScannerData?.pageData?.url,
|
|
active,
|
|
});
|
|
setIsManageChanged(true);
|
|
await updateRemediationList();
|
|
mixpanelService.sendEvent(
|
|
mixpanelEvents[active ? 'remediationEnabled' : 'remediationDisabled'],
|
|
{
|
|
action_type: active ? 'enable_all' : 'disable_all',
|
|
remediations_amount: remediations?.length,
|
|
},
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
error(__('An error occurred.', 'pojo-accessibility'));
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const deleteAllRemediationForPage = async () => {
|
|
try {
|
|
setLoading(true);
|
|
await APIScanner.deleteRemediationForPage({
|
|
url: window?.ea11yScannerData?.pageData?.url,
|
|
});
|
|
|
|
await mixpanelService.sendEvent(mixpanelEvents.remediationRemoved, {
|
|
action_type: 'remove_all',
|
|
remediations_amount: remediations?.length,
|
|
});
|
|
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.delete('open-ea11y-assistant');
|
|
url.searchParams.delete('open-ea11y-assistant-src');
|
|
url.searchParams.append('open-ea11y-assistant', '1');
|
|
|
|
window.location.assign(url);
|
|
} catch (e) {
|
|
console.error(e);
|
|
error(__('An error occurred.', 'pojo-accessibility'));
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const updateRemediation = (active) => async () => {
|
|
try {
|
|
setActiveRequest(true);
|
|
await APIScanner.updateRemediation({
|
|
url: window?.ea11yScannerData?.pageData?.url,
|
|
active,
|
|
id: current.id,
|
|
});
|
|
const updated = sortedRemediation[openedBlock].map((item) =>
|
|
item.id === current.id ? { ...item, active } : item,
|
|
);
|
|
setSortedRemediation({
|
|
...sortedRemediation,
|
|
[openedBlock]: updated,
|
|
});
|
|
setIsManageChanged(true);
|
|
mixpanelService.sendEvent(
|
|
mixpanelEvents[active ? 'remediationEnabled' : 'remediationDisabled'],
|
|
{
|
|
action_type: active ? 'enable_specific' : 'disable_specific',
|
|
category_name: BLOCK_TITLES[openedBlock],
|
|
issue_type: current.rule,
|
|
},
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
error(__('An error occurred.', 'pojo-accessibility'));
|
|
} finally {
|
|
setActiveRequest(false);
|
|
}
|
|
};
|
|
|
|
const deleteRemediation = async () => {
|
|
try {
|
|
setActiveRequest(true);
|
|
await APIScanner.deleteRemediation({
|
|
url: window?.ea11yScannerData?.pageData?.url,
|
|
id: current.id,
|
|
});
|
|
const updated = sortedRemediation[openedBlock].flatMap((item) =>
|
|
item.id !== current.id ? item : [],
|
|
);
|
|
setSortedRemediation({
|
|
...sortedRemediation,
|
|
[openedBlock]: updated,
|
|
});
|
|
setIsManageChanged(true);
|
|
mixpanelService.sendEvent(mixpanelEvents.remediationRemoved, {
|
|
action_type: 'remove_specific',
|
|
category_name: BLOCK_TITLES[openedBlock],
|
|
issue_type: current.rule,
|
|
});
|
|
} catch (e) {
|
|
console.error(e);
|
|
error(__('An error occurred.', 'pojo-accessibility'));
|
|
} finally {
|
|
setActiveRequest(false);
|
|
}
|
|
};
|
|
|
|
const editRemediation = async (content) => {
|
|
try {
|
|
setActiveRequest(true);
|
|
const strContent = JSON.stringify(content);
|
|
await APIScanner.updateRemediationContent({
|
|
url: window?.ea11yScannerData?.pageData?.url,
|
|
id: current.id,
|
|
content: strContent,
|
|
});
|
|
const updated = sortedRemediation[openedBlock].map((item) =>
|
|
item.id === current.id ? { ...item, content: strContent } : item,
|
|
);
|
|
setSortedRemediation({
|
|
...sortedRemediation,
|
|
[openedBlock]: updated,
|
|
});
|
|
setIsManageChanged(true);
|
|
mixpanelService.sendEvent(mixpanelEvents.applyFixButtonClicked, {
|
|
fix_method: 'manual',
|
|
snippet_content: strContent,
|
|
category_name: BLOCK_TITLES[openedBlock],
|
|
source: 'remediation',
|
|
});
|
|
} catch (e) {
|
|
console.error(e);
|
|
error(__('An error occurred.', 'pojo-accessibility'));
|
|
} finally {
|
|
setActiveRequest(false);
|
|
}
|
|
};
|
|
|
|
return {
|
|
activeRequest,
|
|
updateAllRemediationForPage,
|
|
deleteAllRemediationForPage,
|
|
updateRemediation,
|
|
deleteRemediation,
|
|
editRemediation,
|
|
};
|
|
};
|