I should have saved this long ago. Lots of changes. Learning a lot as well!

This commit is contained in:
Scott Idem
2024-02-16 20:12:19 -05:00
parent cb9bd1648c
commit 9958724aaa
681 changed files with 831 additions and 24 deletions

View File

@@ -34,6 +34,7 @@ export let ae_app_local_data_struct: key_val = {
'theme': 'light',
'account_id': ae_account_id, // OSIT Demo _XY7DXtc9MY
'site_domain': null, // https://example.com, https://dev.example.com, etc.
'administrator_access': true,
'ds': {},
'hub': {
'ds': {},
@@ -41,6 +42,7 @@ export let ae_app_local_data_struct: key_val = {
'mod': { // module
'events': {},
'sponsorships': {
show_edit__sponsorship_obj: false,
show_list__sponsorship_obj_li: true,
show_view__sponsorship_obj: false,
},
@@ -93,6 +95,26 @@ export let ae_api = writable(ae_api_data_struct);
export let slct_trigger: any = writable(null);
console.log(`Aether Config - Selected Trigger:`, slct_trigger);
let slct_obj_template: key_val = { 'sponsorship_id': null, 'sponsorship_obj': {}, 'post_id': null, 'post_obj': {}, 'post_obj_li': [], 'post_comment_id': null, 'post_comment_obj': {}, 'post_comment_obj_li': [] };
let slct_obj_template: key_val = {
'account_id': null,
'account_obj': {},
'event_id': null,
'event_obj': {},
'event_exhibit_id': null,
'event_exhibit_obj': {},
'event_presentation_id': null,
'event_presentation_obj': {},
'event_presenter_id': null,
'event_presenter_obj': {},
'event_session_id': null,
'event_session_obj': {},
'sponsorship_id': null,
'sponsorship_obj': {},
'post_id': null,
'post_obj': {},
'post_obj_li': [],
'post_comment_id': null,
'post_comment_obj': {},
'post_comment_obj_li': [] };
console.log(`Aether Config - Selected Objects:`, slct_obj_template);
export let slct = writable(slct_obj_template);