观察在另一个模块中发生的动作

huangapple go评论88阅读模式
英文:

oberveEvent on an action located in another module

问题

在一个闪亮的应用程序中,我有两个模块,在第一个模块(mod_1_ui)中我有筛选器和一个按钮。在模块2中,我希望在按钮被点击时显示一个绘图。

我的问题是,observeEvent位于模块2中,而按钮位于模块1中。如何观察两个不同模块中的按钮点击事件?

以下是一个可重现的示例:

  1. mod_1_ui = function(id) {
  2. ns = NS(id)
  3. fluidRow(
  4. column(
  5. width = 3,
  6. radioButtons(
  7. ns("dist"),
  8. "Distribution type:",
  9. c(
  10. "Normal" = "norm",
  11. "Uniform" = "unif",
  12. "Log-normal" = "lnorm",
  13. "Exponential" = "exp"
  14. )
  15. ),
  16. actionButton(
  17. inputId = ns("btn_go"),
  18. label = "Go !",
  19. icon = icon("play")
  20. )
  21. ),
  22. column(width = 9,
  23. mod_2_ui(ns("display_plot"))
  24. )
  25. )
  26. }
  27. mod_1_server = function(id, r_global) {
  28. moduleServer(id, function(input, output, session) {
  29. mod_2_server("display_plot")
  30. })
  31. }
  32. mod_2_ui = function(id) {
  33. ns = NS(id)
  34. plotOutput(outputId = ns("plot"))
  35. }
  36. mod_2_server = function(id, r_global) {
  37. moduleServer(id, function(input, output, session) {
  38. observeEvent(input$btn_go,{
  39. output$plot <- renderPlot({
  40. plot(mtcars$mpg)
  41. })
  42. })
  43. })
  44. }
  45. ui <- fluidPage(
  46. mod_1_ui("mod")
  47. )
  48. server <- function(input, output, session) {
  49. r_global <- reactiveValues()
  50. mod_1_server("mod", r_global = r_global)
  51. }
  52. if (interactive())
  53. shinyApp(ui, server)

观察在另一个模块中发生的动作

英文:

In a shiny app, I have 2 modules, in the first one (mod_1_ui) I have filters and an actionButton.
On the module 2, I want to display a plot WHEN button is clicked.

My problem is that, the observeEvent is in module 2 and the button in module 1.
How can I observeEvent an action in 2 differents modules ?
观察在另一个模块中发生的动作

Below is a reproducible example :

  1. mod_1_ui = function(id) {
  2. ns = NS(id)
  3. fluidRow(
  4. column(
  5. width = 3,
  6. radioButtons(
  7. ns(&quot;dist&quot;),
  8. &quot;Distribution type:&quot;,
  9. c(
  10. &quot;Normal&quot; = &quot;norm&quot;,
  11. &quot;Uniform&quot; = &quot;unif&quot;,
  12. &quot;Log-normal&quot; = &quot;lnorm&quot;,
  13. &quot;Exponential&quot; = &quot;exp&quot;
  14. )
  15. ),
  16. actionButton(
  17. inputId = ns(&quot;btn_go&quot;),
  18. label = &quot;Go !&quot;,
  19. icon = icon(&quot;play&quot;)
  20. )
  21. ),
  22. column(width = 9,
  23. mod_2_ui(ns(&quot;display_plot&quot;))
  24. )
  25. )
  26. }
  27. mod_1_server = function(id, r_global) {
  28. moduleServer(id, function(input, output, session) {
  29. mod_2_server(&quot;display_plot&quot;)
  30. })
  31. }
  32. mod_2_ui = function(id) {
  33. ns = NS(id)
  34. plotOutput(outputId = ns(&quot;plot&quot;))
  35. }
  36. mod_2_server = function(id, r_global) {
  37. moduleServer(id, function(input, output, session) {
  38. observeEvent(input$btn_go,{
  39. output$plot &lt;- renderPlot({
  40. plot(mtcars$mpg)
  41. })
  42. })
  43. })
  44. }
  45. ui &lt;- fluidPage(
  46. mod_1_ui(&quot;mod&quot;)
  47. )
  48. server &lt;- function(input, output, session) {
  49. r_global &lt;- reactiveValues()
  50. mod_1_server(&quot;mod&quot;, r_global = r_global)
  51. }
  52. if (interactive())
  53. shinyApp(ui, server)

答案1

得分: 1

以下是代码的翻译部分:

一种选项是使用reactivereactiveVal将按钮的状态作为参数传递给模块2的服务器:

  1. library(shiny)
  2. mod_1_ui <- function(id) {
  3. ns <- NS(id)
  4. fluidRow(
  5. column(
  6. width = 3,
  7. radioButtons(
  8. ns("dist"),
  9. "Distribution type:",
  10. c(
  11. "Normal" = "norm",
  12. "Uniform" = "unif",
  13. "Log-normal" = "lnorm",
  14. "Exponential" = "exp"
  15. )
  16. ),
  17. actionButton(
  18. inputId = ns("btn_go"),
  19. label = "Go !",
  20. icon = icon("play")
  21. )
  22. ),
  23. column(
  24. width = 9,
  25. mod_2_ui(ns("display_plot"))
  26. )
  27. )
  28. }
  29. mod_1_server <- function(id, r_global) {
  30. moduleServer(id, function(input, output, session) {
  31. show <- reactive({
  32. input$btn_go
  33. })
  34. mod_2_server("display_plot", show = show)
  35. })
  36. }
  37. mod_2_ui <- function(id) {
  38. ns <- NS(id)
  39. plotOutput(outputId = ns("plot"))
  40. }
  41. mod_2_server = function(id, r_global, show) {
  42. moduleServer(id, function(input, output, session) {
  43. observeEvent(show(),{
  44. output$plot <- renderPlot({
  45. plot(runif(10, runif(10)))
  46. })
  47. })
  48. })
  49. }
  50. ui <- fluidPage(
  51. mod_1_ui("mod")
  52. )
  53. server <- function(input, output, session) {
  54. r_global <- reactiveValues()
  55. mod_1_server("mod", r_global = r_global)
  56. }
  57. if (interactive()) {
  58. shinyApp(ui, server)
  59. }
英文:

One option would be to use a reactive or a reactiveVal to pass the state of your button as an argument to the module 2 server:

  1. library(shiny)
  2. mod_1_ui &lt;- function(id) {
  3. ns &lt;- NS(id)
  4. fluidRow(
  5. column(
  6. width = 3,
  7. radioButtons(
  8. ns(&quot;dist&quot;),
  9. &quot;Distribution type:&quot;,
  10. c(
  11. &quot;Normal&quot; = &quot;norm&quot;,
  12. &quot;Uniform&quot; = &quot;unif&quot;,
  13. &quot;Log-normal&quot; = &quot;lnorm&quot;,
  14. &quot;Exponential&quot; = &quot;exp&quot;
  15. )
  16. ),
  17. actionButton(
  18. inputId = ns(&quot;btn_go&quot;),
  19. label = &quot;Go !&quot;,
  20. icon = icon(&quot;play&quot;)
  21. )
  22. ),
  23. column(
  24. width = 9,
  25. mod_2_ui(ns(&quot;display_plot&quot;))
  26. )
  27. )
  28. }
  29. mod_1_server &lt;- function(id, r_global) {
  30. moduleServer(id, function(input, output, session) {
  31. show &lt;- reactive({
  32. input$btn_go
  33. })
  34. mod_2_server(&quot;display_plot&quot;, show = show)
  35. })
  36. }
  37. mod_2_ui &lt;- function(id) {
  38. ns &lt;- NS(id)
  39. plotOutput(outputId = ns(&quot;plot&quot;))
  40. }
  41. mod_2_server = function(id, r_global, show) {
  42. moduleServer(id, function(input, output, session) {
  43. observeEvent(show(),{
  44. output$plot &lt;- renderPlot({
  45. plot(runif(10, runif(10)))
  46. })
  47. })
  48. })
  49. }
  50. ui &lt;- fluidPage(
  51. mod_1_ui(&quot;mod&quot;)
  52. )
  53. server &lt;- function(input, output, session) {
  54. r_global &lt;- reactiveValues()
  55. mod_1_server(&quot;mod&quot;, r_global = r_global)
  56. }
  57. if (interactive()) {
  58. shinyApp(ui, server)
  59. }

观察在另一个模块中发生的动作

huangapple
  • 本文由 发表于 2023年3月4日 03:38:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/75631246.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定