blob: ec2564c5ea66f3df62dfa80b0e364049a5b2429e (
plain)
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
|
<template>
<div class="minion">
<span class="name">{{ name }}</span>
<span class="ip">{{ ip }}</span>
Temperature: {{ temperature }}
</div>
</template>
<script lang="ts">
import { ref, defineComponent } from "vue";
interface MinionResponseData {
data: { temperature: number } | null,
error: string | null
}
export default defineComponent(
{
name: "MinionStatus",
props: {
name: {
type: String,
required: true
},
ip: {
type: String,
required: true
}
},
setup(props) {
const temperature = ref("None");
async function fetch_temperature() {
let response: Response;
try {
response = await fetch(`http://${props.ip}`);
}
catch (err) {
const error = err as Error;
console.error(
`Failed to fetch temperature for minion "${props.name}". ` +
`${error.message}`
);
return;
}
const data = await response.json() as MinionResponseData;
if(!response.ok) {
if(data.error !== null) {
console.error(
`Minion "${props.name}" responded with status ` +
`${response.status} and error "${data.error}"`
);
}
else {
console.error(
`Minion "${props.name}" responded with status ` +
`${response.status} and a unknown error`
);
}
return;
}
if(data.data == null) {
console.error(`Minion "${props.name}" has no data in response`);
return;
}
temperature.value = `${data.data.temperature}°C`;
}
return { temperature, fetch_temperature };
},
created() {
this.fetch_temperature();
}
}
);
</script>
<style scoped lang="scss">
@use "@/scss/colors";
.minion {
background-color: lighten(colors.$background, 8%);
width: fit-content;
padding-top: 1em;
padding-bottom: 1.5em;
padding-left: 1.5em;
padding-right: 3em;
border: 1px solid lighten(colors.$background, 14%);
border-radius: 8px;
.name {
display: block;
font-size: 1.25rem;
font-weight: 700;
color: colors.$primary;
margin-bottom: 0.25em;
}
.ip {
display: block;
}
}
</style>
|