2020-07-11 04:13:11 +03:00
|
|
|
<template>
|
2022-01-08 13:30:01 +02:00
|
|
|
<div class="mkw-digitalClock _monospace" :class="{ _panel: !widgetProps.transparent }" :style="{ fontSize: `${widgetProps.fontSize}em` }">
|
2022-08-05 17:51:15 +03:00
|
|
|
<div v-if="widgetProps.showLabel" class="label">{{ tzAbbrev }}</div>
|
2022-08-04 16:20:00 +03:00
|
|
|
<div class="time">
|
2020-07-11 04:13:11 +03:00
|
|
|
<span v-text="hh"></span>
|
2022-08-04 16:20:00 +03:00
|
|
|
<span class="colon" :class="{ showColon }">:</span>
|
2020-07-11 04:13:11 +03:00
|
|
|
<span v-text="mm"></span>
|
2022-08-04 16:20:00 +03:00
|
|
|
<span class="colon" :class="{ showColon }">:</span>
|
2020-07-11 04:13:11 +03:00
|
|
|
<span v-text="ss"></span>
|
2022-08-04 16:20:00 +03:00
|
|
|
<span v-if="widgetProps.showMs" class="colon" :class="{ showColon }">:</span>
|
2022-01-08 13:30:01 +02:00
|
|
|
<span v-if="widgetProps.showMs" v-text="ms"></span>
|
2022-08-04 16:20:00 +03:00
|
|
|
</div>
|
2022-08-05 17:51:15 +03:00
|
|
|
<div v-if="widgetProps.showLabel" class="label">{{ tzOffsetLabel }}</div>
|
2020-07-11 04:13:11 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-08 13:30:01 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onUnmounted, ref, watch } from 'vue';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2022-08-04 16:20:00 +03:00
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
2022-08-05 17:51:15 +03:00
|
|
|
import { timezones } from '@/scripts/timezones';
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-01-08 13:30:01 +02:00
|
|
|
const name = 'digitalClock';
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-01-08 13:30:01 +02:00
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-07-11 04:13:11 +03:00
|
|
|
},
|
2022-01-08 13:30:01 +02:00
|
|
|
fontSize: {
|
|
|
|
type: 'number' as const,
|
|
|
|
default: 1.5,
|
|
|
|
step: 0.1,
|
2020-07-11 04:13:11 +03:00
|
|
|
},
|
2022-01-08 13:30:01 +02:00
|
|
|
showMs: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2020-07-11 04:13:11 +03:00
|
|
|
},
|
2022-08-05 17:51:15 +03:00
|
|
|
showLabel: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
timezone: {
|
|
|
|
type: 'enum' as const,
|
|
|
|
default: null,
|
|
|
|
enum: [...timezones.map((tz) => ({
|
|
|
|
label: tz.name,
|
|
|
|
value: tz.name.toLowerCase(),
|
|
|
|
})), {
|
|
|
|
label: '(auto)',
|
|
|
|
value: null,
|
|
|
|
}],
|
|
|
|
},
|
2022-01-08 13:30:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; }>();
|
2022-05-25 10:43:12 +03:00
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
2022-01-08 13:30:01 +02:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
2022-08-05 17:51:15 +03:00
|
|
|
const tzAbbrev = $computed(() => (widgetProps.timezone === null
|
|
|
|
? timezones.find((tz) => tz.name.toLowerCase() === Intl.DateTimeFormat().resolvedOptions().timeZone.toLowerCase())?.abbrev
|
|
|
|
: timezones.find((tz) => tz.name.toLowerCase() === widgetProps.timezone)?.abbrev) ?? '?');
|
|
|
|
|
|
|
|
const tzOffset = $computed(() => widgetProps.timezone === null
|
|
|
|
? 0 - new Date().getTimezoneOffset()
|
|
|
|
: timezones.find((tz) => tz.name.toLowerCase() === widgetProps.timezone)?.offset ?? 0);
|
|
|
|
|
|
|
|
const tzOffsetLabel = $computed(() => (tzOffset >= 0 ? '+' : '-') + Math.floor(tzOffset / 60).toString().padStart(2, '0') + ':' + (tzOffset % 60).toString().padStart(2, '0'));
|
|
|
|
|
2022-01-08 13:30:01 +02:00
|
|
|
let intervalId;
|
|
|
|
const hh = ref('');
|
|
|
|
const mm = ref('');
|
|
|
|
const ss = ref('');
|
|
|
|
const ms = ref('');
|
2022-08-04 16:20:00 +03:00
|
|
|
const showColon = ref(false);
|
|
|
|
let prevSec: number | null = null;
|
|
|
|
|
|
|
|
watch(showColon, (v) => {
|
|
|
|
if (v) {
|
|
|
|
window.setTimeout(() => {
|
|
|
|
showColon.value = false;
|
|
|
|
}, 30);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-01-08 13:30:01 +02:00
|
|
|
const tick = () => {
|
|
|
|
const now = new Date();
|
2022-08-05 17:51:15 +03:00
|
|
|
now.setMinutes(now.getMinutes() + (new Date().getTimezoneOffset() + tzOffset));
|
2022-01-08 13:30:01 +02:00
|
|
|
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');
|
2022-08-04 16:20:00 +03:00
|
|
|
if (now.getSeconds() !== prevSec) showColon.value = true;
|
|
|
|
prevSec = now.getSeconds();
|
2022-01-08 13:30:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
tick();
|
|
|
|
|
|
|
|
watch(() => widgetProps.showMs, () => {
|
2022-01-16 03:14:14 +02:00
|
|
|
if (intervalId) window.clearInterval(intervalId);
|
|
|
|
intervalId = window.setInterval(tick, widgetProps.showMs ? 10 : 1000);
|
2022-01-08 13:30:01 +02:00
|
|
|
}, { immediate: true });
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
2022-01-16 03:14:14 +02:00
|
|
|
window.clearInterval(intervalId);
|
2022-01-08 13:30:01 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-07-11 04:13:11 +03:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mkw-digitalClock {
|
|
|
|
padding: 16px 0;
|
|
|
|
text-align: center;
|
2022-08-04 16:20:00 +03:00
|
|
|
|
2022-08-05 17:51:15 +03:00
|
|
|
> .label {
|
|
|
|
font-size: 65%;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:20:00 +03:00
|
|
|
> .time {
|
|
|
|
> .colon {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 1s ease;
|
|
|
|
|
|
|
|
&.showColon {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
</style>
|