API: Add programatically generated Image Builder API slice definitions

These definitions were generated using the RTKQ code generation tool and
will replace the existing definitions.
This commit is contained in:
lucasgarfield 2023-07-25 19:35:24 +02:00 committed by Lucas Garfield
parent 87b97b830f
commit 1894a9dcb2
10 changed files with 329 additions and 31 deletions

View file

@ -5,7 +5,7 @@ import WizardContext from '@data-driven-forms/react-form-renderer/wizard-context
import { Button } from '@patternfly/react-core';
import PropTypes from 'prop-types';
import { usePrefetch } from '../../../store/apiSlice';
import { imageBuilderApi } from '../../../store/imageBuilderApi';
// FileSystemconfigButtons are defined separately to display errors inside of the button footer
const FileSystemConfigButtons = ({ handleNext, handlePrev, nextStep }) => {
@ -15,7 +15,7 @@ const FileSystemConfigButtons = ({ handleNext, handlePrev, nextStep }) => {
getState()?.errors?.['file-system-configuration'] ? true : false
);
const [nextHasBeenClicked, setNextHasBeenClicked] = useState(false);
const prefetchArchitectures = usePrefetch('getArchitecturesByDistribution');
const prefetchArchitectures = imageBuilderApi.usePrefetch('getArchitectures');
useEffect(() => {
const errors = getState()?.errors?.['file-system-configuration'];
@ -38,7 +38,7 @@ const FileSystemConfigButtons = ({ handleNext, handlePrev, nextStep }) => {
const handleMouseEnter = () => {
const distribution = getState()?.values?.release;
prefetchArchitectures(distribution);
prefetchArchitectures({ distribution });
};
return (