0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
shinyWidgets
/
assets
/
progress-bars
/
[
Home
]
File: progress-bars-bindings.js
// ProgressBars bindings Shiny.addCustomMessageHandler("update-progressBar-shinyWidgets", function( data ) { var id = data.id; var el = document.getElementById(id); var elVal = document.getElementById(id + "-value"); var elTot = document.getElementById(id + "-total"); var elTitle = document.getElementById(id + "-title"); var total = data.total; var value = Math.round(data.value); var pct; if (total > 0) { pct = Math.round((value / total) * 100); if (elVal !== null) elVal.innerText = data.commas ? value.toLocaleString("en-US") : value; if (elTot !== null) elTot.innerText = data.commas ? total.toLocaleString("en-US") : total; value = Math.round((value / total) * 100); } else { pct = data.percent > 0 ? data.percent : value; } el.style.width = pct + "%"; var txt = el.innerText; if (txt !== "") { //value.display_pct !== undefined el.innerText = value + data.unit_mark; } if (data.status !== null) { el.className = ""; el.classList.add("progress-bar"); el.classList.add("progress-bar-" + data.status); } if (data.title !== null) { elTitle.innerText = data.title; } });