Skip to content
Snippets Groups Projects
Commit 1f184339 authored by Björn Modée's avatar Björn Modée
Browse files

Add comments

parent 7b86c31b
No related branches found
No related tags found
No related merge requests found
Pipeline #46052 passed with warnings
...@@ -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}
......
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