Code review fixes

This commit is contained in:
Artur Bauer 2021-10-11 18:38:13 +02:00
parent 277dafafa9
commit 80ba98cf66
No known key found for this signature in database
GPG Key ID: 1B241941B1E4F1F4
2 changed files with 42 additions and 65 deletions

View File

@ -6,15 +6,16 @@ within Homer.
If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
## Common options ## Common options
```yaml ```yaml
- name: 'My Service' - name: "My Service"
logo: 'assets/tools/sample.png' logo: "assets/tools/sample.png"
url: 'http://my-service-link' url: "http://my-service-link"
endpoint: 'http://my-service-endpoint' # Optional: alternative base URL used to fetch service data is necessary. endpoint: "http://my-service-endpoint" # Optional: alternative base URL used to fetch service data is necessary.
useCredentials: false # Optional: Override global proxy.useCredentials configuration. useCredentials: false # Optional: Override global proxy.useCredentials configuration.
type: '<type>' type: "<type>"
``` ```
⚠️🚧 `endpoint` & `useCredentials` new options are not yet supported by all custom services (but will be very soon). ⚠️🚧 `endpoint` & `useCredentials` new options are not yet supported by all custom services (but will be very soon).

View File

@ -1,57 +1,41 @@
<template> <template>
<div> <Generic :item="item">
<div <template #content>
class="card"
:style="`background-color:${item.background};`"
:class="item.class"
>
<a :href="item.url" :target="item.target" rel="noreferrer">
<div class="card-content">
<div :class="mediaClass">
<slot name="icon">
<div v-if="item.logo" class="media-left">
<figure class="image is-48x48">
<img :src="item.logo" :alt="`${item.name} logo`" />
</figure>
</div>
<div v-if="item.icon" class="media-left">
<figure class="image is-48x48">
<i style="font-size: 35px" :class="['fa-fw', item.icon]"></i>
</figure>
</div>
</slot>
<div class="media-content">
<slot name="content">
<p class="title is-4">{{ item.name }}</p> <p class="title is-4">{{ item.name }}</p>
<p class="subtitle is-6"> <p class="subtitle is-6">
<template v-if="item.subtitle"> <template v-if="item.subtitle">
{{ item.subtitle }} {{ item.subtitle }}
</template> </template>
<template v-else-if="api"> <template v-else-if="api"> {{ count }} {{ level }} alerts </template>
{{ count }} {{ level }} alerts
</template>
</p> </p>
</slot> </template>
</div> <template #indicator>
<div v-if="api" class="status" :class="level"> <div v-if="api" class="status" :class="level">
{{ count }} {{ count }}
</div> </div>
</div> </template>
<div class="tag" :class="item.tagstyle" v-if="item.tag"> </Generic>
<strong class="tag-text">#{{ item.tag }}</strong>
</div>
</div>
</a>
</div>
</div>
</template> </template>
<script> <script>
import service from "@/mixins/service.js";
import Generic from "./Generic.vue";
const AlertsStatus = Object.freeze({
firing: "firing",
pending: "pending",
inactive: "inactive",
});
export default { export default {
name: "Prometheus", name: "Prometheus",
mixins: [service],
props: { props: {
item: Object, item: Object,
}, },
components: {
Generic,
},
data: () => ({ data: () => ({
api: { api: {
status: "", status: "",
@ -64,9 +48,6 @@ export default {
}, },
}), }),
computed: { computed: {
mediaClass: function () {
return { media: true, "no-subtitle": !this.item.subtitle };
},
count: function () { count: function () {
return ( return (
this.countFiring() || this.countPending() || this.countInactive() || 0 this.countFiring() || this.countPending() || this.countInactive() || 0
@ -74,11 +55,11 @@ export default {
}, },
level: function () { level: function () {
if (this.countFiring()) { if (this.countFiring()) {
return "firing"; return AlertsStatus.firing;
} else if (this.countPending()) { } else if (this.countPending()) {
return "pending"; return AlertsStatus.pending;
} }
return "inactive"; return AlertsStatus.inactive;
}, },
}, },
created() { created() {
@ -86,17 +67,12 @@ export default {
}, },
methods: { methods: {
fetchStatus: async function () { fetchStatus: async function () {
const url = `${this.item.url}/api/v1/alerts`; this.api = await this.fetch("api/v1/alerts").catch((e) => console.log(e));
this.api = await fetch(url, { method: "get" })
.then((response) => {
return response.json();
})
.catch((e) => console.log(e));
}, },
countFiring: function () { countFiring: function () {
if (this.api) { if (this.api) {
return this.api.data?.alerts?.filter( return this.api.data?.alerts?.filter(
(alert) => alert.state === "firing" (alert) => alert.state === AlertsStatus.firing
).length; ).length;
} }
return 0; return 0;
@ -104,7 +80,7 @@ export default {
countPending: function () { countPending: function () {
if (this.api) { if (this.api) {
return this.api.data?.alerts?.filter( return this.api.data?.alerts?.filter(
(alert) => alert.state === "pending" (alert) => alert.state === AlertsStatus.pending
).length; ).length;
} }
return 0; return 0;
@ -112,7 +88,7 @@ export default {
countInactive: function () { countInactive: function () {
if (this.api) { if (this.api) {
return this.api.data?.alerts?.filter( return this.api.data?.alerts?.filter(
(alert) => alert.state === "inactive" (alert) => alert.state === AlertsStatus.pending
).length; ).length;
} }
return 0; return 0;