mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-11-14 08:53:49 +00:00
prepare sending data to server
This commit is contained in:
parent
9d482e8492
commit
9c520b94b2
@ -1,4 +1,5 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import { redirectAPI } from '$lib/client/httpRequests';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
// Data structure to keep track of clock
|
// Data structure to keep track of clock
|
||||||
@ -37,6 +38,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
//.System variables
|
//.System variables
|
||||||
|
let clockEnabled: boolean = false;
|
||||||
const clock: Clock = {
|
const clock: Clock = {
|
||||||
body: 48,
|
body: 48,
|
||||||
hands: {
|
hands: {
|
||||||
@ -87,6 +89,14 @@
|
|||||||
y: calcPos('hour', 'sin')
|
y: calcPos('hour', 'sin')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
// If enabled, update clock display
|
||||||
|
if (clockEnabled) await displayMatrixClock();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle displaying clock on matrix
|
||||||
|
async function displayMatrixClock() {
|
||||||
|
// Display clock body as circle
|
||||||
|
await redirectAPI();
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
@ -94,6 +104,18 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<!-- Title -->
|
||||||
|
<h1 class="text-4xl font-bold m-5 text-center">Matrix Clock Display</h1>
|
||||||
|
<!-- Update toggle form -->
|
||||||
|
<form class="m-1 grid grid-cols-2" on:submit|preventDefault={() => (clockEnabled = !clockEnabled)}>
|
||||||
|
<label class="border-2 border-black border-r-0 pl-1" for="toggle">Toggle clock usage:</label>
|
||||||
|
<input
|
||||||
|
class="border-2 border-black cursor-pointer hover:bg-gray-200"
|
||||||
|
id="toggle"
|
||||||
|
type="submit"
|
||||||
|
value="Submit"
|
||||||
|
/>
|
||||||
|
</form>
|
||||||
<!-- Virtual clock display using SVG -->
|
<!-- Virtual clock display using SVG -->
|
||||||
<div class="bg-black">
|
<div class="bg-black">
|
||||||
<svg class="text-white" viewBox="0 0 100 100">
|
<svg class="text-white" viewBox="0 0 100 100">
|
||||||
|
Loading…
Reference in New Issue
Block a user