43 lines
1.3 KiB
Svelte
43 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
let log_lvl: number = 0;
|
|
if (log_lvl > 1) {
|
|
console.log(`ae_idaa_recovery_meetings +layout.svelte`, data);
|
|
}
|
|
|
|
// *** Import Aether specific variables and functions
|
|
// import type { key_val } from '$lib/ae_stores';
|
|
// import { ae_util } from '$lib/ae_utils/ae_utils';
|
|
|
|
// import { liveQuery } from "dexie";
|
|
// import { core_func } from '$lib/ae_core_functions';
|
|
// import { db_events } from "$lib/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 { events_func } from '$lib/ae_events_functions';
|
|
import { idaa_loc, idaa_sess, idaa_slct } from '$lib/ae_idaa_stores';
|
|
|
|
interface Props {
|
|
/** @type {import('./$types').LayoutData} */
|
|
data: any;
|
|
children?: import('svelte').Snippet;
|
|
}
|
|
|
|
let { data, children }: Props = $props();
|
|
|
|
// *** Quickly pull out data from parent(s)
|
|
$slct.account_id = data.account_id;
|
|
|
|
let ae_acct = data[$slct.account_id];
|
|
if (log_lvl) {
|
|
console.log(`ae_acct = `, ae_acct);
|
|
}
|
|
|
|
$idaa_slct.event_obj_li = ae_acct.slct.event_obj_li;
|
|
// $idaa_slct.event_id = ae_acct.slct.event_id; // Not set here yet.
|
|
|
|
// *** Set initial variables
|
|
</script>
|
|
|
|
|
|
{@render children?.()}
|