Spaces:
Sleeping
Sleeping
File size: 3,297 Bytes
a529397 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
// The `Streamlit` object exists because our html file includes
// `streamlit-component-lib.js`.
// If you get an error about "Streamlit" not being defined, that
// means you're missing that file.
function sendValue(value) {
Streamlit.setComponentValue(value)
}
/**
* The component's render function. This will be called immediately after
* the component is initially loaded, and then again every time the
* component gets new data from Python.
*/
function clickListener(event) {
const {offsetX, offsetY} = event;
const img = document.getElementById("image");
sendValue({x: offsetX, y: offsetY, width: img.width, height: img.height});
}
function mouseDownListener(downEvent) {
const [x1, y1] = [downEvent.offsetX, downEvent.offsetY];
window.addEventListener("mouseup", (upEvent) => {
const [x2, y2] = [upEvent.clientX, upEvent.clientY];
const img = document.getElementById("image");
const rect = img.getBoundingClientRect();
sendValue({x1: x1, y1: y1, x2: x2 - rect.left, y2: y2 - rect.top, width: img.width, height: img.height});
}, {once: true})
}
function touchStartListener(startEvent) {
startEvent.preventDefault();
var touch = startEvent.changedTouches[0];
const img = document.getElementById("image");
const rect = img.getBoundingClientRect();
const [x1, y1] = [touch.clientX - rect.left, touch.clientY - rect.top];
window.addEventListener("touchend", (upEvent) => {
var touch = upEvent.changedTouches[0];
const [x2, y2] = [touch.clientX, touch.clientY];
const img = document.getElementById("image");
const rect = img.getBoundingClientRect();
sendValue({x1: x1, y1: y1, x2: x2 - rect.left, y2: y2 - rect.top, width: img.width, height: img.height});
}, {once: true})
}
function onRender(event) {
let {src, height, width, use_column_width, click_and_drag} = event.detail.args;
const img = document.getElementById("image");
if (img.src !== src) {
img.src = src;
}
function resizeImage() {
img.classList.remove("auto", "fullWidth");
img.removeAttribute("width");
img.removeAttribute("height");
if (use_column_width === "always" || use_column_width === true) {
img.classList.add("fullWidth");
} else if (use_column_width === "auto") {
img.classList.add("auto");
} else {
if (!width && !height) {
width = img.naturalWidth;
height = img.naturalHeight;
} else if (!height) {
height = width * img.naturalHeight / img.naturalWidth;
} else if (!width) {
width = height * img.naturalWidth / img.naturalHeight;
}
img.width = width;
img.height = height;
}
Streamlit.setFrameHeight(img.height);
}
img.onload = resizeImage;
window.addEventListener("resize", resizeImage);
// When image is clicked, send the coordinates to Python through sendValue
if (click_and_drag) {
img.onclick = null;
img.onmousedown = mouseDownListener;
img.ontouchstart = touchStartListener;
} else {
img.onmousedown = null;
img.onclick = clickListener;
}
}
// Render the component whenever python send a "render event"
Streamlit.events.addEventListener(Streamlit.RENDER_EVENT, onRender)
// Tell Streamlit that the component is ready to receive events
Streamlit.setComponentReady()
|