About periscope2
- Features
- Predefined but flexible template for new Shiny applications with a default dashboard layout
- Separation by file of functionality that exists in one of the three shiny scopes: global, server-global, and server-local.
- Off-the-shelf and ready to be used modules ('Table Downloader', 'Plot Downloader', 'File Downloader' and 'Reset Application'
- Different methods and tools to alert users and add useful information about application UI and server operations
- Application logger with different levels and a UI tool to display and review recorded application logs
- Application look and feel can be customized easily via 'www/periscope_style.yaml' or more advanced via 'www/css/custom.cs'
- Application can make use of JS power by customizing 'www/js/custom.js'
periscope2 is a scalable and UI-standardized 'shiny' framework including a variety of developer convenience functions with the goal of both streamlining robust application development and assisting in creating a consistent user experience regardless of application or developer.
Announcements
- Features
- Setup
Logger
- Features
- The log rolls over for each session
- The log files are kept in the /log directory and named 'actions.log'
- ONE old copy of the log is kept as 'actions.log.last'
- Setup
- To create actions to the framework call one of the logging functions like:
-
The XXXX should be replaced by an actual log level like 'debug' , 'info' , 'warn' , or 'error' The framework will handle updating LogViewer UI module every time the log is added to.
- 'ss_userAction.Log' is a periscope framework logger that is defined automatically under server.R and should not be altered
- Log level can be changed based on admin preference. Only update 'log_level' parameter in 'set_app_parameters' method in 'program/global.R' file with the required log level 'DEBUG' , 'INFO' , 'WARN' or 'ERROR'
-
To display application logs like below portlet add the following logViewer table to any of 'ui_body.R' boxes
U: logViewerOutput('logViewerId')
S: logXXXX('Your Log Message with %s, %s parameters', parm1, parm2, logger = ss_userAction.Log)
- Example
Click different button in the example application and compare console with below output
Files Organization
File Downloader
- Features
- File downloader module provides the user with the ability to download any server generated data
- Data can be downloaded in any format available for both 'Table Downloader' and 'Plot Downloader' modules
- Data can be downloaded in single format or in multiple formats, based on module configurations
- Setup
-
Module should be configured in both UI and Server code
U: downloadFileButton('uiID', list(extensions))
S: downloadFile('uiID', logger, 'filenameroot', list(datafxns)
- Review ?downloadFileButton and ?downloadFile for more information
- Review below file downloaders for detailed example code
Reset Application
- Features
- appReset module provides the ability to:
- Resets a user's session
- Rolls over their log.
- It creates a toggle button to reset application session
- Upon pressing on the button, its state is flipped to 'cancel application reload' with application and console warning messages indicating that the application will be reloaded
- User can either resume reloading application session or cancel reloading process, which will also generate application and console messages to indicate reloading status and result.
- Waiting time before actual session reset is configurable in milliseconds
- Generated module alerts location can be customized to be displayed in any place, default is application body
- Setup
-
Functionality can be added with the following code:
U: appResetButton('appResetId')
S: appReset(id = 'appResetId', reset_wait = 5000, logger = logger)
-
Run '?periscope2::appResetButton' and '?periscope2::appReset' for more info
- Review example below for detailed code
- Example
Table Downloader
- Features
- Table downloader module display tabular data in rich formatted tables using `DT` package
- Selected rows in the table are returned as a reactive variable that can be used in application different areas
- Table data can be downloaded in different formats such as: 'csv' , 'tsv' , 'txt' and/or 'xlsx'
-
User can customize downloadableTable modules using DT options such as:
- labels: i.e. 'colnames', 'caption', ...
- layout and columns styles: i.e. 'container', 'formatStyle', ...
- other addons: i.e. 'filter', 'callback', ...
- For more information about table options please visit the DT documentation site
- Setup
downloadableTableUI('exampleDT1', list('csv', 'tsv'), 'Download table data'))
downloadableTable('exampleDT1', ss_userAction.Log, 'exampletable', list(csv = load_data3, tsv = load_data3))
Plot Downloader - ggplot2 & lattice
- Features
- This module creates a custom plot output that provide download capability to plot tools that have no internal download ability like ggplot2 & lattice.
- Plot can be downloaded in different formats such as: 'png' , 'jpeg' , 'tiff' and/or 'bmp'
- Plot data itself can be downloaded in different formats such as: 'csv' , 'tsv' , 'txt' and/or 'xlsx'
- To enrich user experience, plot downloader module also can take advanced shiny parameters as 'clickOpts', 'hoverOpts' or 'brushOpts'
- Plot dimensions can be easily adapted
- plot download button location can be easily controlled
- Setup
- Module should be configured in both the UI and Server code
-
In your 'body_ui.R', place module UI part as follow:
downloadablePlotUI('myplotID', c('png', 'csv'), 'Download Plot or Data', '300px'))
-
In your 'server_local.R', place module server part,
with the same id used with UI part
, as follow:
downloadablePlot('myplotID', ss_userAction.Log, filenameroot = 'mydownload1', downloadfxns = list(png = myplotfxn, tsv = mydatafxn))
-
Run '?periscope2::downloadablePlot' for more info
- Review below table for detailed example code
Example
Busy Indicators
Periscope2 has two application busy indicators
- Application Loading
Alerts
Alerts can be added with the following code in the server:
S:periscope2::createPSAlert(id = 'alert place', options = list(title = 'alert title', status = 'alert status'', closable = TRUE, content = alert contents))
Examples
LOCATION can be: 'sidebarRightAlert', 'sidebarBasicAlert', 'bodyAlert', 'footerAlert' and 'headerAlert'
Tooltips
Tooltips can be added with the following code in the UI:
U: ui_tooltip('tooltipID', 'label text (optional)', 'text content', 'placement' (optional))
Examples
Top Tooltips



Style Guide
- The theme can be updated by editing 'www/periscope_style.yaml' and relaunching the app
** Note: Updating app theme might take a few seconds