2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-02-14 14:31:24 +00:00
|
|
|
<template>
|
2023-05-24 08:50:15 +00:00
|
|
|
<MkContainer :naked="widgetProps.transparent" :showHeader="false" data-cy-mkw-clock>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div
|
|
|
|
:class="[$style.root, {
|
|
|
|
[$style.small]: widgetProps.size === 'small',
|
|
|
|
[$style.medium]: widgetProps.size === 'medium',
|
|
|
|
[$style.large]: widgetProps.size === 'large',
|
|
|
|
}]"
|
|
|
|
>
|
2023-05-24 08:50:15 +00:00
|
|
|
<div v-if="widgetProps.label === 'tz' || widgetProps.label === 'timeAndTz'" class="_monospace" :class="[$style.label, $style.a]">{{ tzAbbrev }}</div>
|
2022-08-06 05:02:03 +00:00
|
|
|
<MkAnalogClock
|
2023-05-24 08:50:15 +00:00
|
|
|
:class="$style.clock"
|
2022-08-06 05:02:03 +00:00
|
|
|
:thickness="widgetProps.thickness"
|
|
|
|
:offset="tzOffset"
|
|
|
|
:graduations="widgetProps.graduations"
|
2023-05-19 07:20:53 +00:00
|
|
|
:fadeGraduations="widgetProps.fadeGraduations"
|
2022-08-06 05:02:03 +00:00
|
|
|
:twentyfour="widgetProps.twentyFour"
|
2023-05-19 07:20:53 +00:00
|
|
|
:sAnimation="widgetProps.sAnimation"
|
2022-08-06 05:02:03 +00:00
|
|
|
/>
|
2023-05-24 08:50:15 +00:00
|
|
|
<MkDigitalClock v-if="widgetProps.label === 'time' || widgetProps.label === 'timeAndTz'" :class="[$style.label, $style.c]" class="_monospace" :showS="false" :offset="tzOffset"/>
|
|
|
|
<div v-if="widgetProps.label === 'tz' || widgetProps.label === 'timeAndTz'" class="_monospace" :class="[$style.label, $style.d]">{{ tzOffsetLabel }}</div>
|
2020-07-11 01:13:11 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkContainer>
|
2020-02-14 14:31:24 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-29 02:22:59 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkAnalogClock from '@/components/MkAnalogClock.vue';
|
|
|
|
import MkDigitalClock from '@/components/MkDigitalClock.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { timezones } from '@/scripts/timezones.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'clock';
|
|
|
|
|
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
2022-08-06 05:02:03 +00:00
|
|
|
size: {
|
|
|
|
type: 'radio' as const,
|
|
|
|
default: 'medium',
|
|
|
|
options: [{
|
|
|
|
value: 'small', label: i18n.ts.small,
|
|
|
|
}, {
|
|
|
|
value: 'medium', label: i18n.ts.medium,
|
|
|
|
}, {
|
|
|
|
value: 'large', label: i18n.ts.large,
|
|
|
|
}],
|
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
thickness: {
|
|
|
|
type: 'radio' as const,
|
2022-08-06 07:39:09 +00:00
|
|
|
default: 0.2,
|
2022-01-08 11:30:01 +00:00
|
|
|
options: [{
|
2022-08-05 14:51:15 +00:00
|
|
|
value: 0.1, label: 'thin',
|
2022-01-08 11:30:01 +00:00
|
|
|
}, {
|
2022-08-05 14:51:15 +00:00
|
|
|
value: 0.2, label: 'medium',
|
2022-01-08 11:30:01 +00:00
|
|
|
}, {
|
2022-08-05 14:51:15 +00:00
|
|
|
value: 0.3, label: 'thick',
|
|
|
|
}],
|
|
|
|
},
|
2022-08-06 05:02:03 +00:00
|
|
|
graduations: {
|
|
|
|
type: 'radio' as const,
|
2022-08-06 07:39:09 +00:00
|
|
|
default: 'numbers',
|
2022-08-06 05:02:03 +00:00
|
|
|
options: [{
|
|
|
|
value: 'none', label: 'None',
|
|
|
|
}, {
|
|
|
|
value: 'dots', label: 'Dots',
|
|
|
|
}, {
|
|
|
|
value: 'numbers', label: 'Numbers',
|
|
|
|
}],
|
2022-08-05 14:51:15 +00:00
|
|
|
},
|
2022-08-06 07:39:09 +00:00
|
|
|
fadeGraduations: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
|
|
|
},
|
2022-08-30 17:19:25 +00:00
|
|
|
sAnimation: {
|
|
|
|
type: 'radio' as const,
|
|
|
|
default: 'elastic',
|
|
|
|
options: [{
|
|
|
|
value: 'none', label: 'None',
|
|
|
|
}, {
|
|
|
|
value: 'elastic', label: 'Elastic',
|
|
|
|
}, {
|
|
|
|
value: 'easeOut', label: 'Ease out',
|
|
|
|
}],
|
|
|
|
},
|
2022-08-05 14:51:15 +00:00
|
|
|
twentyFour: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
|
|
|
},
|
2022-08-06 09:15:13 +00:00
|
|
|
label: {
|
|
|
|
type: 'radio' as const,
|
|
|
|
default: 'none',
|
|
|
|
options: [{
|
|
|
|
value: 'none', label: 'None',
|
|
|
|
}, {
|
|
|
|
value: 'time', label: 'Time',
|
|
|
|
}, {
|
|
|
|
value: 'tz', label: 'TZ',
|
|
|
|
}, {
|
|
|
|
value: 'timeAndTz', label: 'Time + TZ',
|
|
|
|
}],
|
2022-08-05 14:51:15 +00:00
|
|
|
},
|
|
|
|
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-02-14 14:31:24 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-24 08:50:15 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2022-08-05 14:51:15 +00:00
|
|
|
position: relative;
|
|
|
|
|
2022-08-06 05:02:03 +00:00
|
|
|
&.small {
|
2022-08-06 09:15:13 +00:00
|
|
|
padding: 12px;
|
2022-08-06 05:02:03 +00:00
|
|
|
|
|
|
|
> .clock {
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.medium {
|
2022-08-06 09:15:13 +00:00
|
|
|
padding: 14px;
|
2022-08-06 05:02:03 +00:00
|
|
|
|
|
|
|
> .clock {
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.large {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .clock {
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 14:31:24 +00:00
|
|
|
}
|
2023-05-24 08:50:15 +00:00
|
|
|
|
|
|
|
.label {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&.a {
|
|
|
|
top: 14px;
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.b {
|
|
|
|
top: 14px;
|
|
|
|
right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.c {
|
|
|
|
bottom: 14px;
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.d {
|
|
|
|
bottom: 14px;
|
|
|
|
right: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.clock {
|
|
|
|
margin: auto;
|
|
|
|
}
|
2020-02-14 14:31:24 +00:00
|
|
|
</style>
|