iceshrimp-legacy/packages/client/src/components/MkDigitalClock.vue

89 lines
1.8 KiB
Vue
Raw Normal View History

2022-08-06 11:15:13 +02:00
<template>
2023-04-08 02:01:42 +02:00
<span class="zjobosdg">
<span v-text="hh"></span>
<span class="colon" :class="{ showColon }">:</span>
<span v-text="mm"></span>
<span v-if="showS" class="colon" :class="{ showColon }">:</span>
<span v-if="showS" v-text="ss"></span>
<span v-if="showMs" class="colon" :class="{ showColon }">:</span>
<span v-if="showMs" v-text="ms"></span>
</span>
2022-08-06 11:15:13 +02:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { onUnmounted, ref, watch } from "vue";
2022-08-06 11:15:13 +02:00
2023-04-08 02:01:42 +02:00
const props = withDefaults(
defineProps<{
showS?: boolean;
showMs?: boolean;
offset?: number;
}>(),
{
showS: true,
showMs: false,
offset: 0 - new Date().getTimezoneOffset(),
}
);
2022-08-06 11:15:13 +02:00
let intervalId;
2023-04-08 02:01:42 +02:00
const hh = ref("");
const mm = ref("");
const ss = ref("");
const ms = ref("");
2022-08-06 11:15:13 +02:00
const showColon = ref(false);
let prevSec: number | null = null;
watch(showColon, (v) => {
if (v) {
window.setTimeout(() => {
showColon.value = false;
}, 30);
}
});
const tick = () => {
const now = new Date();
2023-04-08 02:01:42 +02:00
now.setMinutes(
now.getMinutes() + (new Date().getTimezoneOffset() + props.offset)
);
hh.value = now.getHours().toString().padStart(2, "0");
mm.value = now.getMinutes().toString().padStart(2, "0");
ss.value = now.getSeconds().toString().padStart(2, "0");
ms.value = Math.floor(now.getMilliseconds() / 10)
.toString()
.padStart(2, "0");
2022-08-06 11:15:13 +02:00
if (now.getSeconds() !== prevSec) showColon.value = true;
prevSec = now.getSeconds();
};
tick();
2023-04-08 02:01:42 +02:00
watch(
() => props.showMs,
() => {
if (intervalId) window.clearInterval(intervalId);
intervalId = window.setInterval(tick, props.showMs ? 10 : 1000);
},
{ immediate: true }
);
2022-08-06 11:15:13 +02:00
onUnmounted(() => {
window.clearInterval(intervalId);
});
</script>
<style lang="scss" scoped>
.zjobosdg {
> .colon {
opacity: 0;
transition: opacity 1s ease;
&.showColon {
opacity: 1;
transition: opacity 0s;
}
}
}
</style>