2020-02-14 14:31:24 +00:00
|
|
|
<template>
|
2023-04-08 00:01:42 +00:00
|
|
|
<MkContainer
|
|
|
|
:naked="widgetProps.transparent"
|
|
|
|
:show-header="false"
|
|
|
|
class="mkw-clock"
|
|
|
|
>
|
|
|
|
<div class="vubelbmv" :class="widgetProps.size">
|
|
|
|
<div
|
|
|
|
v-if="
|
|
|
|
widgetProps.label === 'tz' ||
|
|
|
|
widgetProps.label === 'timeAndTz'
|
|
|
|
"
|
|
|
|
class="_monospace label a abbrev"
|
|
|
|
>
|
|
|
|
{{ tzAbbrev }}
|
|
|
|
</div>
|
|
|
|
<MkAnalogClock
|
|
|
|
class="clock"
|
|
|
|
:thickness="widgetProps.thickness"
|
|
|
|
:offset="tzOffset"
|
|
|
|
:graduations="widgetProps.graduations"
|
|
|
|
:fade-graduations="widgetProps.fadeGraduations"
|
|
|
|
:twentyfour="widgetProps.twentyFour"
|
|
|
|
:s-animation="widgetProps.sAnimation"
|
|
|
|
/>
|
|
|
|
<MkDigitalClock
|
|
|
|
v-if="
|
|
|
|
widgetProps.label === 'time' ||
|
|
|
|
widgetProps.label === 'timeAndTz'
|
|
|
|
"
|
|
|
|
class="_monospace label c time"
|
|
|
|
:show-s="false"
|
|
|
|
:offset="tzOffset"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
v-if="
|
|
|
|
widgetProps.label === 'tz' ||
|
|
|
|
widgetProps.label === 'timeAndTz'
|
|
|
|
"
|
|
|
|
class="_monospace label d offset"
|
|
|
|
>
|
|
|
|
{{ tzOffsetLabel }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkContainer>
|
2020-02-14 14:31:24 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 00:01:42 +00:00
|
|
|
import {} from "vue";
|
|
|
|
import {
|
|
|
|
useWidgetPropsManager,
|
|
|
|
Widget,
|
|
|
|
WidgetComponentEmits,
|
|
|
|
WidgetComponentExpose,
|
|
|
|
WidgetComponentProps,
|
|
|
|
} from "./widget";
|
|
|
|
import { GetFormResultType } from "@/scripts/form";
|
|
|
|
import MkContainer from "@/components/MkContainer.vue";
|
|
|
|
import MkAnalogClock from "@/components/MkAnalogClock.vue";
|
|
|
|
import MkDigitalClock from "@/components/MkDigitalClock.vue";
|
|
|
|
import { timezones } from "@/scripts/timezones";
|
|
|
|
import { i18n } from "@/i18n";
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2023-04-08 00:01:42 +00:00
|
|
|
const name = "clock";
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "boolean" as const,
|
2022-01-08 11:30:01 +00:00
|
|
|
default: false,
|
2020-02-14 14:31:24 +00:00
|
|
|
},
|
2022-08-06 05:02:03 +00:00
|
|
|
size: {
|
2023-04-08 00:01:42 +00:00
|
|
|
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-08-06 05:02:03 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
thickness: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "radio" as const,
|
2022-08-06 07:39:09 +00:00
|
|
|
default: 0.2,
|
2023-04-08 00:01:42 +00:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
value: 0.1,
|
|
|
|
label: "thin",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 0.2,
|
|
|
|
label: "medium",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 0.3,
|
|
|
|
label: "thick",
|
|
|
|
},
|
|
|
|
],
|
2022-08-05 14:51:15 +00:00
|
|
|
},
|
2022-08-06 05:02:03 +00:00
|
|
|
graduations: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "radio" as const,
|
|
|
|
default: "numbers",
|
|
|
|
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: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "boolean" as const,
|
2022-08-06 07:39:09 +00:00
|
|
|
default: true,
|
|
|
|
},
|
2022-08-30 17:19:25 +00:00
|
|
|
sAnimation: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "radio" as const,
|
|
|
|
default: "elastic",
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
value: "none",
|
|
|
|
label: "None",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "elastic",
|
|
|
|
label: "Elastic",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: "easeOut",
|
|
|
|
label: "Ease out",
|
|
|
|
},
|
|
|
|
],
|
2022-08-30 17:19:25 +00:00
|
|
|
},
|
2022-08-05 14:51:15 +00:00
|
|
|
twentyFour: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "boolean" as const,
|
2022-08-05 14:51:15 +00:00
|
|
|
default: false,
|
|
|
|
},
|
2022-08-06 09:15:13 +00:00
|
|
|
label: {
|
2023-04-08 00:01:42 +00:00
|
|
|
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: {
|
2023-04-08 00:01:42 +00:00
|
|
|
type: "enum" as const,
|
2022-08-05 14:51:15 +00:00
|
|
|
default: null,
|
2023-04-08 00:01:42 +00:00
|
|
|
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>;
|
|
|
|
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
2023-04-08 00:01:42 +00:00
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps> }>();
|
|
|
|
const emit = defineEmits<{ (ev: "updateProps", props: WidgetProps) }>();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
2023-04-08 00:01:42 +00:00
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(
|
|
|
|
name,
|
2022-01-08 11:30:01 +00:00
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
2023-04-08 00:01:42 +00:00
|
|
|
emit
|
2022-01-08 11:30:01 +00:00
|
|
|
);
|
|
|
|
|
2023-04-08 00:01:42 +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) ?? "?"
|
|
|
|
);
|
2022-08-05 14:51:15 +00:00
|
|
|
|
2023-04-08 00:01:42 +00:00
|
|
|
const tzOffset = $computed(() =>
|
|
|
|
widgetProps.timezone === null
|
|
|
|
? 0 - new Date().getTimezoneOffset()
|
|
|
|
: timezones.find((tz) => tz.name.toLowerCase() === widgetProps.timezone)
|
|
|
|
?.offset ?? 0
|
|
|
|
);
|
2022-08-05 14:51:15 +00:00
|
|
|
|
2023-04-08 00:01:42 +00:00
|
|
|
const tzOffsetLabel = $computed(
|
|
|
|
() =>
|
|
|
|
(tzOffset >= 0 ? "+" : "-") +
|
|
|
|
Math.floor(tzOffset / 60)
|
|
|
|
.toString()
|
|
|
|
.padStart(2, "0") +
|
|
|
|
":" +
|
|
|
|
(tzOffset % 60).toString().padStart(2, "0")
|
|
|
|
);
|
2022-08-05 14:51:15 +00:00
|
|
|
|
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>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-14 14:55:13 +00:00
|
|
|
.vubelbmv {
|
2022-08-05 14:51:15 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .label {
|
2022-08-06 09:15:13 +00:00
|
|
|
position: absolute;
|
2022-08-05 14:51:15 +00:00
|
|
|
opacity: 0.7;
|
|
|
|
|
2022-08-06 09:15:13 +00:00
|
|
|
&.a {
|
2022-08-05 14:51:15 +00:00
|
|
|
top: 14px;
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
2022-08-06 09:15:13 +00:00
|
|
|
&.b {
|
|
|
|
top: 14px;
|
|
|
|
right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.c {
|
|
|
|
bottom: 14px;
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.d {
|
2022-08-05 14:51:15 +00:00
|
|
|
bottom: 14px;
|
|
|
|
right: 14px;
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 14:55:13 +00:00
|
|
|
|
|
|
|
> .clock {
|
|
|
|
margin: auto;
|
2020-02-14 14:31:24 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
</style>
|