# voson dashboard shiny app globals
# app version
app_version <- paste0("v", VOSONDash::getVOSONDashVer())
isLocal <- Sys.getenv('SHINY_PORT') == ""
if (!is.null(getShinyOption("VOSONIsLocal"))) {
isLocal <- getShinyOption("VOSONIsLocal")
}
pkgMsgs <- TRUE
if (!is.null(getShinyOption("VOSONPkgMsgs"))) {
pkgMsgs <- getShinyOption("VOSONPkgMsgs")
}
source("packages.R", local = TRUE)
# file upload sizes
ifelse(isLocal, options(shiny.maxRequestSize = 128*1024^2), # 128 MB
options(shiny.maxRequestSize = 48*1024^2)) # 48 MB
is2910 <- FALSE
if (utils::packageVersion("vosonSML") >= "0.29.10") { is2910 <- TRUE }
# graph data
voson_cat_prefix <- "^vosonCA_"
voson_txt_prefix <- "^vosonTxt_"
# plots
gbl_rng_range <- c(1, 5000)
gbl_plot_def_label_color <- "#333333"
gbl_plot_def_vertex_color <- "orange"
gbl_plot_sel_vertex_color <- "#74c6ff" # "#006cb7"
gbl_sel_label_col <- "#006cb7"
gbl_plot_palette <- function(n = 8) brewer.pal(n, "Dark2")
gbl_plot_height <- 500
ta_plot_height <- "450px"
# data tables
options(htmlwidgets.TOJSON_ARGS = list(na = 'string'))
gbl_dt_menu_len <- list(c(20, 40, 60, 100, -1), c('20', '40', '60', '100', 'All'))
gbl_dt_page_len <- 20
gbl_dt_col_defs <- list(list(
render = JS(
"function(data, type, row, meta) {",
"return type === 'display' && data.length > 36 ?",
"'<span title=\"' + data + '\">' + data.substr(0, 36) + '...</span>' : data;",
"}")
))
vpopover <- function(title, content) {
div(HTML(paste("<a href = \"#\"",
"class = \"popover-link\"",
"data-toggle = \"popover\"",
"data-container = \"body\"",
"data-content = \"", content, "\"",
"data-html = \"true\"",
"data-trigger = \"focus\"",
"tabindex = \"0\"",
"title = \"", title, "\"",
">",
"<i class=\"fa fa-question-circle\" style = \"font-size:0.90em;vertical-align:top;\"></i></a>"))
, style = "width:4px;display:inline-block;")
}
gbl_scroll_delay <- 250 # ms
gbl_scroll_console <- "
shinyjs.scroll_console = function(id) {
$('#' + id + '').scrollTop($('#' + id + '')[0].scrollHeight);
}"
disable_tab_jscode <- "
shinyjs.disableTab = function(name) {
var tab = $('.nav li a[data-value=' + name + ']');
tab.bind('click.tab', function(e) {
e.preventDefault();
return false;
});
tab.addClass('disabled');
}"
disable_tab_css <- "
.nav li a.disabled {
background-color: #f5f5f5 !important;
color: #444 !important;
cursor: not-allowed !important;
border-color: #f5f5f5 !important;
}"
# for shiny javascript conditional
js_is_mac <- "false"
if (VOSONDash::isMac()) { js_is_mac <- "true" }
# collection
gbl_def_tweet_count <- 100
gbl_def_youtube_count <- 200
source("ui/popovers.R")
# modules
source("modules/collectionModule.R")
source("modules/textAnalysisModule.R")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.