forked from extern/homer
Code review fixes
This commit is contained in:
parent
277dafafa9
commit
80ba98cf66
@ -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).
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user