ShinyUiEditor

Build Shiny application UIs by dragging-and-dropping. Generates clean and proper code as you build.

Getting Started

Learn how to get the UI editor up and running and editing your first app.

How Tos

Learn how to accomplish some common tasks with the UI editor.

FAQs

Answers to some common questions about the UI editor.

Live Demo

Use the UI editor directly in your browser. No install needed. Provides copyable code for your app.

The goal of the Shiny Ui Editor is to allow people to build the broad-level UI for their Shiny app without writing code. The editor is intended for those who may not be comfortable with the HTML-style code of Shiny’s UI functions or who simply don’t want to fiddle with sizes to get things laid out correctly.

Installing

While in development the package is only available on github:

install.packages("remotes")

# Install using the remotes package
remotes::install_github("rstudio/shinyuieditor")

🚨 Installation fail? See the Trouble installing section.

Running

There are two main ways to run the UI editor. Using the R packages included launch_editor() function, or using the VSCode extension.

launch_editor()

In any R console, simply run launch_editor(app_loc = "loc/of/app") and point it to the root of your Shiny app. (App must be a single-file app in a file called app.R.) This will open up a browser window with the UI editor for you.

VSCode extension

In VSCode, install the ShinyUiEditor extension from the marketplace. Once this extension is installed, anytime you open a file with the title ending in app.R you will see a small icon for running the ui editor in the top right.

Button to run ShinyUiEditor on app file

Click that icon to start the ui editor.

Alternatively, if you wish to start a new app with the ui editor you can open the command palette and run the command shinyuieditor.launchEditor (or “Launch ShinyUiEditor”) to choose an app location for editing an existing app or creating a new one from a template.

Launch editor command

Feedback

Found a bug or want to suggest a feature? Use the github issues page: github repo’s issues..

More general comments can be sent via email (nick.strayer@posit.co) or for more public discourse, twitter.

The things most useful for feedback at this stage are:

  • Are there interaction patterns you kept wanting to do that were either unavailable or not intuitive? E.g., Wanting to delete an element with the delete key or by throwing the element off the screen.
  • Did the app crash? If so
    • Was the crash reflected in errors in the R console?
    • if not, were there errors in the browser’s javascript console? (Keyboard shortcut Ctrl-Shift-J on Windows, or Cmd-Option-J on Mac.)
  • Do you have any ideas about how you could see yourself or others using the editor that are not currently supported?

Getting help

If the UI is confusing, there’s a tour mode that walks you through the various components of the Ui Editor. Simple click the button titled “Tour App” to enter the tour mode. Also check out the FAQs section and the “How To” page.

Trouble installing

Because the package uses a remote dependency (gridlayout) installation can sometimes fail in confusing ways.

HTTP error 404, Not Found

> remotes::install_github('rstudio/shinyuieditor')
Error: Failed to install 'shinyuieditor' from GitHub:
  HTTP error 404.
  Not Found

  Did you spell the repo owner (`rstudio`) and repo name (`shinyuieditor`) correctly?
  - If spelling is correct, check that you have the required permissions to access the repo.

You may need to setup your github PAT to access. To set this up run usethis::create_github_token() in the terminal and follow the prompts.

Using remotes?

usethis::create_github_token() no longer puts your PAT in an environment variable, however that’s the method remotes uses for authentication. You can get around this by using the withr package to temporarily set the environment variable.

withr::with_envvar(
  list( GITHUB_PAT = gitcreds::gitcreds_get()$password ),
  remotes::install_github('rstudio/shinyuieditor')
)

Subscript out of bounds

> pak::pkg_install('rstudio/shinyuieditor')
Error: subscript out of bounds
Type .Last.error.trace to see where the error occurred

This occurs for some reason when trying to reinstall or update the package using pak. The easiest solution is to either use remotes (see above), or to uninstall both shinyuieditor and gridlayout and then reinstall.

remove.packages(c('shinyuieditor', 'gridlayout'))
# now works
pak::pkg_install("rstudio/shinyuieditor")

Overarching principle

We’re trying hard to constrain the feature set so we have fewer but higher-quality features. Lots of the no-code UI builders expose so many options that, ultimately, they’re more complex to use than just writing the code by hand. By generating code for the user, we’re letting them flesh out those details by hand on top of a solid foundation instead of forcing them to do it in a (probably sub-optimal) visual paradigm.

Complexity is anything related to the structure of a system that makes it hard to understand and modify that system

- A Philosophy of Software Design, John Ousterhout