Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
teknikattan-scoring-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tddd96-grupp1
teknikattan-scoring-system
Commits
1f184339
Commit
1f184339
authored
3 years ago
by
Björn Modée
Browse files
Options
Downloads
Patches
Plain Diff
Add comments
parent
7b86c31b
No related branches found
No related tags found
No related merge requests found
Pipeline
#46052
passed with warnings
3 years ago
Stage: setup
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
client/src/pages/views/OperatorViewPage.tsx
+15
-1
15 additions, 1 deletion
client/src/pages/views/OperatorViewPage.tsx
with
15 additions
and
1 deletion
client/src/pages/views/OperatorViewPage.tsx
+
15
−
1
View file @
1f184339
...
@@ -122,6 +122,7 @@ const OperatorViewPage: React.FC = () => {
...
@@ -122,6 +122,7 @@ const OperatorViewPage: React.FC = () => {
endCompetition
()
endCompetition
()
}
}
/** Handles the closing of popup*/
const
handleClose
=
()
=>
{
const
handleClose
=
()
=>
{
setOpen
(
false
)
setOpen
(
false
)
setOpenCode
(
false
)
setOpenCode
(
false
)
...
@@ -133,17 +134,20 @@ const OperatorViewPage: React.FC = () => {
...
@@ -133,17 +134,20 @@ const OperatorViewPage: React.FC = () => {
setOpen
(
true
)
setOpen
(
true
)
}
}
/** Handles opening the code popup */
const
handleOpenCodes
=
async
()
=>
{
const
handleOpenCodes
=
async
()
=>
{
await
getCodes
()
await
getCodes
()
setOpenCode
(
true
)
setOpenCode
(
true
)
}
}
/** Function that runs when the operator closes the competition */
const
endCompetition
=
()
=>
{
const
endCompetition
=
()
=>
{
setOpen
(
false
)
setOpen
(
false
)
socketEndPresentation
()
socketEndPresentation
()
dispatch
(
logoutCompetition
(
'
Operator
'
))
dispatch
(
logoutCompetition
(
'
Operator
'
))
}
}
/** Retrives the codes from the server */
const
getCodes
=
async
()
=>
{
const
getCodes
=
async
()
=>
{
await
axios
await
axios
.
get
(
`/api/competitions/
${
activeId
}
/codes`
)
.
get
(
`/api/competitions/
${
activeId
}
/codes`
)
...
@@ -179,6 +183,7 @@ const OperatorViewPage: React.FC = () => {
...
@@ -179,6 +183,7 @@ const OperatorViewPage: React.FC = () => {
return
typeName
return
typeName
}
}
/** Starting the timer */
const
handleStartTimer
=
()
=>
{
const
handleStartTimer
=
()
=>
{
if
(
!
slideTimer
)
return
if
(
!
slideTimer
)
return
...
@@ -186,11 +191,13 @@ const OperatorViewPage: React.FC = () => {
...
@@ -186,11 +191,13 @@ const OperatorViewPage: React.FC = () => {
else
socketSync
({
timer
:
{
...
timer
,
enabled
:
false
}
})
else
socketSync
({
timer
:
{
...
timer
,
enabled
:
false
}
})
}
}
/** Function that runs when operator presses the next slide button */
const
handleSetNextSlide
=
()
=>
{
const
handleSetNextSlide
=
()
=>
{
if
(
activeSlideOrder
!==
undefined
)
if
(
activeSlideOrder
!==
undefined
)
socketSync
({
slide_order
:
activeSlideOrder
+
1
,
timer
:
{
value
:
null
,
enabled
:
false
}
})
socketSync
({
slide_order
:
activeSlideOrder
+
1
,
timer
:
{
value
:
null
,
enabled
:
false
}
})
}
}
/** Function that runs when operator presses the previous slide button */
const
handleSetPrevSlide
=
()
=>
{
const
handleSetPrevSlide
=
()
=>
{
if
(
activeSlideOrder
!==
undefined
)
if
(
activeSlideOrder
!==
undefined
)
socketSync
({
slide_order
:
activeSlideOrder
-
1
,
timer
:
{
value
:
null
,
enabled
:
false
}
})
socketSync
({
slide_order
:
activeSlideOrder
-
1
,
timer
:
{
value
:
null
,
enabled
:
false
}
})
...
@@ -205,7 +212,7 @@ const OperatorViewPage: React.FC = () => {
...
@@ -205,7 +212,7 @@ const OperatorViewPage: React.FC = () => {
</
DialogTitle
>
</
DialogTitle
>
</
Center
>
</
Center
>
<
DialogContent
>
<
DialogContent
>
{
/*
<DialogContentText>Här visas tävlingskoderna till den valda tävlingen.</DialogContentText>
*/
}
{
/*
* competition codes popup
*/
}
{
codes
&&
{
codes
&&
codes
.
map
((
code
)
=>
(
codes
.
map
((
code
)
=>
(
<
ListItem
key
=
{
code
.
id
}
style
=
{
{
display
:
'
flex
'
}
}
>
<
ListItem
key
=
{
code
.
id
}
style
=
{
{
display
:
'
flex
'
}
}
>
...
@@ -246,6 +253,8 @@ const OperatorViewPage: React.FC = () => {
...
@@ -246,6 +253,8 @@ const OperatorViewPage: React.FC = () => {
</
Button
>
</
Button
>
</
DialogActions
>
</
DialogActions
>
</
Dialog
>
</
Dialog
>
{
/* Verify exit popup */
}
<
OperatorHeader
color
=
"primary"
position
=
"fixed"
>
<
OperatorHeader
color
=
"primary"
position
=
"fixed"
>
<
Tooltip
title
=
"Avsluta tävling"
arrow
>
<
Tooltip
title
=
"Avsluta tävling"
arrow
>
<
OperatorQuitButton
onClick
=
{
handleVerifyExit
}
variant
=
"contained"
color
=
"secondary"
>
<
OperatorQuitButton
onClick
=
{
handleVerifyExit
}
variant
=
"contained"
color
=
"secondary"
>
...
@@ -279,12 +288,16 @@ const OperatorViewPage: React.FC = () => {
...
@@ -279,12 +288,16 @@ const OperatorViewPage: React.FC = () => {
</
OperatorHeaderItem
>
</
OperatorHeaderItem
>
</
OperatorHeader
>
</
OperatorHeader
>
{
<
div
style
=
{
{
minHeight
:
64
}
}
/>
}
{
<
div
style
=
{
{
minHeight
:
64
}
}
/>
}
{
/* Show the correct slide */
}
<
OperatorContent
>
<
OperatorContent
>
<
OperatorInnerContent
>
<
OperatorInnerContent
>
{
activeViewTypeId
&&
<
SlideDisplay
variant
=
"presentation"
activeViewTypeId
=
{
activeViewTypeId
}
/>
}
{
activeViewTypeId
&&
<
SlideDisplay
variant
=
"presentation"
activeViewTypeId
=
{
activeViewTypeId
}
/>
}
</
OperatorInnerContent
>
</
OperatorInnerContent
>
</
OperatorContent
>
</
OperatorContent
>
{
<
div
style
=
{
{
minHeight
:
128
}
}
/>
}
{
<
div
style
=
{
{
minHeight
:
128
}
}
/>
}
{
/* Show the operator buttons */
}
<
OperatorFooter
position
=
"fixed"
>
<
OperatorFooter
position
=
"fixed"
>
<
Tooltip
title
=
"Föregående sida"
arrow
>
<
Tooltip
title
=
"Föregående sida"
arrow
>
<
div
>
<
div
>
...
@@ -332,6 +345,7 @@ const OperatorViewPage: React.FC = () => {
...
@@ -332,6 +345,7 @@ const OperatorViewPage: React.FC = () => {
</
Tooltip
>
</
Tooltip
>
</
OperatorFooter
>
</
OperatorFooter
>
{
/* Show the user that they have joined the competition */
}
<
Snackbar
<
Snackbar
open
=
{
successMessageOpen
&&
Boolean
(
competitionName
)
}
open
=
{
successMessageOpen
&&
Boolean
(
competitionName
)
}
autoHideDuration
=
{
4000
}
autoHideDuration
=
{
4000
}
...
...
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