test2023h5's picture
Upload 50 files
936e0a7 verified
// ----------------------------------------------------
// Just copy/paste these functions as-is:
// ่Žทๅ– URL ๅ‚ๆ•ฐ
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, "*");
}
// The `data` argument can be any JSON-serializable value.
function sendDataToPython(data) {
sendMessageToStreamlitClient("setComponentValue", data);
}
// Hook things up!
//window.addEventListener("message", onDataFromPython);
init();
function setFrameHeight(height) {
sendMessageToStreamlitClient("setFrameHeight", {height: height});
}
// Hack to autoset the iframe height.
window.addEventListener("load", function() {
window.setTimeout(function() {
setFrameHeight(document.documentElement.clientHeight)
}, 0);
});