Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | <template> <muc-card-container v-if="allAppointments.length == 0"> <add-appointment-card :title="t('newAppointmentTitle')" :new-appointment-url="newAppointmentUrl" :t="t" > <template #content> <add-appointment-svg /> </template> </add-appointment-card> </muc-card-container> <div v-else-if="isMobile"> <muc-slider v-if="allAppointments.length < 3" class="slider-content" > <muc-slider-item v-for="(appointment, index) in allAppointments" :key="index" > <appointment-card :appointment="appointment" :appointment-detail-url="appointmentDetailUrl" :offices="offices" :class="{ 'card-color': displayedOnDetailScreen }" class="mobile-card-height" :t="t" tabindex="0" /> </muc-slider-item> <muc-slider-item v-if="!displayedOnDetailScreen"> <add-appointment-card class="mobile-card-height" :title="t('newAppointmentTitle')" :new-appointment-url="newAppointmentUrl" :t="t" > <template #content> <add-appointment-svg /> </template> </add-appointment-card> </muc-slider-item> </muc-slider> <muc-slider v-else class="slider-content" > <muc-slider-item v-for="(appointment, index) in allAppointments.slice(0, 3)" :key="index" > <appointment-card :appointment="appointment" :appointment-detail-url="appointmentDetailUrl" :offices="offices" :class="{ 'card-color': displayedOnDetailScreen }" class="mobile-card-height" :t="t" tabindex="0" /> </muc-slider-item> </muc-slider> </div> <div v-else> <muc-card-container v-if="allAppointments.length < 3"> <appointment-card v-for="(appointment, index) in allAppointments" :key="index" :appointment="appointment" :appointment-detail-url="appointmentDetailUrl" :offices="offices" :class="{ 'card-color': displayedOnDetailScreen }" :t="t" tabindex="0" /> <add-appointment-card v-if="!displayedOnDetailScreen" :title="t('newAppointmentTitle')" :new-appointment-url="newAppointmentUrl" :t="t" > <template #content> <add-appointment-svg /> </template> </add-appointment-card> </muc-card-container> <muc-card-container v-else> <appointment-card v-for="(appointment, index) in allAppointments.slice(0, 3)" :key="index" :appointment="appointment" :appointment-detail-url="appointmentDetailUrl" :offices="offices" :class="{ 'card-color': displayedOnDetailScreen }" :t="t" tabindex="0" /> </muc-card-container> </div> </template> <script setup lang="ts"> import { MucCardContainer, MucSlider, MucSliderItem, } from "@muenchen/muc-patternlab-vue"; import { AppointmentDTO } from "@/api/models/AppointmentDTO"; import { Office } from "@/api/models/Office"; import AddAppointmentCard from "@/components/AppointmentOverview/AddAppointmentCard.vue"; import AddAppointmentSvg from "@/components/AppointmentOverview/AddAppointmentSvg.vue"; import AppointmentCard from "@/components/AppointmentOverview/AppointmentCard.vue"; defineProps<{ allAppointments: AppointmentDTO[]; isMobile: boolean; newAppointmentUrl: string; appointmentDetailUrl: string; displayedOnDetailScreen: boolean; offices: Office[]; t: (key: string) => string; }>(); </script> <style scoped> /* No extra padding in MucSlider */ .m-component { padding: 0 !important; } /* Content of the slider extends to the edge of the screen */ .slider-content { margin-left: -1.5rem; margin-right: -1.5rem; } /* Background color of the cards */ .card-color { background-color: white !important; } /* Height of the cards in the mobile view, so that all cards have the same height */ .mobile-card-height { height: 100%; } .card:hover { background-color: var(--color-neutrals-blue-xlight) !important; } </style> |