Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ShinyApps
briskaRShinyApp
Commits
d6a4590f
Commit
d6a4590f
authored
Jun 17, 2020
by
Virgile Baudrot
Browse files
remove DataExplorer
parent
7db21ef7
Changes
2
Hide whitespace changes
Inline
Side-by-side
NAMESPACE
View file @
d6a4590f
...
...
@@ -3,8 +3,6 @@
export(iconed)
export(mod_tabItemDamage_server)
export(mod_tabItemDamage_ui)
export(mod_tabItemDataExplorer_server)
export(mod_tabItemDataExplorer_ui)
export(mod_tabItemDevelopment_server)
export(mod_tabItemDevelopment_ui)
export(mod_tabItemDispersal_server)
...
...
R/mod_tabItemDataExplorer.R
deleted
100644 → 0
View file @
7db21ef7
# Module UI
#' @title mod_tabItemDataExplorer_ui and mod_tabItemDataExplorer_server
#' @description A shiny Module.
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_tabItemDataExplorer
#'
#' @keywords internal
#' @export
#' @importFrom shiny NS tagList
mod_tabItemDataExplorer_ui
<-
function
(
id
){
ns
<-
NS
(
id
)
tabItem
(
tabName
=
"dataExplorer"
,
title
=
"Data Explorer"
,
# App title ----
fluidRow
(
shinydashboardPlus
::
gradientBox
(
title
=
" - Information"
,
width
=
12
,
icon
=
"fa-info-circle"
,
gradientColor
=
"purple"
,
boxToolSize
=
"xs"
,
collapsible
=
TRUE
,
closable
=
FALSE
,
footer_padding
=
FALSE
,
p
(
"Information on Data Explorer ..."
)
)
),
fluidRow
(
box
(
title
=
"Next"
,
width
=
12
,
status
=
"primary"
,
solidHeader
=
TRUE
,
p
(
"If it's ok, click next"
),
actionButton
(
'switchReport'
,
"Next"
,
icon
=
icon
(
"forward"
),
style
=
"color: #fff; background-color: #3c8dbc; border-color: #3c8dbc"
)
)
)
)
}
# Module Server
#' @rdname mod_tabItemDataExplorer
#' @export
#' @keywords internal
mod_tabItemDataExplorer_server
<-
function
(
input
,
output
,
session
,
r
){
ns
<-
session
$
ns
}
## To be copied in the UI
# mod_tabItemDataExplorer_ui("tabItemDataExplorer_ui_1")
## To be copied in the server
# callModule(mod_tabItemDataExplorer_server, "tabItemDataExplorer_ui_1")
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment