-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
55 lines (54 loc) · 1.85 KB
/
ui.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
source("global.R")
# Define UI for application that draws a histogram
tagList(
useShinyjs(),
navbarPage(
id = "navbar",
title =
div(img(src = "logomark.png",
class = "logo"),
"Cafe",
class = "navbar-title"),
theme = "custom.css",
fluid = TRUE,
windowTitle = "CAFE",
collapsible = TRUE,
header = tags$head(
tags$style(HTML(
"#page-nav > li:first-child { display: none; }"
)),
tags$link(rel = "stylesheet", type = "text/css", href = "https://fonts.googleapis.com/css?family=Chivo"),
tags$link(rel = "stylesheet", type = "text/css", href = "AdminLTE.css"),
tags$link(rel = "stylesheet", type = "text/css", href = "shinydashboard.css"),
tags$link(rel = "stylesheet", type = "text/css", href = "custom.css"),
tags$link(rel = "icon", type = "image/png", href = "favicon.png"),
tags$script(src = "https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js")
),
home,
navbarMenu(
"participants",
venn_ui("participants"),
demographics_ui("participants")
),
navbarMenu(
"analysis",
univar_ui("analysis"),
concon_ui("analysis"),
catcon_ui("analysis"),
multivariate_ui("analysis"),
multivariate_cor_ui("analysis"),
tud_ui("analysis"),
scales_ui("analysis"),
esquisse_ui("esquisse")
),
navbarMenu(
"tables",
preprocessed_table("tables"),
summarised_table("tables"),
chronicle_table("tables"),
maq_table("tables"),
linked_table("tables")
),
codebook("documentation")
)
)