You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uptime-kuma/src/components/CountUp.vue

64 lines
1.3 KiB

<template>
<span v-if="isNum" ref="output">{{ output }}</span> <span v-if="isNum">{{ unit }}</span>
<span v-else>{{ value }}</span>
</template>
<script lang="ts">
import { sleep } from "../util.ts";
export default {
props: {
value: [String, Number],
time: {
type: Number,
default: 0.3,
},
unit: {
type: String,
default: "ms",
},
},
data() {
return {
output: "",
frameDuration: 30,
};
},
computed: {
isNum() {
return typeof this.value === "number";
},
},
watch: {
async value(from, to) {
let diff = to - from;
let frames = 12;
let step = Math.floor(diff / frames);
if (isNaN(step) || ! this.isNum || (diff > 0 && step < 1) || (diff < 0 && step > 1) || diff === 0) {
// Lazy to NOT this condition, hahaha.
} else {
for (let i = 1; i < frames; i++) {
this.output += step;
await sleep(15);
}
}
this.output = this.value;
},
},
mounted() {
this.output = this.value;
},
methods: {},
};
</script>