Organizing things better. Hopefully nothing is broken!! Still need to move the event session related.

This commit is contained in:
Scott Idem
2024-09-27 17:21:57 -04:00
parent d6c26e7511
commit 6a8148228f
17 changed files with 36 additions and 54 deletions

View File

@@ -1,2 +1,10 @@
<script lang="ts">
/** @type {import('./$types').LayoutData} */
export let data: any;
let log_lvl = 0;
</script>
<slot />
<slot />

View File

@@ -1,6 +1,6 @@
console.log('*** stores_data_store_api.js Stores ***');
import { get } from 'svelte/store';
import { ae_app } from './stores';
import { ae_app } from './hold_stores';
import { api } from 'aether_npm_lib';

View File

@@ -63,9 +63,6 @@ $: lq__event_obj = liveQuery(async () => {
<Comp__event_obj_li
lq__event_obj_li={lq__event_obj_li}
/>
<!-- {#each $lq__event_obj_li as event_obj}
<div>{event_obj.name}</div>
{/each} -->
{/if}

View File

@@ -234,7 +234,8 @@ onMount(() => {
(
<span class="ae_label">Your TZ:</span>
<span class="ae_value">
{dayjs.tz(`${$ae_loc.current_date_str} ${$lq__event_obj?.recurring_start_time}`, $lq__event_obj?.timezone).tz($ae_loc.current_timezone).format('hh:mm A')} {$ae_loc.current_timezone}
<!-- {dayjs.tz(`${$ae_loc.current_date_str} ${$lq__event_obj?.recurring_start_time}`, $lq__event_obj?.timezone).tz($ae_loc.current_timezone).format('hh:mm A')} {$ae_loc.current_timezone} -->
DAYJS DISABLED
</span>
)
</span>

View File

@@ -0,0 +1,6 @@
<script lang="ts">
/** @type {import('./$types').LayoutData} */
</script>
<slot />