Nothing
#' Checks if GUI package is installed
#'
#' Indicates presence or absence of HaDeXGUI package.
#'
#' @return logical value indicating availability of GUI package
is_GUI_installed <- function()
length(find.package("HaDeXGUI", quiet = TRUE)) > 0
#' Installs GUI package from GitHub
#'
#' @importFrom remotes install_github
#'
#' @return No return value, called for side effects
#'
#' @export
install_GUI <- function(){
message("Please install missing HaDeXGUI package using remotes::install_github(\"hadexversum/HaDeXGUI\")")
# remotes::install_github("hadexversum/HaDeXGUI")
}
handle_missing_GUI <- function() {
if (interactive()) {
response <- menu(
c("yes", "no"),
title = "To be able to run HaDeX Graphical User Interface, you have to have the 'HaDeXGUI' package installed. It is available via GitHub. Install?")
switch (
response,
yes = tryCatch(
install_GUI(),
finally = if (!is_GUI_installed()) {
warning("There was an error during an attempt to install 'HaDeXGUI' package.", call. = FALSE)
} else {
message("Package installed successfully. You can run the app now calling 'HaDeX_GUI()' once again.")
}
),
no = message("You cannot run the GUI without having installed 'HaDeXGUI'. You can do it by calling 'HaDeX::install_GUI()'."),
)
} else {
message("To be able to run HaDeX Graphical User Interface, you have to have the 'HaDeXGUI' package installed. You can do it by calling 'HaDeX2::install_GUI()' or 'remotes::install_github()'.")
}
}
#' HaDeX Graphical User Interface
#'
#' @description Shows how to launch graphical user interface from HaDeXGUI package.
#' If the GUI package is not installed, it asks user whether to install it.
#'
#' @return No return value, called for side effects
#'
#' @section Warning : Any ad-blocking software may cause malfunctions.
#'
#' @export
HaDeX_GUI <- function() {
# if (is_GUI_installed()) {
# opts <- options()
# on.exit(options(opts))
# options(
# shiny.port = port,
# golem.app.prod = prod
# )
# #HaDeXGUI::run_app(options = options, ...)
# message("Please run HaDeXGUI::run_app to start the HaDeX2 web server'.")
#
# } else handle_missing_GUI()
if (is_GUI_installed()) {
message("Please run HaDeXGUI::run_app() to start the HaDeX2 web server'.")
} else handle_missing_GUI()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.