This replaces all occurences of "CreateImageWizardV2" with just "CreateImageWizard" as it is the only version now.
34 lines
1 KiB
TypeScript
34 lines
1 KiB
TypeScript
import React, { useEffect } from 'react';
|
|
|
|
import { addNotification } from '@redhat-cloud-services/frontend-components-notifications/redux';
|
|
import { useLocation, useNavigate } from 'react-router-dom';
|
|
|
|
import CreateImageWizard from './CreateImageWizard';
|
|
|
|
import { useAppDispatch } from '../../store/hooks';
|
|
import { loadWizardState, wizardState } from '../../store/wizardSlice';
|
|
import { resolveRelPath } from '../../Utilities/path';
|
|
|
|
const ImportImageWizard = () => {
|
|
const dispatch = useAppDispatch();
|
|
const navigate = useNavigate();
|
|
const location = useLocation();
|
|
const locationState = location.state as { blueprint?: wizardState };
|
|
const blueprint = locationState?.blueprint;
|
|
useEffect(() => {
|
|
if (blueprint) {
|
|
dispatch(loadWizardState(blueprint));
|
|
} else {
|
|
navigate(resolveRelPath(''));
|
|
dispatch(
|
|
addNotification({
|
|
variant: 'warning',
|
|
title: 'No blueprint was imported',
|
|
})
|
|
);
|
|
}
|
|
}, [blueprint, dispatch]);
|
|
return <CreateImageWizard />;
|
|
};
|
|
|
|
export default ImportImageWizard;
|