diff --git a/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte b/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte index 0d1f9059..455acbc4 100644 --- a/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte +++ b/src/routes/events/[event_id]/(launcher)/launcher/+layout.svelte @@ -667,18 +667,21 @@ $effect(() => { {#await ae_promises[slct_event_location_id]} {:then result} @@ -234,7 +253,7 @@ let ae_promises: key_val = $state({ {/if} -{/if} +{/if} --> @@ -277,6 +296,7 @@ let ae_promises: key_val = $state({ {/if} diff --git a/src/routes/events/[event_id]/(launcher)/menu_location_list.svelte b/src/routes/events/[event_id]/(launcher)/menu_location_list.svelte new file mode 100644 index 00000000..348e440b --- /dev/null +++ b/src/routes/events/[event_id]/(launcher)/menu_location_list.svelte @@ -0,0 +1,155 @@ + + + +
+ {#if $lq__event_location_obj_li && $lq__event_location_obj_li.length > 0} +
+ + Location: + + ({$lq__event_location_obj_li?.length}×) + + + + {#await ae_promises[slct_event_location_id]} + + {:then result} + + {/await} + +
+ + + {:else} +
+ No locations found. + +
+ {/if} +
\ No newline at end of file diff --git a/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte b/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte index 05860626..04cd812c 100644 --- a/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte +++ b/src/routes/events/[event_id]/(launcher)/menu_session_list.svelte @@ -3,12 +3,14 @@ interface Props { data_url: any; // export let lq__event_session_obj: any; lq__event_session_obj_li: any; + slct_event_session_id: string|null; log_lvl?: number; } let { data_url, lq__event_session_obj_li, + slct_event_session_id = null, log_lvl = $bindable(0), }: Props = $props(); @@ -38,16 +40,10 @@ let ae_promises: key_val = $state({ let hover_timer_wait = 1000; let hover_timer: any = $state(null); + - - -
{#if $lq__event_session_obj_li && $lq__event_session_obj_li.length > 0} -
+
+ Sessions: - {#if $ae_loc.administrator_access} - ({$lq__event_session_obj_li?.length}×) - {/if} + + ({$lq__event_session_obj_li?.length}×) + + {#await ae_promises.slct_event_session_id} {:then result} {/await} -
+
+
+