mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
115 lines
4.0 KiB
Vue
115 lines
4.0 KiB
Vue
<template>
|
|
<f7-sheet swipe-to-close swipe-handler=".swipe-handler" class="month-range-selection-sheet" style="height:auto"
|
|
:opened="show" @sheet:open="onSheetOpen" @sheet:closed="onSheetClosed">
|
|
<div class="swipe-handler"></div>
|
|
<f7-page-content>
|
|
<div class="display-flex padding justify-content-space-between align-items-center">
|
|
<div class="ebk-sheet-title" v-if="title"><b>{{ title }}</b></div>
|
|
</div>
|
|
<div class="padding-horizontal padding-bottom">
|
|
<p class="no-margin-top" v-if="hint">{{ hint }}</p>
|
|
<p class="no-margin-top margin-bottom" v-if="beginDateTime && endDateTime">
|
|
<span>{{ beginDateTime }}</span>
|
|
<span> - </span>
|
|
<span>{{ endDateTime }}</span>
|
|
</p>
|
|
<slot></slot>
|
|
<month-picker month-picker-class="justify-content-center margin-bottom"
|
|
:is-dark-mode="isDarkMode" v-model="dateRange"></month-picker>
|
|
<f7-button large fill
|
|
:class="{ 'disabled': !dateRange[0] || !dateRange[1] }"
|
|
:text="tt('Continue')"
|
|
@click="confirm">
|
|
</f7-button>
|
|
<div class="margin-top text-align-center">
|
|
<f7-link @click="cancel" :text="tt('Cancel')"></f7-link>
|
|
</div>
|
|
</div>
|
|
</f7-page-content>
|
|
</f7-sheet>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { useI18n } from '@/locales/helpers.ts';
|
|
import { useI18nUIComponents } from '@/lib/ui/mobile.ts';
|
|
import { type CommonMonthRangeSelectionProps, useMonthRangeSelectionBase } from '@/components/base/MonthRangeSelectionBase.ts';
|
|
|
|
import { useEnvironmentsStore } from '@/stores/environment.ts';
|
|
|
|
import { type TextualYearMonth } from '@/core/datetime.ts';
|
|
|
|
import { getYear0BasedMonthObjectFromString } from '@/lib/datetime.ts';
|
|
|
|
const props = defineProps<CommonMonthRangeSelectionProps>();
|
|
const emit = defineEmits<{
|
|
(e: 'update:show', value: boolean): void;
|
|
(e: 'dateRange:change', minYearMonth: TextualYearMonth | '', maxYearMonth: TextualYearMonth | ''): void;
|
|
}>();
|
|
|
|
const { tt } = useI18n();
|
|
const { showToast } = useI18nUIComponents();
|
|
const { dateRange, beginDateTime, endDateTime, getFinalMonthRange } = useMonthRangeSelectionBase(props);
|
|
|
|
const environmentsStore = useEnvironmentsStore();
|
|
|
|
const isDarkMode = computed<boolean>(() => environmentsStore.framework7DarkMode || false);
|
|
|
|
function confirm(): void {
|
|
try {
|
|
const finalMonthRange = getFinalMonthRange();
|
|
|
|
if (!finalMonthRange) {
|
|
return;
|
|
}
|
|
|
|
emit('dateRange:change', finalMonthRange.minYearMonth, finalMonthRange.maxYearMonth);
|
|
} catch (ex: unknown) {
|
|
if (ex instanceof Error) {
|
|
showToast(ex.message);
|
|
}
|
|
}
|
|
}
|
|
|
|
function cancel(): void {
|
|
emit('update:show', false);
|
|
}
|
|
|
|
function onSheetOpen(): void {
|
|
if (props.minTime) {
|
|
const yearMonth = getYear0BasedMonthObjectFromString(props.minTime);
|
|
|
|
if (yearMonth) {
|
|
dateRange.value[0] = yearMonth;
|
|
}
|
|
}
|
|
|
|
if (props.maxTime) {
|
|
const yearMonth = getYear0BasedMonthObjectFromString(props.maxTime);
|
|
|
|
if (yearMonth) {
|
|
dateRange.value[1] = yearMonth;
|
|
}
|
|
}
|
|
}
|
|
|
|
function onSheetClosed(): void {
|
|
emit('update:show', false);
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.month-range-selection-sheet .dp__main .dp__instance_calendar .dp__overlay.dp--overlay-relative {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.month-range-selection-sheet .dp__main .dp__instance_calendar .dp__overlay.dp--overlay-relative .dp__selection_grid_header .dp--year-mode-picker .dp--arrow-btn-nav {
|
|
display: flex;
|
|
}
|
|
|
|
.month-range-selection-sheet .dp__main .dp__instance_calendar .dp__overlay.dp--overlay-relative .dp__selection_grid_header .dp--year-mode-picker .dp--year-select+.dp--arrow-btn-nav {
|
|
justify-content: end;
|
|
}
|
|
</style>
|