Better (less) logging and other clean up

This commit is contained in:
Scott Idem
2024-06-24 15:51:30 -04:00
parent 0c4185f74c
commit c6b7c7e803
18 changed files with 1240 additions and 768 deletions

View File

@@ -119,12 +119,16 @@ export let get_object = async function get_object(
let percent_completed = Math.round(
(progressEvent.loaded * 100) / progressEvent.total
);
console.log('GET Data Progress:', progressEvent.progress, 'Total:', progressEvent.total, 'Loaded:', progressEvent.loaded, 'Percent Completed', percent_completed);
if (log_lvl) {
console.log('GET Data Progress:', progressEvent.progress, 'Total:', progressEvent.total, 'Loaded:', progressEvent.loaded, 'Percent Completed', percent_completed);
}
temp_get_object_percent_completed = percent_completed;
// WARNING: This needs to be tied to an object type and ID. This is a temporary solution.
try {
// Check if window is defined. This is to prevent errors in SvelteKit.
if (typeof window !== 'undefined') {
window.postMessage({
type: 'api_download_data',
status: 'downloading',
@@ -137,6 +141,7 @@ export let get_object = async function get_object(
},
'*'
);
}
} catch (error) {
console.log('Error posting message to window:', error);
}
@@ -153,6 +158,7 @@ export let get_object = async function get_object(
// Post file download message
try {
if (typeof window !== 'undefined') {
window.postMessage({
type: 'api_download_data',
status: 'complete',
@@ -165,6 +171,7 @@ export let get_object = async function get_object(
},
'*'
);
}
} catch (error) {
console.log('Error posting message to window:', error);
}
@@ -287,6 +294,7 @@ export let get_object = async function get_object(
// WARNING: This needs to be tied to an object type and ID. This is a temporary solution.
try {
if (typeof window !== 'undefined') {
window.postMessage({
type: 'api_download_blob',
status: 'downloading',
@@ -299,6 +307,7 @@ export let get_object = async function get_object(
},
'*'
);
}
} catch (error) {
console.log('Error posting message to window:', error);
}
@@ -325,6 +334,7 @@ export let get_object = async function get_object(
// WARNING: This needs to be tied to an object type and ID. This is a temporary solution.
try {
if (typeof window !== 'undefined') {
window.postMessage({
type: 'api_download_blob',
status: 'complete',
@@ -337,6 +347,7 @@ export let get_object = async function get_object(
},
'*'
);
}
} catch (error) {
console.log('Error posting message to window:', error);
}