useClipboard {shinyChakraUI} | R Documentation |
The 'useClipboard' hook
Description
The 'useClipboard' hook.
Usage
useClipboard(value)
Arguments
value |
a string |
Details
See useClipboard.
Value
A list containing some URL-encoded JavaScript code.
See Also
Examples
library(shiny)
library(shinyChakraUI)
ui <- chakraPage(
br(),
chakraComponent(
"mycomponent",
withStates(
Tag$Box(
width = "50%",
Tag$Flex(
mb = 2,
Tag$Input(
isReadOnly = TRUE,
value = getHookProperty("clipboard", "value")
),
Tag$Button(
ml = 2,
onClick = getHookProperty("clipboard", "onCopy"),
jseval('getState("hasCopied") ? "Copied" : "Copy"')
)
),
br(),
Tag$Divider(),
br(),
Tag$Editable(
bg = "yellow.100",
placeholder = "Paste here",
Tag$EditablePreview(),
Tag$EditableInput()
)
),
states = list(
clipboard = useClipboard("Hello Chakra"),
hasCopied = getHookProperty("clipboard", "hasCopied")
)
)
)
)
server <- function(input, output, session){}
if(interactive()){
shinyApp(ui, server)
}
[Package shinyChakraUI version 1.1.1 Index]