2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-07-11 01:13:11 +00:00
|
|
|
<template>
|
2023-03-09 10:59:11 +00:00
|
|
|
<div data-cy-mkw-digitalClock class="_monospace" :class="[$style.root, { _panel: !widgetProps.transparent }]" :style="{ fontSize: `${widgetProps.fontSize}em` }">
|
2023-01-15 05:03:28 +00:00
|
|
|
<div v-if="widgetProps.showLabel" :class="$style.label">{{ tzAbbrev }}</div>
|
|
|
|
<div>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkDigitalClock :showMs="widgetProps.showMs" :offset="tzOffset"/>
|
2022-08-04 13:20:00 +00:00
|
|
|
</div>
|
2023-01-15 05:03:28 +00:00
|
|
|
<div v-if="widgetProps.showLabel" :class="$style.label">{{ tzOffsetLabel }}</div>
|
2020-07-11 01:13:11 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
2023-05-19 07:20:53 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
|
|
|
import { timezones } from '@/scripts/timezones.js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkDigitalClock from '@/components/MkDigitalClock.vue';
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'digitalClock';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-07-11 01:13:11 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
fontSize: {
|
|
|
|
type: 'number' as const,
|
|
|
|
default: 1.5,
|
|
|
|
step: 0.1,
|
2020-07-11 01:13:11 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
showMs: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2020-07-11 01:13:11 +00:00
|
|
|
},
|
2022-08-05 14:51:15 +00: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 11:30:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
2022-08-05 14:51:15 +00: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 11:30:01 +00:00
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-07-11 01:13:11 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-07-11 01:13:11 +00:00
|
|
|
padding: 16px 0;
|
|
|
|
text-align: center;
|
2023-01-15 05:03:28 +00:00
|
|
|
}
|
2022-08-04 13:20:00 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
.label {
|
|
|
|
font-size: 65%;
|
|
|
|
opacity: 0.7;
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
</style>
|