-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
215 lines (184 loc) · 5.88 KB
/
server.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
library(shiny)
library(shinyalert)
library(shinyjs)
library(DT)
source('server/data.R')
source('server/vraag.R')
source('server/resultaat.R')
options(
# whenever there is one account token found, use the cached token
gargle_oauth_email = TRUE,
# specify auth tokens should be stored in a hidden directory ".secrets"
gargle_oauth_cache = ".secrets"
)
server <- function(input, output, session) {
vragen_data <- load_quiz_drive_data()
historyData <- reactiveVal()
huidigeQuiz <-
reactiveVal(
list(
gestart = FALSE,
aantalVragen = NULL,
huidigeVraag = NULL,
vragenIdxs = NULL,
vragen = NULL,
antwoorden = list()
)
)
output$nieuw <- renderUI({
column(6, align="center", offset = 3,
div(
id = "nieuwe_quiz",
HTML('<h2>Oefenen basistentamen Klinisch Chemie! </h2> <br/>'),
HTML(sprintf('Via deze pagina kunt u een nieuwe oefen quiz starten om
het basistentamen van de klinische chemie te oefenen. Standaard
zijn alle categorieën geselecteerd. Pas dit aan om specifieke
modules te oefenen. <br/> Er zitten op dit moment <b> %d vragen </b> in
de database! <br/> Succes! <br/> <br/> ', nrow(vragen_data))),
selectInput(
'aantalvragen',
'Selecteer het aantal vragen',
c(10, 20, 50, 100, 200),
selectize = FALSE
),
selectInput(
'categorien',
'Selecteer de categoriën',
multiple = TRUE,
unique(vragen_data$Cat),
selected = unique(vragen_data$Cat),
selectize = FALSE
),
actionButton('submit',
'Start quiz!')
))
})
observeEvent(input$submit, {
if (is.null(input$categorien)) {
.cat <- unique(vragen_data$Cat)
} else {
.cat <- input$categorien
}
.vragenData <- vragen_data %>%
filter(Cat %in% .cat)
vragenIdx = sample(nrow(.vragenData), size = input$aantalvragen)
huidigeQuiz(
list(
gestart = TRUE,
aantalVragen = as.numeric(input$aantalvragen),
vraagNr = 1,
huidigeVraag = .vragenData[vragenIdx[1],],
vragenIdxs = vragenIdx,
vragen = .vragenData,
antwoorden = list()
)
)
updateTabsetPanel(session, "quizNav",
selected = "Quiz")
})
output$quiz <- renderUI({
.hq <- huidigeQuiz()
if (.hq$gestart) {
if (.hq$vraagNr > .hq$aantalVragen) {
.history <- append_historical_results(.hq,
isolate(input$store)$history)
updateStore(session,
"history",
.history)
historyData(.history)
render_resultaat(.hq)
} else {
render_vraag(.hq)
}
} else {
column(6, align="center", offset = 3,
div(
HTML('<h2> Quiz is nog niet gestart! </h2>')
)
)
}
})
observeEvent(input$submitVraag, {
.hq <- huidigeQuiz()
.hv <- .hq$huidigeVraag
if (.hv$Type %in% c('MC', 'TRUEFALSE')) {
.c <- input$antwoord == .hv$Correct
.t <- ifelse(.c, 'success', 'error')
.ti <- ifelse(.c, 'Goed!', 'Fout!')
.hq$antwoorden <- append(.hq$antwoorden, .c)
shinyalert(
html = TRUE,
title = .ti,
text = tagList(HTML(sprintf(
'<h6> Jouw antwoord: </h6> %s <br/>',
.hv[, input$antwoord]
)),
HTML(sprintf(
'<h6> Correcte antwoord: </h6> %s',
.hv[, .hv$Correct]
)),
if(!is.na(.hv$Toelichting))
HTML(sprintf(
'<br> <br> <details><summary>
<h7> <center> Toelichting </center> </h7></summary>
<p>%s</p></details>', .hv$Toelichting))
),
type = .t,
timer = 20000,
showConfirmButton = TRUE,
callbackR = function(x) {
.hq$vraagNr <- .hq$vraagNr + 1
.hq$huidigeVraag <- .hq$vragen[.hq$vragenIdx[.hq$vraagNr],]
huidigeQuiz(.hq)
}
)
} else {
shinyalert(
html = TRUE,
title = 'Is je antwoord goed?',
text =
tagList(HTML(sprintf(
'<h6>Jouw antwoord:</h6> %s <br/>',
input$antwoord
)),
HTML(
sprintf('<h6>Correcte antwoord:</h6> %s',
.hv[, .hv$Correct])
),
if(!is.na(.hv$Toelichting))
HTML(sprintf(
'<br> <br> <details><summary>
<h7> <center> Toelichting </center> </h7></summary>
<p>%s</p></details>', .hv$Toelichting))
),
timer = 20000,
showConfirmButton = TRUE, confirmButtonText = 'Goed',
showCancelButton = TRUE, cancelButtonText = 'Fout',
callbackR = function(x) {
.hq$antwoorden <- append(.hq$antwoorden, x)
.hq$vraagNr <- .hq$vraagNr + 1
.hq$huidigeVraag <- .hq$vragen[.hq$vragenIdx[.hq$vraagNr],]
huidigeQuiz(.hq)
}
)
}
})
output$historie <- renderUI({
if (is.null(historyData())) {
historyData(input$store$history)
}
if (is.null(historyData())) {
HTML('Geen historische resultaten.')
} else {
column(6, align="center", offset=3,
div(
id = 'table',
DT::renderDataTable(as.data.frame(historyData()),
rownames = FALSE,
colnames = c('Datum', 'Categoriën',
'Aantal vragen', 'Goed (%)'))
)
)
}
})
}