Applied consistent code formatting across the project using Prettier, now configured to use 4-space indentation instead of tabs.
35 lines
969 B
TypeScript
35 lines
969 B
TypeScript
/** @type {import('./$types').LayoutLoad} */
|
|
console.log(`ae_events_pres_mgmt +layout.ts start`);
|
|
|
|
// Imports
|
|
// import { browser } from '$app/environment';
|
|
// import { events_func } from '$lib/ae_events_functions';
|
|
|
|
export async function load({ parent }) {
|
|
const log_lvl: number = 0;
|
|
|
|
const parent_data = await parent();
|
|
// console.log(`ae_events_pres_mgmt +layout.ts parent_data:`, parent_data);
|
|
|
|
const account_id = parent_data.account_id;
|
|
if (!account_id) {
|
|
console.log(
|
|
`events_pres_mgmt +layout.ts: The account_id was not found in the parent_data!!!`
|
|
);
|
|
return false;
|
|
}
|
|
|
|
const ae_acct = parent_data[account_id];
|
|
if (log_lvl) {
|
|
console.log(`ae_acct = `, ae_acct);
|
|
}
|
|
|
|
// WARNING: Precaution against shared parent_data between sites and sessions.
|
|
parent_data[account_id] = ae_acct;
|
|
|
|
return parent_data;
|
|
}
|
|
|
|
// export const prerender = false;
|
|
// export const prerender = true;
|