Compare commits
2 Commits
v3.0.0-dev
...
v3.0.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 9657a77c41 | |||
| 437b0b8cf1 |
49
src/lib/components/ui/LiveIndicator.svelte
Normal file
49
src/lib/components/ui/LiveIndicator.svelte
Normal file
@@ -0,0 +1,49 @@
|
||||
<div class="cont">
|
||||
<div class="flash"></div>
|
||||
<span class="txt">Live</span>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.cont {
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-family: 'URW Gothic', sans-serif;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.15ch;
|
||||
}
|
||||
|
||||
.flash {
|
||||
height: 0.6rem;
|
||||
width: 0.6rem;
|
||||
margin: 0 0.35rem;
|
||||
border-radius: 50%;
|
||||
background-color: forestgreen;
|
||||
animation: live-pulse 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.txt {
|
||||
animation: live-text-pulse 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes live-pulse {
|
||||
0%, 100% {
|
||||
box-shadow: 0 0 14px forestgreen;
|
||||
filter: opacity(1);
|
||||
}
|
||||
50% {
|
||||
box-shadow: 0 0 2px forestgreen;
|
||||
filter: opacity(0.2);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes live-text-pulse {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.65;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -6,8 +6,10 @@
|
||||
|
||||
import { formatUkDateTime, formatUkTime } from '$lib/utils/time';
|
||||
import StaffServicesTable from '$lib/components/ui/station-board/StaffServicesTable.svelte';
|
||||
import LiveIndicator from '$lib/components/ui/LiveIndicator.svelte';
|
||||
let { data } = $props();
|
||||
let now = $state(new Date());
|
||||
let live = $state(false);
|
||||
|
||||
// Handle auto-refreshing & Wake-lock
|
||||
$effect(() => {
|
||||
@@ -46,8 +48,10 @@
|
||||
await invalidateAll();
|
||||
} catch (error) {
|
||||
console.error("Background data fetch failed: ", error)
|
||||
live = false;
|
||||
}
|
||||
}, 61000);
|
||||
}, 60100);
|
||||
live = true;
|
||||
console.log("Polling started")
|
||||
};
|
||||
|
||||
@@ -107,12 +111,14 @@ $effect(() => {
|
||||
// Load Data Invalidation Handling
|
||||
// Refresh countdown logic
|
||||
</script>
|
||||
|
||||
<section class="board-wrapper">
|
||||
<div class="time-data">
|
||||
<span class="time-loaded">Updated: {formatUkDateTime(data.boardData.producedAt, true)}</span>
|
||||
<span class="time-now">{formatUkTime(now, true)}</span>
|
||||
</div>
|
||||
{#if live}
|
||||
<LiveIndicator />
|
||||
{/if}
|
||||
{#if data.boardData.data.m?.length}
|
||||
<StationAlertCard messages={data.boardData.data.m} />
|
||||
{/if}
|
||||
|
||||
Reference in New Issue
Block a user