Благодаря ответам на этот предыдущий вопрос я разработал plotly
plot
с buttons
, связанным с его legend
, где нажатие legend
изменяет состояние reactive variable
содержит T/F
состояние для каждого из них и, таким образом, повторно визуализирует actionbuttons
, связанный с каждым trace
(группа данных). Другой javascript
делает то же самое в противоположном направлении, щелкая button
, скрывает / показывает, что элемент trace
+ legend
в plot
.
Теперь я надеюсь добавить еще одно взаимодействие с помощью новой кнопки + selectinput
Вопрос вкратце:
Как сделать, нажав кнопку ОБЩИЕ (# 0),
изменить переключатель статуса легенды между TRUE/'legendonly'
для трассы n участка j (# 1),
где n = input$SelectTrace
(# 2)
используя javascript
+ onclick
аргумент для этого actionButton
0 actionButton
здесь называется SwitchExt
1 Это должно быть предназначено для определенного plotly plot
, так как у меня есть несколько
2 a selectInput
со следами выбора
Подробное объяснение:
Теперь у меня есть следующая маленькая проблема:
В моем приложении на другой условной панели пользователю показан другой набор графиков с теми же данными:
- пользователь может выбрать, какую трассировку выделить, кнопка рядом с ней покажет, включена ли эта трасса на первом графике на основе списка статусов T / F, а затем эта кнопка будет отображаться синим / красным цветом и связан с выбранной трассировкой.
Сценарий:
Пользователь выбрал группу n,
нажимает новый actionButton 'SwitchExt'
это вызывает flipYNb_FP1(n)
,
Кнопка действия YNbuttons... YNb <- YNElement(n) ....
if(values$dYNbs_cyl_el[[YNb]] == TRUE) {
приведет к изменению состояния кнопки n.
Я также могу изменить values$legenditems[n]
, но в моем коде графика values$legenditems
обернут в isolate({ })
, чтобы остановить повторный рендеринг графика, когда javascript
, связанный с legend
, изменит его.
Концепция решения:
По сути, мне кажется, что вместо непосредственного изменения списка values$legenditems
нужно иметь еще один фрагмент javascript
, связанный с actionButton
'switchExt'
с помощью 'onclick'
и принимающий input$SelectTrace
в качестве входных данных, и затем изменяет legendstatus
аналогично тому, как это делает javascript js1
, но затем с помощью document.getElementById
захватывает значение input$SelectTrace
, превращает его в numeric
и обновляет legendstatus
.
Приложение:
library(plotly)
library(shiny)
library(htmlwidgets)
## js to link buttons to legend
js1 <- c(
"function toggleLegend(id){",
" var ids = id.split('-');",
" var plotid = ids[1];",
" var plot = document.getElementById(plotid);",
" var data = plot.data;",
" var v0 = data[index].visible || true;",
" var v = v0 == true ? 'legendonly' : true;",
" Plotly.restyle(plot, {visible: v}, [index]);",
"}")
## js code to link legend to buttons
js2 <- c(
"function(el, x, inputName){",
" var id = el.getAttribute('id');",
" var d3 = Plotly.d3;",
" el.on('plotly_restyle', function(evtData) {",
" var out = {};",
" d3.select('#' + id + ' g.legend').selectAll('.traces').each(function(){",
" var trace = d3.select(this)[0][0].__data__[0].trace;",
" out[trace.name] = trace.visible;",
" });",
" Shiny.setInputValue(inputName, out);",
" });",
"}")
YNElement <- function(idx){sprintf("YesNo-plot1-%d", idx)}
ui <- fluidPage(
tags$head(
tags$script(HTML(js1))
),
fluidRow(
column(2,
h5("Keep/Drop choices linked to colorscheme 1"),
uiOutput('YNbuttons')
),
column(8,
plotlyOutput("plot1")
),
column(2,
h5('Switch plot ID and shows the plot remembers the show/hide'),
actionButton(inputId = 'Switch', label = icon('refresh'), style = "color: #f7ad6e; background-color: white; border-color: #f7ad6e;
height: 40px; width: 40px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px"),
br(),
h5('New Button that does not work on legend.', style = 'font-weight:bold'),
uiOutput('newswitch'),
br(),
selectInput(inputId = 'SelectTrace', label = 'Select Trace', choices = 1:3, selected = 1)
), style = "margin-top:150px"
)
)
server <- function(input, output, session) {
values <- reactiveValues(Linked_FP1 = T, NrOfTraces = length(unique(mtcars$cyl)))
observeEvent(input$SwitchExt, {
## trying to make the user be able to switch the buttons linked to the legend on/off through another button that is in another page.
flipYNb_FP1(as.numeric(input$SelectTrace))
req(values$legenditems) ## don't run if legend items does not exist yet.
if(values$dYNbs_cyl_el[as.numeric(input$SelectTrace)]) { values$legenditems[[as.numeric(input$SelectTrace)]] <- T } else { values$legenditems[[as.numeric(input$SelectTrace)]] <- 'legendonly' } ## problem line is here...... since I need to isolate values$legenditems in the plot code
## this does not actually cause the legend to change. If I don't isolate, the plot would re-render due to the change in values$legenditems, which is not what we want
})
output$plot1 <- renderPlotly({
if(values$Linked_FP1) {colors <- c('red', 'blue', 'black') } else {colors <- c('black', 'orange', 'gray')}
p1 <- plot_ly()
p1 <- add_trace(p1, data = mtcars, x = ~disp, y = ~mpg, type = 'scatter', mode = 'markers', color = ~as.factor(cyl), colors = colors)
p1 <- layout(p1, title = 'mtcars group by cyl with switching colors')
p1 <- plotly_build(p1)
isolate({ if(values$Linked_FP1) { for(i in seq_along(p1$x$data)){ ## causes the plot to render with previous hide/show selection
p1$x$data[[i]]$visible <- values$legenditems[[p1$x$data[[i]]$name]]}
} }) ##This block is isolated because otherwise the plot will re-render when the user clicks 1 of the three buttons
p1 %>% onRender(js2, data = "tracesPlot1") ## add the javacode to extract the legend status
})
observeEvent(input$Switch, { values$Linked_FP1 <- !values$Linked_FP1 }) ## disable the link in my real app, in this dummy app it switches to plot with different id and colors that is not interactive
observeEvent(values$NrOfTraces, {
values$dYNbs_cyl_el <- rep(T,values$NrOfTraces) ## the list of Yes/No status of groups, from which the 3 buttons on the left are build blue or red
names(values$dYNbs_cyl_el) <- sapply(1:values$NrOfTraces, function(x) {YNElement(x)}) ## add names to that list
values$legenditems <- rep(T, values$NrOfTraces) ## make the legenditem list so that the app doesn't crash when user clicks switchExt without first clicking on legend items
names(values$legenditems) <- sort(unique(mtcars$cyl)) ## add names to that list
})
output$newswitch <- renderUI({
req(input$SelectTrace)
print(input$SelectTrace)
if(values$dYNbs_cyl_el[as.numeric(input$SelectTrace)]) {
actionButton(inputId = 'SwitchExt', label = icon('refresh'), style = "color: #339fff; background-color: white; border-color: #339fff;
height: 40px; width: 40px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"
)}
else { actionButton(inputId = 'SwitchExt', label = icon('refresh'), style = "color: #f7ad6e; background-color: white; border-color: #f7ad6e;
height: 40px; width: 40px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"
)}
})
observeEvent(input$tracesPlot1, {
if(values$Linked_FP1) {
listTraces <- input$tracesPlot1
values$legenditems <- listTraces ## store the list of show/hide for when the plot re-renders here
listTracesTF <- gsub('legendonly', FALSE, listTraces)
listTracesTF <- as.logical(listTracesTF)
lapply(1:values$NrOfTraces, function(el) {
if(el <= length(listTracesTF)) {
YNb <- YNElement(el)
if(values$dYNbs_cyl_el[[YNb]] != listTracesTF[el]) {
values$dYNbs_cyl_el[[YNb]] <- listTracesTF[el]
}
}
})
}
})
output$YNbuttons <- renderUI({
req(values$NrOfTraces)
lapply(1:values$NrOfTraces, function(el) {
YNb <- YNElement(el)
if(values$Linked_FP1) {
if(values$dYNbs_cyl_el[[YNb]] == TRUE) {
div(actionButton(inputId = YNb, label = icon("check"),
style = "color: #339FFF; background-color: white; border-color: #339FFF;height: 34px; width: 34px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"))
} else {
div(actionButton(inputId = YNb, label = icon("times"),
style = "color: #ff4d4d; background-color: white; border-color: #ff4d4d;height: 34px; width: 34px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"))
}
}
})
})
flipYNb_FP1 <- function(idx){
YNb <- YNElement(idx)
values$dYNbs_cyl_el[[YNb]] <- !values$dYNbs_cyl_el[[YNb]]
}
observe({
lapply(1:values$NrOfTraces, function(ob) {
YNElement <- YNElement(ob)
observeEvent(input[[YNElement]], {
if(!values$Linked_FP1) { flipYNb_FP1(ob) }
}, ignoreInit = T)
})
})
}
shinyApp(ui, server)
Решение:
После некоторой борьбы с непреднамеренным поведением я понял, что мне нужно удалить наблюдателя для switchExt-plot1, чтобы кнопки не переворачивались дважды.
observeEvent(input[['SwitchExt-plot1']], {
flipYNb_FP1(as.numeric(input$SelectTrace))
})
Рабочее приложение выглядит так:
library(plotly)
library(shiny)
library(htmlwidgets)
## js to link buttons to legend
js1 <- c(
"function toggleLegend(id){",
" var ids = id.split('-');",
" var plotid = ids[1];",
" var index = parseInt(ids[2])-1;", ## correct as the YN buttons are named YesNo-plot1-%d
" var plot = document.getElementById(plotid);",
" var data = plot.data;",
" var v0 = data[index].visible || true;",
" var v = v0 == true ? 'legendonly' : true;",
" Plotly.restyle(plot, {visible: v}, [index]);",
"}",
"function toggleLegend2(id){",
" var index = parseInt($('#SelectTrace').val())-1;",
" var ids = id.split('-');",
" var plotid = ids[1];",
" var plot = document.getElementById(plotid);",
" var data = plot.data;",
" var v0 = data[index].visible || true;",
" var v = v0 == true ? 'legendonly' : true;",
" Plotly.restyle(plot, {visible: v}, [index]);",
"}")
## js code to link legend to buttons
js2 <- c(
"function(el, x, inputName){",
" var id = el.getAttribute('id');",
" var d3 = Plotly.d3;",
" el.on('plotly_restyle', function(evtData) {",
" var out = {};",
" d3.select('#' + id + ' g.legend').selectAll('.traces').each(function(){",
" var trace = d3.select(this)[0][0].__data__[0].trace;",
" out[trace.name] = trace.visible;",
" });",
" Shiny.setInputValue(inputName, out);",
" });",
"}")
YNElement <- function(idx){sprintf("YesNo-plot1-%d", idx)}
ui <- fluidPage(
tags$head(
tags$script(HTML(js1))
),
fluidRow(
column(2,
h5("Keep/Drop choices linked to colorscheme 1"),
uiOutput('YNbuttons')
),
column(8,
plotlyOutput("plot1")
),
column(2,
h5('New Button that does not work on legend.', style = 'font-weight:bold'),
uiOutput('newswitch'),
br(),
selectInput(inputId = 'SelectTrace', label = 'Select Trace', choices = 1:3, selected = 1)
), style = "margin-top:150px"
)
)
server <- function(input, output, session) {
values <- reactiveValues(Linked_FP1 = T, NrOfTraces = length(unique(mtcars$cyl)))
output$plot1 <- renderPlotly({
if(values$Linked_FP1) {colors <- c('red', 'blue', 'black') } else {colors <- c('black', 'orange', 'gray')}
p1 <- plot_ly()
p1 <- add_trace(p1, data = mtcars, x = ~disp, y = ~mpg, type = 'scatter', mode = 'markers', color = ~as.factor(cyl), colors = colors)
p1 <- layout(p1, title = 'mtcars group by cyl with switching colors')
p1 <- plotly_build(p1)
isolate({ if(values$Linked_FP1) { for(i in seq_along(p1$x$data)){ ## causes the plot to render with previous hide/show selection
p1$x$data[[i]]$visible <- values$legenditems[[p1$x$data[[i]]$name]]}
} }) ##This block is isolated because otherwise the plot will re-render when the user clicks 1 of the three buttons
p1 %>% onRender(js2, data = "tracesPlot1") ## add the javacode to extract the legend status
})
observeEvent(values$NrOfTraces, {
values$dYNbs_cyl_el <- rep(T,values$NrOfTraces) ## the list of Yes/No status of groups, from which the 3 buttons on the left are build blue or red
names(values$dYNbs_cyl_el) <- sapply(1:values$NrOfTraces, function(x) {YNElement(x)}) ## add names to that list
values$legenditems <- rep(T, values$NrOfTraces) ## make the legenditem list so that the app doesn't crash when user clicks switchExt without first clicking on legend items
names(values$legenditems) <- sort(unique(mtcars$cyl)) ## add names to that list
})
output$newswitch <- renderUI({
req(input$SelectTrace)
if(values$dYNbs_cyl_el[as.numeric(input$SelectTrace)]) {
actionButton(inputId = 'SwitchExt-plot1', label = icon('refresh'), style = "color: #339fff; background-color: white; border-color: #339fff;
height: 40px; width: 40px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend2(this.id)")
}
else { actionButton(inputId = 'SwitchExt-plot1', label = icon('refresh'), style = "color: #f7ad6e; background-color: white; border-color: #f7ad6e;
height: 40px; width: 40px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend2(this.id)")}
})
observeEvent(input$tracesPlot1, {
if(values$Linked_FP1) {
listTraces <- input$tracesPlot1
values$legenditems <- listTraces ## store the list of show/hide for when the plot re-renders here
listTracesTF <- gsub('legendonly', FALSE, listTraces)
listTracesTF <- as.logical(listTracesTF)
lapply(1:values$NrOfTraces, function(el) {
if(el <= length(listTracesTF)) {
YNb <- YNElement(el)
if(values$dYNbs_cyl_el[[YNb]] != listTracesTF[el]) {
values$dYNbs_cyl_el[[YNb]] <- listTracesTF[el]
}
}
})
}
})
output$YNbuttons <- renderUI({
req(values$NrOfTraces)
lapply(1:values$NrOfTraces, function(el) {
YNb <- YNElement(el)
if(values$Linked_FP1) {
if(values$dYNbs_cyl_el[[YNb]] == TRUE) {
div(actionButton(inputId = YNb, label = icon("check"),
style = "color: #339FFF; background-color: white; border-color: #339FFF;height: 34px; width: 34px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"))
} else {
div(actionButton(inputId = YNb, label = icon("times"),
style = "color: #ff4d4d; background-color: white; border-color: #ff4d4d;height: 34px; width: 34px; border-radius: 6px; border-width: 2px; text-align: center; line-height: 50%; padding: 0px; display:block; margin: 2px",
onclick = "toggleLegend(this.id);"))
}
}
})
})
flipYNb_FP1 <- function(idx){
YNb <- YNElement(idx)
values$dYNbs_cyl_el[[YNb]] <- !values$dYNbs_cyl_el[[YNb]]
}
observe({
lapply(1:values$NrOfTraces, function(ob) {
YNElement <- YNElement(ob)
observeEvent(input[[YNElement]], {
if(!values$Linked_FP1) { flipYNb_FP1(ob) }
}, ignoreInit = T)
})
})
}
shinyApp(ui, server)
изображение для поддержки комментария: