Skip to content
Snippets Groups Projects
Commit af32f776 authored by Ramesh Kumar's avatar Ramesh Kumar
Browse files

TMSS-215: Comments added

parent 45af1ae9
No related branches found
No related tags found
1 merge request!210Resolve TMSS-215
...@@ -19,33 +19,33 @@ import TaskService from '../../services/task.service'; ...@@ -19,33 +19,33 @@ import TaskService from '../../services/task.service';
import UIConstants from '../../utils/ui.constants'; import UIConstants from '../../utils/ui.constants';
/** /**
* Component to create a new SchedulingUnit * Component to create a new SchedulingUnit from Observation strategy template
*/ */
export class SchedulingUnitCreate extends Component { export class SchedulingUnitCreate extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = {
isLoading: true, isLoading: true, // Flag for loading spinner
dialog: { header: '', detail: ''}, dialog: { header: '', detail: ''}, // Dialog properties
redirect: null, redirect: null, // URL to redirect
errors: [], errors: [], // Form Validation errors
schedulingSets: [], schedulingSets: [], // Scheduling set of the selected project
schedulingUnit: { schedulingUnit: {
project: (props.match?props.match.params.project:null) || null, project: (props.match?props.match.params.project:null) || null,
}, },
projectDisabled: (props.match?(props.match.params.project? true:false):false), projectDisabled: (props.match?(props.match.params.project? true:false):false), // Disable project selection if
observStrategy: {}, observStrategy: {}, // Selected strategy to create SU
paramsSchema: null, paramsSchema: null, // JSON Schema to be generated from strategy template to pass to JSOn editor
validEditor: false, validEditor: false, // For JSON editor validation
validFields: {}, // For Validation validFields: {}, // For Form Validation
} }
this.projects = []; this.projects = []; // All projects to load project dropdown
this.schedulingSets = []; this.schedulingSets = []; // All scheduling sets to be filtered for project
this.observStrategies = []; this.observStrategies = []; // All Observing strategy templates
this.taskTemplates = []; this.taskTemplates = []; // All task templates to be filtered based on tasks in selected strategy template
this.tooltipOptions = UIConstants.tooltipOptions; this.tooltipOptions = UIConstants.tooltipOptions;
this.nameInput = React.createRef(); this.nameInput = React.createRef(); // Ref to Name field for auto focus
this.formRules = { this.formRules = { // Form validation rules
name: {required: true, message: "Name can not be empty"}, name: {required: true, message: "Name can not be empty"},
description: {required: true, message: "Description can not be empty"}, description: {required: true, message: "Description can not be empty"},
project: {required: true, message: "Select project to get Scheduling Sets"}, project: {required: true, message: "Select project to get Scheduling Sets"},
...@@ -83,6 +83,10 @@ export class SchedulingUnitCreate extends Component { ...@@ -83,6 +83,10 @@ export class SchedulingUnitCreate extends Component {
}); });
} }
/**
* Function to call on change of project and reload scheduling set dropdown
* @param {string} projectName
*/
changeProject(projectName) { changeProject(projectName) {
const projectSchedSets = _.filter(this.schedulingSets, {'project_id': projectName}); const projectSchedSets = _.filter(this.schedulingSets, {'project_id': projectName});
let schedulingUnit = this.state.schedulingUnit; let schedulingUnit = this.state.schedulingUnit;
...@@ -90,8 +94,12 @@ export class SchedulingUnitCreate extends Component { ...@@ -90,8 +94,12 @@ export class SchedulingUnitCreate extends Component {
this.setState({schedulingUnit: schedulingUnit, schedulingSets: projectSchedSets, validForm: this.validateForm('project')}); this.setState({schedulingUnit: schedulingUnit, schedulingSets: projectSchedSets, validForm: this.validateForm('project')});
} }
/**
* Function called when observation strategy template is changed.
* It generates the JSON schema for JSON editor and defult vales for the parameters to be captured
* @param {number} strategyId
*/
async changeStrategy (strategyId) { async changeStrategy (strategyId) {
const observStrategy = _.find(this.observStrategies, {'id': strategyId}); const observStrategy = _.find(this.observStrategies, {'id': strategyId});
const tasks = observStrategy.template.tasks; const tasks = observStrategy.template.tasks;
let paramsOutput = {}; let paramsOutput = {};
...@@ -99,20 +107,22 @@ export class SchedulingUnitCreate extends Component { ...@@ -99,20 +107,22 @@ export class SchedulingUnitCreate extends Component {
properties: {}, definitions:{} properties: {}, definitions:{}
}; };
observStrategy.template.parameters.forEach(async(param, index) => {
});
for (const taskName in tasks) { for (const taskName in tasks) {
const task = tasks[taskName]; const task = tasks[taskName];
//Resolve task from the strategy template
const $taskRefs = await $RefParser.resolve(task); const $taskRefs = await $RefParser.resolve(task);
// Identify the task specification template of every task in the template
const taskTemplate = _.find(this.taskTemplates, {'name': task['specifications_template']}); const taskTemplate = _.find(this.taskTemplates, {'name': task['specifications_template']});
schema['$id'] = taskTemplate.schema['$id']; schema['$id'] = taskTemplate.schema['$id'];
schema['$schema'] = taskTemplate.schema['$schema']; schema['$schema'] = taskTemplate.schema['$schema'];
observStrategy.template.parameters.forEach(async(param, index) => { observStrategy.template.parameters.forEach(async(param, index) => {
if (param.refs[0].indexOf(`/tasks/${taskName}`) > 0) { if (param.refs[0].indexOf(`/tasks/${taskName}`) > 0) {
// Resolve the identified template
const $templateRefs = await $RefParser.resolve(taskTemplate); const $templateRefs = await $RefParser.resolve(taskTemplate);
let property = { }; let property = { };
let tempProperty = null; let tempProperty = null;
// Get the property type from the template and create new property in the schema for the parameters
try { try {
tempProperty = $templateRefs.get(param.refs[0].replace(`#/tasks/${taskName}/specifications_doc`, '#/schema/properties')) tempProperty = $templateRefs.get(param.refs[0].replace(`#/tasks/${taskName}/specifications_doc`, '#/schema/properties'))
} catch(error) { } catch(error) {
...@@ -127,6 +137,7 @@ export class SchedulingUnitCreate extends Component { ...@@ -127,6 +137,7 @@ export class SchedulingUnitCreate extends Component {
property.default = $taskRefs.get(param.refs[0].replace(`#/tasks/${taskName}`, '#')); property.default = $taskRefs.get(param.refs[0].replace(`#/tasks/${taskName}`, '#'));
paramsOutput[`param_${index}`] = property.default; paramsOutput[`param_${index}`] = property.default;
schema.properties[`param_${index}`] = property; schema.properties[`param_${index}`] = property;
// Set property defintions taken from the task template in new schema
for (const definitionName in taskTemplate.schema.definitions) { for (const definitionName in taskTemplate.schema.definitions) {
schema.definitions[definitionName] = taskTemplate.schema.definitions[definitionName]; schema.definitions[definitionName] = taskTemplate.schema.definitions[definitionName];
} }
...@@ -134,6 +145,8 @@ export class SchedulingUnitCreate extends Component { ...@@ -134,6 +145,8 @@ export class SchedulingUnitCreate extends Component {
}); });
} }
this.setState({observStrategy: observStrategy, paramsSchema: schema, paramsOutput: paramsOutput}); this.setState({observStrategy: observStrategy, paramsSchema: schema, paramsOutput: paramsOutput});
// Function called to clear the JSON Editor fields and reload with new schema
if (this.state.editorFunction) { if (this.state.editorFunction) {
this.state.editorFunction(); this.state.editorFunction();
} }
...@@ -160,6 +173,11 @@ export class SchedulingUnitCreate extends Component { ...@@ -160,6 +173,11 @@ export class SchedulingUnitCreate extends Component {
return this.validEditor?true:false; return this.validEditor?true:false;
} }
/**
* Function to set form values to the SU object
* @param {string} key
* @param {object} value
*/
setSchedUnitParams(key, value) { setSchedUnitParams(key, value) {
let schedulingUnit = this.state.schedulingUnit; let schedulingUnit = this.state.schedulingUnit;
schedulingUnit[key] = value; schedulingUnit[key] = value;
...@@ -220,6 +238,9 @@ export class SchedulingUnitCreate extends Component { ...@@ -220,6 +238,9 @@ export class SchedulingUnitCreate extends Component {
return validForm; return validForm;
} }
/**
* Function to create Scheduling unit
*/
async saveSchedulingUnit() { async saveSchedulingUnit() {
let observStrategy = _.cloneDeep(this.state.observStrategy); let observStrategy = _.cloneDeep(this.state.observStrategy);
const $refs = await $RefParser.resolve(observStrategy.template); const $refs = await $RefParser.resolve(observStrategy.template);
...@@ -237,10 +258,16 @@ export class SchedulingUnitCreate extends Component { ...@@ -237,10 +258,16 @@ export class SchedulingUnitCreate extends Component {
} }
} }
/**
* Cancel SU creation and redirect
*/
cancelCreate() { cancelCreate() {
this.setState({redirect: '/schedulingunit'}) this.setState({redirect: '/schedulingunit'})
} }
/**
* Reset function to be called when user wants to create new SU
*/
reset() { reset() {
const schedulingSets = this.state.schedulingSets; const schedulingSets = this.state.schedulingSets;
this.nameInput.element.focus(); this.nameInput.element.focus();
......
...@@ -121,8 +121,8 @@ it("creates new Scheduling Unit with default values", async() => { ...@@ -121,8 +121,8 @@ it("creates new Scheduling Unit with default values", async() => {
expect(content.queryAllByText('UC1 observation strategy template').length).toBe(3); expect(content.queryAllByText('UC1 observation strategy template').length).toBe(3);
expect(content.queryByText('Task Parameters')).toBeInTheDocument(); expect(content.queryByText('Task Parameters')).toBeInTheDocument();
expect(content.queryByText('Target Pointing 0')).toBeInTheDocument(); expect(content.queryByText('Target Pointing 0')).toBeInTheDocument();
// expect(content.queryByText('Not a valid input. Mimimum: 00:00:00, Maximum:23:59:59.')).not.toBeInTheDocument(); expect(content.queryByText('Not a valid input. Mimimum: 00:00:00, Maximum:23:59:59.')).not.toBeInTheDocument();
// expect(content.queryByText('Not a valid input. Mimimum: 00:00:00, Maximum:90:00:00.')).not.toBeInTheDocument(); expect(content.queryByText('Not a valid input. Mimimum: 00:00:00, Maximum:90:00:00.')).not.toBeInTheDocument();
/* This is set again to call the validateEditor function in the component. /* This is set again to call the validateEditor function in the component.
If this is removed, the editor validation will not occur in the test but works in browser.*/ If this is removed, the editor validation will not occur in the test but works in browser.*/
......
...@@ -186,16 +186,19 @@ const ScheduleService = { ...@@ -186,16 +186,19 @@ const ScheduleService = {
}, },
saveSUDraftFromObservStrategy: async function(observStrategy, schedulingUnit) { saveSUDraftFromObservStrategy: async function(observStrategy, schedulingUnit) {
try { try {
// Create the scheduling unit draft with observation strategy and scheduling set
const url = `/api/scheduling_unit_observing_strategy_template/${observStrategy.id}/create_scheduling_unit/?scheduling_set_id=${schedulingUnit.scheduling_set_id}&name=${schedulingUnit.name}&description=${schedulingUnit.description}` const url = `/api/scheduling_unit_observing_strategy_template/${observStrategy.id}/create_scheduling_unit/?scheduling_set_id=${schedulingUnit.scheduling_set_id}&name=${schedulingUnit.name}&description=${schedulingUnit.description}`
const suObsResponse = await axios.get(url); const suObsResponse = await axios.get(url);
schedulingUnit = suObsResponse.data; schedulingUnit = suObsResponse.data;
if (schedulingUnit && schedulingUnit.id) { if (schedulingUnit && schedulingUnit.id) {
// Update the newly created SU draft requirement_doc with captured parameter values
schedulingUnit.requirements_doc = observStrategy.template; schedulingUnit.requirements_doc = observStrategy.template;
delete schedulingUnit['duration']; delete schedulingUnit['duration'];
schedulingUnit = await this.updateSchedulingUnitDraft(schedulingUnit); schedulingUnit = await this.updateSchedulingUnitDraft(schedulingUnit);
if (!schedulingUnit || !schedulingUnit.id) { if (!schedulingUnit || !schedulingUnit.id) {
return null; return null;
} }
// Create task drafts with updated requirement_doc
schedulingUnit = await this.createSUTaskDrafts(schedulingUnit); schedulingUnit = await this.createSUTaskDrafts(schedulingUnit);
if (schedulingUnit && schedulingUnit.task_drafts.length > 0) { if (schedulingUnit && schedulingUnit.task_drafts.length > 0) {
return schedulingUnit; return schedulingUnit;
......
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