47 lines
1.3 KiB
Vue
47 lines
1.3 KiB
Vue
<script lang="ts" setup>
|
|
import { useCalendar } from '@/stores/CalendarStore'
|
|
|
|
import { Button } from '@/components/ui/button'
|
|
import CalendarMenuNav from './CalendarMenuNav.vue'
|
|
import CalendarMenuToday from './CalendarMenuToday.vue'
|
|
import CalendarSwitch from './CalendarSwitch.vue'
|
|
import CalendarCurrentDate from './CalendarCurrentDate.vue'
|
|
|
|
const { currentDate, revealAdvancedSearch } = useCalendar()
|
|
</script>
|
|
|
|
<template>
|
|
<header class="pt-4 border-slate-700 border-b-[1px]">
|
|
<div class="px-6 flex justify-between">
|
|
<menu class="flex items-center gap-2">
|
|
<li class="flex items-center">
|
|
<CalendarMenuToday />
|
|
</li>
|
|
<li>
|
|
<CalendarMenuNav />
|
|
</li>
|
|
<li class="ml-6">
|
|
<CalendarCurrentDate />
|
|
</li>
|
|
</menu>
|
|
|
|
<menu class="flex items-center gap-2">
|
|
<li>
|
|
<Button search-slash @click="revealAdvancedSearch()">
|
|
<PhMagnifyingGlass size="20" weight="light" />
|
|
Recherche avancée
|
|
</Button>
|
|
</li>
|
|
<li>
|
|
<CalendarSwitch />
|
|
</li>
|
|
</menu>
|
|
</div>
|
|
<div class="ml-12 flex">
|
|
<div class="px-4 py-2 border-slate-700 border-x-[1px] border-t-[1px] rounded-t-sm">
|
|
<span class="text-sm">{{ currentDate.currentDateTitle }}</span>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</template>
|