2018-02-12 07:07:28 -06:00
|
|
|
<template>
|
2018-05-29 08:43:03 -05:00
|
|
|
<svg class="mk-analog-clock" viewBox="0 0 10 10" preserveAspectRatio="none">
|
2018-05-29 14:07:23 -05:00
|
|
|
<circle v-for="angle, i in graduations"
|
|
|
|
:cx="5 + (Math.sin(angle) * (5 - graduationsPadding))"
|
|
|
|
:cy="5 - (Math.cos(angle) * (5 - graduationsPadding))"
|
|
|
|
:r="i % 5 == 0 ? 0.125 : 0.05"
|
|
|
|
:fill="i % 5 == 0 ? majorGraduationColor : minorGraduationColor"/>
|
2018-05-29 08:43:03 -05:00
|
|
|
|
|
|
|
<line
|
2018-05-29 08:56:05 -05:00
|
|
|
:x1="5 - (Math.sin(sAngle) * (sHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(sAngle) * (sHandLengthRatio * handsTailLength))"
|
2018-05-29 08:43:03 -05:00
|
|
|
:x2="5 + (Math.sin(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="sHandColor"
|
|
|
|
stroke-width="0.05"/>
|
|
|
|
<line
|
2018-05-29 08:56:05 -05:00
|
|
|
:x1="5 - (Math.sin(mAngle) * (mHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(mAngle) * (mHandLengthRatio * handsTailLength))"
|
2018-05-29 08:43:03 -05:00
|
|
|
:x2="5 + (Math.sin(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="mHandColor"
|
|
|
|
stroke-width="0.1"/>
|
|
|
|
<line
|
2018-05-29 08:56:05 -05:00
|
|
|
:x1="5 - (Math.sin(hAngle) * (hHandLengthRatio * handsTailLength))"
|
|
|
|
:y1="5 + (Math.cos(hAngle) * (hHandLengthRatio * handsTailLength))"
|
2018-05-29 08:43:03 -05:00
|
|
|
:x2="5 + (Math.sin(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:y2="5 - (Math.cos(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
|
|
|
|
:stroke="hHandColor"
|
|
|
|
stroke-width="0.1"/>
|
|
|
|
</svg>
|
2018-02-12 07:07:28 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-12-15 08:19:04 -06:00
|
|
|
import * as tinycolor from 'tinycolor2';
|
2017-02-20 05:13:42 -06:00
|
|
|
|
2018-02-12 07:07:28 -06:00
|
|
|
export default Vue.extend({
|
2018-05-29 09:13:39 -05:00
|
|
|
props: {
|
|
|
|
dark: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-07-17 12:04:07 -05:00
|
|
|
},
|
|
|
|
smooth: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2018-05-29 09:13:39 -05:00
|
|
|
}
|
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
|
2018-02-12 07:07:28 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2018-05-29 08:43:03 -05:00
|
|
|
now: new Date(),
|
2018-07-17 04:43:04 -05:00
|
|
|
enabled: true,
|
2018-05-29 08:43:03 -05:00
|
|
|
|
|
|
|
graduationsPadding: 0.5,
|
|
|
|
handsPadding: 1,
|
2018-05-29 08:56:05 -05:00
|
|
|
handsTailLength: 0.7,
|
2018-05-29 08:43:03 -05:00
|
|
|
hHandLengthRatio: 0.75,
|
|
|
|
mHandLengthRatio: 1,
|
2018-05-29 08:56:05 -05:00
|
|
|
sHandLengthRatio: 1
|
2018-02-12 07:07:28 -06:00
|
|
|
};
|
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
|
2018-05-29 08:43:03 -05:00
|
|
|
computed: {
|
2018-05-29 14:07:23 -05:00
|
|
|
majorGraduationColor(): string {
|
2018-05-29 09:13:39 -05:00
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.3)';
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
minorGraduationColor(): string {
|
2018-05-29 09:13:39 -05:00
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.2)' : 'rgba(0, 0, 0, 0.2)';
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
2018-05-29 09:13:39 -05:00
|
|
|
|
2018-05-29 08:43:03 -05:00
|
|
|
sHandColor(): string {
|
2018-05-29 09:13:39 -05:00
|
|
|
return this.dark ? 'rgba(255, 255, 255, 0.5)' : 'rgba(0, 0, 0, 0.3)';
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
mHandColor(): string {
|
2018-05-29 09:13:39 -05:00
|
|
|
return this.dark ? '#fff' : '#777';
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
hHandColor(): string {
|
2018-12-18 09:45:00 -06:00
|
|
|
return tinycolor(getComputedStyle(document.documentElement).getPropertyValue('--primary')).toHexString();
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
|
2018-07-17 04:43:04 -05:00
|
|
|
ms(): number {
|
2018-07-17 12:06:01 -05:00
|
|
|
return this.now.getMilliseconds() * this.smooth;
|
2018-07-17 04:43:04 -05:00
|
|
|
}
|
2018-05-29 08:43:03 -05:00
|
|
|
s(): number {
|
|
|
|
return this.now.getSeconds();
|
|
|
|
},
|
|
|
|
m(): number {
|
|
|
|
return this.now.getMinutes();
|
|
|
|
},
|
|
|
|
h(): number {
|
|
|
|
return this.now.getHours();
|
|
|
|
},
|
2018-05-29 09:13:39 -05:00
|
|
|
|
2018-05-29 08:43:03 -05:00
|
|
|
hAngle(): number {
|
2018-07-17 12:06:01 -05:00
|
|
|
return Math.PI * (this.h % 12 + (this.m + (this.s + this.ms / 1000) / 60) / 60) / 6;
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
mAngle(): number {
|
2018-07-17 12:06:01 -05:00
|
|
|
return Math.PI * (this.m + (this.s + this.ms / 1000) / 60) / 30;
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
sAngle(): number {
|
2018-07-17 12:06:01 -05:00
|
|
|
return Math.PI * (this.s + this.ms / 1000) / 30;
|
2018-05-29 08:43:03 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
graduations(): any {
|
|
|
|
const angles = [];
|
|
|
|
for (let i = 0; i < 60; i++) {
|
|
|
|
const angle = Math.PI * i / 30;
|
|
|
|
angles.push(angle);
|
|
|
|
}
|
|
|
|
|
|
|
|
return angles;
|
|
|
|
}
|
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
|
2018-02-12 07:07:28 -06:00
|
|
|
mounted() {
|
2018-07-17 04:43:04 -05:00
|
|
|
const update = () => {
|
|
|
|
if (this.enabled) {
|
|
|
|
this.tick();
|
|
|
|
requestAnimationFrame(update);
|
|
|
|
}
|
2018-07-17 11:22:11 -05:00
|
|
|
};
|
2018-07-17 04:43:04 -05:00
|
|
|
update();
|
2018-02-12 07:07:28 -06:00
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
|
2018-02-12 07:07:28 -06:00
|
|
|
beforeDestroy() {
|
2018-07-17 04:50:13 -05:00
|
|
|
this.enabled = false;
|
2018-02-12 07:07:28 -06:00
|
|
|
},
|
2018-05-29 14:07:23 -05:00
|
|
|
|
2018-02-12 07:07:28 -06:00
|
|
|
methods: {
|
|
|
|
tick() {
|
2018-05-29 08:43:03 -05:00
|
|
|
this.now = new Date();
|
2018-02-12 07:07:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-analog-clock
|
|
|
|
display block
|
|
|
|
</style>
|