• Stars
    star
    101
  • Rank 326,188 (Top 7 %)
  • Language
    R
  • License
    Other
  • Created over 3 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[WIP] Natively Multipage Shiny Apps

brochure

R build status Lifecycle: experimental R-CMD-check

THIS IS A WORK IN PROGRESS, DO NOT USE

The goal of {brochure} is to provide a mechanism for creating natively multi-page {shiny} applications, i.e that can serve content on multiple endpoints.

Disclaimer: the way you will build app with {brochure} is different from the way you usually build {shiny} apps, as we no longer operate under the single page app paradigm. Please read the โ€œDesign Patternโ€ of this README for more info.

Installation

You can install the dev version of {brochure} with:

remotes::install_github("ColinFay/brochure")
library(brochure)
#> 
#> Attaching package: 'brochure'
#> The following object is masked from 'package:utils':
#> 
#>     page
library(shiny)

About

Youโ€™re reading the doc about version : 0.0.0.9024

This README has been compiled on the

Sys.time()
#> [1] "2023-03-27 14:00:48 CEST"

Here are the test & coverage results :

devtools::check(quiet = TRUE)
#> โ„น Loading brochure
#> โ”€โ”€ R CMD check results โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ brochure 0.0.0.9024 โ”€โ”€โ”€โ”€
#> Duration: 12.1s
#> 
#> 0 errors โœ” | 0 warnings โœ” | 0 notes โœ”
covr::package_coverage()
#> brochure Coverage: 42.07%
#> R/brochure-fns.R: 0.00%
#> R/brochureApp.R: 0.00%
#> R/req_res_handlers.R: 0.00%
#> R/server-side.R: 0.00%
#> R/utils_page.R: 0.00%
#> R/utils_req.R: 0.00%
#> R/cookie.R: 93.91%
#> R/golem_hook.R: 100.00%
#> R/new_page.R: 100.00%
#> R/utils.R: 100.00%

Minimal {brochure} App

page()

A brochureApp is a series of pages that are defined by an href (the path/endpoint where the page is available), a {shiny} UI and a server function. This is conceptually important: each page has its own shiny session, its own UI, and its own server.

Note that the server is optional if you want to display a static page.

brochureApp(
  # First page
  page(
    href = "/",
    ui = fluidPage(
      h1("This is my first page"),
      plotOutput("plot")
    ),
    server = function(input, output, session) {
      output$plot <- renderPlot({
        plot(iris)
      })
    }
  ),
  # Second page, without any server-side function
  page(
    href = "/page2",
    ui = fluidPage(
      h1("This is my second page"),
      tags$p("There is no server function in this one")
    )
  )
)

You can now navigate to /, and to /page2 inside your browser.

redirect()

Redirections can be used to redirect from one endpoint to the other:

brochureApp(
  page(
    href = "/",
    ui = tagList(
      h1("This is my first page")
    )
  ),
  redirect(
    from = "/nothere",
    to = "/"
  )
)

You can now navigate to /nothere, youโ€™ll be redirected to /

A more elaborate example:

# Creating a navlink
nav_links <- tags$ul(
  tags$li(
    tags$a(href = "/", "home"),
  ),
  tags$li(
    tags$a(href = "/page2", "page2"),
  ),
  tags$li(
    tags$a(href = "/contact", "contact"),
  )
)

page_1 <- function() {
  page(
    href = "/",
    ui = function(request) {
      tagList(
        h1("This is my first page"),
        nav_links,
        plotOutput("plot")
      )
    },
    server = function(input, output, session) {
      output$plot <- renderPlot({
        plot(mtcars)
      })
    }
  )
}

page_2 <- function() {
  page(
    href = "/page2",
    ui = function(request) {
      tagList(
        h1("This is my second page"),
        nav_links,
        plotOutput("plot")
      )
    },
    server = function(input, output, session) {
      output$plot <- renderPlot({
        plot(mtcars)
      })
    }
  )
}

page_contact <- function() {
  page(
    href = "/contact",
    ui = tagList(
      h1("Contact us"),
      nav_links,
      tags$ul(
        tags$li("Here"),
        tags$li("There")
      )
    )
  )
}

brochureApp(
  # Pages
  page_1(),
  page_2(),
  page_contact(),
  # Redirections
  redirect(
    from = "/page3",
    to = "/page2"
  ),
  redirect(
    from = "/page4",
    to = "/"
  )
)

IMPORTANT NOTE all elements which are not of class "brochure_*" (brochure_page and brochure_redirect) will be injected as is in the page. In other word, if you use a function that return a string, the string will be added as is to the pages. For example, this will inject a "x" on each page. This is probably NOT what you want to do, but can be the source of some bugs youโ€™ll have with your app.

brochureApp(
  "x",
  page(
    href = "/"
  )
)

req_handlers & res_handlers

Sorry what?

Each page, and the global app, have a req_handlers and res_handlers parameters, that can take a list of functions.

An *_handler is a function that takes as parameter(s):

  • For req_handlers, req, which is the request object (see below for when these objects are created). For example function(req){ print(req$PATH_INFO); return(req)}.

  • For res_handlers, res, the response object, & req. For example function(res, req){ print(res$content); return(res)}.

req_handlers must return req & res_handlers must return res. Both can be potentially modified.

They can be used to register log, or to modify the objects, or any kind of things you can think of. If you are familiar with express.js, you can think of req_handlers as what express calls โ€œmiddlewareโ€. These functions are run when R is building the HTTP response to send to the browser (i.e, no server code has been run yet), following this process:

  1. R receives a GET request from the browser, creating a request object, called req
  2. The req_handlers are run using this req object
  3. R creates an httpResponse, using this req and how you defined the UI
  4. The res_handlers are run on this httpResponse (first app level res_handlers, then page level res_handlers)
  5. The httpResponse is sent back to the browser

Note that if any req_handlers returns an httpResponse object, it will be returned to the browser immediately, without any further computation. This early httpResponse will not be passed to the res_handlers of the app or the page. This process can for example be used to send custom httpResponse, as shown below with the healthcheck endpoint.

You can use formulas inside your handlers. .x and ..1 will be req for req_handlers, .x and ..1 will be res & .y and ..2 will be req for res_handlers.

Design pattern side-note: youโ€™d probably want to define the handlers outside of the app, for better code organization (as with log_where below).

Example: Logging with req_handlers(), and building a healthcheck point

In this app, weโ€™ll log to the console every page and the time it is called, using the log_where() function.

log_where <- function(req) {
  cli::cat_rule(
    sprintf(
      "%s - %s",
      Sys.time(),
      req$PATH_INFO
    )
  )
  req
}

Weโ€™ll also build an healthcheck endpoint that simply returns a httpResponse with the 200 HTTP code.

# Reusing the pages from before
brochureApp(
  req_handlers = list(
    log_where
  ),
  # Pages
  page_1(),
  page_2(),
  page_contact(),
  page(
    href = "/healthcheck",
    # As this is a pure backend exchange,
    # We don't need a UI
    ui = tagList(),
    # As this req_handler returns an httpResponse,
    # This response will be returned directly to the browser,
    # without passing through the usual shiny http dance
    req_handlers = list(
      # If you have shiny < 1.6.0, you'll need to
      # do shiny:::httpResponse (triple `:`)
      # as it is not exported until 1.6.0.
      # Otherwise, see ?shiny::httpResponse
      ~ shiny::httpResponse(200, content = "OK")
    )
  )
)

If you navigate to each page, youโ€™ll see this in the console:

Listening on http://127.0.0.1:4879
โ”€โ”€ 2021-02-17 21:52:16 - / โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
โ”€โ”€ 2021-02-17 21:52:17 - /page2 โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
โ”€โ”€ 2021-02-17 21:52:19 - /contact โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€

If you go to another R session, you can check that youโ€™ve got a 200 on healthcheck

> httr::GET("http://127.0.0.1:4879/healthcheck")
Response [http://127.0.0.1:4879/healthcheck]
  Date: 2021-02-17 21:55
  Status: 200
  Content-Type: text/html; charset=UTF-8
  Size: 2 B

Handling cookies using res_handlers

res_handlers can be used to set cookies, by adding a Set-Cookie header, using both the set_cookie() and remove_cookie() functions.

Note that you can get them from the server with get_cookies(), and parse the cookie string using parse_cookie_string.

parse_cookie_string("a=12;session=blabla")
#>        a  session 
#>     "12" "blabla"

In the example, weโ€™ll also use brochure::server_redirect("/") to redirect the user after login.

# Creating a navlink
nav_links <- tags$ul(
  tags$li(
    tags$a(href = "/", "home"),
  ),
  tags$li(
    tags$a(href = "/login", "login"),
  ),
  tags$li(
    tags$a(href = "/logout", "logout"),
  )
)

home <- function() {
  page(
    href = "/",
    ui = tagList(
      h1("This is my first page"),
      tags$p("It will contain BROCHURECOOKIE depending on the last page you've visited (/login or /logout)"),
      verbatimTextOutput("cookie"),
      nav_links
    ),
    server = function(input, output, session) {
      output$cookie <- renderPrint({
        parse_cookie_string(
          get_cookies()
        )
      })
    }
  )
}

login <- function() {
  page(
    href = "/login",
    ui = tagList(
      h1("You've just logged!"),
      verbatimTextOutput("cookie"),
      actionButton("redirect", "Redirect to the home page"),
      nav_links
    ),
    server = function(input, output, session) {
      output$cookie <- renderPrint({
        parse_cookie_string(
          get_cookies()
        )
      })
      observeEvent(input$redirect, {
        # Using brochure to redirect to another page
        server_redirect("/")
      })
    },
    res_handlers = list(
      # We'll add a cookie here
      ~ set_cookie(.x, "BROCHURECOOKIE", 12)
      # If you had to do it yourself
      # function(res, req){
      #   res$headers$`Set-Cookie` <- "BROCHURECOOKIE=12; HttpOnly;"
      #   res
      # }
    )
  )
}

logout <- function() {
  page(
    href = "/logout",
    ui = tagList(
      h1("You've logged out"),
      nav_links,
      verbatimTextOutput("cookie")
    ),
    server = function(input, output, session) {
      output$cookie <- renderPrint({
        parse_cookie_string(
          get_cookies()
        )
      })
    },
    res_handlers = list(
      # We'll remove the cookie here
      ~ remove_cookie(.x, "BROCHURECOOKIE")
      # If you had to do it yourself
      # function(res, req){
      #   res$headers$`Set-Cookie` <- "BROCHURECOOKIE=''; Max-Age = 0;"
      #   res
      # }
    )
  )
}

brochureApp(
  # Pages
  home(),
  login(),
  logout()
)

Design pattern

Note that every time you open a new page, a new shiny session is launched. This is different from what you usually do when you are building a {shiny} app that works as a single page application. This is no longer the case in {brochure}.

What that means is that there is no data persistence in R when navigating from one page to the other. That might seem like a downside, but I believe that it will actually be for the best: it will make developers think more carefully about the data flow of their application.

That being said, how do we keep track of a user though pages, so that if they do something in a page, itโ€™s reflected on another?

To do that, youโ€™d need to add a form of session identifier, like a cookie: this can for example be done using the {glouton} package if you want to manage it with JS. You can also use the cookie example from before.

Youโ€™ll also need a form of backend storage (here in the example, we use {cachem}, but you can also use an external DB like SQLite or MongoDB).

library(glouton)
# Creating a storage system
cache_system <- cachem::cache_disk(tempdir())

nav_links <- tags$ul(
  tags$li(
    tags$a(href = "/", "home"),
  ),
  tags$li(
    tags$a(href = "/page2", "page2"),
  )
)

cookie_set <- function() {
  r <- reactiveValues()

  observeEvent(
    TRUE,
    {
      # Fetch the cookies using {glouton}
      r$cook <- fetch_cookies()

      # If there is no stored cookie for {brochure}, we generate it
      if (is.null(r$cook$brochure_cookie)) {
        # Generate a random id
        session_id <- digest::sha1(paste(Sys.time(), sample(letters, 16)))
        # Add this id as a cookie
        add_cookie("brochure_cookie", session_id)
        # Store in in the reactiveValues list
        r$cook$brochure_cookie <- session_id
      }
      # For debugging purpose
      print(r$cook$brochure_cookie)
    },
    once = TRUE
  )
  return(r)
}

page_1 <- function() {
  page(
    href = "/",
    ui = tagList(
      h1("This is my first page"),
      nav_links,
      # The text enter on page 1 will be available on page 2, using
      # a session cookie and a storage system
      textInput("textenter", "Enter a text"),
      actionButton("save", "Save my text and go to page2")
    ),
    server = function(input, output, session) {
      r <- cookie_set()
      observeEvent(input$save, {
        # Use the session id to save on the cache system
        cache_system$set(
          paste0(
            r$cook$brochure_cookie,
            "text"
          ),
          input$textenter
        )
        server_redirect("/page2")
      })
    }
  )
}

page_2 <- function() {
  page(
    href = "/page2",
    ui = tagList(
      h1("This is my second page"),
      nav_links,
      # The text enter on page 1 will be available here, reading
      # the storage system
      verbatimTextOutput("textdisplay")
    ),
    server = function(input, output, session) {
      r <- cookie_set()
      output$textdisplay <- renderPrint({
        # Getting the content value based on the session cookie
        cache_system$get(
          paste0(
            r$cook$brochure_cookie,
            "text"
          )
        )
      })
    }
  )
}

brochureApp(
  # Setting {glouton} globally
  use_glouton(),
  # Pages
  page_1(),
  page_2()
  # Redirections
)

With {golem}

Fresh {golem} App

You can set up a {brochure} based app with {golem} using the brochure::golem_hook() function.

golem::create_golem("mapmyrace", project_hook = brochure::golem_hook)

You can also use the module_template function to create a {brochure} module :

golem::add_module(name = "pouet", module_template = brochure::new_page)

Adapt old app

To adapt your {golem} based application to {brochure}, here are the two steps to follow:

  • Remove the app_server.R file, and the top of app_ui => Youโ€™ll still need golem_add_external_resources().

  • Build the pages inside separate R scripts, following the example from this README.

.
โ”œโ”€โ”€ DESCRIPTION
โ”œโ”€โ”€ NAMESPACE
โ”œโ”€โ”€ R
โ”‚   โ”œโ”€โ”€ app_config.R
โ”‚   โ”œโ”€โ”€ home.R ### YOUR PAGE
โ”‚   โ”œโ”€โ”€ login.R ### YOUR PAGE
โ”‚   โ”œโ”€โ”€ logout.R ### YOUR PAGE
โ”‚   โ””โ”€โ”€ run_app.R ### YOUR PAGE
โ”œโ”€โ”€ dev
โ”‚   โ”œโ”€โ”€ 01_start.R
โ”‚   โ”œโ”€โ”€ 02_dev.R
โ”‚   โ”œโ”€โ”€ 03_deploy.R
โ”‚   โ””โ”€โ”€ run_dev.R
โ”œโ”€โ”€ inst
โ”‚   โ”œโ”€โ”€ app
โ”‚   โ”‚   โ””โ”€โ”€ www
โ”‚   โ”‚       โ”œโ”€โ”€ favicon.ico
โ”‚   โ””โ”€โ”€ golem-config.yml
โ”œโ”€โ”€ man
โ”‚   โ””โ”€โ”€ run_app.Rd
  • Replace shinyApp with brochureApp in run_app(), add the external resources, then your pages.
run_app <- function(
  onStart = NULL,
  options = list(),
  enableBookmarking = NULL,
  ...
) {
  with_golem_options(
    app = brochureApp(
      # Putting the resources here
      golem_add_external_resources(),
      home(),
      login(),
      logout(),
      onStart = onStart,
      options = options,
      enableBookmarking = enableBookmarking
    ),
    golem_opts = list(...)
  )
}

Previous work

Other packages that implements features that are closed to what {brochure} does:

As far as I can tell, these packages doesnโ€™t serve the same goal as what {brochure} does, as they both still serve Single Page Applications.

More Repositories

1

attempt

Tools for defensive programming in R
R
122
star
2

nessy

A 'NES' css for 'Shiny'
R
104
star
3

hexmake

A Shiny App for Making Hex Stickers.
R
90
star
4

erum2018

"Building a package that lasts" โ€” eRum 2018 workshop
78
star
5

hordes

R from NodeJS, the right way.
JavaScript
58
star
6

aside

Send a long R job to be run aside
R
57
star
7

golemexamples

Gathering in one place some {golem} examples
R
55
star
8

bubble

Launch and interact with a NodeJS session from R
HTML
52
star
9

backyard

A Web App for Easier Bookdown Collaboration
R
50
star
10

conf

Slides from various conferences
R
49
star
11

gargoyle

Event-Based Structures for 'Shiny'
R
48
star
12

golemize

Example of turning apps to golem
JavaScript
46
star
13

fryingpane

Serve datasets from a package inside the RStudio Connection Pane.
R
41
star
14

glouton

'JS-cookies' in Shiny
R
40
star
15

tidystringdist

String distance calculation the tidy way.
R
40
star
16

user2019workshop

38
star
17

tidytuesday201942

A golem App for #TidyTuesday, 2019-10-15
HTML
38
star
18

geoloc

Add geolocation inside your shiny app
R
38
star
19

craneur

Create your own R Archive Network
HTML
36
star
20

argh

Hey, Everybody Makes Mistakes
R
36
star
21

resume

Bootstrap Resume Template for Shiny
R
32
star
22

purrr-cookbook

[Work In Progress] A cookbook of purrr recipes
HTML
30
star
23

crrry

'crrri' recipes for 'shiny'
R
28
star
24

r-ci

Docker images for Continous Integration / Continuous Delivery for R Projects
Dockerfile
26
star
25

feathericons

Feather Icons for Shiny
R
24
star
26

golemexample

An example app for illustrating golem features
R
24
star
27

proustr

Tools for Natural Language Processing in French and texts from Marcel Proust's collection "A La Recherche Du Temps Perdu"
R
24
star
28

handydandy

Easy CSS Styling for Shiny
R
22
star
29

darkmode

'darkmode.js' for 'Shiny'
R
19
star
30

frankenstein

Bring your Shiny App back from the dead
R
18
star
31

haddock

[WIP - DO NOT USE] A Shiny Server written in Node JS
JavaScript
18
star
32

chuck

10x Shiny App with Chuck Norris jokes
R
18
star
33

ronline

A NodeJS app to explore multiple versions of R
JavaScript
18
star
34

mdlinks

A Google Chrome extension to create Markdown links for the current page
JavaScript
17
star
35

odds

On Disk Data Storage for Cross-Session Access in R
R
16
star
36

jekyllthat

RMarkdown to Github Jekyll md
R
15
star
37

r-db

[WIP] A Docker image w/ the whole stack of packages from the CRAN task view "Databases"
HTML
15
star
38

tweetthat

A simple wrapper to tweet straight from your R session.
R
14
star
39

rpinterest

An R package to access the Pinterest API
R
11
star
40

rgeoapi

This package requests informations from the french GรฉoAPI inside R โ€” https://api.gouv.fr/api/geoapi.html
R
10
star
41

writing-r-extensions

"Writing R Extensions" manual as a bookdown
R
8
star
42

skeleton

Skeleton CSS for Shiny
R
8
star
43

dockerstats

R Wrapper Around 'docker stats'
R
7
star
44

debugin

An RStudio Addin for Debugging
R
7
star
45

ariel

Access the SIRENE API from R
R
7
star
46

minifying

An Application to Minify CSS, JAVASCRIPT, CSS, and HTML files
R
6
star
47

golem-joburg

satRday Johannesburg golem Workshop
R
6
star
48

minifyr

Wrapper around node-minify NodeJS module
R
6
star
49

worrkout

Generate and post workouts as a issue to a GitHub repo.
R
6
star
50

noon

Watch MIDI Events from R
R
5
star
51

languagelayeR

Access the languagelayer API with R
HTML
5
star
52

rrocketchat

R API wrapper for Rocket.Chat
R
4
star
53

rnotify

A Wrapper Around the 'node-notify-cli' module, in R.
R
4
star
54

clientsdb

A docker image with a client review database built with postgre, to be used for teaching.
R
4
star
55

ur-first-5k

Running your first 5K by closing GitHub issues
R
4
star
56

lexiquer

Access Lexique3.81, a Natural Language Processing Database for French
R
4
star
57

colinfay.github.io

website
HTML
4
star
58

rfeel

A Wrapper for the FEEL lexicon
R
3
star
59

here.js

Finding your files in NodeJS โ€” Port of the {here} R package
JavaScript
3
star
60

tuRbonegro

[Just for fun] Plays a random Turbonegro clip in your R Viewer
R
3
star
61

r-internals

"R Internals" manual as a bookdown
R
3
star
62

daw

R
2
star
63

LoremJulia

A basic lorem ipsum generator made in Julia.
Julia
2
star
64

wikileaksdm

Wikileaks Twitter DMs leak as a browsable and reusable format
HTML
2
star
65

rstudiosnippets

Random RStudio Snippets
2
star
66

cordes

[WIP] Boilerplate for Wrapping Node Modules in R packages
R
2
star
67

wtfismyip

A simple, dependency free wrapper around wtfismyip
R
2
star
68

website

Personnal Website
CSS
2
star
69

golem4bench

A very simple golem-based package, made for benchmark
R
1
star
70

orderdiv

R
1
star
71

majordome

[WIP] Manage Remote 'RConnect' and 'RStudio Package Manger' from your R session
R
1
star
72

r-language-definition

"R Language Definition" manual as a bookdown
R
1
star
73

osgridfolio

[WIP] A dead simple grid portfolio to display your GitHub projects, written in pure CSS & vanilla JS
CSS
1
star
74

gloup

glop
R
1
star
75

colinfay

1
star
76

webrspongebob

Example repo of an app built with `webrcli` & `spidyr`
JavaScript
1
star
77

intro-to-r

"Intro to R" manual as a bookdown
HTML
1
star
78

r-devel-doc

Documenting the process of submitting a bug fix to R
Shell
1
star