summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkDigitalClock.vue
blob: 9ed8d63d199cb1b2a9895c0d5d8cc415d527b384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
<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>
</template>

<script lang="ts" setup>
import { onUnmounted, ref, watch } from 'vue';

const props = withDefaults(defineProps<{
	showS?: boolean;
	showMs?: boolean;
	offset?: number;
}>(), {
	showS: true,
	showMs: false,
	offset: 0 - new Date().getTimezoneOffset(),
});

let intervalId;
const hh = ref('');
const mm = ref('');
const ss = ref('');
const ms = ref('');
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();
	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');
	if (now.getSeconds() !== prevSec) showColon.value = true;
	prevSec = now.getSeconds();
};

tick();

watch(() => props.showMs, () => {
	if (intervalId) window.clearInterval(intervalId);
	intervalId = window.setInterval(tick, props.showMs ? 10 : 1000);
}, { immediate: true });

onUnmounted(() => {
	window.clearInterval(intervalId);
});
</script>

<style lang="scss" scoped>
.zjobosdg {
	> .colon {
		opacity: 0;
		transition: opacity 1s ease;

		&.showColon {
			opacity: 1;
			transition: opacity 0s;
		}
	}
}
</style>