owlboard-svelte/src/routes/ldb/+page.svelte

37 lines
963 B
Svelte
Raw Normal View History

2023-06-13 13:38:59 +01:00
<script>
2023-06-14 11:02:46 +01:00
import Header from '$lib/header.svelte'
import Nav from '$lib/nav.svelte'
2023-06-13 13:38:59 +01:00
import {onMount} from 'svelte'
const title = "Public Board"
const page = "ldb"
async function getHeadcode() {
return new URLSearchParams(window.location.search).get('station');
}
2023-06-14 00:43:06 +01:00
/**
* @type {any[]}
*/
let jsonData = [] // Extract train data from the object to pass to #each
2023-06-13 13:38:59 +01:00
onMount(async () => {
2023-06-13 13:58:04 +01:00
const station = await getHeadcode();
document.getElementById('station').textContent = station;
2023-06-14 00:43:06 +01:00
const data = await fetch(`https://owlboard.info/api/v1/ldb/${station}`);
const jsonData = await data.json();
//document.getElementById('data_raw').textContent = JSON.stringify(await data.json());
2023-06-13 13:38:59 +01:00
})
</script>
2023-06-14 11:02:46 +01:00
<Header {title} />
2023-06-13 13:38:59 +01:00
<p>Station: <span id="station"></span></p>
2023-06-14 00:43:06 +01:00
{#each jsonData as item}
2023-06-14 00:45:21 +01:00
<p>{item.GetStationBoardResult.trainServices.service.operator}</p>
2023-06-14 00:43:06 +01:00
{/each}
2023-06-13 13:58:04 +01:00
2023-06-13 13:38:59 +01:00
2023-06-14 11:02:46 +01:00
<Nav {page} />