uptime-kuma/src/components/HeartbeatBar.vue

178 lines
4.2 KiB
Vue
Raw Normal View History

2021-06-25 12:03:06 -07:00
<template>
2021-06-25 23:32:12 -07:00
<div class="wrap" :style="wrapStyle" ref="wrap">
2021-06-25 12:03:06 -07:00
<div class="hp-bar-big" :style="barStyle">
2021-06-29 01:06:20 -07:00
<div
class="beat"
:class="{ 'empty' : (beat === 0), 'down' : (beat.status === 0) }"
:style="beatStyle"
v-for="(beat, index) in shortBeatList"
:key="index"
:title="beat.msg">
2021-06-25 23:32:12 -07:00
</div>
2021-06-25 12:03:06 -07:00
</div>
</div>
</template>
<script>
export default {
2021-06-27 01:10:55 -07:00
props: {
size: {
type: String,
default: "big"
},
monitorId: Number
},
2021-06-25 12:03:06 -07:00
data() {
return {
beatWidth: 10,
beatHeight: 30,
hoverScale: 1.5,
2021-06-25 23:32:12 -07:00
beatMargin: 3, // Odd number only, even = blurry
2021-06-25 12:03:06 -07:00
move: false,
2021-06-25 23:32:12 -07:00
maxBeat: -1,
2021-06-25 12:03:06 -07:00
}
},
2021-06-27 01:10:55 -07:00
unmounted() {
2021-06-25 23:32:12 -07:00
window.removeEventListener("resize", this.resize);
},
2021-06-25 12:03:06 -07:00
mounted() {
2021-06-27 01:10:55 -07:00
if (this.size === "small") {
this.beatWidth = 5.6;
this.beatMargin = 2.4;
this.beatHeight = 16
}
2021-06-25 23:32:12 -07:00
window.addEventListener("resize", this.resize);
this.resize();
2021-06-25 12:03:06 -07:00
},
methods: {
2021-06-25 23:32:12 -07:00
resize() {
2021-06-27 01:10:55 -07:00
if (this.$refs.wrap) {
this.maxBeat = Math.floor(this.$refs.wrap.clientWidth / (this.beatWidth + this.beatMargin * 2))
}
2021-06-25 12:03:06 -07:00
}
},
computed: {
2021-06-25 23:32:12 -07:00
2021-06-27 01:10:55 -07:00
beatList() {
if (! (this.monitorId in this.$root.heartbeatList)) {
this.$root.heartbeatList[this.monitorId] = [];
}
return this.$root.heartbeatList[this.monitorId]
},
2021-06-25 23:32:12 -07:00
shortBeatList() {
2021-06-27 01:10:55 -07:00
let placeholders = []
2021-06-25 23:32:12 -07:00
let start = this.beatList.length - this.maxBeat;
if (this.move) {
start = start - 1;
}
if (start < 0) {
2021-06-27 01:10:55 -07:00
// Add empty placeholder
for (let i = start; i < 0; i++) {
placeholders.push(0)
}
2021-06-25 23:32:12 -07:00
start = 0;
}
2021-06-27 01:10:55 -07:00
return placeholders.concat(this.beatList.slice(start))
2021-06-25 23:32:12 -07:00
},
2021-06-25 12:03:06 -07:00
wrapStyle() {
let topBottom = (((this.beatHeight * this.hoverScale) - this.beatHeight) / 2);
let leftRight = (((this.beatWidth * this.hoverScale) - this.beatWidth) / 2);
2021-06-25 23:32:12 -07:00
let width
if (this.maxBeat > 0) {
width = (this.beatWidth + this.beatMargin * 2) * this.maxBeat + (leftRight * 2) + "px"
} {
width = "100%"
}
2021-06-25 12:03:06 -07:00
return {
padding: `${topBottom}px ${leftRight}px`,
2021-06-25 23:32:12 -07:00
width: width
2021-06-25 12:03:06 -07:00
}
},
2021-06-25 23:32:12 -07:00
2021-06-25 12:03:06 -07:00
barStyle() {
2021-06-25 23:32:12 -07:00
if (this.move && this.shortBeatList.length > this.maxBeat) {
2021-06-25 12:03:06 -07:00
let width = -(this.beatWidth + this.beatMargin * 2);
2021-06-25 23:32:12 -07:00
return {
2021-06-25 12:03:06 -07:00
transition: "all ease-in-out 0.25s",
transform: `translateX(${width}px)`,
}
2021-06-25 23:32:12 -07:00
2021-06-25 12:03:06 -07:00
} else {
return {
2021-06-25 23:32:12 -07:00
transform: `translateX(0)`,
2021-06-25 12:03:06 -07:00
}
}
},
2021-06-25 23:32:12 -07:00
2021-06-25 12:03:06 -07:00
beatStyle() {
return {
width: this.beatWidth + "px",
height: this.beatHeight + "px",
margin: this.beatMargin + "px",
"--hover-scale": this.hoverScale,
}
}
2021-06-25 23:32:12 -07:00
},
watch: {
beatList: {
handler(val, oldVal) {
this.move = true;
setTimeout(() => {
this.move = false;
}, 300)
},
deep: true,
}
2021-06-25 12:03:06 -07:00
}
}
</script>
<style scoped lang="scss">
@import "../assets/vars.scss";
.wrap {
overflow: hidden;
2021-06-25 23:32:12 -07:00
width: 100%;
2021-06-25 12:03:06 -07:00
white-space: nowrap;
}
.hp-bar-big {
.beat {
display: inline-block;
background-color: $primary;
border-radius: 50rem;
2021-06-27 01:10:55 -07:00
&.empty {
2021-06-25 23:32:12 -07:00
background-color: aliceblue;
}
2021-06-27 01:10:55 -07:00
&.down {
background-color: $danger;
}
2021-06-25 12:03:06 -07:00
2021-06-27 01:10:55 -07:00
&:not(.empty):hover {
transition: all ease-in-out 0.15s;
2021-06-25 12:03:06 -07:00
opacity: 0.8;
transform: scale(var(--hover-scale));
}
}
}
</style>