Skip to content

Instantly share code, notes, and snippets.

@pdaug
Created October 23, 2023 20:03
Show Gist options
  • Save pdaug/232ac1701eee3e1e78cba6b4a7567d4a to your computer and use it in GitHub Desktop.
Save pdaug/232ac1701eee3e1e78cba6b4a7567d4a to your computer and use it in GitHub Desktop.
<!--
REPORTS (alert, driver, history, ignition, overspeed, telemetry, trip)
REPORT FILES (CSV, PDF, XLS)
-->
<body style="margin: 0;">
<!-- <iframe class="iframeView" src="https://tracker-net.web.app/report/legacy/telemetry" style="width: 100vw; height: 100vh; border: none; padding: none; display: block;"></iframe> -->
<iframe class="iframeSave" src="https://tracker-net.web.app/report/save/telemetry/PDF" style="width: 100vw; height: 100vh; border: none; padding: none; display: block;"></iframe>
<script>
// const iframeView = document.querySelector(".iframeView");
// iframeView.addEventListener("load", function() {
// iframeView.contentWindow.postMessage({
// "imei": "350612071990640",
// "startDate": "23/10/2023",
// "startTime": "00:00",
// "endDate": "23/10/2023",
// "endTime": "23:59",
// "speed": "40",
// "driver": "5ad83a60",
// "companyImage": "https://i.ibb.co/rx2xVZC/uno.jpg",
// "companyName": "NOME123",
// "deviceImage": "https://i.ibb.co/rx2xVZC/uno.jpg",
// "deviceName": "CARRO123",
// "deviceBrand": "MARCA123",
// "deviceModel": "MODELO123",
// }, "*");
// });
const iframeSave = document.querySelector(".iframeSave");
iframeSave.addEventListener("load", function() {
iframeSave.contentWindow.postMessage([
{
"imei": "350612071990640",
"startDate": "23/10/2023",
"startTime": "00:00",
"endDate": "23/10/2023",
"endTime": "23:59",
"speed": "40",
"driver": "5ad83a60",
"companyImage": "https://i.ibb.co/rx2xVZC/uno.jpg",
"companyName": "NOME123",
"deviceImage": "https://i.ibb.co/rx2xVZC/uno.jpg",
"deviceName": "CARRO123",
"deviceBrand": "MARCA123",
"deviceModel": "MODELO123",
},
] , "*");
});
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment