Now with a better file manager. It still needs work.

This commit is contained in:
Scott Idem
2024-06-27 18:19:29 -04:00
parent 37ac30c56c
commit 12c778c7e2
5 changed files with 226 additions and 95 deletions

View File

@@ -3,7 +3,7 @@
import {
handle_load_ae_obj_id__event,
handle_load_ae_obj_li__event,
handle_db_save_ae_obj_li__event
handle_db_save_ae_obj_li__event,
} from "$lib/ae_events__event";
import {
@@ -11,7 +11,8 @@ import {
handle_load_ae_obj_li__event_file,
handle_delete_ae_obj_id__event_file,
create_event_file_obj_from_hosted_file_async,
handle_db_save_ae_obj_li__event_file
handle_update_ae_obj__event_file,
handle_db_save_ae_obj_li__event_file,
} from "$lib/ae_events__event_file";
import {
@@ -22,28 +23,28 @@ import {
handle_create_ae_obj__exhibit_tracking,
handle_update_ae_obj__exhibit_tracking,
handle_download_export__event_exhibit_tracking,
handle_db_save_ae_obj_li__exhibitor
handle_db_save_ae_obj_li__exhibitor,
} from "$lib/ae_events__exhibit";
import {
handle_load_ae_obj_id__event_location,
handle_load_ae_obj_li__event_location,
handle_create_ae_obj__event_location,
handle_db_save_ae_obj_li__event_location
handle_db_save_ae_obj_li__event_location,
} from "$lib/ae_events__event_location";
import {
handle_load_ae_obj_id__event_session,
handle_load_ae_obj_li__event_session,
handle_search__event_session,
handle_db_save_ae_obj_li__event_session
handle_db_save_ae_obj_li__event_session,
} from "$lib/ae_events__event_session";
import {
handle_load_ae_obj_id__event_presentation,
handle_load_ae_obj_li__event_presentation,
handle_create_ae_obj__event_presentation,
handle_db_save_ae_obj_li__event_presentation
handle_db_save_ae_obj_li__event_presentation,
} from "$lib/ae_events__event_presentation";
import {
@@ -51,14 +52,14 @@ import {
handle_load_ae_obj_li__event_presenter,
handle_create_ae_obj__event_presenter,
handle_update_ae_obj__event_presenter,
handle_db_save_ae_obj_li__event_presenter
handle_db_save_ae_obj_li__event_presenter,
} from "$lib/ae_events__event_presenter";
import {
handle_load_ae_obj_id__badge,
handle_load_ae_obj_li__badge,
handle_search__event_badge,
handle_db_save_ae_obj_li__badge
handle_db_save_ae_obj_li__badge,
} from "$lib/ae_events__event_badge";
@@ -69,6 +70,7 @@ let export_obj = {
handle_load_ae_obj_id__event_file: handle_load_ae_obj_id__event_file,
handle_load_ae_obj_li__event_file: handle_load_ae_obj_li__event_file,
handle_delete_ae_obj_id__event_file: handle_delete_ae_obj_id__event_file,
handle_update_ae_obj__event_file: handle_update_ae_obj__event_file,
handle_load_ae_obj_id__event_location: handle_load_ae_obj_id__event_location,
handle_load_ae_obj_li__event_location: handle_load_ae_obj_li__event_location,