2022-04-05 15:02:17 +00:00
|
|
|
window.addEventListener("message", (message) => {
|
|
|
|
const data = message.data;
|
|
|
|
switch (data.type) {
|
|
|
|
case "html":
|
|
|
|
document.body.innerHTML = data.html;
|
2022-05-09 12:59:12 +00:00
|
|
|
if (data.script) {
|
|
|
|
try {
|
|
|
|
eval(data.script);
|
|
|
|
} catch (e: any) {
|
|
|
|
console.error("Error evaling script", e);
|
|
|
|
}
|
|
|
|
}
|
2022-04-05 15:02:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function sendEvent(data: any) {
|
|
|
|
window.parent.postMessage(
|
|
|
|
{
|
|
|
|
type: "event",
|
|
|
|
data: data,
|
|
|
|
},
|
|
|
|
"*"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// setInterval(() => {
|
|
|
|
// self.sendEvent("testing");
|
|
|
|
// }, 2000);
|