Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
5da0f5ed
Commit
5da0f5ed
authored
4 years ago
by
Ramesh Kumar
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-323
: Issues with updating task and angle conversion for pointing fields are fixed.
parent
81792e6b
No related branches found
No related tags found
1 merge request
!205
Resolves TMSS-323: Issues with updating task and angle conversion for pointing fields are fixed.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/TMSS/frontend/tmss_webapp/src/components/JSONEditor/JEditor.js
+14
-14
14 additions, 14 deletions
...frontend/tmss_webapp/src/components/JSONEditor/JEditor.js
SAS/TMSS/frontend/tmss_webapp/src/routes/Task/edit.js
+5
-2
5 additions, 2 deletions
SAS/TMSS/frontend/tmss_webapp/src/routes/Task/edit.js
with
19 additions
and
16 deletions
SAS/TMSS/frontend/tmss_webapp/src/components/JSONEditor/JEditor.js
+
14
−
14
View file @
5da0f5ed
...
...
@@ -13,12 +13,13 @@ const JSONEditor = require("@json-editor/json-editor").JSONEditor;
function
Jeditor
(
props
)
{
// console.log("In JEditor");
const
editorRef
=
useRef
(
null
);
let
pointingProps
=
useRef
(
null
);
let
editor
=
null
;
useEffect
(()
=>
{
const
element
=
document
.
getElementById
(
'
editor_holder
'
);
let
schema
=
{};
Object
.
assign
(
schema
,
props
.
schema
?
props
.
schema
:{});
pointingProps
=
[];
// Customize the pointing property to capture angle1 and angle2 to specified format
for
(
const
definitionKey
in
schema
.
definitions
)
{
if
(
definitionKey
===
'
pointing
'
)
{
...
...
@@ -42,7 +43,6 @@ function Jeditor(props) {
// Customize datatype of certain properties like subbands, duration, etc.,
getCustomProperties
(
schema
.
properties
);
schema
.
title
=
props
.
title
;
const
subbandValidator
=
validateSubbandOutput
;
const
timeValidator
=
validateTime
;
...
...
@@ -89,6 +89,7 @@ function Jeditor(props) {
disable_edit_json
:
true
,
disable_properties
:
true
,
disable_collapse
:
true
,
show_errors
:
props
.
errorsOn
?
props
.
errorsOn
:
'
change
'
,
// Can be 'interaction', 'change', 'always', 'never'
compact
:
true
};
// Set Initial value to the editor
...
...
@@ -290,6 +291,9 @@ function Jeditor(props) {
options
.
grid_columns
=
9
;
propertyValue
.
options
=
options
;
}
if
(
propertyValue
[
'
$ref
'
]
&&
propertyValue
[
'
$ref
'
].
endsWith
(
"
/pointing
"
))
{
pointingProps
.
push
(
propertyKey
);
}
getCustomProperties
(
propertyValue
);
}
}
...
...
@@ -303,7 +307,7 @@ function Jeditor(props) {
for
(
const
inputKey
in
editorInput
)
{
const
inputValue
=
editorInput
[
inputKey
];
if
(
inputValue
instanceof
Object
)
{
if
(
inputKey
.
endsWith
(
'
pointing
'
)
)
{
if
(
_
.
indexOf
(
pointingProps
,
inputKey
)
>=
0
)
{
inputValue
.
angle1
=
getAngleInput
(
inputValue
.
angle1
);
inputValue
.
angle2
=
getAngleInput
(
inputValue
.
angle2
,
true
);
}
else
if
(
inputKey
===
'
subbands
'
)
{
...
...
@@ -327,7 +331,7 @@ function Jeditor(props) {
for
(
const
outputKey
in
editorOutput
)
{
let
outputValue
=
editorOutput
[
outputKey
];
if
(
outputValue
instanceof
Object
)
{
if
(
outputKey
.
endsWith
(
'
pointing
'
)
)
{
if
(
_
.
indexOf
(
pointingProps
,
outputKey
)
>=
0
)
{
outputValue
.
angle1
=
getAngleOutput
(
outputValue
.
angle1
,
false
);
outputValue
.
angle2
=
getAngleOutput
(
outputValue
.
angle2
,
true
);
}
else
{
...
...
@@ -355,21 +359,11 @@ function Jeditor(props) {
const
dd
=
Math
.
floor
(
prpInput
*
180
/
Math
.
PI
);
const
mm
=
Math
.
floor
((
degrees
-
dd
)
*
60
);
const
ss
=
+
((
degrees
-
dd
-
(
mm
/
60
))
*
3600
).
toFixed
(
0
);
/*return {
dd: dd,
mm: mm,
ss: ss
}*/
return
(
dd
<
10
?
`0
${
dd
}
`
:
`
${
dd
}
`
)
+
'
:
'
+
(
mm
<
10
?
`0
${
mm
}
`
:
`
${
mm
}
`
)
+
'
:
'
+
(
ss
<
10
?
`0
${
ss
}
`
:
`
${
ss
}
`
);
}
else
{
const
hh
=
Math
.
floor
(
degrees
/
15
);
const
mm
=
Math
.
floor
((
degrees
-
(
hh
*
15
))
/
15
*
60
);
const
ss
=
+
((
degrees
-
(
hh
*
15
)
-
(
mm
*
15
/
60
))
/
15
*
3600
).
toFixed
(
0
);
/*return {
hh: hh,
mm: mm,
ss: ss
}*/
return
(
hh
<
10
?
`0
${
hh
}
`
:
`
${
hh
}
`
)
+
'
:
'
+
(
mm
<
10
?
`0
${
mm
}
`
:
`
${
mm
}
`
)
+
'
:
'
+
(
ss
<
10
?
`0
${
ss
}
`
:
`
${
ss
}
`
);
}
}
...
...
@@ -439,6 +433,9 @@ function Jeditor(props) {
if
(
splitOutput
.
length
<
3
)
{
return
false
;
}
else
{
if
(
parseInt
(
splitOutput
[
0
])
>
23
||
parseInt
(
splitOutput
[
1
])
>
59
||
parseInt
(
splitOutput
[
2
])
>
59
)
{
return
false
;
}
const
timeValue
=
parseInt
(
splitOutput
[
0
]
*
60
*
60
)
+
parseInt
(
splitOutput
[
1
]
*
60
)
+
parseInt
(
splitOutput
[
2
]);
if
(
timeValue
>=
86400
)
{
return
false
;
...
...
@@ -456,6 +453,9 @@ function Jeditor(props) {
if
(
splitOutput
.
length
<
3
)
{
return
false
;
}
else
{
if
(
parseInt
(
splitOutput
[
0
])
>
90
||
parseInt
(
splitOutput
[
1
])
>
59
||
parseInt
(
splitOutput
[
2
])
>
59
)
{
return
false
;
}
const
timeValue
=
parseInt
(
splitOutput
[
0
]
*
60
*
60
)
+
parseInt
(
splitOutput
[
1
]
*
60
)
+
parseInt
(
splitOutput
[
2
]);
if
(
timeValue
>
324000
)
{
return
false
;
...
...
This diff is collapsed.
Click to expand it.
SAS/TMSS/frontend/tmss_webapp/src/routes/Task/edit.js
+
5
−
2
View file @
5da0f5ed
...
...
@@ -38,6 +38,7 @@ export class TaskEdit extends Component {
name
:
{
required
:
true
,
message
:
"
Name can not be empty
"
},
description
:
{
required
:
true
,
message
:
"
Description can not be empty
"
}
};
this
.
readOnlyProperties
=
[
'
duration
'
,
'
relative_start_time
'
,
'
relative_stop_time
'
];
this
.
setEditorOutput
=
this
.
setEditorOutput
.
bind
(
this
);
this
.
setTaskParams
=
this
.
setTaskParams
.
bind
(
this
);
this
.
changeTaskTemplate
=
this
.
changeTaskTemplate
.
bind
(
this
);
...
...
@@ -126,16 +127,18 @@ export class TaskEdit extends Component {
saveTask
()
{
let
task
=
this
.
state
.
task
;
task
.
specifications_doc
=
this
.
templateOutput
[
task
.
specifications_template_id
];
// Remove read only properties from the object before sending to API
this
.
readOnlyProperties
.
forEach
(
property
=>
{
delete
task
[
property
]});
TaskService
.
updateTask
(
"
draft
"
,
task
)
.
then
(
(
taskDraft
)
=>
{
if
(
taskDraft
)
{
this
.
setState
({
redirect
:
'
/task/view
'
});
this
.
setState
({
redirect
:
'
/task/view
/draft/
'
+
task
.
id
});
}
});
}
cancelEdit
()
{
this
.
setState
({
redirect
:
'
/task/view
'
});
this
.
setState
({
redirect
:
'
/task/view
/draft/
'
+
this
.
state
.
task
.
id
});
}
componentDidMount
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment