-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
397 lines (317 loc) · 11.9 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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# See global.R for setup
# Server ---------------------------------------------------------------------
message("Run server")
server <- function(input, output, session) {
# DT Filtered Tab -----------------------------------------------------------
message("DT Filtered")
# README
observeEvent(input$show_dt_readme, {
showNotification(dt_readme,
type = "message",
duration = 30)
})
# Property type lookup, with formatted dropdown table
observe({
if (input$dt_proptype == TRUE) {
updateSelectizeInput(session, "dt_pick_prop", choices = list(
`Single Family` = c("Single Family Residential", "Townhouse"),
`Multi-Family` = c("Condo/Co-op", "Multi-Family (2-4 Unit)", "Multi-Family (5+ Unit)")
),
selected = "Condo/Co-op")
}
})
# Filtered reactive table
redfin_data <- reactive({
input$dt_refresh
# list_date date range is the limiting data pipeline variable
dt_start <- input$dt_daterange[1]
dt_end <- input$dt_daterange[2]
# Message to flag unreasonable dates
validate(
need(
dt_end >= dt_start,
"Review date range: start date later than end date.")
)
# Pull from redfin_pool defined in database_connections.R
redfin <- redfin_pool %>%
tbl("redfin_demo") %>%
collect() %>%
mutate(across(c(sold_date, list_date, seen_date),
~ as.Date(., "%m/%d/%Y"))) %>%
filter(list_date >= dt_start & list_date <= dt_end) %>%
mutate(
priority = case_when(
priority == 1 ~ "yes",
priority == 2 ~ "maybe",
TRUE ~ "")
)
# Syntax if data is in schema myschema:
# redfin <- redfin_pool %>%
# tbl(dbplyr::in_schema("myschema", "redfin_demo")) %>%
# collect()
# Format keywords
keyword_list <- paste(input$dt_pick_keywords, collapse = "|") %>%
tolower()
filtered <- redfin %>%
filter(
# Max Price
price <= input$dt_max_price * 1000,
# Priority
conditional(input$dt_priority == TRUE,
(priority == "yes" | priority == "maybe")), # note priority is char
# Location
conditional(input$dt_city == TRUE,
city %in% format_input(input$city_id)),
# Conditional Prop type
conditional(input$dt_proptype == TRUE,
property_type %in% format_input(input$dt_pick_prop)),
# Conditional Keywords
conditional(input$dt_keywords == TRUE,
grepl(keyword_list,
tolower(address)))
) %>%
arrange(city, desc(list_date))
})
output$dt_filtered <- DT::renderDT(
DT::datatable(redfin_data(),
rownames = FALSE, # no obs index
selection = "single",
extensions = c("KeyTable", "RowGroup"), # Group rows
filter = list(positions = "top", clear = FALSE),
options = list(keys = TRUE,
rowGroup = list(dataSrc = c(6)), # Group rows by col 7
columnDefs = list(list(visible = FALSE,
targets = c(0, 2, 3, 7, 8, 13, 15))), # hide cols
dom = "Blfrtip",
orientation = "landscape",
searchHighlight = TRUE,
search = list(smart = TRUE),
scrollX = TRUE,
scrollY = "500px", # allows column names to freeze at top
pageLength = 50,
orderClasses = TRUE)
),
server = FALSE # if true, only prints rows visible on the page
) # close table
output$dt_proplist <- downloadHandler(
filename = "redfin_DTtable.csv",
content = function(file) {
write.csv(redfin_data(),
file, row.names = FALSE)
}
)
dt_tstamp <- reactive({input$dt_refresh
tstamp <- file.mtime("data/redfin_demo.sqlite3")
state_tstamp <- paste0("Last updated at: ", tstamp)
state_tstamp
})
output$dt_timestamp <- renderText({
dt_tstamp()
})
# Rhandsontable CRUD Tab --------------------------------------------------
message("Rhandsontable CRUD")
# README
observeEvent(input$show_rhandson_readme, {
showNotification(rhandson_readme,
type = "message",
duration = 30)
})
# Redfin data filtered by keywords in address
rh_redfin_data <- reactive({
input$rh_city_id
input$rh_prop_id
# Filtered pull from redfin_pool defined in database_connections.R
# Note: any data cut here needs to be rejoined with SQL
# This call doesn't cut fields; full rows are appended back to main df
redfin <- redfin_pool %>%
tbl("redfin_demo") %>%
collect() %>%
filter(
#City
city %in% format_input(input$rh_city_id),
property_type %in% format_input(input$rh_prop_id)
) %>%
mutate(
priority = case_when(
priority == 1 ~ "yes",
priority == 2 ~ "maybe",
TRUE ~ ""
)
) %>%
arrange(city, list_date)
})
# Update and reset data from multiple inputs
redfin_values <- reactiveValues(data = as.data.frame(NULL))
# Begin
observeEvent(
{input$rh_city_id # note multiple inputs
input$rh_prop_id
1}, {
redfin_values$data <- rh_redfin_data()
})
# Reset back to rh_redfin_data ---NOTE this does not re-pull from SQL
observeEvent(input$reset_input, {
redfin_values$data <- rh_redfin_data()
})
message("Rhandsontable")
output$rhandson_redfin <- renderRHandsontable({
input$rh_city_id
input$rh_prop_id
# Dropdown menu options - can also be taken from a flat file lookup
priority_options <- c("yes", "maybe", "")
table <- rhandsontable({redfin_values$data},
search = TRUE,
highlightRow = TRUE,
highlightCol = TRUE,
stretchH = "all",
height = 500,
width = 1000,
rowHeaders = FALSE,
selectCallback = TRUE) %>%
hot_context_menu(allowRowEdit = TRUE,
allowColEdit = FALSE) %>%
# Minimize columns that don't require user reference or edits
hot_col(col = c("id", "sale_type", "sold_date", "state",
"zip_code", "lot_size", "year_built", "status",
"metro_distance"),
colWidths = 0.1) %>%
hot_col(col = "priority", type = "dropdown",
source = priority_options) %>%
hot_col(col = "notes", colWidths = 80)
table
})
# Save user-edited table
message("Save data")
observeEvent(input$save_button, {
# Pull table from UI - note fields likely formatted as character
temp <- as.data.frame(hot_to_r(req(input$rhandson_redfin)))
# Format for SQLite col types
temp_sql <- temp %>%
mutate(priority = case_when(
priority == "yes" ~ 1,
priority == "maybe" ~ 2,
priority == "" ~ 0
)) %>%
mutate(across(c(sold_date, list_date, seen_date),
~ as.character(.))) %>%
mutate(across(c(id, price, beds, baths, zip_code, square_feet, priority),
~ as.numeric(.)))
# Add updates to data
update_ids <- temp_sql$id
orig_table <- redfin_pool %>%
tbl("redfin_demo") %>%
collect() %>%
mutate(across(c(sold_date, list_date, seen_date),
~ as.character(.))) %>%
mutate(across(c(id, price, beds, baths, zip_code, square_feet, priority),
~ as.numeric(.))) %>%
filter(!(id %in% all_of(update_ids))) %>%
bind_rows(temp_sql)
write.csv(orig_table,
file = "tests/redfindemo_backup.csv",
row.names = FALSE)
RSQLite::dbWriteTable(redfin_pool, "redfin_demo", orig_table, overwrite = TRUE)
message("Saved")
}) # close save
rh_tstamp <- reactive({
input$save_button
tstamp <- file.mtime("data/redfin_demo.sqlite")
state_tstamp <- paste0("Last updated at: ", tstamp)
state_tstamp
})
output$rh_timestamp <- renderText({
rh_tstamp()
})
# Priority price distribution tab ------------------------------------------
message("Priority price dist")
# README Notification for disk tab
observeEvent(input$show_dist_readme, {
showNotification(dist_readme,
type = "message",
duration = 30)
})
# "Priority" price dist by property type: data table
priority_price <- reactive({
input$dist_refresh
input$dist_city_id
# Adding message to choose property type
validate(
need(
!(is.na(input$dist_city_id)),
"Select a location")
)
filtered <- redfin_pool %>%
tbl("redfin_demo") %>%
collect() %>%
filter(
priority == 1,
city %in% format_input(input$dist_city_id)
) %>%
arrange(price)
filtered
})
output$dist_table <- DT::renderDT(
DT::datatable(priority_price(),
rownames = FALSE, # no obs index
selection = "single",
extensions = c("KeyTable", "Buttons"),
filter = list(positions = "top", clear = FALSE),
options = list(keys = TRUE,
columnDefs = list(list(visible = FALSE,
targets = c(0, 2, 3, 7, 8, 13, 15))), # hide cols
dom = "Blfrtip",
orientation = "landscape",
buttons = list(list(extend = "colvis",
text = "Hide Fields"),
list(extend = "collection",
buttons = c("csv", "excel"),
text = "Spreadsheet")),
searchHighlight = TRUE,
search = list(smart = TRUE),
scrollX = TRUE,
scrollY = "300px", # allows column names to freeze at top
pageLength = 50,
orderClasses = TRUE)) %>%
DT::formatCurrency(c(9), digits = 0, currency = "$"),
server = FALSE # if true, only prints rows visible on the page
) # close table
priority_price_dist <- reactive({
input$dist_refresh
input$dist_city_id
# Adding message to choose property type
validate(
need(
!(is.na(input$dist_city_id)),
"Select a location")
)
dist_df <- priority_price()
dist <- ggplot(dist_df,
aes(x = price, group = property_type, fill = property_type)) +
geom_density(adjust = 1.5, colour = "black", size = 0.15) +
theme_bw() +
scale_fill_brewer() +
facet_wrap(~property_type) +
theme(
legend.position = "none",
panel.spacing = unit(0.1, "lines"),
axis.ticks.x = element_blank()
) +
ggtitle(paste("Priority",
input$dist_city_id,
"Home Prices by Property Type",
sep = " ")) +
labs(x = "Price ($)")
dist
})
output$dist_plot <- renderPlot({ priority_price_dist() })
# Show time of last update
dist_tstamp <- reactive({
input$dist_refresh
tstamp <- file.mtime("data/redfin_demo.sqlite3")
state_tstamp <- paste0("Redfin table last updated at: ", tstamp)
state_tstamp
})
output$dist_timestamp <- renderText({
dist_tstamp()
})
} # close server