Now able to do stuff with the locations

This commit is contained in:
Scott Idem
2024-06-25 18:06:56 -04:00
parent 0090058238
commit 68d376b88d
8 changed files with 665 additions and 34 deletions

View File

@@ -361,3 +361,24 @@ export let events_slct = writable(events_slct_obj_template);
// Updated 2024-03-06
export let events_trigger: any = writable(null);
// console.log(`AE Events Stores - Events Trigger:`, events_trigger);
/* *** BEGIN *** TESTING Initialize trig_resp */
// The idea behind this is for a shared (Svelte app (within Events for now)) trigger and response. In theory this could be used to monitor multiple downloads or have a universal status area. Intended for temporary session storage.
// Updated 2024-06-25
let events_trig_kv_tmp: key_val = {};
// {
// 'example-1':
// {
// 'a-rand-id-1': true,
// 'a-rand-id-2': false,
// 'a-rand-id-3': Promise.resolve('This is a test promise.'),
// },
// 'example-2':
// {
// 'a-rand-id-4': true,
// 'a-rand-id-5': false,
// 'a-rand-id-6': Promise.resolve('This is a test promise.'),
// },
// };
export let events_trig_kv = writable(events_trig_kv_tmp);