Hook to subscribe to the lifecycle status of a Shiny output.
One of:
"pending"
"ready"
"recalculating"
useShinyOutputValue
"error"
Use this when you need to drive skeleton / spinner / error UI. For just the value, use useShinyOutputValue.
The ID of the Shiny output to subscribe to.
Optional configuration object.
Optional
Module namespace to apply (or null to suppress the surrounding ShinyModuleProvider namespace).
null
ShinyModuleProvider
The current output status.
Hook to subscribe to the lifecycle status of a Shiny output.
One of:
"pending"— server has not yet sent a value (initial mount)."ready"— server has sent a value and is not currently recalculating."recalculating"— server is recomputing this output. The value held by any siblinguseShinyOutputValueis the previously delivered result."error"— the server-side render raised an error.Use this when you need to drive skeleton / spinner / error UI. For just the value, use
useShinyOutputValue.