2021-06-25 13:55:49 +00:00
|
|
|
<template>
|
2023-08-03 13:07:01 +00:00
|
|
|
<transition ref="tableContainer" name="slide-fade" appear>
|
2021-08-19 18:37:59 +00:00
|
|
|
<div v-if="$route.name === 'DashboardHome'">
|
|
|
|
<h1 class="mb-3">
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("Quick Stats") }}
|
2021-08-19 18:37:59 +00:00
|
|
|
</h1>
|
2021-06-25 13:55:49 +00:00
|
|
|
|
2021-08-29 18:22:49 +00:00
|
|
|
<div class="shadow-box big-padding text-center mb-4">
|
2021-08-19 18:37:59 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
2021-08-24 10:26:44 +00:00
|
|
|
<h3>{{ $t("Up") }}</h3>
|
2022-03-12 07:10:45 +00:00
|
|
|
<span class="num">{{ $root.stats.up }}</span>
|
2021-08-19 18:37:59 +00:00
|
|
|
</div>
|
|
|
|
<div class="col">
|
2021-08-24 10:26:44 +00:00
|
|
|
<h3>{{ $t("Down") }}</h3>
|
2022-03-12 07:10:45 +00:00
|
|
|
<span class="num text-danger">{{ $root.stats.down }}</span>
|
2021-08-19 18:37:59 +00:00
|
|
|
</div>
|
2022-01-23 14:22:00 +00:00
|
|
|
<div class="col">
|
|
|
|
<h3>{{ $t("Maintenance") }}</h3>
|
2022-04-30 12:33:54 +00:00
|
|
|
<span class="num text-maintenance">{{ $root.stats.maintenance }}</span>
|
2022-01-23 14:22:00 +00:00
|
|
|
</div>
|
2021-08-19 18:37:59 +00:00
|
|
|
<div class="col">
|
2021-08-24 10:26:44 +00:00
|
|
|
<h3>{{ $t("Unknown") }}</h3>
|
2022-03-12 07:10:45 +00:00
|
|
|
<span class="num text-secondary">{{ $root.stats.unknown }}</span>
|
2021-08-19 18:37:59 +00:00
|
|
|
</div>
|
|
|
|
<div class="col">
|
2021-08-26 00:43:26 +00:00
|
|
|
<h3>{{ $t("pauseDashboardHome") }}</h3>
|
2022-03-12 07:10:45 +00:00
|
|
|
<span class="num text-secondary">{{ $root.stats.pause }}</span>
|
2021-08-19 18:37:59 +00:00
|
|
|
</div>
|
2021-06-25 13:55:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-09-11 10:56:27 +00:00
|
|
|
<div class="shadow-box table-shadow-box" style="overflow-x: hidden;">
|
2021-08-19 18:37:59 +00:00
|
|
|
<table class="table table-borderless table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-08-24 10:26:44 +00:00
|
|
|
<th>{{ $t("Name") }}</th>
|
|
|
|
<th>{{ $t("Status") }}</th>
|
|
|
|
<th>{{ $t("DateTime") }}</th>
|
|
|
|
<th>{{ $t("Message") }}</th>
|
2021-08-19 18:37:59 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-08-21 19:12:44 +00:00
|
|
|
<tr v-for="(beat, index) in displayedRecords" :key="index" :class="{ 'shadow-box': $root.windowWidth <= 550}">
|
2021-09-08 10:59:30 +00:00
|
|
|
<td><router-link :to="`/dashboard/${beat.monitorID}`">{{ beat.name }}</router-link></td>
|
2021-08-19 18:37:59 +00:00
|
|
|
<td><Status :status="beat.status" /></td>
|
2021-08-21 19:12:44 +00:00
|
|
|
<td :class="{ 'border-0':! beat.msg}"><Datetime :value="beat.time" /></td>
|
|
|
|
<td class="border-0">{{ beat.msg }}</td>
|
2021-08-19 18:37:59 +00:00
|
|
|
</tr>
|
2021-07-27 17:47:13 +00:00
|
|
|
|
2021-08-19 18:37:59 +00:00
|
|
|
<tr v-if="importantHeartBeatList.length === 0">
|
|
|
|
<td colspan="4">
|
2021-08-24 10:26:44 +00:00
|
|
|
{{ $t("No important events") }}
|
2021-08-19 18:37:59 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-07-18 01:04:40 +00:00
|
|
|
|
2021-08-19 18:37:59 +00:00
|
|
|
<div class="d-flex justify-content-center kuma_pagination">
|
|
|
|
<pagination
|
|
|
|
v-model="page"
|
|
|
|
:records="importantHeartBeatList.length"
|
|
|
|
:per-page="perPage"
|
2021-09-26 15:20:12 +00:00
|
|
|
:options="paginationConfig"
|
2021-08-19 18:37:59 +00:00
|
|
|
/>
|
|
|
|
</div>
|
2021-07-18 01:04:40 +00:00
|
|
|
</div>
|
2021-06-25 13:55:49 +00:00
|
|
|
</div>
|
2021-08-19 18:37:59 +00:00
|
|
|
</transition>
|
2021-06-25 13:55:49 +00:00
|
|
|
<router-view ref="child" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-07-01 09:00:23 +00:00
|
|
|
import Status from "../components/Status.vue";
|
|
|
|
import Datetime from "../components/Datetime.vue";
|
2021-07-18 01:04:40 +00:00
|
|
|
import Pagination from "v-pagination-3";
|
|
|
|
|
2021-06-25 13:55:49 +00:00
|
|
|
export default {
|
2021-07-18 01:04:40 +00:00
|
|
|
components: {
|
|
|
|
Datetime,
|
|
|
|
Status,
|
|
|
|
Pagination,
|
|
|
|
},
|
2023-08-03 13:07:01 +00:00
|
|
|
props: {
|
|
|
|
calculatedHeight: {
|
|
|
|
type: Number,
|
|
|
|
default: 0
|
|
|
|
}
|
|
|
|
},
|
2021-07-18 01:04:40 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
page: 1,
|
|
|
|
perPage: 25,
|
2023-08-03 13:07:01 +00:00
|
|
|
initialPerPage: 25,
|
2021-07-18 01:04:40 +00:00
|
|
|
heartBeatList: [],
|
2021-09-26 15:20:12 +00:00
|
|
|
paginationConfig: {
|
2021-10-29 11:37:38 +00:00
|
|
|
hideCount: true,
|
2021-10-26 16:03:49 +00:00
|
|
|
chunksNavigation: "scroll",
|
|
|
|
},
|
|
|
|
};
|
2021-07-18 01:04:40 +00:00
|
|
|
},
|
2021-06-25 13:55:49 +00:00
|
|
|
computed: {
|
2021-07-01 09:00:23 +00:00
|
|
|
|
|
|
|
importantHeartBeatList() {
|
|
|
|
let result = [];
|
|
|
|
|
|
|
|
for (let monitorID in this.$root.importantHeartbeatList) {
|
2021-10-26 16:03:49 +00:00
|
|
|
let list = this.$root.importantHeartbeatList[monitorID];
|
2021-07-01 09:00:23 +00:00
|
|
|
result = result.concat(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let beat of result) {
|
|
|
|
let monitor = this.$root.monitorList[beat.monitorID];
|
|
|
|
|
|
|
|
if (monitor) {
|
2021-10-26 16:03:49 +00:00
|
|
|
beat.name = monitor.name;
|
2021-07-01 09:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-01 09:05:02 +00:00
|
|
|
result.sort((a, b) => {
|
|
|
|
if (a.time > b.time) {
|
|
|
|
return -1;
|
2021-07-27 17:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a.time < b.time) {
|
2021-07-01 09:05:02 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2021-07-27 17:47:13 +00:00
|
|
|
|
|
|
|
return 0;
|
2021-07-01 09:05:02 +00:00
|
|
|
});
|
|
|
|
|
2022-04-13 16:30:32 +00:00
|
|
|
// eslint-disable-next-line vue/no-side-effects-in-computed-properties
|
2021-07-18 01:04:40 +00:00
|
|
|
this.heartBeatList = result;
|
|
|
|
|
2021-07-01 09:00:23 +00:00
|
|
|
return result;
|
2021-07-18 01:04:40 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
displayedRecords() {
|
|
|
|
const startIndex = this.perPage * (this.page - 1);
|
|
|
|
const endIndex = startIndex + this.perPage;
|
|
|
|
return this.heartBeatList.slice(startIndex, endIndex);
|
|
|
|
},
|
2021-07-27 17:47:13 +00:00
|
|
|
},
|
2023-08-03 13:07:01 +00:00
|
|
|
watch: {
|
|
|
|
importantHeartBeatList() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.updatePerPage();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.initialPerPage = this.perPage;
|
|
|
|
|
|
|
|
window.addEventListener("resize", this.updatePerPage);
|
|
|
|
this.updatePerPage();
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
window.removeEventListener("resize", this.updatePerPage);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
updatePerPage() {
|
|
|
|
const tableContainer = this.$refs.tableContainer;
|
|
|
|
const tableContainerHeight = tableContainer.offsetHeight;
|
|
|
|
const availableHeight = window.innerHeight - tableContainerHeight;
|
|
|
|
const additionalPerPage = Math.floor(availableHeight / 58);
|
|
|
|
|
|
|
|
if (additionalPerPage > 0) {
|
|
|
|
this.perPage = Math.max(this.initialPerPage, this.perPage + additionalPerPage);
|
|
|
|
} else {
|
|
|
|
this.perPage = this.initialPerPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
2021-10-26 16:03:49 +00:00
|
|
|
};
|
2021-06-25 13:55:49 +00:00
|
|
|
</script>
|
|
|
|
|
2021-08-08 05:47:29 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-06-25 13:55:49 +00:00
|
|
|
@import "../assets/vars";
|
|
|
|
|
|
|
|
.num {
|
|
|
|
font-size: 30px;
|
|
|
|
color: $primary;
|
|
|
|
font-weight: bold;
|
2021-07-01 09:00:23 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow-box {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
transition: all ease-in-out 0.2ms;
|
|
|
|
}
|
2021-09-11 10:56:27 +00:00
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
table-layout: fixed;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
2021-06-25 13:55:49 +00:00
|
|
|
}
|
|
|
|
</style>
|