generated from dfe-analytical-services/shiny-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
147 lines (143 loc) · 4.42 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
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
# ---------------------------------------------------------
# This is the ui file.
# Use it to call elements created in your server file into the app, and define where they are placed.
# Also use this file to define inputs.
#
# Every UI file should contain:
# - A title for the app
# - A call to a CSS file to define the styling
# - An accessibility statement
# - Contact information
#
# Other elements like charts, navigation bars etc. are completely up to you to decide what goes in.
# However, every element should meet accessibility requirements and user needs.
#
# This file uses a slider input, but other inputs are available like date selections, multiple choice dropdowns etc.
# Use the shiny cheatsheet to explore more options: https://shiny.rstudio.com/images/shiny-cheatsheet.pdf
#
# Likewise, this template uses the navbar layout.
# We have used this as it meets accessibility requirements, but you are free to use another layout if it does too.
#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
# ---------------------------------------------------------
#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
# The documentation for this GOVUK components can be found at:
#
# https://github.com/moj-analytical-services/shinyGovstyle
#
#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
# The documentation for this GOVUK components can be found at:
#
# https://github.com/moj-analytical-services/shinyGovstyle
#
ui <- function(input, output, session) {
page(
# use_tota11y(),
title = tags$head(
tags$link(
rel = "shortcut icon",
href = "dfefavicon.png"
),
# Add title for browser tabs
tags$title("KS4 Ready Reckoner")
),
tags$html(lang = "en"),
# Add meta description for search engines
meta() %>%
meta_general(
application_name = "KS4 Ready Reckoner",
description = "KS4 Ready Reckoner",
robots = "index,follow",
generator = "R-Shiny",
rating = "General",
referrer = "no-referrer"
),
shinyjs::useShinyjs(),
# Setting up cookie consent based on a cookie recording the consent:
# https://book.javascript-for-r.com/shiny-cookies.html
tags$head(
tags$script(
src = paste0(
"https://cdn.jsdelivr.net/npm/js-cookie@rc/",
"dist/js.cookie.min.js"
)
),
tags$script(src = "cookie-consent.js")
),
tags$head(includeHTML(("google-analytics.html"))),
tags$head(
tags$link(
rel = "stylesheet",
type = "text/css",
href = "dfe_shiny_gov_style.css"
)
),
shinyGovstyle::cookieBanner("DfE Key Stage 4 Ready Reckoner tool"),
shinyGovstyle::header(
main_text = "",
main_link = "https://www.gov.uk/government/organisations/department-for-education",
secondary_text = "Key Stage 4 Ready Reckoner Tool",
logo = "images/DfE_logo_landscape.png",
logo_width = 150,
logo_height = 32
),
shinyGovstyle::banner(
"beta banner",
"beta",
paste0(
"This Dashboard is in beta phase and we are still reviewing performance and reliability."
)
),
shiny::navlistPanel(
"",
id = "navlistPanel",
widths = c(2, 8),
well = FALSE,
homepage_panel(),
dashboard_panel(),
dashboard2_panel(),
dashboard3_panel(),
a11y_panel(),
tabPanel(
"Support and feedback",
gov_main_layout(
gov_row(
column(
12,
dfeshiny::support_panel(
team_email = "[email protected]",
repo_name = "https://github.com/dfe-analytical-services/KS4-ready-reckoners",
publication_name = "Key Stage 4 Performance",
publication_slug = "key-stage-4-performance-revised"
)
)
)
)
)
),
tags$script(
src = "script.js"
),
footer(full = TRUE)
)
}