Skip to content
Snippets Groups Projects
Commit ce0a8147 authored by Nithya's avatar Nithya
Browse files
Changes Updated
parent ebdb5c26
No related branches found
No related tags found
1 merge request!354Resolve TMSS-488
......@@ -13,6 +13,7 @@ import Ingesting from './ingesting';
import _ from 'lodash';
import DataProduct from './unpin.data';
import UnitConverter from '../../utils/unit.converter';
import AppLoader from '../../layout/components/AppLoader';
const RedirectionMap = {
'wait scheduled': 1,
......@@ -31,6 +32,7 @@ const pageTitle = ['Scheduled','Processing Done','QA Reporting (TO)', 'QA Report
export default (props) => {
let growl;
const [disableNextButton, setDisableNextButton] = useState(false);
const [loader, setLoader] = useState(false);
const [state, setState] = useState({});
const [tasks, setTasks] = useState([]);
const [currentStep, setCurrentStep] = useState();
......@@ -39,6 +41,7 @@ export default (props) => {
useEffect(() => {
// Clearing Localstorage on start of the page to load fresh
clearLocalStorage();
setLoader(true);
ScheduleService.getSchedulingUnitBlueprintById(props.match.params.id)
.then(schedulingUnit => {
setSchedulingUnit(schedulingUnit);
......@@ -94,6 +97,7 @@ export default (props) => {
});
setTasks(response);
setInjestTask(response.find(task => task.template.type_value==='observation'));
setLoader(false);
});
});
});
......@@ -131,7 +135,8 @@ export default (props) => {
<>
<Growl ref={(el) => growl = el} />
{currentStep && <PageHeader location={props.location} title={`${pageTitle[currentStep - 1]}`} actions={[{ icon: 'fa-window-close', link: props.history.goBack, title: 'Click to Close Workflow', props: { pathname: '/schedulingunit/1/workflow' } }]} />}
{schedulingUnit &&
{loader && <AppLoader />}
{!loader && schedulingUnit &&
<>
<div className="p-fluid">
{currentStep && <div className="p-field p-grid">
......
......@@ -40,7 +40,6 @@ class QAreporting extends Component{
Promise.all(promise).then(() => {
this.props.onNext({ report: this.state.content });
});
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment