2020-02-14 14:31:24 +00:00
|
|
|
<template>
|
2020-02-14 14:55:13 +00:00
|
|
|
<svg class="mbcofsoe" viewBox="0 0 10 10" preserveAspectRatio="none">
|
|
|
|
<circle v-for="(angle, i) in graduations"
|
2020-02-14 14:31:24 +00:00
|
|
|
:cx="5 + (Math.sin(angle) * (5 - graduationsPadding))"
|
|
|
|
:cy="5 - (Math.cos(angle) * (5 - graduationsPadding))"
|
|
|
|
:r="i % 5 == 0 ? 0.125 : 0.05"
|
2020-02-14 14:55:13 +00:00
|
|
|
:fill="i % 5 == 0 ? majorGraduationColor : minorGraduationColor"
|
|
|
|
:key="i"/>
|
2020-02-14 14:31:24 +00:00
|
|
|
|
|
|
|
<line
|
|
|
|
:x1="5 - (Math.sin(sAngle) * (sHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(sAngle) * (sHandLengthRatio * handsTailLength))"
|
|
|
|
:x2="5 + (Math.sin(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="sHandColor"
|
|
|
|
stroke-width="0.05"/>
|
|
|
|
|
|
|
|
<line
|
|
|
|
:x1="5 - (Math.sin(mAngle) * (mHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(mAngle) * (mHandLengthRatio * handsTailLength))"
|
|
|
|
:x2="5 + (Math.sin(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="mHandColor"
|
|
|
|
stroke-width="0.1"/>
|
|
|
|
|
|
|
|
<line
|
|
|
|
:x1="5 - (Math.sin(hAngle) * (hHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(hAngle) * (hHandLengthRatio * handsTailLength))"
|
|
|
|
:x2="5 + (Math.sin(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="hHandColor"
|
|
|
|
stroke-width="0.1"/>
|
|
|
|
</svg>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-02-14 14:31:24 +00:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
2020-10-17 11:12:00 +00:00
|
|
|
import * as os from '@/os';
|
2020-02-14 14:31:24 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-02-14 14:31:24 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
now: new Date(),
|
|
|
|
enabled: true,
|
|
|
|
|
|
|
|
graduationsPadding: 0.5,
|
|
|
|
handsPadding: 1,
|
|
|
|
handsTailLength: 0.7,
|
|
|
|
hHandLengthRatio: 0.75,
|
|
|
|
mHandLengthRatio: 1,
|
2020-02-16 11:20:02 +00:00
|
|
|
sHandLengthRatio: 1,
|
|
|
|
|
|
|
|
computedStyle: getComputedStyle(document.documentElement)
|
2020-02-14 14:31:24 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2020-02-14 14:55:13 +00:00
|
|
|
dark(): boolean {
|
2020-02-16 11:20:02 +00:00
|
|
|
return tinycolor(this.computedStyle.getPropertyValue('--bg')).isDark();
|
2020-02-14 14:55:13 +00:00
|
|
|
},
|
2020-02-16 11:20:02 +00:00
|
|
|
|
2020-02-14 14:31:24 +00:00
|
|
|
majorGraduationColor(): string {
|
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.3)';
|
|
|
|
},
|
|
|
|
minorGraduationColor(): string {
|
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.2)' : 'rgba(0, 0, 0, 0.2)';
|
|
|
|
},
|
|
|
|
|
|
|
|
sHandColor(): string {
|
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.5)' : 'rgba(0, 0, 0, 0.3)';
|
|
|
|
},
|
|
|
|
mHandColor(): string {
|
2020-02-16 11:20:02 +00:00
|
|
|
return tinycolor(this.computedStyle.getPropertyValue('--fg')).toHexString();
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
|
|
|
hHandColor(): string {
|
2020-02-16 11:20:02 +00:00
|
|
|
return tinycolor(this.computedStyle.getPropertyValue('--accent')).toHexString();
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
s(): number {
|
|
|
|
return this.now.getSeconds();
|
|
|
|
},
|
|
|
|
m(): number {
|
|
|
|
return this.now.getMinutes();
|
|
|
|
},
|
|
|
|
h(): number {
|
|
|
|
return this.now.getHours();
|
|
|
|
},
|
|
|
|
|
|
|
|
hAngle(): number {
|
2020-03-22 09:18:34 +00:00
|
|
|
return Math.PI * (this.h % 12 + (this.m + this.s / 60) / 60) / 6;
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
|
|
|
mAngle(): number {
|
2020-03-22 09:18:34 +00:00
|
|
|
return Math.PI * (this.m + this.s / 60) / 30;
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
|
|
|
sAngle(): number {
|
2020-03-22 09:18:34 +00:00
|
|
|
return Math.PI * this.s / 30;
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
graduations(): any {
|
|
|
|
const angles = [];
|
|
|
|
for (let i = 0; i < 60; i++) {
|
|
|
|
const angle = Math.PI * i / 30;
|
|
|
|
angles.push(angle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return angles;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
const update = () => {
|
|
|
|
if (this.enabled) {
|
|
|
|
this.tick();
|
2020-03-22 09:18:34 +00:00
|
|
|
setTimeout(update, 1000);
|
2020-02-14 14:31:24 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
update();
|
|
|
|
},
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
beforeUnmount() {
|
2020-02-14 14:31:24 +00:00
|
|
|
this.enabled = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
tick() {
|
|
|
|
this.now = new Date();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-14 14:55:13 +00:00
|
|
|
.mbcofsoe {
|
2020-02-14 14:31:24 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
</style>
|