2020-02-14 15:31:24 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<svg class="mbcofsoe" viewBox="0 0 10 10" preserveAspectRatio="none">
|
|
|
|
<template v-if="props.graduations === 'dots'">
|
|
|
|
<circle
|
|
|
|
v-for="(angle, i) in graduationsMajor"
|
|
|
|
:cx="5 + Math.sin(angle) * (5 - graduationsPadding)"
|
|
|
|
:cy="5 - Math.cos(angle) * (5 - graduationsPadding)"
|
|
|
|
:r="0.125"
|
|
|
|
:fill="
|
|
|
|
(props.twentyfour ? h : h % 12) === i
|
|
|
|
? nowColor
|
|
|
|
: majorGraduationColor
|
|
|
|
"
|
|
|
|
:opacity="
|
|
|
|
!props.fadeGraduations ||
|
|
|
|
(props.twentyfour ? h : h % 12) === i
|
|
|
|
? 1
|
|
|
|
: Math.max(
|
|
|
|
0,
|
|
|
|
1 -
|
|
|
|
angleDiff(hAngle, angle) / Math.PI -
|
|
|
|
numbersOpacityFactor
|
|
|
|
)
|
|
|
|
"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="props.graduations === 'numbers'">
|
|
|
|
<text
|
|
|
|
v-for="(angle, i) in texts"
|
|
|
|
:x="5 + Math.sin(angle) * (5 - textsPadding)"
|
|
|
|
:y="5 - Math.cos(angle) * (5 - textsPadding)"
|
|
|
|
text-anchor="middle"
|
|
|
|
dominant-baseline="middle"
|
|
|
|
:font-size="(props.twentyfour ? h : h % 12) === i ? 1 : 0.7"
|
|
|
|
:font-weight="
|
|
|
|
(props.twentyfour ? h : h % 12) === i ? 'bold' : 'normal'
|
|
|
|
"
|
|
|
|
:fill="
|
|
|
|
(props.twentyfour ? h : h % 12) === i
|
|
|
|
? nowColor
|
|
|
|
: 'currentColor'
|
|
|
|
"
|
|
|
|
:opacity="
|
|
|
|
!props.fadeGraduations ||
|
|
|
|
(props.twentyfour ? h : h % 12) === i
|
|
|
|
? 1
|
|
|
|
: Math.max(
|
|
|
|
0,
|
|
|
|
1 -
|
|
|
|
angleDiff(hAngle, angle) / Math.PI -
|
|
|
|
numbersOpacityFactor
|
|
|
|
)
|
|
|
|
"
|
|
|
|
>
|
|
|
|
{{ i === 0 ? (props.twentyfour ? "24" : "12") : i }}
|
|
|
|
</text>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!--
|
2020-02-14 15:31:24 +01: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"
|
2021-07-19 16:31:27 +02:00
|
|
|
:stroke-width="thickness / 2"
|
2021-07-19 16:48:22 +02:00
|
|
|
stroke-linecap="round"
|
2021-07-19 16:31:27 +02:00
|
|
|
/>
|
2022-08-26 17:40:20 +02:00
|
|
|
-->
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<line
|
|
|
|
class="s"
|
|
|
|
:class="{
|
|
|
|
animate: !disableSAnimate && sAnimation !== 'none',
|
|
|
|
elastic: sAnimation === 'elastic',
|
|
|
|
easeOut: sAnimation === 'easeOut',
|
|
|
|
}"
|
|
|
|
:x1="5 - 0 * (sHandLengthRatio * handsTailLength)"
|
|
|
|
:y1="5 + 1 * (sHandLengthRatio * handsTailLength)"
|
|
|
|
:x2="5 + 0 * (sHandLengthRatio * 5 - handsPadding)"
|
|
|
|
:y2="5 - 1 * (sHandLengthRatio * 5 - handsPadding)"
|
|
|
|
:stroke="sHandColor"
|
|
|
|
:stroke-width="thickness / 2"
|
|
|
|
:style="`transform: rotateZ(${sAngle}rad)`"
|
|
|
|
stroke-linecap="round"
|
|
|
|
/>
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<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="thickness"
|
|
|
|
stroke-linecap="round"
|
|
|
|
/>
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<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="thickness"
|
|
|
|
stroke-linecap="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
2020-02-14 15:31:24 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {
|
|
|
|
ref,
|
|
|
|
computed,
|
|
|
|
onMounted,
|
|
|
|
onBeforeUnmount,
|
|
|
|
shallowRef,
|
|
|
|
nextTick,
|
|
|
|
} from "vue";
|
|
|
|
import tinycolor from "tinycolor2";
|
|
|
|
import { globalEvents } from "@/events.js";
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2022-08-06 09:39:09 +02:00
|
|
|
// https://stackoverflow.com/questions/1878907/how-can-i-find-the-difference-between-two-angles
|
|
|
|
const angleDiff = (a: number, b: number) => {
|
|
|
|
const x = Math.abs(a - b);
|
2023-04-08 02:01:42 +02:00
|
|
|
return Math.abs(((x + Math.PI) % (Math.PI * 2)) - Math.PI);
|
2022-08-06 09:39:09 +02:00
|
|
|
};
|
|
|
|
|
2022-08-05 16:51:15 +02:00
|
|
|
const graduationsPadding = 0.5;
|
2022-08-06 09:39:09 +02:00
|
|
|
const textsPadding = 0.6;
|
2022-08-05 16:51:15 +02:00
|
|
|
const handsPadding = 1;
|
|
|
|
const handsTailLength = 0.7;
|
|
|
|
const hHandLengthRatio = 0.75;
|
|
|
|
const mHandLengthRatio = 1;
|
|
|
|
const sHandLengthRatio = 1;
|
2022-08-06 09:39:09 +02:00
|
|
|
const numbersOpacityFactor = 0.35;
|
2022-08-05 16:51:15 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
thickness?: number;
|
|
|
|
offset?: number;
|
|
|
|
twentyfour?: boolean;
|
|
|
|
graduations?: "none" | "dots" | "numbers";
|
|
|
|
fadeGraduations?: boolean;
|
|
|
|
sAnimation?: "none" | "elastic" | "easeOut";
|
|
|
|
}>(),
|
|
|
|
{
|
|
|
|
numbers: false,
|
|
|
|
thickness: 0.1,
|
|
|
|
offset: 0 - new Date().getTimezoneOffset(),
|
|
|
|
twentyfour: false,
|
|
|
|
graduations: "dots",
|
|
|
|
fadeGraduations: true,
|
|
|
|
sAnimation: "elastic",
|
|
|
|
}
|
|
|
|
);
|
2022-08-05 16:51:15 +02:00
|
|
|
|
2022-08-06 07:02:03 +02:00
|
|
|
const graduationsMajor = computed(() => {
|
|
|
|
const angles: number[] = [];
|
|
|
|
const times = props.twentyfour ? 24 : 12;
|
|
|
|
for (let i = 0; i < times; i++) {
|
2023-04-08 02:01:42 +02:00
|
|
|
const angle = (Math.PI * i) / (times / 2);
|
2022-08-06 07:02:03 +02:00
|
|
|
angles.push(angle);
|
|
|
|
}
|
|
|
|
return angles;
|
|
|
|
});
|
2022-08-05 16:51:15 +02:00
|
|
|
const texts = computed(() => {
|
|
|
|
const angles: number[] = [];
|
|
|
|
const times = props.twentyfour ? 24 : 12;
|
|
|
|
for (let i = 0; i < times; i++) {
|
2023-04-08 02:01:42 +02:00
|
|
|
const angle = (Math.PI * i) / (times / 2);
|
2022-08-05 16:51:15 +02:00
|
|
|
angles.push(angle);
|
|
|
|
}
|
|
|
|
return angles;
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2022-08-06 13:04:23 +02:00
|
|
|
let enabled = true;
|
|
|
|
let majorGraduationColor = $ref<string>();
|
|
|
|
//let minorGraduationColor = $ref<string>();
|
|
|
|
let sHandColor = $ref<string>();
|
|
|
|
let mHandColor = $ref<string>();
|
|
|
|
let hHandColor = $ref<string>();
|
|
|
|
let nowColor = $ref<string>();
|
|
|
|
let h = $ref<number>(0);
|
|
|
|
let m = $ref<number>(0);
|
|
|
|
let s = $ref<number>(0);
|
|
|
|
let hAngle = $ref<number>(0);
|
|
|
|
let mAngle = $ref<number>(0);
|
|
|
|
let sAngle = $ref<number>(0);
|
2022-08-26 17:40:20 +02:00
|
|
|
let disableSAnimate = $ref(false);
|
|
|
|
let sOneRound = false;
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
function tick() {
|
2022-08-06 13:04:23 +02:00
|
|
|
const now = new Date();
|
2023-04-08 02:01:42 +02:00
|
|
|
now.setMinutes(
|
|
|
|
now.getMinutes() + (new Date().getTimezoneOffset() + props.offset)
|
|
|
|
);
|
2022-08-06 13:04:23 +02:00
|
|
|
s = now.getSeconds();
|
|
|
|
m = now.getMinutes();
|
|
|
|
h = now.getHours();
|
2023-04-08 02:01:42 +02:00
|
|
|
hAngle =
|
|
|
|
(Math.PI * ((h % (props.twentyfour ? 24 : 12)) + (m + s / 60) / 60)) /
|
|
|
|
(props.twentyfour ? 12 : 6);
|
|
|
|
mAngle = (Math.PI * (m + s / 60)) / 30;
|
|
|
|
if (sOneRound) {
|
|
|
|
// 秒針が一周した際のアニメーションをよしなに処理する(これが無いと秒が59->0になったときに期待したアニメーションにならない)
|
|
|
|
sAngle = (Math.PI * 60) / 30;
|
2022-08-26 17:40:20 +02:00
|
|
|
window.setTimeout(() => {
|
|
|
|
disableSAnimate = true;
|
|
|
|
window.setTimeout(() => {
|
|
|
|
sAngle = 0;
|
|
|
|
window.setTimeout(() => {
|
|
|
|
disableSAnimate = false;
|
|
|
|
}, 100);
|
|
|
|
}, 100);
|
2022-08-30 19:19:25 +02:00
|
|
|
}, 700);
|
2022-08-26 17:40:20 +02:00
|
|
|
} else {
|
2023-04-08 02:01:42 +02:00
|
|
|
sAngle = (Math.PI * s) / 30;
|
2022-08-26 17:40:20 +02:00
|
|
|
}
|
|
|
|
sOneRound = s === 59;
|
2022-01-10 16:05:18 +01:00
|
|
|
}
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2022-08-06 13:04:23 +02:00
|
|
|
tick();
|
|
|
|
|
2022-08-06 07:02:03 +02:00
|
|
|
function calcColors() {
|
|
|
|
const computedStyle = getComputedStyle(document.documentElement);
|
2023-04-08 02:01:42 +02:00
|
|
|
const dark = tinycolor(computedStyle.getPropertyValue("--bg")).isDark();
|
|
|
|
const accent = tinycolor(
|
|
|
|
computedStyle.getPropertyValue("--accent")
|
|
|
|
).toHexString();
|
|
|
|
majorGraduationColor = dark
|
|
|
|
? "rgba(255, 255, 255, 0.3)"
|
|
|
|
: "rgba(0, 0, 0, 0.3)";
|
2022-08-06 13:04:23 +02:00
|
|
|
//minorGraduationColor = dark ? 'rgba(255, 255, 255, 0.2)' : 'rgba(0, 0, 0, 0.2)';
|
2023-04-08 02:01:42 +02:00
|
|
|
sHandColor = dark ? "rgba(255, 255, 255, 0.5)" : "rgba(0, 0, 0, 0.3)";
|
|
|
|
mHandColor = tinycolor(
|
|
|
|
computedStyle.getPropertyValue("--fg")
|
|
|
|
).toHexString();
|
2022-08-06 13:04:23 +02:00
|
|
|
hHandColor = accent;
|
|
|
|
nowColor = accent;
|
2022-08-06 07:02:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
calcColors();
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
onMounted(() => {
|
|
|
|
const update = () => {
|
2022-08-06 13:04:23 +02:00
|
|
|
if (enabled) {
|
2022-01-10 16:05:18 +01:00
|
|
|
tick();
|
2022-01-16 02:14:14 +01:00
|
|
|
window.setTimeout(update, 1000);
|
2020-02-14 15:31:24 +01:00
|
|
|
}
|
2022-01-10 16:05:18 +01:00
|
|
|
};
|
|
|
|
update();
|
2022-08-06 07:02:03 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
globalEvents.on("themeChanged", calcColors);
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
2020-02-14 15:31:24 +01:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
onBeforeUnmount(() => {
|
2022-08-06 13:04:23 +02:00
|
|
|
enabled = false;
|
2022-08-06 07:02:03 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
globalEvents.off("themeChanged", calcColors);
|
2020-02-14 15:31:24 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-14 15:55:13 +01:00
|
|
|
.mbcofsoe {
|
2020-02-14 15:31:24 +01:00
|
|
|
display: block;
|
2022-08-26 17:40:20 +02:00
|
|
|
|
|
|
|
> .s {
|
|
|
|
will-change: transform;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
|
2022-08-30 19:19:25 +02:00
|
|
|
&.animate.elastic {
|
2023-04-08 02:01:42 +02:00
|
|
|
transition: transform 0.2s cubic-bezier(0.4, 2.08, 0.55, 0.44);
|
2022-08-26 17:40:20 +02:00
|
|
|
}
|
2022-08-30 19:19:25 +02:00
|
|
|
|
|
|
|
&.animate.easeOut {
|
2023-04-08 02:01:42 +02:00
|
|
|
transition: transform 0.7s cubic-bezier(0, 0.7, 0.3, 1);
|
2022-08-30 19:19:25 +02:00
|
|
|
}
|
2022-08-26 17:40:20 +02:00
|
|
|
}
|
2020-02-14 15:31:24 +01:00
|
|
|
}
|
|
|
|
</style>
|