This was a lot... things are mostly working again. The changing of id_random properties caused some problems. The hosted_file_hash_sha256 is not working? There are other issues as well... This will take some time.

This commit is contained in:
Scott Idem
2025-11-13 18:38:00 -05:00
parent a84d06a28d
commit e9a8f7df00
225 changed files with 488 additions and 1526 deletions

View File

@@ -14,7 +14,7 @@ let {
import { browser } from '$app/environment';
// import { goto, invalidate, pushState, replaceState } from '$app/navigation';
import type { key_val } from '$lib/ae_stores';
import type { key_val } from '$lib/stores/ae_stores';
import { ae_util } from '$lib/ae_utils/ae_utils';
// import Element_data_store from '$lib/element_data_store_v2.svelte';
// import Comp_event_session_obj_li from '../ae_comp__event_session_obj_li.svelte';
@@ -23,8 +23,8 @@ import Comp_event_session_obj_li_wrapper from '../ae_comp__event_session_obj_li_
import { liveQuery } from "dexie";
// import { core_func } from '$lib/ae_core_functions';
import { db_events } from "$lib/ae_events/db_events";
import { ae_snip, ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
import { events_loc, events_sess, events_slct, events_trigger } from '$lib/ae_events_stores';
import { ae_snip, ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/stores/ae_stores';
import { events_loc, events_sess, events_slct, events_trigger } from '$lib/stores/ae_events_stores';
import { events_func } from '$lib/ae_events_functions';
import Comp_event_files_upload from '../ae_comp__event_files_upload.svelte';
@@ -136,10 +136,10 @@ if (browser) {
$events_trigger = 'load__event_session_obj_li';
}
function preventDefault(fn) {
return function (event) {
function preventDefault<T extends Event>(fn: (event: T) => void) {
return function (event: T) {
event.preventDefault();
fn.call(this, event);
fn(event);
};
}