2020-02-14 08:31:24 -06:00
|
|
|
<template>
|
2022-05-28 00:28:12 -05:00
|
|
|
<MkContainer :naked="widgetProps.transparent" :show-header="false" class="mkw-clock">
|
2020-07-10 20:13:11 -05:00
|
|
|
<div class="vubelbmv">
|
2022-01-08 05:30:01 -06:00
|
|
|
<MkAnalogClock class="clock" :thickness="widgetProps.thickness"/>
|
2020-07-10 20:13:11 -05:00
|
|
|
</div>
|
2020-10-17 06:12:00 -05:00
|
|
|
</MkContainer>
|
2020-02-14 08:31:24 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2021-11-11 11:02:25 -06:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkAnalogClock from '@/components/analog-clock.vue';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
const name = 'clock';
|
|
|
|
|
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-02-14 08:31:24 -06:00
|
|
|
},
|
2022-01-08 05:30:01 -06:00
|
|
|
thickness: {
|
|
|
|
type: 'radio' as const,
|
|
|
|
default: 0.1,
|
|
|
|
options: [{
|
|
|
|
value: 0.1, label: 'thin'
|
|
|
|
}, {
|
|
|
|
value: 0.2, label: 'medium'
|
|
|
|
}, {
|
|
|
|
value: 0.3, label: 'thick'
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
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 02:43:12 -05:00
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
2022-01-08 05:30:01 -06:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-02-14 08:31:24 -06:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-14 08:55:13 -06:00
|
|
|
.vubelbmv {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
> .clock {
|
|
|
|
height: 150px;
|
|
|
|
margin: auto;
|
2020-02-14 08:31:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|