Bringing core concepts from anywidget to R.
- Define widget as a JavaScript EcmaScript Module (ESM) string in R
- Access state from JS using the same AnyWidget
model
API. - Bidirectional communication (R <-> JS)
devtools::install_github("keller-mark/anyhtmlwidget")
library(anyhtmlwidget)
esm <- "
function render({ el, model }) {
let count = () => model.get('count');
let btn = document.createElement('button');
btn.innerHTML = `count button ${count()}`;
btn.addEventListener('click', () => {
model.set('count', count() + 1);
model.save_changes();
});
model.on('change:count', () => {
btn.innerHTML = `count is ${count()}`;
});
el.appendChild(btn);
}
export default { render };
"
widget <- AnyHtmlWidget$new(.esm = esm, .mode = "dynamic", count = 1)
widget$render()
Setting a value will cause a re-render:
widget$count <- 2
Access the latest values:
widget$count
# [1] 2
dynamic
: Bidirectional communication via background WebSocket server. Does not block R console.gadget
: Bidirectional communication via Shiny running as a Gadget. Blocks R console.static
: Unidirectional communication (R -> JS). Does not block R console.shiny
: Bidirectional communication. Use when embedding a widget in a Shiny app.