mirror of https://github.com/bastienwirtz/homer
added custom component for home assistant
parent
04c178a51b
commit
efc9b1e0ad
|
@ -0,0 +1,165 @@
|
|||
<template>
|
||||
<Generic :item="item">
|
||||
<template #content>
|
||||
<p class="title is-4">{{ item.name }}</p>
|
||||
<p class="subtitle is-6">
|
||||
<template v-if="item.subtitle">
|
||||
{{ item.subtitle }}
|
||||
</template>
|
||||
<template v-else>
|
||||
{{ details }}
|
||||
</template>
|
||||
</p>
|
||||
</template>
|
||||
<template #indicator>
|
||||
<div v-if="status" class="status" :class="status">
|
||||
{{ status }}
|
||||
</div>
|
||||
</template>
|
||||
</Generic>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import service from "@/mixins/service.js";
|
||||
import Generic from "./Generic.vue";
|
||||
|
||||
export default {
|
||||
name: "HomeAssistant",
|
||||
mixins: [service],
|
||||
props: {
|
||||
item: Object,
|
||||
},
|
||||
components: {
|
||||
Generic,
|
||||
},
|
||||
data: () => ({
|
||||
status: "",
|
||||
msg: "",
|
||||
version: "",
|
||||
entities: 0,
|
||||
}),
|
||||
computed: {
|
||||
headers: function () {
|
||||
return {
|
||||
'Authorization': `Bearer ${this.item.apikey}`,
|
||||
'Content-Type': 'application/json',
|
||||
};
|
||||
},
|
||||
details: function () {
|
||||
const details = [];
|
||||
const items = this.item.items;
|
||||
const separator = this.item.separator;
|
||||
|
||||
for (const i in items) {
|
||||
const key = items[i];
|
||||
|
||||
switch (key) {
|
||||
case "version":
|
||||
details.push(
|
||||
`v${this.version}`,
|
||||
);
|
||||
break;
|
||||
case "name":
|
||||
details.push(
|
||||
`${this.location_name}`,
|
||||
);
|
||||
break;
|
||||
case "entities":
|
||||
details.push(
|
||||
`Entities: ${this.entities}`,
|
||||
);
|
||||
break;
|
||||
default:
|
||||
details.push(
|
||||
`undefined key ${key} `,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return details.join(separator);
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.fetchServerStatus();
|
||||
|
||||
if (!this.item.subtitle && this.status !== "dead") {
|
||||
if (!this.item.items) this.item.items = ["name", "version"];
|
||||
if (!this.item.separator) this.item.separator = " ";
|
||||
if (!this.item.logo) this.item.logo = `${this.item.url}/static/icons/favicon-192x192.png`;
|
||||
this.fetchServerStats();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
fetchServerStatus: async function () {
|
||||
const headers = this.headers;
|
||||
|
||||
this.fetch("/api/", { headers })
|
||||
.then((response) => {
|
||||
if (response && response.message) this.status = "running";
|
||||
else throw new Error();
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
this.status = "dead";
|
||||
});
|
||||
},
|
||||
fetchServerStats: async function () {
|
||||
const headers = this.headers;
|
||||
|
||||
this.fetch("/api/config", { headers })
|
||||
.then((response) => {
|
||||
if (response) {
|
||||
if (response.version) this.version = response.version;
|
||||
if (response.location_name) this.location_name = response.location_name;
|
||||
}
|
||||
else throw new Error();
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
this.status = "dead";
|
||||
});
|
||||
|
||||
this.fetch("/api/states", { headers })
|
||||
.then((response) => {
|
||||
if (response) {
|
||||
this.entities = response.length;
|
||||
}
|
||||
else throw new Error();
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
this.status = "dead";
|
||||
});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.status {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-title);
|
||||
|
||||
&.running:before {
|
||||
background-color: #94e185;
|
||||
border-color: #78d965;
|
||||
box-shadow: 0 0 5px 1px #94e185;
|
||||
}
|
||||
|
||||
&.dead:before {
|
||||
background-color: #c9404d;
|
||||
border-color: #c42c3b;
|
||||
box-shadow: 0 0 5px 1px #c9404d;
|
||||
}
|
||||
|
||||
&:before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
margin-right: 10px;
|
||||
border: 1px solid #000;
|
||||
border-radius: 7px;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue