-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path19-shiny-modules.Rmd
289 lines (234 loc) · 6.42 KB
/
19-shiny-modules.Rmd
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# Shiny modules
```{r setup, include=FALSE}
knitr::opts_chunk$set(eval = FALSE)
```
## 19.2.6 Exercises {-}
1. It is good practice to put a module in its own file in the `R/` directory because of namespaces (“spaces” of “names” that are isolated from the rest of the app). Each module is an individual component in isolation from the other modules in the app. Namespacing makes it easier to understand how your app works because you can write, analyse, and test individual components in isolation. When you have the ui and server functions, you need to write a function that uses them to generate an app. See below for an example:
```{r}
# Example of a function that generates an app
histogramApp <- function() {
ui <- fluidPage(
histogramUI("hist1")
)
server <- function(input, output, session) {
histogramServer("hist1")
}
shinyApp(ui, server)
}
# Run app
histogramApp()
```
2.
```{r}
histogramUI <- function(id) {
tagList(
selectInput("var", "Variable", choices = names(mtcars)),
numericInput("bins", "bins", value = 10, min = 1),
plotOutput("hist")
)
}
```
It fails to wrap each existing ID in a call to NS(), so that (e.g.) "var" turns into NS(id, "var"). See below for fixed version:
```{r}
histogramUI <- function(id) {
tagList(
selectInput(NS(id, "var"), "Variable", choices = names(mtcars)),
numericInput(NS(id, "bins"), "bins", value = 10, min = 1),
plotOutput(NS(id, "hist"))
)
}
```
3.
```{r}
randomUI <- function(id) {
tagList(
textOutput(NS(id, "val")),
actionButton(NS(id, "go"), "Go!")
)
}
randomServer <- function(id) {
moduleServer(id, function(input, output, session) {
rand <- eventReactive(input$go, sample(100, 1))
output$val <- renderText(rand())
})
}
```
```{r}
library(shiny)
randomApp <- function() {
ui <- fluidPage(
randomUI("rand1"),
randomUI("rand2"),
randomUI("rand3"),
randomUI("rand4")
)
server <- function(input, output, session) {
randomServer("rand1")
randomServer("rand2")
randomServer("rand3")
randomServer("rand4")
}
shinyApp(ui, server)
}
randomApp()
```
- We know that each module is independent because each returns a different random number when you click go.
- In the [Module UI Section](https://mastering-shiny.org/scaling-modules.html#module-ui), we learn that it’s the responsibility of the person calling the module UI to wrap the result in a layout function like column() or fluidRow() according to their needs. In our problem, we wrap the result in `fluidRow()` and `column()` to make the display more attractive.
```{r}
# module UI
randomUI <- function(id) {
fluidRow(
column(width = 1,
textOutput(NS(id, "val"))),
column(width = 11,
actionButton(NS(id, "go"), "Go!"))
)
}
# module server
randomServer <- function(id) {
moduleServer(id, function(input, output, session) {
rand <- eventReactive(input$go, sample(100, 1))
output$val <- renderText(rand())
})
}
```
```{r}
library(shiny)
# generate app
randomApp <- function() {
ui <- fluidPage(
randomUI("rand1"),
randomUI("rand2"),
randomUI("rand3"),
randomUI("rand4")
)
server <- function(input, output, session) {
randomServer("rand1")
randomServer("rand2")
randomServer("rand3")
randomServer("rand4")
}
shinyApp(ui, server)
}
# run app
randomApp()
```
## 19.3.7 Exercises {-}
::: {.rmdwarning}
1. Not sure.
:::
2.
```{r}
library(shiny)
library(tidyverse)
# Module: Upload dataset----
datasetInput <- function(id) {
fileInput(NS(id, "upload"), "Upload a file")
}
datasetServer <- function(id) {
moduleServer(id, function(input, output, session) {
reactive({
req(input$upload)
read_csv(input$upload$datapath)
})
})
}
# Module: Select numeric variables---
numericVarSelectInput <- function(id) {
selectInput(NS(id, "var"), "Variable", choices = NULL)
}
find_vars <- function(data, filter) {
names(data)[vapply(data, filter, logical(1))]
}
numericVarSelectServer <- function(id, data, filter = is.numeric) {
moduleServer(id, function(input, output, session) {
observeEvent(data(), {
updateSelectInput(session, "var", choices = find_vars(data(), filter))
})
reactive(data()[[input$var]])
})
}
# Module: Summary----
summaryOutput <- function(id) {
tags$ul(
tags$li("Min: ", textOutput(NS(id, "min"), inline = TRUE)),
tags$li("Max: ", textOutput(NS(id, "max"), inline = TRUE)),
tags$li("Missing: ", textOutput(NS(id, "n_na"), inline = TRUE))
)
}
summaryServer <- function(id, var) {
moduleServer(id, function(input, output, session) {
rng <- reactive({
req(var())
range(var(), na.rm = TRUE)
})
output$min <- renderText(rng()[[1]])
output$max <- renderText(rng()[[2]])
output$n_na <- renderText(sum(is.na(var())))
})
}
# Generate app---
summaryApp <- function() {
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
datasetInput("data"),
numericVarSelectInput("var"),
),
mainPanel(
summaryOutput("summary")
)
)
)
server <- function(input, output, session) {
data <- datasetServer("data")
x <- numericVarSelectServer("var", data)
summaryServer("summary", x)
}
shinyApp(ui, server)
}
summaryApp()
```
3.
```{r}
library(shiny)
# Module UI---
ymdDateUI <- function(id, label) {
label <- paste0(label, " (yyyy-mm-dd)")
fluidRow(
textInput(NS(id, "date"), label),
textOutput(NS(id, "error"))
)
}
# Module server---
ymdDateServer <- function(id) {
moduleServer(id, function(input, output, session) {
# display a message if the entered value is not a valid date
# NOTE: I changed the render function to renderPrint after getting a
# weird error message with renderText. See below SO question:
# https://stackoverflow.com/questions/62814804/warning-error-in-cat-argument-1-type-list-cannot-be-handled-by-cat-no-s
output$error <- renderPrint({
# https://mastering-shiny.org/action-feedback.html?q=req()#req-and-validation
req(input$date,cancelOutput = TRUE)
date_mod <- strptime(input$date, "%Y-%m-%d")
if (is.na(date_mod)) {
print("Invalid date")
} else {
print(as.Date(date_mod))
}
})
})
}
# Generate app---
ymdDateApp <- function() {
ui <- fluidPage(
ymdDateUI("date", "Date")
)
server <- function(input, output, session) {
ymdDateServer("date")
}
shinyApp(ui, server)
}
# Run app---
ymdDateApp()
```