|
|
|
|
|
|
|
const urlParams = new URLSearchParams(window.location.search); |
|
|
|
|
|
const componentId = urlParams.get('componentId'); |
|
|
|
function init() { |
|
sendMessageToStreamlitClient("componentReady", {msg: "ready"}); |
|
} |
|
|
|
function sendMessageToStreamlitClient(type, data) { |
|
var outData = Object.assign({ |
|
componentId:componentId, |
|
isSSMessage: true, |
|
_type: type, |
|
}, data); |
|
window.parent.postMessage(outData, "*"); |
|
} |
|
|
|
|
|
function sendDataToPython(data) { |
|
sendMessageToStreamlitClient("setComponentValue", data); |
|
} |
|
|
|
|
|
|
|
init(); |
|
|
|
function setFrameHeight(height) { |
|
sendMessageToStreamlitClient("setFrameHeight", {height: height}); |
|
} |
|
|
|
|
|
window.addEventListener("load", function() { |
|
window.setTimeout(function() { |
|
setFrameHeight(document.documentElement.clientHeight) |
|
}, 0); |
|
}); |