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
55d7e08d
Commit
55d7e08d
authored
3 years ago
by
Ramesh Kumar
Browse files
Options
Downloads
Patches
Plain Diff
TMSS-936
: Updated, growl message and tooltip. Modified few async functions.
parent
a54c934d
No related branches found
No related tags found
2 merge requests
!634
WIP: COBALT commissioning delta
,
!545
Resolve TMSS-936
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/TMSS/frontend/tmss_webapp/src/components/DynamicScheduler.js
+20
-18
20 additions, 18 deletions
...S/frontend/tmss_webapp/src/components/DynamicScheduler.js
with
20 additions
and
18 deletions
SAS/TMSS/frontend/tmss_webapp/src/components/DynamicScheduler.js
+
20
−
18
View file @
55d7e08d
import
React
,
{
Component
}
from
'
react
'
;
import
UtilService
from
'
../services/util.service
'
;
import
{
CustomDialog
}
from
'
../layout/components/CustomDialog
'
;
import
{
Growl
}
from
'
primereac
t/components/
growl/
Growl
'
;
import
{
app
Growl
}
from
'
../layou
t/components/
App
Growl
'
;
import
{
InputSwitch
}
from
'
primereact/inputswitch
'
;
import
AuthStore
from
'
../authenticate/auth.store
'
;
...
...
@@ -12,7 +12,7 @@ export default class DynamicScheduler extends Component {
this
.
state
=
{
dsStatus
:
false
,
// Dynamic Scheduler Status
showDialog
:
false
,
userrole
:
AuthStore
.
getState
(),
permissions
:
AuthStore
.
getState
(),
}
this
.
currentStatus
=
null
;
this
.
updateDSStatus
=
this
.
updateDSStatus
.
bind
(
this
);
...
...
@@ -20,13 +20,15 @@ export default class DynamicScheduler extends Component {
this
.
showConfirmDialog
=
this
.
showConfirmDialog
.
bind
(
this
);
}
async
componentDidMount
(){
let
response
=
await
UtilService
.
getDynamicSchedulerStatus
();
var
status
=
false
;
if
(
response
)
{
status
=
response
.
value
;
}
this
.
setState
({
dynamicScheduler
:
response
,
dsStatus
:
status
});
componentDidMount
()
{
UtilService
.
getDynamicSchedulerStatus
()
.
then
(
response
=>
{
var
status
=
false
;
if
(
response
)
{
status
=
response
.
value
;
}
this
.
setState
({
dynamicScheduler
:
response
,
dsStatus
:
status
});
});
}
/**
...
...
@@ -37,9 +39,9 @@ export default class DynamicScheduler extends Component {
dynamicScheduler
.
value
=
this
.
currentStatus
;
let
response
=
await
UtilService
.
updateDynamicSchedulerStatus
(
dynamicScheduler
);
if
(
response
)
{
this
.
g
rowl
.
show
({
severity
:
'
success
'
,
summary
:
'
Success
'
,
detail
:
'
Dynamic Scheduling
Switch
ed
'
+
((
this
.
currentStatus
===
true
)?
'
On
'
:
'
Off
'
)
+
'
successfully!
'
});
appG
rowl
.
show
({
severity
:
'
success
'
,
summary
:
'
Success
'
,
detail
:
'
Dynamic Scheduling
is turn
ed
'
+
((
this
.
currentStatus
===
true
)?
'
On
'
:
'
Off
'
)
+
'
successfully!
'
});
}
else
{
this
.
g
rowl
.
show
({
severity
:
'
error
'
,
summary
:
'
Error
'
,
detail
:
'
Dynamic Scheduling is not updated successfully.
'
});
appG
rowl
.
show
({
severity
:
'
error
'
,
summary
:
'
Error
'
,
detail
:
'
Dynamic Scheduling is not updated successfully.
'
});
}
this
.
setState
({
dsStatus
:
this
.
currentStatus
,
showDialog
:
false
});
}
...
...
@@ -48,9 +50,9 @@ export default class DynamicScheduler extends Component {
* Show confirmation dialog to enable/disable Dynamic Scheduling
* @param {*} e
*/
async
showConfirmDialog
(
e
)
{
showConfirmDialog
(
e
)
{
this
.
currentStatus
=
e
.
value
;
await
this
.
setState
({
showDialog
:
true
})
this
.
setState
({
showDialog
:
true
})
}
/**
...
...
@@ -61,19 +63,19 @@ export default class DynamicScheduler extends Component {
}
render
()
{
const
{
dynamicScheduler
}
=
this
.
state
.
userrole
.
userRolePermission
;
const
tooltip
=
dynamicScheduler
.
setting
?
`Turn
${
this
.
state
.
dsStatus
?
"
'Off'
"
:
"
'On'
"
}
Dynamic Scheduling`
:
"
Don't have permission to Trun On/Off Dynamic Scheduling
"
const
{
dynamicScheduler
}
=
this
.
state
.
permissions
.
userRolePermission
;
let
tooltip
=
`Dynamic Scheduling is turned
${
this
.
state
.
dsStatus
?
'
On
'
:
'
Off
'
}
. `
;
tooltip
=
`
${
tooltip
}
${
dynamicScheduler
.
setting
?
'
Click
'
:
"
Don't have permission
"
}
to turn it
${
this
.
state
.
dsStatus
?
"
'Off'
"
:
"
'On'
"
}
`
;
return
(
<>
<
Growl
ref
=
{(
el
)
=>
this
.
growl
=
el
}
/
>
<
div
className
=
"
p-field p-grid
"
>
<
label
htmlFor
=
"
autodeletion
"
style
=
{{
marginRight
:
'
10px
'
,
marginLeft
:
'
1em
'
}}
>
Dynamic
Scheduling
:
<
/label
>
<
label
htmlFor
=
"
onLabel
"
style
=
{{
marginRight
:
'
0.25em
'
,
color
:
'
black
'
}}
>
OFF
<
/label
>
{
/*
<label htmlFor="onLabel" style={{ marginRight: '0.25em', color: 'black'}}>OFF</label>
*/
}
<
InputSwitch
disabled
=
{
dynamicScheduler
.
setting
?
!
dynamicScheduler
.
setting
:
true
}
checked
=
{
this
.
state
.
dsStatus
}
onChange
=
{(
e
)
=>
this
.
showConfirmDialog
(
e
)}
tooltip
=
{
tooltip
}
tooltipOptions
=
{
this
.
tooltipOptions
}
/
>
<
label
htmlFor
=
"
onLabel
"
style
=
{{
marginLeft
:
'
0.25em
'
,
color
:
'
black
'
}}
>
ON
<
/label
>
{
/*
<label htmlFor="onLabel" style={{marginLeft: '0.25em', color: 'black'}}>ON</label>
*/
}
<
/div
>
<
CustomDialog
type
=
"
confirmation
"
visible
=
{
this
.
state
.
showDialog
}
width
=
{
'
35vw
'
}
...
...
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