-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendModal.R
40 lines (36 loc) · 1.67 KB
/
endModal.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#outputs end of modal
endModal <- function(p1Score, p1Name, p2Score, p2Name){
if (p1Score != p2Score){
winner <- c(p1Name,p2Name)[which.max(c(p1Score, p2Score))]
loser <- c(p1Name,p2Name)[which.min(c(p1Score, p2Score))]
modal <- fluidPage(
img(src="congratulations.jpg", height="70%", width="70%", style="display: block; margin-left: auto; margin-right: auto;", alt="found on google"),
tags$h6(tags$a(href="https://www.pinterest.com/pin/551620654356891248/", "image credit"), align="center"),
tags$hr(),
tags$h4(paste(winner, "wins with", max(c(p1Score, p2Score)), "points!"), align="center"),
tags$br(),
tags$h4(paste(loser, "loses with", min(c(p1Score, p2Score)), "points!"), align="center")
)} else {
modal <- fluidPage(
img(src="congratulations.jpg", height="70%", width="70%", style="display: block; margin-left: auto; margin-right: auto;", alt="found on google"),
tags$h6(tags$a(href="https://www.pinterest.com/pin/551620654356891248/", "image credit"), align="center"),
tags$hr(),
tags$h4(paste(p1Name, "and", p2Name, "are tied with", p1Score, "points!"))
)}
return(modal)
}
# testing
# getscores <- function(p1Score, p1Name, p2Score, p2Name){
# if (p1Score != p2Score){
# winner <- c(p1Name,p2Name)[which.max(c(p1Score, p2Score))]
# loser <- c(p1Name,p2Name)[which.min(c(p1Score, p2Score))]
# paste("the winner is", winner, "with", max(c(p1Score, p2Score)), "points, and the loser is", loser, "with", min(c(p1Score, p2Score)), "points!")
#
# } else{
# paste(p1Name, "and", p2Name, "are tied with", p1Score, "points!")
# }
#
#
# }
#
# getscores(9, "player1", 9, "player2")