59 lines
1.2 KiB
Vue
59 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { SettingsBottomScreenNumberInput as NumberInput } from "#components";
|
|
import { useIntervalFn } from "@vueuse/core";
|
|
|
|
const store = useSettingsStore();
|
|
const { assets } = useAssets();
|
|
const { onRender } = useScreen();
|
|
|
|
const now = ref(new Date());
|
|
|
|
useIntervalFn(() => {
|
|
now.value = new Date();
|
|
}, 1000);
|
|
|
|
const handleCancel = () => {
|
|
store.closeSubMenu();
|
|
};
|
|
|
|
const handleConfirm = () => {
|
|
store.closeSubMenu();
|
|
};
|
|
|
|
onRender((ctx) => {
|
|
assets.images.home.topScreen.background.draw(ctx, 0, 0);
|
|
});
|
|
|
|
defineOptions({ render: () => null });
|
|
</script>
|
|
|
|
<template>
|
|
<NumberInput
|
|
:model-value="now.getMonth() + 1"
|
|
:title="$t('settings.clock.date.month')"
|
|
:x="1 * 16 - 1"
|
|
:disabled="true"
|
|
/>
|
|
<NumberInput
|
|
:model-value="now.getDate()"
|
|
:title="$t('settings.clock.date.day')"
|
|
:x="5 * 16 - 1"
|
|
:disabled="true"
|
|
/>
|
|
<NumberInput
|
|
:model-value="now.getFullYear()"
|
|
:title="$t('settings.clock.date.year')"
|
|
:digits="4"
|
|
:x="9 * 16 - 1"
|
|
:disabled="true"
|
|
/>
|
|
|
|
<CommonButtons
|
|
:y-offset="0"
|
|
:b-label="$t('common.cancel')"
|
|
:a-label="$t('common.confirm')"
|
|
@activate-b="handleCancel"
|
|
@activate-a="handleConfirm"
|
|
/>
|
|
</template>
|