egirlskey/packages/frontend/src/components/MkAnalogClock.vue

225 lines
6.8 KiB
Vue
Raw Normal View History

<template>
2023-01-14 02:46:22 +00:00
<svg :class="$style.root" viewBox="0 0 10 10" preserveAspectRatio="none">
2022-08-06 05:02:03 +00:00
<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"
2022-08-06 07:39:09 +00:00
: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)"
2022-08-06 05:02:03 +00:00
/>
</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'"
2022-08-06 07:39:09 +00:00
: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)"
2022-08-06 05:02:03 +00:00
>
{{ i === 0 ? (props.twentyfour ? '24' : '12') : i }}
</text>
</template>
2022-08-05 14:51:15 +00:00
2022-08-26 15:40:20 +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="thickness / 2"
2021-07-19 14:48:22 +00:00
stroke-linecap="round"
/>
2022-08-26 15:40:20 +00:00
-->
<line
2023-01-14 02:46:22 +00:00
:class="[$style.s, { [$style.animate]: !disableSAnimate && sAnimation !== 'none', [$style.elastic]: sAnimation === 'elastic', [$style.easeOut]: sAnimation === 'easeOut' }]"
2022-08-26 15:40:20 +00:00
: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"
/>
<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"
2021-07-19 14:48:22 +00:00
stroke-linecap="round"
/>
<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"
2021-07-19 14:48:22 +00:00
stroke-linecap="round"
/>
</svg>
</template>
<script lang="ts" setup>
2022-08-26 15:40:20 +00:00
import { ref, computed, onMounted, onBeforeUnmount, shallowRef, nextTick } from 'vue';
refactor: use Vite to build instead of webpack (#8575) * update stream.ts * https://github.com/misskey-dev/misskey/pull/7769#issuecomment-917542339 * fix lint * clean up? * add app * fix * nanka iroiro * wip * wip * fix lint * fix loginId * fix * refactor * refactor * remove follow action * clean up * Revert "remove follow action" This reverts commit defbb416480905af2150d1c92f10d8e1d1288c0a. * Revert "clean up" This reverts commit f94919cb9cff41e274044fc69c56ad36a33974f2. * remove fetch specification * renoteの条件追加 * apiFetch => cli * bypass fetch? * fix * refactor: use path alias * temp: add submodule * remove submodule * enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * :v: * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * :v: * clean up config * typesを戻した * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * キャッシュ対策 * Truncate push notification message * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * i18n.ts * update * :v: * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * URLをsw.jsに戻す * clean up * wip * wip * wip * wip * wip * wip * :v: * use import * fix * install rollup * use defineAsyncComponent. * fix emojilist * wip use defineAsyncComponent * popup(import -> popup(defineAsyncComponent(() => import * draggable? * fix init import * clean up * fix router * add comment * :v: * :v: * :v: * remove webpack * update vite * fix boot sequence * Revert "fix boot sequence" This reverts commit e893dbf37aed83bf9f12e427d98c78a7065b4a39. * revert boot import * never make two app div * ; * remove console.log * change clientEntry sequence * fix * Revert "fix" This reverts commit 12741b3d89950a31dbb1bb81477ddb27b0e9951a. * fix * add comment https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 * add log * add comment Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2022-05-01 13:51:07 +00:00
import tinycolor from 'tinycolor2';
2022-08-06 05:02:03 +00:00
import { globalEvents } from '@/events.js';
2022-08-06 07:39:09 +00: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);
return Math.abs((x + Math.PI) % (Math.PI * 2) - Math.PI);
};
2022-08-05 14:51:15 +00:00
const graduationsPadding = 0.5;
2022-08-06 07:39:09 +00:00
const textsPadding = 0.6;
2022-08-05 14:51:15 +00:00
const handsPadding = 1;
const handsTailLength = 0.7;
const hHandLengthRatio = 0.75;
const mHandLengthRatio = 1;
const sHandLengthRatio = 1;
2022-08-06 07:39:09 +00:00
const numbersOpacityFactor = 0.35;
2022-08-05 14:51:15 +00:00
const props = withDefaults(defineProps<{
thickness?: number;
offset?: number;
twentyfour?: boolean;
2022-08-06 07:39:09 +00:00
graduations?: 'none' | 'dots' | 'numbers';
fadeGraduations?: boolean;
2022-08-30 17:19:25 +00:00
sAnimation?: 'none' | 'elastic' | 'easeOut';
}>(), {
2022-08-05 14:51:15 +00:00
numbers: false,
thickness: 0.1,
2022-08-05 14:51:15 +00:00
offset: 0 - new Date().getTimezoneOffset(),
twentyfour: false,
2022-08-06 05:02:03 +00:00
graduations: 'dots',
2022-08-06 07:39:09 +00:00
fadeGraduations: true,
2022-08-30 17:19:25 +00:00
sAnimation: 'elastic',
2022-08-05 14:51:15 +00:00
});
2022-08-06 05:02:03 +00:00
const graduationsMajor = computed(() => {
const angles: number[] = [];
const times = props.twentyfour ? 24 : 12;
for (let i = 0; i < times; i++) {
const angle = Math.PI * i / (times / 2);
angles.push(angle);
}
return angles;
});
2022-08-05 14:51:15 +00:00
const texts = computed(() => {
const angles: number[] = [];
const times = props.twentyfour ? 24 : 12;
for (let i = 0; i < times; i++) {
const angle = Math.PI * i / (times / 2);
angles.push(angle);
}
return angles;
});
2022-08-06 11:04:23 +00: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 15:40:20 +00:00
let disableSAnimate = $ref(false);
let sOneRound = false;
function tick() {
2022-08-06 11:04:23 +00:00
const now = new Date();
now.setMinutes(now.getMinutes() + (new Date().getTimezoneOffset() + props.offset));
s = now.getSeconds();
m = now.getMinutes();
h = now.getHours();
hAngle = Math.PI * (h % (props.twentyfour ? 24 : 12) + (m + s / 60) / 60) / (props.twentyfour ? 12 : 6);
mAngle = Math.PI * (m + s / 60) / 30;
2022-08-26 15:40:20 +00:00
if (sOneRound) { // 秒針が一周した際のアニメーションをよしなに処理する(これが無いと秒が59->0になったときに期待したアニメーションにならない)
sAngle = Math.PI * 60 / 30;
window.setTimeout(() => {
disableSAnimate = true;
window.setTimeout(() => {
sAngle = 0;
window.setTimeout(() => {
disableSAnimate = false;
}, 100);
}, 100);
2022-08-30 17:19:25 +00:00
}, 700);
2022-08-26 15:40:20 +00:00
} else {
sAngle = Math.PI * s / 30;
}
sOneRound = s === 59;
}
2022-08-06 11:04:23 +00:00
tick();
2022-08-06 05:02:03 +00:00
function calcColors() {
const computedStyle = getComputedStyle(document.documentElement);
const dark = tinycolor(computedStyle.getPropertyValue('--bg')).isDark();
const accent = tinycolor(computedStyle.getPropertyValue('--accent')).toHexString();
2022-08-06 11:04:23 +00:00
majorGraduationColor = dark ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.3)';
//minorGraduationColor = dark ? 'rgba(255, 255, 255, 0.2)' : 'rgba(0, 0, 0, 0.2)';
sHandColor = dark ? 'rgba(255, 255, 255, 0.5)' : 'rgba(0, 0, 0, 0.3)';
mHandColor = tinycolor(computedStyle.getPropertyValue('--fg')).toHexString();
hHandColor = accent;
nowColor = accent;
2022-08-06 05:02:03 +00:00
}
calcColors();
onMounted(() => {
const update = () => {
2022-08-06 11:04:23 +00:00
if (enabled) {
tick();
2022-01-16 01:14:14 +00:00
window.setTimeout(update, 1000);
}
};
update();
2022-08-06 05:02:03 +00:00
globalEvents.on('themeChanged', calcColors);
});
onBeforeUnmount(() => {
2022-08-06 11:04:23 +00:00
enabled = false;
2022-08-06 05:02:03 +00:00
globalEvents.off('themeChanged', calcColors);
});
</script>
2023-01-14 02:46:22 +00:00
<style lang="scss" module>
.root {
display: block;
2023-01-14 02:46:22 +00:00
}
2022-08-26 15:40:20 +00:00
2023-01-14 02:46:22 +00:00
.s {
will-change: transform;
transform-origin: 50% 50%;
2022-08-26 15:40:20 +00:00
2023-01-14 02:46:22 +00:00
&.animate.elastic {
transition: transform .2s cubic-bezier(.4,2.08,.55,.44);
}
2022-08-30 17:19:25 +00:00
2023-01-14 02:46:22 +00:00
&.animate.easeOut {
transition: transform .7s cubic-bezier(0,.7,.3,1);
2022-08-26 15:40:20 +00:00
}
}
</style>