mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
finish heartbeat bar
This commit is contained in:
parent
497d63ef7d
commit
6974f0f3ad
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="wrap" :style="wrapStyle">
|
<div class="wrap" :style="wrapStyle" ref="wrap">
|
||||||
<div class="hp-bar-big" :style="barStyle">
|
<div class="hp-bar-big" :style="barStyle">
|
||||||
<div class="beat" :style="beatStyle" v-for="beat in beatList"></div>
|
<div class="beat" :style="beatStyle" v-for="(beat, index) in shortBeatList" :key="index">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -12,64 +13,84 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
i: 1,
|
||||||
beatList: [
|
beatList: [
|
||||||
1,2,3,4,5
|
|
||||||
],
|
],
|
||||||
beatWidth: 10,
|
beatWidth: 10,
|
||||||
beatHeight: 30,
|
beatHeight: 30,
|
||||||
hoverScale: 1.5,
|
hoverScale: 1.5,
|
||||||
beatMargin: 4,
|
beatMargin: 3, // Odd number only, even = blurry
|
||||||
move: false,
|
move: false,
|
||||||
maxBeat: 5,
|
maxBeat: -1,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
destroyed() {
|
||||||
|
window.removeEventListener("resize", this.resize);
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
setInterval(() => {
|
window.addEventListener("resize", this.resize);
|
||||||
|
this.resize();
|
||||||
|
|
||||||
this.addBeat()
|
setInterval(() => {
|
||||||
console.log("add beat")
|
this.beatList.push(this.i++)
|
||||||
}, 3000)
|
}, 3000)
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async addBeat() {
|
resize() {
|
||||||
this.move = true;
|
this.maxBeat = Math.floor(this.$refs.wrap.clientWidth / (this.beatWidth + this.beatMargin * 2))
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
this.beatList.push(6)
|
|
||||||
|
|
||||||
if (this.beatList.length > this.maxBeat) {
|
|
||||||
this.beatList.shift();
|
|
||||||
this.move = false;
|
|
||||||
}
|
|
||||||
}, 300)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
||||||
|
shortBeatList() {
|
||||||
|
let start = this.beatList.length - this.maxBeat;
|
||||||
|
|
||||||
|
if (this.move) {
|
||||||
|
start = start - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (start < 0) {
|
||||||
|
start = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.beatList.slice(start)
|
||||||
|
},
|
||||||
|
|
||||||
wrapStyle() {
|
wrapStyle() {
|
||||||
let topBottom = (((this.beatHeight * this.hoverScale) - this.beatHeight) / 2);
|
let topBottom = (((this.beatHeight * this.hoverScale) - this.beatHeight) / 2);
|
||||||
let leftRight = (((this.beatWidth * this.hoverScale) - this.beatWidth) / 2);
|
let leftRight = (((this.beatWidth * this.hoverScale) - this.beatWidth) / 2);
|
||||||
|
|
||||||
|
let width
|
||||||
|
if (this.maxBeat > 0) {
|
||||||
|
width = (this.beatWidth + this.beatMargin * 2) * this.maxBeat + (leftRight * 2) + "px"
|
||||||
|
} {
|
||||||
|
width = "100%"
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
padding: `${topBottom}px ${leftRight}px`,
|
padding: `${topBottom}px ${leftRight}px`,
|
||||||
width: (this.beatWidth + this.beatMargin * 2) * this.maxBeat + (leftRight * 2) + "px"
|
width: width
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
barStyle() {
|
barStyle() {
|
||||||
if (this.move) {
|
if (this.move && this.shortBeatList.length > this.maxBeat) {
|
||||||
let width = -(this.beatWidth + this.beatMargin * 2);
|
let width = -(this.beatWidth + this.beatMargin * 2);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
transition: "all ease-in-out 0.25s",
|
transition: "all ease-in-out 0.25s",
|
||||||
transform: `translateX(${width}px)`,
|
transform: `translateX(${width}px)`,
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return {
|
return {
|
||||||
|
transform: `translateX(0)`,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
beatStyle() {
|
beatStyle() {
|
||||||
return {
|
return {
|
||||||
width: this.beatWidth + "px",
|
width: this.beatWidth + "px",
|
||||||
|
@ -78,6 +99,20 @@ export default {
|
||||||
"--hover-scale": this.hoverScale,
|
"--hover-scale": this.hoverScale,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
beatList: {
|
||||||
|
handler(val, oldVal) {
|
||||||
|
console.log("add beat2")
|
||||||
|
this.move = true;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.move = false;
|
||||||
|
}, 300)
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -87,8 +122,7 @@ export default {
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100px;
|
width: 100%;
|
||||||
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,6 +133,10 @@ export default {
|
||||||
border-radius: 50rem;
|
border-radius: 50rem;
|
||||||
transition: all ease-in-out 0.15s;
|
transition: all ease-in-out 0.15s;
|
||||||
|
|
||||||
|
&.new-beat {
|
||||||
|
background-color: aliceblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<router-link to="/add" class="btn btn-primary">Add New Monitor</router-link>
|
<router-link to="/add" class="btn btn-primary">Add New Monitor</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="shadow-box list">
|
<div class="shadow-box list mb-4">
|
||||||
|
|
||||||
<span v-if="$root.monitorList.length === 0">No Monitors, please <router-link to="/add">add one</router-link>.</span>
|
<span v-if="$root.monitorList.length === 0">No Monitors, please <router-link to="/add">add one</router-link>.</span>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue