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

29 lines
758 B
Svelte
Raw Normal View History

2023-06-13 13:38:59 +01:00
<script>
import Menu from '../../components/header.svelte'
import Footer from '../../components/footer.svelte'
import {onMount} from 'svelte'
const title = "Public Board"
const page = "ldb"
async function getHeadcode() {
return new URLSearchParams(window.location.search).get('station');
}
onMount(async () => {
2023-06-13 13:58:04 +01:00
const station = await getHeadcode();
document.getElementById('station').textContent = station;
const data = await fetch(`https://owlboard.info/api/v1/ldb/${station}`)
document.getElementById('data_raw').textContent = JSON.stringify(await data.json());
2023-06-13 13:38:59 +01:00
})
</script>
<Menu {title} />
<p>Station: <span id="station"></span></p>
2023-06-13 13:58:04 +01:00
<p id="data_raw"></p>
2023-06-13 13:38:59 +01:00
<Footer {page} />