2021-08-19 06:05:14 -04:00
|
|
|
<template>
|
2021-09-08 14:10:32 -04:00
|
|
|
<div class="shadow-box mb-3">
|
|
|
|
<div class="list-header">
|
|
|
|
<div class="placeholder"></div>
|
|
|
|
<div class="search-wrapper">
|
2021-10-01 06:49:49 -04:00
|
|
|
<a v-if="!searchText" class="search-icon">
|
2021-09-08 14:10:32 -04:00
|
|
|
<font-awesome-icon icon="search" />
|
|
|
|
</a>
|
2021-10-01 06:49:49 -04:00
|
|
|
<a v-if="searchText" class="search-icon" @click="clearSearchText">
|
2021-09-08 14:10:32 -04:00
|
|
|
<font-awesome-icon icon="times" />
|
|
|
|
</a>
|
|
|
|
<input v-model="searchText" class="form-control search-input" :placeholder="$t('Search...')" />
|
|
|
|
</div>
|
2021-08-19 06:05:14 -04:00
|
|
|
</div>
|
2021-09-14 03:05:04 -04:00
|
|
|
<div class="monitor-list" :class="{ scrollbar: scrollbar }">
|
2021-09-08 14:10:32 -04:00
|
|
|
<div v-if="Object.keys($root.monitorList).length === 0" class="text-center mt-3">
|
|
|
|
{{ $t("No Monitors, please") }} <router-link to="/add">{{ $t("add one") }}</router-link>
|
|
|
|
</div>
|
2021-08-19 06:05:14 -04:00
|
|
|
|
2021-09-08 14:10:32 -04:00
|
|
|
<router-link v-for="(item, index) in sortedMonitorList" :key="index" :to="monitorURL(item.id)" class="item" :class="{ 'disabled': ! item.active }">
|
|
|
|
<div class="row">
|
2021-10-01 06:49:49 -04:00
|
|
|
<div class="col-6 col-md-8 small-padding" :class="{ 'monitorItem': $root.userHeartbeatBar === 'bottom' || $root.userHeartbeatBar === 'none' }">
|
2021-09-08 14:10:32 -04:00
|
|
|
<div class="info">
|
|
|
|
<Uptime :monitor="item" type="24" :pill="true" />
|
2021-10-01 06:49:49 -04:00
|
|
|
<span class="ms-1">{{ item.name }}</span>
|
2021-09-08 14:10:32 -04:00
|
|
|
</div>
|
|
|
|
<div class="tags">
|
|
|
|
<Tag v-for="tag in item.tags" :key="tag" :item="tag" :size="'sm'" />
|
|
|
|
</div>
|
2021-08-19 06:05:14 -04:00
|
|
|
</div>
|
2021-10-01 06:49:49 -04:00
|
|
|
<div v-show="$root.userHeartbeatBar === 'normal'" :key="$root.userHeartbeatBar" class="col-6 col-md-4 small-padding">
|
2021-09-08 14:10:32 -04:00
|
|
|
<HeartbeatBar size="small" :monitor-id="item.id" />
|
2021-08-19 06:05:14 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-10-01 06:49:49 -04:00
|
|
|
<div v-if="$root.userHeartbeatBar === 'bottom'" class="row">
|
2021-09-08 14:10:32 -04:00
|
|
|
<div class="col-12">
|
|
|
|
<HeartbeatBar size="small" :monitor-id="item.id" />
|
|
|
|
</div>
|
2021-08-19 06:05:14 -04:00
|
|
|
</div>
|
2021-09-08 14:10:32 -04:00
|
|
|
</router-link>
|
|
|
|
</div>
|
2021-08-19 06:05:14 -04:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HeartbeatBar from "../components/HeartbeatBar.vue";
|
|
|
|
import Uptime from "../components/Uptime.vue";
|
2021-08-26 06:55:19 -04:00
|
|
|
import Tag from "../components/Tag.vue";
|
2021-10-07 05:39:58 -04:00
|
|
|
import { getMonitorRelativeURL } from "../util.ts";
|
2021-08-26 06:55:19 -04:00
|
|
|
|
2021-08-19 06:05:14 -04:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Uptime,
|
|
|
|
HeartbeatBar,
|
2021-08-26 06:55:19 -04:00
|
|
|
Tag,
|
2021-08-19 06:05:14 -04:00
|
|
|
},
|
2021-08-29 14:22:49 -04:00
|
|
|
props: {
|
|
|
|
scrollbar: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
},
|
2021-09-08 14:10:32 -04:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
searchText: "",
|
2021-10-01 06:49:49 -04:00
|
|
|
};
|
2021-09-08 14:10:32 -04:00
|
|
|
},
|
2021-08-19 06:05:14 -04:00
|
|
|
computed: {
|
|
|
|
sortedMonitorList() {
|
|
|
|
let result = Object.values(this.$root.monitorList);
|
|
|
|
|
|
|
|
result.sort((m1, m2) => {
|
|
|
|
|
|
|
|
if (m1.active !== m2.active) {
|
|
|
|
if (m1.active === 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m2.active === 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m1.weight !== m2.weight) {
|
|
|
|
if (m1.weight > m2.weight) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m1.weight < m2.weight) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return m1.name.localeCompare(m2.name);
|
2021-10-01 06:49:49 -04:00
|
|
|
});
|
2021-08-19 06:05:14 -04:00
|
|
|
|
2021-09-08 14:10:32 -04:00
|
|
|
// Simple filter by search text
|
|
|
|
// finds monitor name, tag name or tag value
|
2021-10-01 06:49:49 -04:00
|
|
|
if (this.searchText) {
|
2021-09-08 14:10:32 -04:00
|
|
|
const loweredSearchText = this.searchText.toLowerCase();
|
|
|
|
result = result.filter(monitor => {
|
|
|
|
return monitor.name.toLowerCase().includes(loweredSearchText)
|
|
|
|
|| monitor.tags.find(tag => tag.name.toLowerCase().includes(loweredSearchText)
|
2021-10-01 06:49:49 -04:00
|
|
|
|| tag.value?.toLowerCase().includes(loweredSearchText));
|
|
|
|
});
|
2021-09-08 14:10:32 -04:00
|
|
|
}
|
|
|
|
|
2021-08-19 06:05:14 -04:00
|
|
|
return result;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
monitorURL(id) {
|
2021-10-07 05:39:58 -04:00
|
|
|
return getMonitorRelativeURL(id);
|
2021-08-19 06:05:14 -04:00
|
|
|
},
|
2021-09-08 14:10:32 -04:00
|
|
|
clearSearchText() {
|
|
|
|
this.searchText = "";
|
|
|
|
}
|
2021-08-19 06:05:14 -04:00
|
|
|
},
|
2021-10-01 06:49:49 -04:00
|
|
|
};
|
2021-08-19 06:05:14 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "../assets/vars.scss";
|
|
|
|
|
|
|
|
.small-padding {
|
|
|
|
padding-left: 5px !important;
|
|
|
|
padding-right: 5px !important;
|
|
|
|
}
|
|
|
|
|
2021-09-08 14:10:32 -04:00
|
|
|
.list-header {
|
|
|
|
border-bottom: 1px solid #dee2e6;
|
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
margin: -10px;
|
|
|
|
margin-bottom: 10px;
|
2021-09-08 22:31:46 -04:00
|
|
|
padding: 10px;
|
2021-09-08 14:10:32 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.dark & {
|
|
|
|
background-color: #161b22;
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-08 22:31:46 -04:00
|
|
|
@media (max-width: 770px) {
|
|
|
|
.list-header {
|
|
|
|
margin: -20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-08 14:10:32 -04:00
|
|
|
.search-wrapper {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-icon {
|
|
|
|
padding: 10px;
|
|
|
|
color: #c0c0c0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-input {
|
|
|
|
max-width: 15em;
|
|
|
|
}
|
|
|
|
|
2021-08-19 06:05:14 -04:00
|
|
|
.monitorItem {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-08-26 06:55:19 -04:00
|
|
|
|
|
|
|
.tags {
|
|
|
|
padding-left: 62px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0;
|
|
|
|
}
|
2021-08-19 06:05:14 -04:00
|
|
|
</style>
|