1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<script lang="ts">
import { onMount } from "svelte";
import type { Statistic } from "../types";
import { token, user } from "../stores/auth";
import Table from "./Table.svelte";
let json: Promise<any>;
let showAddForm: boolean = false;
let statistic: Statistic = newStatistic();
async function fetchData() {
const res = await fetch("http://localhost:8080/api/v1/stats/", {
method: "GET",
headers: {
Authorization: `Bearer ${$token}`,
},
});
if (res.ok) {
json = res.json();
} else {
throw new Error("There was a problem with your request");
}
}
async function submitStat() {
const response = await fetch("http://localhost:8080/api/v1/stats/", {
method: "POST",
headers: {
Authorization: `Bearer ${$token}`,
},
body: JSON.stringify({
date: new Date(),
user_id: 1,
quantity: 3,
}),
});
fetchData();
}
function handleClick() {
showAddForm = true;
}
function handleAddDialogSubmit(e: Event) {
console.log(statistic);
showAddForm = false;
}
function closeDialog() {
showAddForm = false;
}
function newStatistic(): Statistic {
let now = new Date(),
month,
day,
year;
month = `${now.getMonth() + 1}`;
day = `${now.getDate()}`;
year = now.getFullYear();
if (month.length < 2) month = "0" + month;
if (day.length < 2) day = "0" + day;
const date = [year, month, day].join("-");
return {
user_id: $user!.uuid,
date,
quantity: 1,
};
}
onMount(() => {
fetchData();
});
</script>
<div>
<button on:click={submitStat}>Add Stat Test</button>
<dialog open={showAddForm} on:submit={handleAddDialogSubmit}>
<h2>Add Water</h2>
<form method="dialog">
<div class="form input group">
<label for="date">Date:</label>
<input bind:value={statistic.date} id="date" name="date" type="date" />
</div>
<div class="form input group">
<label for="quantity">Quantity:</label>
<input
bind:value={statistic.quantity}
id="quantity"
name="quantity"
type="number"
min="0"
autocomplete="off"
/>
</div>
<button on:click={closeDialog}>Cancel</button>
<button type="submit">Submit</button>
</form>
</dialog>
<button on:click={handleClick}>Add</button>
{#await json then data}
<Table {data} nofooter />
{:catch error}
<p>{error}</p>
{/await}
<!-- <Chart /> -->
</div>
<style>
dialog {
background: red;
box-shadow: 0 20px 5em 10px rgba(0, 0, 0, 0.8);
}
dialog::backdrop {
padding: 20px;
box-shadow: 20px 20px rgba(0, 0, 0, 0.8);
background-color: red;
}
</style>
|