mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
219 lines
7.0 KiB
219 lines
7.0 KiB
<script lang="ts" setup> |
|
import dayjs from 'dayjs' |
|
interface Props { |
|
selectedDate?: Date | null |
|
isDisabled?: boolean |
|
pageDate?: Date |
|
activeDates?: Array<Date> |
|
isMondayFirst?: boolean |
|
weekPicker?: boolean |
|
disablePagination?: boolean |
|
selectedWeek?: { |
|
start: Date |
|
end: Date |
|
} | null |
|
} |
|
|
|
const props = withDefaults(defineProps<Props>(), { |
|
selectedDate: null, |
|
isDisabled: false, |
|
isMondayFirst: true, |
|
pageDate: new Date(), |
|
weekPicker: false, |
|
disablePagination: false, |
|
activeDates: [], |
|
selectedWeek: null, |
|
}) |
|
const emit = defineEmits(['change', 'update:selectedDate', 'update:pageDate', 'update:selectedWeek']) |
|
// Page date is the date we use to manage which month/date that is currently being displayed |
|
const pageDate = useVModel(props, 'pageDate', emit) |
|
const selectedDate = useVModel(props, 'selectedDate', emit) |
|
const activeDates = useVModel(props, 'activeDates', emit) |
|
const selectedWeek = useVModel(props, 'selectedWeek', emit) |
|
|
|
const days = computed(() => { |
|
if (props.isMondayFirst) { |
|
return ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] |
|
} else { |
|
return ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] |
|
} |
|
}) |
|
|
|
// Used to display the current month and year |
|
const currentMonth = computed(() => { |
|
return `${pageDate.value.toLocaleString('default', { month: 'long' })} ${pageDate.value.getFullYear()}` |
|
}) |
|
|
|
const selectWeek = (date: dayjs.Dayjs) => { |
|
if (!date) return |
|
const dayOffset = props.isMondayFirst ? 1 : 0 |
|
const dayOfWeek = (date.get('day') - dayOffset + 7) % 7 |
|
const startDate = date.subtract(dayOfWeek, 'day') |
|
selectedWeek.value = { |
|
start: startDate.toDate(), |
|
end: startDate.endOf('week').toDate(), |
|
} |
|
} |
|
|
|
// Generates all dates should be displayed in the calendar |
|
// Includes all blank days at the start and end of the month |
|
const dates = computed(() => { |
|
const startOfMonth = dayjs(pageDate.value).startOf('month') |
|
const dayOffset = props.isMondayFirst ? 1 : 0 |
|
const firstDayOfWeek = startOfMonth.day() |
|
const startDay = startOfMonth.subtract((firstDayOfWeek - dayOffset + 7) % 7, 'day') |
|
|
|
const datesArray = [] |
|
for (let i = 0; i < 42; i++) { |
|
datesArray.push(startDay.add(i, 'day')) |
|
} |
|
|
|
return datesArray |
|
}) |
|
|
|
// Check if the date is in the selected week |
|
const isDateInSelectedWeek = (date: dayjs.Dayjs) => { |
|
if (!selectedWeek.value) return false |
|
return date.isBetween(selectedWeek.value.start, selectedWeek.value.end, 'day', '[]') |
|
} |
|
|
|
// Used to check if two dates are the same |
|
const isSameDate = (date1: dayjs.Dayjs, date2: dayjs.Dayjs) => { |
|
if (!date1 || !date2) return false |
|
return date1.isSame(date2, 'day') |
|
} |
|
|
|
// Used in DatePicker for checking if the date is currently selected |
|
const isSelectedDate = (dObj: dayjs.Dayjs) => { |
|
if (!selectedDate.value) return false |
|
const propDate = dayjs(selectedDate.value) |
|
return props.selectedDate ? isSameDate(propDate, dObj) : false |
|
} |
|
|
|
const isDayInPagedMonth = (date: dayjs.Dayjs) => { |
|
return date.month() === pageDate.value.getMonth() |
|
} |
|
|
|
// Since we are using the same component for week picker and date picker we need to handle the date selection differently |
|
const handleSelectDate = (date: dayjs.Dayjs) => { |
|
if (props.weekPicker) { |
|
selectWeek(date) |
|
} else { |
|
if (!isDayInPagedMonth(date)) { |
|
pageDate.value = date.toDate() |
|
emit('update:pageDate', date.toDate()) |
|
} |
|
selectedDate.value = date.toDate() |
|
emit('update:selectedDate', date.toDate()) |
|
} |
|
} |
|
|
|
// Used to check if a date is in the current month |
|
const isDateInCurrentMonth = (date: dayjs.Dayjs) => { |
|
return date.month() === pageDate.value.getMonth() |
|
} |
|
|
|
// Used to Check if an event is in the date |
|
const isActiveDate = (date: dayjs.Dayjs) => { |
|
return activeDates.value.some((d) => isSameDate(dayjs(d), date)) |
|
} |
|
|
|
// Paginate the calendar |
|
const paginate = (action: 'next' | 'prev') => { |
|
let newDate = dayjs(pageDate.value) |
|
if (action === 'next') { |
|
newDate = newDate.add(1, 'month').clone() |
|
} else { |
|
newDate = newDate.subtract(1, 'month').clone() |
|
} |
|
pageDate.value = newDate.toDate() |
|
emit('update:pageDate', newDate.toDate()) |
|
} |
|
</script> |
|
|
|
<template> |
|
<div class="p-4 flex flex-col gap-4"> |
|
<div |
|
:class="{ |
|
'justify-center': disablePagination, |
|
'justify-between': !disablePagination, |
|
}" |
|
class="flex items-center" |
|
> |
|
<NcTooltip> |
|
<NcButton v-if="!disablePagination" size="small" type="secondary" @click="paginate('prev')"> |
|
<component :is="iconMap.doubleLeftArrow" class="h-4 w-4" /> |
|
</NcButton> |
|
<template #title> |
|
<span>{{ $t('labels.previousMonth') }}</span> |
|
</template> |
|
</NcTooltip> |
|
|
|
<span class="font-bold text-gray-700">{{ currentMonth }}</span> |
|
<NcTooltip> |
|
<NcButton v-if="!disablePagination" size="small" type="secondary" @click="paginate('next')"> |
|
<component :is="iconMap.doubleRightArrow" class="h-4 w-4" /> |
|
</NcButton> |
|
<template #title> |
|
<span>{{ $t('labels.nextMonth') }}</span> |
|
</template> |
|
</NcTooltip> |
|
</div> |
|
<div class="border-1 border-gray-200 rounded-y-xl max-w-[320px]"> |
|
<div class="flex flex-row bg-gray-100 gap-2 rounded-t-xl justify-between p-2"> |
|
<span v-for="day in days" :key="day" class="h-9 flex items-center justify-center w-9 text-gray-500">{{ day }}</span> |
|
</div> |
|
<div class="grid grid-cols-7 gap-2 p-2"> |
|
<span |
|
v-for="date in dates" |
|
:key="date" |
|
:class="{ |
|
'rounded-lg': !weekPicker, |
|
'bg-brand-50 border-2 !border-brand-500': isSelectedDate(date) && !weekPicker && isDayInPagedMonth(date), |
|
'hover:(border-1 border-gray-200 bg-gray-100)': !isSelectedDate(date) && !weekPicker, |
|
'nc-selected-week z-1': isDateInSelectedWeek(date) && weekPicker, |
|
'text-gray-400': !isDateInCurrentMonth(date), |
|
'nc-selected-week-start': isSameDate(date, dayjs(selectedWeek?.start)), |
|
'nc-selected-week-end': isSameDate(date, dayjs(selectedWeek?.end)), |
|
'rounded-md bg-brand-50 text-brand-500': isSameDate(date, dayjs()) && isDateInCurrentMonth(date), |
|
}" |
|
class="h-9 w-9 px-1 py-2 relative font-medium flex items-center cursor-pointer justify-center" |
|
@click="handleSelectDate(date)" |
|
> |
|
<span |
|
v-if="isActiveDate(date)" |
|
:class="{ |
|
'border-2 border-white !h-2 !w-2': dayjs(date).isSame(dayjs(), 'date'), |
|
}" |
|
class="absolute z-2 h-1.5 w-1.5 rounded-full bg-brand-500 top-1 right-1" |
|
></span> |
|
<span class="z-2"> |
|
{{ date.get('date') }} |
|
</span> |
|
</span> |
|
</div> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<style lang="scss" scoped> |
|
.nc-selected-week { |
|
@apply relative; |
|
} |
|
|
|
.nc-selected-week:before { |
|
@apply absolute top-0 left-0 w-full h-full border-y-2 bg-brand-50 border-brand-500; |
|
content: ''; |
|
width: 124%; |
|
height: 100%; |
|
} |
|
|
|
.nc-selected-week-start:before { |
|
@apply !border-l-2 !rounded-l-lg; |
|
} |
|
|
|
.nc-selected-week-end:before { |
|
width: 100%; |
|
@apply !border-r-2 !rounded-r-lg; |
|
} |
|
</style>
|
|
|