Files
OSIT-AE-App-Svelte/src/routes/idaa/(idaa)/bb/+layout.svelte

24 lines
702 B
Svelte

<script lang="ts">
/** @type {import('./$types').LayoutData} */
export let data: any;
let log_lvl = 1;
if (log_lvl > 1) {
console.log(`ae_idaa_bulletin_board +layout.svelte data:`, data);
}
import { ae_snip, ae_loc, ae_sess, ae_api, ae_trig, slct, slct_trigger } from '$lib/ae_stores';
import { idaa_loc, idaa_sess, idaa_slct } from '$lib/ae_idaa_stores';
// Quickly save the data passed from the parent(s) to the Svelte stores, localStorage, and other.
$slct.account_id = data.account_id;
// console.log(`$slct.account_id = `, $slct.account_id);
let ae_acct = data[$slct.account_id];
console.log(`ae_acct = `, ae_acct);
$idaa_slct.post_obj_li = ae_acct.slct.post_obj_li;
</script>
<slot />