Lots of work on getting the Launcher actually working well.

This commit is contained in:
Scott Idem
2025-09-24 16:56:32 -04:00
parent 4220a354be
commit 1ba9cd1c03
17 changed files with 453 additions and 344 deletions

View File

@@ -23,45 +23,6 @@ export async function load({ parent }) {
console.log(`ae_acct = `, ae_acct);
}
// let event_id = ae_acct.slct.event_id; // From root +layout.ts
// if (!event_id) {
// console.log(`ERROR: events_pres_mgmt +layout.ts: The event_id was not found in the parent_data!!!`);
// return false;
// }
// if (browser) {
// if (log_lvl) {
// console.log(`ae_events_pres_mgmt +layout.ts parent_data:`, parent_data);
// }
// // Should we limit these to event.conference = true?
// let load_event_obj_li = events_func.load_ae_obj_li__event({
// api_cfg: ae_acct.api,
// for_obj_type: 'account',
// for_obj_id: account_id,
// params: {qry__enabled: 'enabled', qry__limit: 25},
// try_cache: true,
// log_lvl: log_lvl
// });
// ae_acct.slct.event_obj_li = load_event_obj_li;
// }
// let load_event_obj = events_func.load_ae_obj_id__event({
// api_cfg: ae_acct.api,
// event_id: event_id,
// try_cache: false
// });
// ae_acct.slct.event_obj = load_event_obj;
// let submenu = {
// main: {name: 'Main', href: '/events', access: false},
// // manage: {name: 'Manage', href: '/events/${event_id}/manage', access: 'administrator', disable: true, hide: true},
// locations: {name: 'Locations', href: `/events/${event_id}/locations`, access: false, disable: false, hide: false},
// };
// parent_data.submenu = submenu
// WARNING: Precaution against shared parent_data between sites and sessions.
parent_data[account_id] = ae_acct;