76 lines
1.4 KiB
Vue
76 lines
1.4 KiB
Vue
![]() |
<script setup lang="ts">
|
||
|
import { computed, ref, watch } from 'vue';
|
||
|
import { TransitionPresets, useTransition } from '@vueuse/core';
|
||
|
|
||
|
defineOptions({
|
||
|
name: 'CountTo'
|
||
|
});
|
||
|
|
||
|
const props = withDefaults(defineProps<Props>(), {
|
||
|
startValue: 0,
|
||
|
endValue: 2024,
|
||
|
autoplay: true,
|
||
|
decimals: 0,
|
||
|
prefix: '',
|
||
|
suffix: '',
|
||
|
separator: ',',
|
||
|
decimal: '.'
|
||
|
});
|
||
|
|
||
|
interface Props {
|
||
|
startValue?: number;
|
||
|
endValue?: number;
|
||
|
autoplay?: boolean;
|
||
|
decimals?: number;
|
||
|
prefix?: string;
|
||
|
suffix?: string;
|
||
|
separator?: string;
|
||
|
decimal?: string;
|
||
|
}
|
||
|
|
||
|
const source = ref(0);
|
||
|
|
||
|
const outputValue = useTransition(source, {
|
||
|
disabled: false,
|
||
|
duration: 1500,
|
||
|
transition: TransitionPresets.easeOutCubic
|
||
|
});
|
||
|
|
||
|
const value = computed(() => formatValue(outputValue.value));
|
||
|
|
||
|
function formatValue(num: number) {
|
||
|
const { decimals, decimal, separator, suffix, prefix } = props;
|
||
|
|
||
|
let number = num.toFixed(decimals);
|
||
|
number = String(number);
|
||
|
|
||
|
const x = number.split('.');
|
||
|
let x1 = x[0];
|
||
|
const x2 = x.length > 1 ? decimal + x[1] : '';
|
||
|
const rgx = /(\d+)(\d{3})/;
|
||
|
if (separator) {
|
||
|
while (rgx.test(x1)) {
|
||
|
x1 = x1.replace(rgx, `$1${separator}$2`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return prefix + x1 + x2 + suffix;
|
||
|
}
|
||
|
|
||
|
watch(
|
||
|
[() => props.startValue, () => props.endValue],
|
||
|
() => {
|
||
|
if (props.autoplay) {
|
||
|
source.value = props.endValue;
|
||
|
}
|
||
|
},
|
||
|
{ immediate: true }
|
||
|
);
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<span>{{ value }}</span>
|
||
|
</template>
|
||
|
|
||
|
<style scoped></style>
|