ch_list_remove: Remove items from a list

Description Usage Arguments Details Value

View source: R/ch_list_remove.R

Description

Creates a list of shiny objects to encapsulate the operation of removing an item from a list.

Usage

1
ch_list_remove(id, item = "item", plural = NULL)

Arguments

id

character, tag to prepend to the input and output id's

item

character, for the ui, what to call the item being added - default is "item"

plural

character, for the ui, what to call the plural of the item being added - default is paste0(item, "s")

Details

The list of shiny objects will contain:

ui_controller

shiny::taglist of ui elements for the controller

ui_view

shing::taglist of ui elements for the view

server_model

function with reactive code

The list returned by this function has to be available to both the ui and the server. If not using the shinyApp formulation, perhaps global.R could be useful.

The list ui_controller will have members:

item

shiny::selectInput used to select the name of the item(s) to be remove from the list

remove

shiny::actionButton used to invoke the action of removing the item from the list

The list ui_view will have members:

status

shiny::verbatimTextOutput showing what has been selected to be removed from the list

The function server_model() will be called from your server function. Its arguments are:

input, output, session

input, output, session values passed from your server function

rctval_list, item_list

shiny::reactiveValues object, character string

rctval_list[[item_list]] is expected to be a list, from which the selected item(s) will be removed.

Value

list containing ui_controller, ui_view, and server_model


ijlyttle/shinychord documentation built on May 18, 2019, 3:41 a.m.