StaffLDB-Minify #1

Merged
fred.boniface merged 27 commits from StaffLDB-Minify into main 2023-10-03 21:37:00 +01:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 53c2562b70 - Show all commits

View File

@ -5,6 +5,7 @@
import { detailInit, defineDetail } from './train-detail';
import TrainDetail from './train-detail.svelte';
import { fetchStaffLdb } from './fetch';
import AlertBar from '../nrcc/alert-bar.svelte';
export let station: string;
export let title: string | undefined = 'Loading...';
@ -13,6 +14,7 @@
code: '',
message: '',
};
let nrcc: string[] = [];
let detail = detailInit();
function hideDetail() {
@ -28,6 +30,11 @@
const data = await fetchStaffLdb(station);
if (data.data) {
title = data.data.locationName;
if (data.data?.nrccMessages) {
for (const msg of data.data.nrccMessages) {
nrcc.push(msg.xhtmlMessage);
}
}
return data.data;
}
errorDetail.code = data.obStatus.toString() || "UNKNOWN";
@ -60,6 +67,9 @@
<span class="table-head-text">Ferry Services</span>
<TableGenerator services={data.ferryServices} click={showDetail} />
{/if}
{#if nrcc.length}
<AlertBar alerts={nrcc} />
{/if}
<!-- NRCC Alerts are not available -->
{/if}
{:catch}