Work in progress betreft het tonen van afspraken naast elkaar
All checks were successful
Docker Image CI / build-and-push (push) Successful in 1m55s
Docker Image CI / deploy (push) Successful in 43s
Docker Image CI / notify-failure (push) Has been skipped

This commit is contained in:
2025-04-20 15:23:59 +02:00
parent 1fec1dc8c0
commit 211fe2cbb8
20 changed files with 769 additions and 34 deletions

View File

@@ -0,0 +1,34 @@
<div class="calendar-container">
<div class="calendar-header">
<div class="time-column-header"></div>
<div *ngFor="let day of days" class="day-header">
{{ getDayLabel(day) }}
</div>
</div>
<div class="calendar-body">
<div class="time-column">
<div *ngFor="let hour of hours" class="hour-label">{{ hour }}</div>
</div>
<div class="week-grid">
<div *ngFor="let day of days" class="day-column">
<div *ngFor="let hour of hours" class="hour-cell">
<div
class="appointments-wrapper"
[ngClass]="{ 'multiple': searchAppointments(day, hour).length > 1 }">
<component-appointment
*ngFor="let appointment of searchAppointments(day, hour)"
[appointment]="appointment"
size="medium"
(onClick)="emitAppointment($event)">
</component-appointment>
</div>
</div>
</div>
</div>
</div>
</div>