This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/data-display/calendars/double.vue

162 lines
7.3 KiB
Vue
Raw Normal View History

2024-01-24 19:02:44 +08:00
<template>
<div>
<div class="relative grid grid-cols-1 gap-x-14 md:grid-cols-2">
<button type="button" class="absolute -left-1.5 -top-1 flex items-center justify-center p-1.5 text-gray-400 hover:text-gray-500">
<span class="sr-only">Previous month</span>
<ChevronLeftIcon class="h-5 w-5" aria-hidden="true" />
</button>
<button type="button" class="absolute -right-1.5 -top-1 flex items-center justify-center p-1.5 text-gray-400 hover:text-gray-500">
<span class="sr-only">Next month</span>
<ChevronRightIcon class="h-5 w-5" aria-hidden="true" />
</button>
<section v-for="(month, monthIdx) in months" :key="monthIdx" :class="[monthIdx === months.length - 1 && 'hidden md:block', 'text-center']">
<h2 class="text-sm font-semibold text-gray-900">{{ month.name }}</h2>
<div class="mt-6 grid grid-cols-7 text-xs leading-6 text-gray-500">
<div>M</div>
<div>T</div>
<div>W</div>
<div>T</div>
<div>F</div>
<div>S</div>
<div>S</div>
</div>
<div class="isolate mt-2 grid grid-cols-7 gap-px rounded-lg bg-gray-200 text-sm shadow ring-1 ring-gray-200">
<button v-for="(day, dayIdx) in month.days" :key="day.date" type="button" :class="[day.isCurrentMonth ? 'bg-white text-gray-900' : 'bg-gray-50 text-gray-400', dayIdx === 0 && 'rounded-tl-lg', dayIdx === 6 && 'rounded-tr-lg', dayIdx === month.days.length - 7 && 'rounded-bl-lg', dayIdx === month.days.length - 1 && 'rounded-br-lg', 'relative py-1.5 hover:bg-gray-100 focus:z-10']">
<time :datetime="day.date" :class="[day.isToday && 'bg-indigo-600 font-semibold text-white', 'mx-auto flex h-7 w-7 items-center justify-center rounded-full']">{{ day.date.split('-').pop().replace(/^0/, '') }}</time>
</button>
</div>
</section>
</div>
<section class="mt-12">
<h2 class="text-base font-semibold leading-6 text-gray-900">Upcoming events</h2>
<ol class="mt-2 divide-y divide-gray-200 text-sm leading-6 text-gray-500">
<li class="py-4 sm:flex">
<time datetime="2022-01-17" class="w-28 flex-none">Wed, Jan 12</time>
<p class="mt-2 flex-auto sm:mt-0">Nothing on todays schedule</p>
</li>
<li class="py-4 sm:flex">
<time datetime="2022-01-19" class="w-28 flex-none">Thu, Jan 13</time>
<p class="mt-2 flex-auto font-semibold text-gray-900 sm:mt-0">View house with real estate agent</p>
<p class="flex-none sm:ml-6">
<time datetime="2022-01-13T14:30">2:30 PM</time> -
<time datetime="2022-01-13T16:30">4:30 PM</time>
</p>
</li>
<li class="py-4 sm:flex">
<time datetime="2022-01-20" class="w-28 flex-none">Fri, Jan 14</time>
<p class="mt-2 flex-auto font-semibold text-gray-900 sm:mt-0">Meeting with bank manager</p>
<p class="flex-none sm:ml-6">All day</p>
</li>
<li class="py-4 sm:flex">
<time datetime="2022-01-18" class="w-28 flex-none">Mon, Jan 17</time>
<p class="mt-2 flex-auto font-semibold text-gray-900 sm:mt-0">Sign paperwork at lawyers</p>
<p class="flex-none sm:ml-6">
<time datetime="2022-01-17T10:00">10:00 AM</time> -
<time datetime="2022-01-17T10:15">10:15 AM</time>
</p>
</li>
</ol>
</section>
</div>
</template>
<script setup>
import { ChevronLeftIcon, ChevronRightIcon } from '@heroicons/vue/20/solid'
const months = [
{
name: 'January',
days: [
{ date: '2021-12-27' },
{ date: '2021-12-28' },
{ date: '2021-12-29' },
{ date: '2021-12-30' },
{ date: '2021-12-31' },
{ date: '2022-01-01', isCurrentMonth: true },
{ date: '2022-01-02', isCurrentMonth: true },
{ date: '2022-01-03', isCurrentMonth: true },
{ date: '2022-01-04', isCurrentMonth: true },
{ date: '2022-01-05', isCurrentMonth: true },
{ date: '2022-01-06', isCurrentMonth: true },
{ date: '2022-01-07', isCurrentMonth: true },
{ date: '2022-01-08', isCurrentMonth: true },
{ date: '2022-01-09', isCurrentMonth: true },
{ date: '2022-01-10', isCurrentMonth: true },
{ date: '2022-01-11', isCurrentMonth: true },
{ date: '2022-01-12', isCurrentMonth: true, isToday: true },
{ date: '2022-01-13', isCurrentMonth: true },
{ date: '2022-01-14', isCurrentMonth: true },
{ date: '2022-01-15', isCurrentMonth: true },
{ date: '2022-01-16', isCurrentMonth: true },
{ date: '2022-01-17', isCurrentMonth: true },
{ date: '2022-01-18', isCurrentMonth: true },
{ date: '2022-01-19', isCurrentMonth: true },
{ date: '2022-01-20', isCurrentMonth: true },
{ date: '2022-01-21', isCurrentMonth: true },
{ date: '2022-01-22', isCurrentMonth: true },
{ date: '2022-01-23', isCurrentMonth: true },
{ date: '2022-01-24', isCurrentMonth: true },
{ date: '2022-01-25', isCurrentMonth: true },
{ date: '2022-01-26', isCurrentMonth: true },
{ date: '2022-01-27', isCurrentMonth: true },
{ date: '2022-01-28', isCurrentMonth: true },
{ date: '2022-01-29', isCurrentMonth: true },
{ date: '2022-01-30', isCurrentMonth: true },
{ date: '2022-01-31', isCurrentMonth: true },
{ date: '2022-02-01' },
{ date: '2022-02-02' },
{ date: '2022-02-03' },
{ date: '2022-02-04' },
{ date: '2022-02-05' },
{ date: '2022-02-06' },
],
},
{
name: 'February',
days: [
{ date: '2022-01-31' },
{ date: '2022-02-01', isCurrentMonth: true },
{ date: '2022-02-02', isCurrentMonth: true },
{ date: '2022-02-03', isCurrentMonth: true },
{ date: '2022-02-04', isCurrentMonth: true },
{ date: '2022-02-05', isCurrentMonth: true },
{ date: '2022-02-06', isCurrentMonth: true },
{ date: '2022-02-07', isCurrentMonth: true },
{ date: '2022-02-08', isCurrentMonth: true },
{ date: '2022-02-09', isCurrentMonth: true },
{ date: '2022-02-10', isCurrentMonth: true },
{ date: '2022-02-11', isCurrentMonth: true },
{ date: '2022-02-12', isCurrentMonth: true },
{ date: '2022-02-13', isCurrentMonth: true },
{ date: '2022-02-14', isCurrentMonth: true },
{ date: '2022-02-15', isCurrentMonth: true },
{ date: '2022-02-16', isCurrentMonth: true },
{ date: '2022-02-17', isCurrentMonth: true },
{ date: '2022-02-18', isCurrentMonth: true },
{ date: '2022-02-19', isCurrentMonth: true },
{ date: '2022-02-20', isCurrentMonth: true },
{ date: '2022-02-21', isCurrentMonth: true },
{ date: '2022-02-22', isCurrentMonth: true },
{ date: '2022-02-23', isCurrentMonth: true },
{ date: '2022-02-24', isCurrentMonth: true },
{ date: '2022-02-25', isCurrentMonth: true },
{ date: '2022-02-26', isCurrentMonth: true },
{ date: '2022-02-27', isCurrentMonth: true },
{ date: '2022-02-28', isCurrentMonth: true },
{ date: '2022-03-01' },
{ date: '2022-03-02' },
{ date: '2022-03-03' },
{ date: '2022-03-04' },
{ date: '2022-03-05' },
{ date: '2022-03-06' },
{ date: '2022-03-07' },
{ date: '2022-03-08' },
{ date: '2022-03-09' },
{ date: '2022-03-10' },
{ date: '2022-03-11' },
{ date: '2022-03-12' },
{ date: '2022-03-13' },
],
},
]
</script>