mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
200 lines
6.0 KiB
Vue
200 lines
6.0 KiB
Vue
<template>
|
|
<transition name="slide-fade" appear>
|
|
<div v-if="$route.name === 'DashboardHome'">
|
|
<h1 class="mb-3">
|
|
{{ $t("Quick Stats") }}
|
|
</h1>
|
|
|
|
<div class="shadow-box big-padding text-center mb-4">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h3>{{ $t("Up") }}</h3>
|
|
<span class="num">{{ stats.up }}</span>
|
|
</div>
|
|
<div class="col">
|
|
<h3>{{ $t("Down") }}</h3>
|
|
<span class="num text-danger">{{ stats.down }}</span>
|
|
</div>
|
|
<div class="col">
|
|
<h3>{{ $t("Unknown") }}</h3>
|
|
<span class="num text-secondary">{{ stats.unknown }}</span>
|
|
</div>
|
|
<div class="col">
|
|
<h3>{{ $t("pauseDashboardHome") }}</h3>
|
|
<span class="num text-secondary">{{ stats.pause }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="shadow-box table-shadow-box" style="overflow-x: hidden;">
|
|
<table class="table table-borderless table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ $t("Name") }}</th>
|
|
<th>{{ $t("Status") }}</th>
|
|
<th>{{ $t("DateTime") }}</th>
|
|
<th>{{ $t("Message") }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(beat, index) in displayedRecords" :key="index" :class="{ 'shadow-box': $root.windowWidth <= 550}">
|
|
<td><router-link :to="`/dashboard/${beat.monitorID}`">{{ beat.name }}</router-link></td>
|
|
<td><Status :status="beat.status" /></td>
|
|
<td :class="{ 'border-0':! beat.msg}"><Datetime :value="beat.time" /></td>
|
|
<td class="border-0">{{ beat.msg }}</td>
|
|
</tr>
|
|
|
|
<tr v-if="importantHeartBeatList.length === 0">
|
|
<td colspan="4">
|
|
{{ $t("No important events") }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="d-flex justify-content-center kuma_pagination">
|
|
<pagination
|
|
v-model="page"
|
|
:records="importantHeartBeatList.length"
|
|
:per-page="perPage"
|
|
:options="paginationConfig"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
<router-view ref="child" />
|
|
</template>
|
|
|
|
<script>
|
|
import Status from "../components/Status.vue";
|
|
import Datetime from "../components/Datetime.vue";
|
|
import Pagination from "v-pagination-3";
|
|
|
|
export default {
|
|
components: {
|
|
Datetime,
|
|
Status,
|
|
Pagination,
|
|
},
|
|
data() {
|
|
return {
|
|
page: 1,
|
|
perPage: 25,
|
|
heartBeatList: [],
|
|
paginationConfig: {
|
|
texts:{
|
|
count:`${this.$t("Showing {from} to {to} of {count} records")}|{count} ${this.$t("records")}|${this.$t("One record")}`,
|
|
first:this.$t("First"),
|
|
last:this.$t("Last"),
|
|
nextPage:'>',
|
|
nextChunk:'>>',
|
|
prevPage:'<',
|
|
prevChunk:'<<'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
stats() {
|
|
let result = {
|
|
up: 0,
|
|
down: 0,
|
|
unknown: 0,
|
|
pause: 0,
|
|
};
|
|
|
|
for (let monitorID in this.$root.monitorList) {
|
|
let beat = this.$root.lastHeartbeatList[monitorID];
|
|
let monitor = this.$root.monitorList[monitorID]
|
|
|
|
if (monitor && ! monitor.active) {
|
|
result.pause++;
|
|
} else if (beat) {
|
|
if (beat.status === 1) {
|
|
result.up++;
|
|
} else if (beat.status === 0) {
|
|
result.down++;
|
|
} else if (beat.status === 2) {
|
|
result.up++;
|
|
} else {
|
|
result.unknown++;
|
|
}
|
|
} else {
|
|
result.unknown++;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
},
|
|
|
|
importantHeartBeatList() {
|
|
let result = [];
|
|
|
|
for (let monitorID in this.$root.importantHeartbeatList) {
|
|
let list = this.$root.importantHeartbeatList[monitorID]
|
|
result = result.concat(list);
|
|
}
|
|
|
|
for (let beat of result) {
|
|
let monitor = this.$root.monitorList[beat.monitorID];
|
|
|
|
if (monitor) {
|
|
beat.name = monitor.name
|
|
}
|
|
}
|
|
|
|
result.sort((a, b) => {
|
|
if (a.time > b.time) {
|
|
return -1;
|
|
}
|
|
|
|
if (a.time < b.time) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
});
|
|
|
|
this.heartBeatList = result;
|
|
|
|
return result;
|
|
},
|
|
|
|
displayedRecords() {
|
|
const startIndex = this.perPage * (this.page - 1);
|
|
const endIndex = startIndex + this.perPage;
|
|
return this.heartBeatList.slice(startIndex, endIndex);
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../assets/vars";
|
|
|
|
.num {
|
|
font-size: 30px;
|
|
color: $primary;
|
|
font-weight: bold;
|
|
display: block;
|
|
}
|
|
|
|
.shadow-box {
|
|
padding: 20px;
|
|
}
|
|
|
|
table {
|
|
font-size: 14px;
|
|
|
|
tr {
|
|
transition: all ease-in-out 0.2ms;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
table-layout: fixed;
|
|
overflow-wrap: break-word;
|
|
}
|
|
}
|
|
</style>
|