74 lines
1.8 KiB
Vue
74 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
import { addDays, format } from 'date-fns'
|
|
import { Calendar as CalendarIcon } from 'lucide-vue-next'
|
|
|
|
import { ref } from 'vue'
|
|
import { cn } from '@/lib/utils'
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import { Calendar } from '@/lib/registry/default/ui/v-calendar'
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from '@/lib/registry/default/ui/popover'
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from '@/lib/registry/default/ui/select'
|
|
|
|
const date = ref<Date>()
|
|
</script>
|
|
|
|
<template>
|
|
<Popover>
|
|
<PopoverTrigger as-child>
|
|
<Button
|
|
variant="outline"
|
|
:class="cn(
|
|
'w-[280px] justify-start text-left font-normal',
|
|
!date && 'text-muted-foreground',
|
|
)"
|
|
>
|
|
<CalendarIcon class="mr-2 h-4 w-4" />
|
|
<template v-if="date">
|
|
{{ format(date, "PPP") }}
|
|
</template>
|
|
<template v-else>
|
|
<span>Pick a date</span>
|
|
</template>
|
|
</Button>
|
|
</PopoverTrigger>
|
|
<PopoverContent class="flex w-auto flex-col space-y-2 p-2">
|
|
<Select
|
|
@update:model-value="(value) => {
|
|
date = addDays(new Date(), parseInt(value))
|
|
}"
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select" />
|
|
</SelectTrigger>
|
|
<SelectContent position="popper">
|
|
<SelectItem value="0">
|
|
Today
|
|
</SelectItem>
|
|
<SelectItem value="1">
|
|
Tomorrow
|
|
</SelectItem>
|
|
<SelectItem value="3">
|
|
In 3 days
|
|
</SelectItem>
|
|
<SelectItem value="7">
|
|
In a week
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<div class="rounded-md border">
|
|
<Calendar v-model="date" mode="single" />
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</template>
|