Add quick create event button
This commit is contained in:
@@ -10,7 +10,10 @@ const { revealAdvancedSearch } = useCalendar()
|
|||||||
<header class="pt-4 border-slate-400 dark:border-slate-700 border-b-[1px]">
|
<header class="pt-4 border-slate-400 dark:border-slate-700 border-b-[1px]">
|
||||||
<div class="px-6 flex justify-between">
|
<div class="px-6 flex justify-between">
|
||||||
<menu class="flex items-center gap-2">
|
<menu class="flex items-center gap-2">
|
||||||
<li class="flex items-center">
|
<li>
|
||||||
|
<CalendarDialogQuickCreateEvent />
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<CalendarMenuToday />
|
<CalendarMenuToday />
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
67
components/calendar/dialog/CreateEvent.vue
Normal file
67
components/calendar/dialog/CreateEvent.vue
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { RPGDate } from "~/models/Date";
|
||||||
|
|
||||||
|
const { eventSkeleton, operationInProgress } = storeToRefs(useCalendar())
|
||||||
|
const { resetSkeleton } = useCalendar()
|
||||||
|
const popoverOpen = ref(false)
|
||||||
|
|
||||||
|
const isLoading = ref(false)
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
date?: RPGDate
|
||||||
|
btnClass?: string
|
||||||
|
}>()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Opens event creation's popover
|
||||||
|
*/
|
||||||
|
function openEventCreatePopover() {
|
||||||
|
// If another operation is in progress, whether it's another create popup or a modal, don't bother opening it
|
||||||
|
if (operationInProgress.value) {
|
||||||
|
popoverOpen.value = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
resetSkeleton()
|
||||||
|
|
||||||
|
popoverOpen.value = true
|
||||||
|
|
||||||
|
// Set skeleton initial startDate if it's known
|
||||||
|
if (props.date) {
|
||||||
|
eventSkeleton.value.startDate = { ...props.date } // We need to clone it otherwise the props ends up mutating (?)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prevents the modal from closing if's still loading
|
||||||
|
*
|
||||||
|
* @param e The closing event (can be keydown or click)
|
||||||
|
*/
|
||||||
|
function handleClosing(e: Event) {
|
||||||
|
if (isLoading.value) {
|
||||||
|
e.preventDefault()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<UiPopover v-model:open="popoverOpen">
|
||||||
|
<UiPopoverTrigger as-child>
|
||||||
|
<button :class="btnClass" @click="openEventCreatePopover()" />
|
||||||
|
</UiPopoverTrigger>
|
||||||
|
<UiPopoverContent
|
||||||
|
:align="'center'"
|
||||||
|
:side="'right'"
|
||||||
|
:collision-padding="60"
|
||||||
|
:disable-outside-pointer-events="true"
|
||||||
|
:trap-focus="true"
|
||||||
|
class="pl-3 w-[30rem] max-w-full border-indigo-200 dark:bg-slate-950 dark:border-indigo-950"
|
||||||
|
@escape-key-down="handleClosing"
|
||||||
|
@focus-outside="handleClosing"
|
||||||
|
@interact-outside="handleClosing"
|
||||||
|
@pointer-down-outside="handleClosing"
|
||||||
|
>
|
||||||
|
<CalendarFormCreateEvent />
|
||||||
|
</UiPopoverContent>
|
||||||
|
</UiPopover>
|
||||||
|
</template>
|
||||||
29
components/calendar/dialog/QuickCreateEvent.vue
Normal file
29
components/calendar/dialog/QuickCreateEvent.vue
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { PhPlus } from "@phosphor-icons/vue";
|
||||||
|
|
||||||
|
const isDialogOpen = ref<boolean>(false);
|
||||||
|
|
||||||
|
// Toggles the dialog
|
||||||
|
function toggleDialog() {
|
||||||
|
isDialogOpen.value = !isDialogOpen.value;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<UiButton @click="toggleDialog">
|
||||||
|
<PhPlus size="18" weight="bold" />
|
||||||
|
|
||||||
|
<strong class="font-semibold">
|
||||||
|
{{ $t("entity.calendar.event.newEvent") }}
|
||||||
|
</strong>
|
||||||
|
</UiButton>
|
||||||
|
|
||||||
|
<UiDialog v-model:open="isDialogOpen">
|
||||||
|
<UiDialogContent>
|
||||||
|
<UiDialogTitle>
|
||||||
|
{{ $t("entity.calendar.event.addSingle") }}
|
||||||
|
</UiDialogTitle>
|
||||||
|
<CalendarFormCreateEvent />
|
||||||
|
</UiDialogContent>
|
||||||
|
</UiDialog>
|
||||||
|
</template>
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
import type { RPGDate } from "~/models/Date";
|
import type { RPGDate } from "~/models/Date";
|
||||||
import { PhAlarm, PhCircleNotch, PhEye, PhEyeClosed, PhMapPinArea, PhTag } from "@phosphor-icons/vue"
|
import { PhAlarm, PhCircleNotch, PhEye, PhEyeClosed, PhMapPinArea, PhTag } from "@phosphor-icons/vue"
|
||||||
|
|
||||||
const { eventSkeleton, operationInProgress } = storeToRefs(useCalendar())
|
const { eventSkeleton } = storeToRefs(useCalendar())
|
||||||
const { resetSkeleton, submitSkeleton, cancelLatestRequest } = useCalendar()
|
const { submitSkeleton, cancelLatestRequest } = useCalendar()
|
||||||
const popoverOpen = ref(false)
|
const popoverOpen = ref(false)
|
||||||
|
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
@@ -19,26 +19,6 @@ const props = defineProps<{
|
|||||||
btnClass?: string
|
btnClass?: string
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
/**
|
|
||||||
* Opens event creation's popover
|
|
||||||
*/
|
|
||||||
function openEventCreatePopover() {
|
|
||||||
// If another operation is in progress, whether it's another create popup or a modal, don't bother opening it
|
|
||||||
if (operationInProgress.value) {
|
|
||||||
popoverOpen.value = false
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
resetSkeleton()
|
|
||||||
|
|
||||||
popoverOpen.value = true
|
|
||||||
|
|
||||||
// Set skeleton initial startDate if it's known
|
|
||||||
if (props.date) {
|
|
||||||
eventSkeleton.value.startDate = { ...props.date } // We need to clone it otherwise the props ends up mutating (?)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleSubmit() {
|
async function handleSubmit() {
|
||||||
// Prevent form submission if already loading
|
// Prevent form submission if already loading
|
||||||
if (isLoading.value) return
|
if (isLoading.value) return
|
||||||
@@ -58,17 +38,6 @@ async function handleSubmit() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Prevents the modal from closing if's still loading
|
|
||||||
*
|
|
||||||
* @param e The closing event (can be keydown or click)
|
|
||||||
*/
|
|
||||||
function handleClosing(e: Event) {
|
|
||||||
if (isLoading.value) {
|
|
||||||
e.preventDefault()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Click on the cancel button
|
* Click on the cancel button
|
||||||
*
|
*
|
||||||
@@ -81,22 +50,6 @@ function handleCancel() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<UiPopover v-model:open="popoverOpen">
|
|
||||||
<UiPopoverTrigger as-child>
|
|
||||||
<button :class="btnClass" @click="openEventCreatePopover()" />
|
|
||||||
</UiPopoverTrigger>
|
|
||||||
<UiPopoverContent
|
|
||||||
:align="'center'"
|
|
||||||
:side="'right'"
|
|
||||||
:collision-padding="60"
|
|
||||||
:disable-outside-pointer-events="true"
|
|
||||||
:trap-focus="true"
|
|
||||||
class="pl-3 w-[30rem] max-w-full border-indigo-200 dark:bg-slate-950 dark:border-indigo-950"
|
|
||||||
@escape-key-down="handleClosing"
|
|
||||||
@focus-outside="handleClosing"
|
|
||||||
@interact-outside="handleClosing"
|
|
||||||
@pointer-down-outside="handleClosing"
|
|
||||||
>
|
|
||||||
<form @submit.prevent="handleSubmit">
|
<form @submit.prevent="handleSubmit">
|
||||||
<div class="grid grid-cols-2 gap-y-3">
|
<div class="grid grid-cols-2 gap-y-3">
|
||||||
<div class="col-span-2 pl-8">
|
<div class="col-span-2 pl-8">
|
||||||
@@ -235,6 +188,4 @@ function handleCancel() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</UiPopoverContent>
|
|
||||||
</UiPopover>
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -143,7 +143,7 @@ const eventsNotDisplayed: ComputedRef<number> = computed<number>(() => eventsFo
|
|||||||
</ClientOnly>
|
</ClientOnly>
|
||||||
|
|
||||||
<ClientOnly>
|
<ClientOnly>
|
||||||
<LazyCalendarFormCreateEvent :date btn-class="absolute inset-0 w-full h-full cursor-default z-0" />
|
<LazyCalendarDialogCreateEvent :date btn-class="absolute inset-0 w-full h-full cursor-default z-0" />
|
||||||
</ClientOnly>
|
</ClientOnly>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -127,6 +127,8 @@ export default defineI18nConfig(() => ({
|
|||||||
event: {
|
event: {
|
||||||
nameSingular: "Event",
|
nameSingular: "Event",
|
||||||
namePlural: "Events",
|
namePlural: "Events",
|
||||||
|
addSingle: "Add an event",
|
||||||
|
newEvent: "New event",
|
||||||
title: "Event title",
|
title: "Event title",
|
||||||
isStart: "Start",
|
isStart: "Start",
|
||||||
isEnd: "End",
|
isEnd: "End",
|
||||||
@@ -348,6 +350,8 @@ export default defineI18nConfig(() => ({
|
|||||||
event: {
|
event: {
|
||||||
nameSingular: "Évènement",
|
nameSingular: "Évènement",
|
||||||
namePlural: "Évènements",
|
namePlural: "Évènements",
|
||||||
|
addSingle: "Ajouter un évènement",
|
||||||
|
newEvent: "Nouvel évènement",
|
||||||
title: "Titre de l'évènement",
|
title: "Titre de l'évènement",
|
||||||
isStart: "Début",
|
isStart: "Début",
|
||||||
isEnd: "Fin",
|
isEnd: "Fin",
|
||||||
|
|||||||
Reference in New Issue
Block a user