Super Solutions for Shiny Architecture 3/5: Softcoding Constants in the App

[This article was first published on r – Appsilon Data Science | End­ to­ End Data Science Solutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Super Solutions for Shiny Architecture 3/5: Softcoding Constants in the App

TL;DR

Two methods for keeping your Shiny app organized while avoiding hardcoding.

Softcoding Constants in a Shiny App

They can be found everywhere. Text on buttons, urls to be linked, some numeric thresholds, a font to be used on ggplot, technical IDs to business names mapping, column names from datasets… We are all (at least try to be) good programmers and we do not want to hardcode those values in the code. You can imagine the inconvenience of searching for them throughout the code when modification is implemented. And you always miss something that slightly does not fit your search query. That is why Shiny developers use so-called constant values (or global variables) in the app.

Let us share two methods that we consider the most useful: a simple and an advanced one. Keep It Simple Stupid (KISS) is usually the way to go, but we cannot stop ourselves from bragging about the advanced solution.

Note: if your constants consist basically of text displayed on the user interface, it might be worth it to introduce internationalization to the app. We recommend the shiny.i18n open source package. It will solve the problem of keeping text organized and not hardcoded as well as prepare you for your manager’s inevitable last minute message: “Could we translate app UI to Hungarian? There is a big client there and we need it for a demo tomorrow. I’m sure you will figure something out.”

The simple solution:

Add an R script with all constants declared as variables (objects). Store them in a single place, making them easily found and managed. What is then needed is simple sourcing of the file (or just having it in an /R directory if you develop Shiny as a package). Keeping them all in global or server is not recommended as those important files will quickly get messy.

What we also recommend is having some special naming convention for those global variables. There is nothing worse than spotting a variable in the code and being confused for a few minutes before realizing that it is not defined in the current observe, but is taken from constants. Any kind of visual distinction can be used, like common prefix, suffix, using different styling e.g. snake_case not camelCase, or, as usually used in programming, spelling such variables with CAPITAL letters. Just be sure to keep the method consistent across the whole project.

Note: using such constants in the app with modules violates the rule of having modules independent from the rest of the code. From our experience modules developed for advanced applications are rarely used in other code, but if you’re afraid of this, then you can store constants on a list per module and pass this list as a module’s parameter. When the module is later used it will be super easy to spot and re-use all of the constants values needed for this module. Here is an example:

# in constants.R
ggplot2.settings <- list()
ggplot2.settings$font <- "Source Sans Pro"
ggplot2.settings$fontsize <- 11
# in server
source(constants.R)
callModule(
 plottingModule,
 "plotModule",
 settings = ggplot2.settings
) 

The advanced solution: 

For the most complicated apps that we have produced, we organized our constants in a little bit more of a sophisticated way. Our goal was to separate namespaces so that variable names do not interfere. In order to achieve it, create an R6Class initialized in global.R (with the built-in $new() method). The class should have only a single public method for initialization: read the bunch of json files (separated according to the functionality/screen) and assign them to the list (named as json file) on the newly created namespace. The jsons are organized as pairs variable-value.

Advanced Softcoding schema

Please note that the json files can be as nested as you wish! That is super helpful for organizing your constants in a hierarchical structure. 

If you do not want to mess with namespaces, you can always set consts as a regular list thus implementing some combination of simple and advanced solutions.

To sum up: choosing the method to organize your constants is not as important as avoiding hardcoding in the app. Start with this idea in mind and our simple solution. The future version of You will be grateful! 

Thanks for reading!  Questions? Comments? Add them below and/or follow me on Twitter @dubelmarcin.  You can also check out the other posts in the “Super Solutions for Shiny Architecture Series”: #1 Using Session Data and #2 Javascript is your friend.  

And don’t forget to sign up for our newsletter!

Article Super Solutions for Shiny Architecture 3/5: Softcoding Constants in the App comes from Appsilon Data Science | End­ to­ End Data Science Solutions.

To leave a comment for the author, please follow the link and comment on their blog: r – Appsilon Data Science | End­ to­ End Data Science Solutions.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)