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

24
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "pay-point",
"version": "0.0.21",
"version": "0.0.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pay-point",
"version": "0.0.21",
"version": "0.0.3",
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
@@ -5974,6 +5974,20 @@
"@angular/core": ">=15.0.0"
}
},
"node_modules/angularx-flatpickr": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/angularx-flatpickr/-/angularx-flatpickr-8.1.0.tgz",
"integrity": "sha512-U+WXMUXGEiQbdMGSPk7T+HehmAFdVWKu3XlCXFM8mYCCB/fWHW8sbHstxxZgOymD5Q1kfLaHNob1MxhWUgv1hg==",
"license": "MIT",
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=17.0.0",
"@angular/forms": ">=17.0.0",
"flatpickr": "^4.5.0"
}
},
"node_modules/ansi-colors": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
@@ -8343,6 +8357,12 @@
"flat": "cli.js"
}
},
"node_modules/flatpickr": {
"version": "4.6.13",
"resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.13.tgz",
"integrity": "sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==",
"license": "MIT"
},
"node_modules/flatted": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",

View File

@@ -0,0 +1,28 @@
<div
class="appointment"
*ngIf="size == 'large'"
[attr.id]="'afspraak-'+appointment.id"
(click)="selectAppointment(appointment)"
[ngClass]="{ 'large': (getAppointmentHeight(appointment) > 50) }"
[ngStyle]="getInlineStyles(appointment)">
<strong>{{ appointment.title }}</strong>
<span class="appointment-time" *ngIf="appointment.customer">
<tui-icon icon="@tui.user" [style.font-size.rem]="1"></tui-icon>
{{ appointment.customer.firstName }} {{ appointment.customer.lastName }}</span>
<span class="appointment-time">
<tui-icon icon="@tui.clock" [style.font-size.rem]="1"></tui-icon>
{{ getFormattedTime(appointment.startHour, appointment.startMinute) }}
- {{ getFormattedTime(appointment.endHour, appointment.endMinute) }}
</span>
</div>
<div
class="appointment"
*ngIf="size == 'medium'"
[attr.id]="'afspraak-'+appointment.id"
(click)="selectAppointment(appointment)"
[ngClass]="{ 'large': (getAppointmentHeight(appointment) > 50) }"
[ngStyle]="getInlineStyles(appointment)">
<strong>{{ appointment.title }}</strong>
</div>

View File

@@ -0,0 +1,38 @@
.appointment {
position: absolute;
//width: calc(100% - 100px);
background: #1e88e5;
color: white;
border-radius: 4px;
border-left: 5px solid #1565c0;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
z-index: 10;
cursor: pointer;
display: grid;
grid-auto-flow: column;
align-items: center;
min-height: 20px;
}
.appointment.large {
grid-auto-flow: row;
align-items: flex-start;
}
.appointment-time {
margin-left: 8px;
}
@media (max-width: 600px) {
.appointment {
//width: calc(100% - 80px);
font-size: 14px;
}
.appointment-time {
font-size: 12px;
display: block;
}
}

View File

@@ -0,0 +1,46 @@
import {Component, EventEmitter, Input, Output} from '@angular/core';
import {NgClass, NgIf, NgStyle} from '@angular/common';
import {AppointmentDto} from '../../models/appointment-dto';
import {TuiIcon} from '@taiga-ui/core';
@Component({
selector: 'component-appointment',
imports: [
NgClass,
NgStyle,
TuiIcon,
NgIf
],
templateUrl: './appointment.component.html',
styleUrl: './appointment.component.scss'
})
export class AppointmentComponent {
@Input() appointment: AppointmentDto;
@Input() size: 'large' | 'medium' | 'small' = 'medium';
@Input() width: 'normal' | 'small' = 'normal';
@Output() onClick = new EventEmitter<AppointmentDto>();
selectAppointment(appointment: AppointmentDto) {
this.onClick.emit(appointment);
}
getInlineStyles(appointment: AppointmentDto): { [key: string]: string } {
return {
'--duration': `${appointment.durationInMinutes}`,
'--start-minute': `${appointment.startMinute}`,
'top': `${appointment.startMinute}px`, // Startpositie binnen het uur
'height': `${appointment.durationInMinutes}px`, // Hoogte over meerdere uren
'width': this.width == "normal"? '100px' : '50px',
};
}
getFormattedTime(hour: number, minute: number): string {
return `${hour.toString().padStart(2, '0')}:${minute.toString().padStart(2, '0')}`;
}
getAppointmentHeight(appointment: AppointmentDto): number {
const startInMinutes = (appointment.startHour * 60) + appointment.startMinute;
const endInMinutes = (appointment.endHour * 60) + appointment.endMinute;
return (endInMinutes - startInMinutes); // 50px per uur
}
}

View File

@@ -0,0 +1,25 @@
<div class="calendar">
<div class="calendar-header">
<button class="nav-button" (click)="goToPreviousMonth()"></button>
<h3>{{ currentDate | date:'MMMM yyyy' }} - {{ secondDate | date:'MMMM yyyy' }}</h3>
<button class="nav-button" (click)="goToNextMonth()"></button>
</div>
<div class="calendar-pair">
<div *ngFor="let calendar of calendars; let i = index" class="calendar-grid">
<div class="week-label">Wk</div>
<div *ngFor="let day of ['M','D','W','D','V','Z','Z']" class="day-header">{{ day }}</div>
<ng-container *ngFor="let week of calendar">
<div class="week-number">{{ week.number }}</div>
<div *ngFor="let day of week.days"
(click)="selectDate(day)"
[class.today]="isToday(day)"
[class.selected]="isSelected(day)"
class="day-cell">
{{ day.getDate() }}
</div>
</ng-container>
</div>
</div>
</div>

View File

@@ -0,0 +1,99 @@
$primary: #1976d2;
$hover-bg: #e3f2fd;
$selected-bg: #1565c0;
$bg-light: #f5f5f5;
$border-radius: 8px;
.calendar {
max-width: 900px;
margin: 2rem auto;
padding: 1rem;
background: #fff;
border-radius: $border-radius;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
font-family: 'Segoe UI', sans-serif;
.calendar-header {
display: flex;
justify-content: space-between;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
h3 {
margin: 0;
font-size: 1.3rem;
text-align: center;
}
.nav-button {
background: none;
border: none;
font-size: 1.6rem;
color: $primary;
cursor: pointer;
padding: 0.4rem 0.6rem;
border-radius: 4px;
&:hover {
background: $hover-bg;
}
}
}
.calendar-pair {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.calendar-grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
gap: 6px;
.day-header,
.week-label,
.week-number {
font-weight: bold;
background: $bg-light;
padding: 6px 0;
border-radius: $border-radius;
font-size: 0.9rem;
text-align: center;
height: 20px;
width: 28px;
}
.day-cell {
padding: 8px 0;
text-align: center;
cursor: pointer;
border-radius: $border-radius;
transition: background-color 0.2s;
height: 20px;
width: 28px;
&:hover {
background: $hover-bg;
}
&.today {
background: $hover-bg;
font-weight: bold;
}
&.selected {
background: $selected-bg;
color: #fff;
}
}
}
.calendar-footer {
text-align: center;
margin-top: 1.5rem;
font-size: 0.95rem;
color: #555;
}
}

View File

@@ -0,0 +1,98 @@
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
import {DatePipe, NgForOf, NgIf} from '@angular/common';
@Component({
selector: 'datepicker',
imports: [
NgForOf,
DatePipe,
NgIf
],
templateUrl: './datepicker.component.html',
styleUrl: './datepicker.component.scss'
})
export class DatepickerComponent implements OnInit {
@Input() currentDate = new Date(); // startmaand
secondDate = new Date(); // tweede maand
calendars: any[][] = [[], []];
selectedDate: Date | null = null;
@Output() onSelectedDate: EventEmitter<Date> = new EventEmitter();
ngOnInit() {
this.updateSecondDate();
this.generateCalendars();
}
updateSecondDate() {
this.secondDate = new Date(this.currentDate.getFullYear(), this.currentDate.getMonth() + 1, 1);
}
generateCalendars() {
this.calendars[0] = this.generateCalendar(this.currentDate);
this.calendars[1] = this.generateCalendar(this.secondDate);
}
generateCalendar(date: Date) {
const year = date.getFullYear();
const month = date.getMonth();
const firstDay = new Date(year, month, 1);
const lastDay = new Date(year, month + 1, 0);
let day = new Date(firstDay);
day.setDate(day.getDate() - ((day.getDay() + 6) % 7)); // maandag starten
const calendar: any[] = [];
while (day <= lastDay || day.getDay() !== 1) {
const week = {
number: this.getWeekNumber(day),
days: []
};
for (let i = 0; i < 7; i++) {
week.days.push(new Date(day));
day.setDate(day.getDate() + 1);
}
calendar.push(week);
}
return calendar;
}
getWeekNumber(d: Date): number {
const date = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate()));
const dayNum = date.getUTCDay() || 7;
date.setUTCDate(date.getUTCDate() + 4 - dayNum);
const yearStart = new Date(Date.UTC(date.getUTCFullYear(), 0, 1));
return Math.ceil((((+date - +yearStart) / 86400000) + 1) / 7);
}
selectDate(date: Date) {
this.selectedDate = date;
this.onSelectedDate.emit(date);
}
isToday(date: Date): boolean {
const today = new Date();
return date.toDateString() === today.toDateString();
}
isSelected(date: Date): boolean {
return this.selectedDate?.toDateString() === date.toDateString();
}
goToPreviousMonth() {
this.currentDate = new Date(this.currentDate.getFullYear(), this.currentDate.getMonth() - 1, 1);
this.updateSecondDate();
this.generateCalendars();
}
goToNextMonth() {
this.currentDate = new Date(this.currentDate.getFullYear(), this.currentDate.getMonth() + 1, 1);
this.updateSecondDate();
this.generateCalendars();
}
}

View File

@@ -8,7 +8,7 @@
[style.color]="'var(--tui-background-accent-1)'"/>
Agenda delen
</button>
<button tuiOption class="dropdown-item" (click)="switchAgenda();">
<button tuiOption class="dropdown-item" (click)="switchAgenda();" [disabled]="true">
<tui-icon
icon="@tui.arrow-left-right"
[style.color]="'var(--tui-background-accent-1)'"/>
@@ -21,12 +21,24 @@
<div class="dropdown-section-title">Weergave Instellingen</div>
<tui-data-list>
<button tuiOption class="dropdown-item" (click)="setView('day');">
<tui-icon
icon="@tui.check"
*ngIf="currentView == 'day'"
[style.color]="'var(--tui-background-accent-1)'"/>
Dagweergave
</button>
<button tuiOption class="dropdown-item" (click)="setView('week');">
<tui-icon
icon="@tui.check"
*ngIf="currentView == 'week'"
[style.color]="'var(--tui-background-accent-1)'"/>
Weekweergave
</button>
<button tuiOption class="dropdown-item" (click)="setView('year');">
<button tuiOption class="dropdown-item" (click)="setView('month');" [disabled]="true">
<tui-icon
icon="@tui.check"
*ngIf="currentView == 'month'"
[style.color]="'var(--tui-background-accent-1)'"/>
Jaarweergave
</button>
</tui-data-list>

View File

@@ -1,24 +1,28 @@
import {Component, EventEmitter, Output} from '@angular/core';
import {Component, EventEmitter, Input, Output} from '@angular/core';
import {TuiDataListComponent, TuiIcon, TuiOption} from '@taiga-ui/core';
import {Router} from '@angular/router';
import {NgIf} from '@angular/common';
@Component({
selector: 'dropdown-content',
standalone: true,
imports: [
TuiDataListComponent,
TuiIcon,
TuiOption,
TuiIcon
TuiDataListComponent,
NgIf,
],
templateUrl: './dropdown-content.component.html',
styleUrl: './dropdown-content.component.scss'
styleUrls: ['./dropdown-content.component.scss']
})
export class DropdownContentComponent {
constructor(private router: Router) {
}
currentView: 'day' | 'week' | 'year' = 'day'
@Input() currentView: string = 'day'
@Output() close = new EventEmitter()
@Output() view = new EventEmitter()
shareAgenda() {
this.close.emit()/* open modal etc */
@@ -29,9 +33,22 @@ export class DropdownContentComponent {
this.close.emit()/* toggle agenda */
}
setView(view: 'day' | 'week' | 'year') {
this.close.emit()
setView(view: 'day' | 'week' | 'month') {
this.currentView = view;
this.view.emit(view)
this.close.emit()
}
isDay() {
return this.currentView === 'day'
}
isWeek() {
return this.currentView === 'week'
}
isMonth() {
return this.currentView === 'month'
}
}

View File

@@ -89,7 +89,7 @@ export class NewItemComponent implements OnInit {
const customer = this.customerControl.value;
const appointment = new Appointment(title, description, startTime.hours, startTime.minutes, endTime.hours, endTime.minutes, correctDate, customer)
const appointment = new AppointmentDto(title, description, startTime.hours, startTime.minutes, endTime.hours, endTime.minutes, correctDate, customer)
this.waiting = true
this.appointmentService.addAppointment(appointment, this.userService.currentCompany.id).subscribe(() => {
this.waiting = false

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>

View File

@@ -0,0 +1,87 @@
.calendar-container {
display: flex;
flex-direction: column;
border: 1px solid #ccc;
font-family: Arial, sans-serif;
height: 100%;
overflow: hidden;
}
.calendar-header {
display: flex;
background-color: #f5f5f5;
border-bottom: 1px solid #ccc;
}
.time-column-header {
width: 60px;
}
.day-header {
flex: 1;
text-align: center;
padding: 10px 0;
font-weight: bold;
border-left: 1px solid #ccc;
}
.calendar-body {
display: flex;
flex: 1;
overflow-y: auto;
}
.time-column {
width: 60px;
border-right: 1px solid #ccc;
}
.hour-label {
height: 60px;
line-height: 60px;
text-align: right;
padding-right: 5px;
font-size: 12px;
color: #666;
}
.week-grid {
display: flex;
flex: 1;
}
.day-column {
flex: 1;
display: flex;
flex-direction: column;
border-left: 1px solid #eee;
}
.hour-cell {
height: 60px;
border-bottom: 1px solid #eee;
position: relative;
}
.appointments {
display: flex;
}
.appointments-wrapper {
display: flex;
flex-direction: row;
gap: 4px; // ruimte tussen de afspraken
height: 100%;
width: 100%;
component-appointment {
flex: 1 1 0;
min-width: 0;
max-width: 100%;
}
&.multiple component-appointment {
flex: 1 1 0;
}
}

View File

@@ -0,0 +1,106 @@
import {Component, EventEmitter, Input, OnInit, Output} from '@angular/core';
import {NgClass, NgForOf, NgIf} from '@angular/common';
import {AppointmentDto} from '../../models/appointment-dto';
import {AppointmentService} from '../../services/appointment.service';
import {AppointmentComponent} from '../appointment/appointment.component';
@Component({
selector: 'app-week-view',
templateUrl: './week-view.component.html',
imports: [
NgForOf,
AppointmentComponent,
NgIf,
NgClass
],
styleUrls: ['./week-view.component.scss']
})
export class WeekViewComponent implements OnInit {
hours: string[] = [];
days: Date[] = [];
@Input() selectedDate: Date;
appointments: AppointmentDto[] = [];
@Output() appointmentSelected = new EventEmitter<AppointmentDto>();
constructor(private appointmentService: AppointmentService) {
}
ngOnInit(): void {
this.generateHours();
this.getWeekDates();
this.getAppointments()
}
generateHours() {
for (let i = 0; i < 24; i++) {
const hour = i.toString().padStart(2, '0') + ':00';
this.hours.push(hour);
}
}
getAppointments() {
console.log(this.days[0], this.days[6])
this.appointmentService.getAppointmentsByWeek(this.days[0], this.days[6]).subscribe(appointments => {
this.appointments = appointments
console.log(appointments);
});
}
generateWeek() {
const today = new Date();
const startOfWeek = today.getDate() - today.getDay() + 1; // maandag
console.log(today.getDate() - today.getDay());
for (let i = 0; i < 7; i++) {
const date = new Date(today);
date.setDate(startOfWeek + i);
this.days.push(date);
}
}
getDayLabel(date: Date): string {
return date.toLocaleDateString('nl-NL', {weekday: 'short', day: 'numeric', month: 'short'});
}
setSelectedDate(date: Date): void {
this.selectedDate = date;
}
getWeekDates() {
const startDate = new Date(this.selectedDate); // Maak een kopie van de ingevoerde datum
const dayOfWeek = startDate.getDay(); // Verkrijg de dag van de week (0 = zondag, 1 = maandag, etc.)
// Pas de datum aan zodat het de maandag van dezelfde week wordt
const diff = startDate.getDate() - dayOfWeek + (dayOfWeek == 0 ? -6 : 1); // Als het zondag is (dayOfWeek == 0), gaan we naar vorige maandag
startDate.setDate(diff);
// Genereer de datums voor de volledige week
const weekDates: Date[] = [];
for (let i = 0; i < 7; i++) {
const currentDay = new Date(startDate); // Maak een kopie van de startdatum
currentDay.setDate(startDate.getDate() + i); // Voeg de dagen van de week toe
weekDates.push(currentDay);
}
this.days = weekDates;
}
searchAppointments(day: Date, hour: string) {
return this.appointments.filter(appointment =>
appointment.startHour === Number(hour.substring(0, 2)) &&
appointment.startDate.toString().startsWith(this.formatDateToISO(day))
);
}
formatDateToISO(date: Date): string {
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0'); // maand is 0-based
const day = date.getDate().toString().padStart(2, '0');
return `${year}-${month}-${day}`;
}
emitAppointment($event: AppointmentDto) {
this.appointmentSelected.emit($event);
}
}

View File

@@ -5,7 +5,7 @@ export class AppointmentDto {
id: number;
title: string;
description: string;
startDate: Date; // ISO 8601 string (LocalDateTime in Java)
startDate: string | Date;
startHour: number;
startMinute: number;
endHour: number;
@@ -13,4 +13,19 @@ export class AppointmentDto {
durationInMinutes: number;
customer: Customer;
company: CompanyDTO;
constructor(title: string, description: string, startHour: number, startMinute: number, endHour: number, endMinute: number, date: Date, customer: Customer) {
this.title = title;
this.description = description;
this.startHour = startHour;
this.startMinute = startMinute;
this.endHour = endHour;
this.endMinute = endMinute;
this.startDate = date;
this.customer = customer;
// Bereken de totale duur in minuten
this.durationInMinutes = (endHour * 60 + endMinute) - (startHour * 60 + startMinute);
}
}

View File

@@ -20,3 +20,12 @@
Uitnodiging accepteren
</button>
</div>
<div class="invite-wrapper" *ngIf="inviteExpired">
<h1>Agenda-uitnodiging verlopen</h1>
<p class="error-message">
Deze uitnodiging is niet meer geldig. Mogelijk is de geldigheidsduur verstreken of is de uitnodiging ingetrokken.
</p>
</div>

View File

@@ -52,3 +52,13 @@
transform: translateY(0);
}
}
.error-message {
color: #d9534f;
background-color: #fcebea;
padding: 12px;
border-radius: 6px;
margin-bottom: 1rem;
font-weight: 500;
}

View File

@@ -23,6 +23,7 @@ export class AgendaInviteComponent implements OnInit {
agendaName: string = '...';
company: CompanyDTO;
inviteEntity: InviteEntity;
inviteExpired: boolean = false;
constructor(private route: ActivatedRoute, private router: Router, private companyService: CompanyService, private agendaService: AgendaService, private userService: UserService, private alerts: TuiAlertService) {
}
@@ -36,7 +37,11 @@ export class AgendaInviteComponent implements OnInit {
this.company = companyResponse;
})
},
error: (error) => console.log(error),
error: (error) => {
if (error.status === 410) {
this.inviteExpired = true;
}
},
});
}

View File

@@ -1,6 +1,7 @@
<div class="container">
<div class="heading">
<button
*ngIf="view == 'day'"
appearance="primary"
iconStart="@tui.chevron-left"
size="m"
@@ -9,7 +10,27 @@
(click)="previousDay()"
type="button">
</button>
<h1 class="date" id="geselecteerdeDatum" (click)="toggleCalendar()">{{ getDate() }}
<button
*ngIf="view == 'week'"
appearance="primary"
iconStart="@tui.chevron-left"
size="m"
tuiIconButton
id="vorigeWeek"
(click)="previousWeek()"
type="button">
</button>
<h1 *ngIf="view == 'week'" class="date" id="geselecteerdeWeek" (click)="toggleCalendar()">Week {{ getWeek() }}
<tui-icon
*ngIf="!showCalendar"
icon="@tui.chevron-down"
[style.color]="'var(--tui-background-accent-1)'"/>
<tui-icon
*ngIf="showCalendar"
icon="@tui.chevron-up"
[style.color]="'var(--tui-background-accent-1)'"/>
</h1>
<h1 *ngIf="view == 'day'" class="date" id="geselecteerdeDatum" (click)="toggleCalendar()">{{ getDate() }}
<tui-icon
*ngIf="!showCalendar"
icon="@tui.chevron-down"
@@ -20,6 +41,7 @@
[style.color]="'var(--tui-background-accent-1)'"/>
</h1>
<button
*ngIf="view == 'day'"
appearance="primary"
iconStart="@tui.chevron-right"
size="m"
@@ -28,13 +50,24 @@
(click)="nextDay()"
type="button">
</button>
<button
*ngIf="view == 'week'"
appearance="primary"
iconStart="@tui.chevron-right"
size="m"
tuiIconButton
id="volgendeWeek"
(click)="nextWeek()"
type="button">
</button>
</div>
<div class="calendar" *ngIf="showCalendar">
<tui-calendar
id="calenderDatum"
[value]="value"
(dayClick)="onDayClick($event)"
/>
<!-- <tui-calendar-->
<!-- id="calenderDatum"-->
<!-- [value]="value"-->
<!-- (dayClick)="onDayClick($event)"-->
<!-- />-->
<datepicker (onSelectedDate)="onDayClick($event)" [currentDate]="selectedDate"></datepicker>
</div>
<div class="toolbar">
<button
@@ -76,12 +109,12 @@
</button>
<ng-template #dropdownContent>
<div class="dropdown">
<dropdown-content (close)="open = false"></dropdown-content>
<dropdown-content (close)="open = false" (view)="setView($event)" [currentView]="view" ></dropdown-content>
</div>
</ng-template>
</div>
<div class="content">
<div class="agenda-container">
<div *ngIf="view == 'day'" class="agenda-container">
<div *ngFor="let hour of timeSlots" class="time-slot">
<span class="time">{{ hour.toString().padStart(2, '0') }}:00</span>
@@ -104,6 +137,8 @@
</div>
</div>
</div>
<app-week-view *ngIf="view == 'week'" [selectedDate]="selectedDate" (appointmentSelected)="selectedAppointment = $event"></app-week-view>
</div>
</div>

View File

@@ -1,6 +1,6 @@
import {Component, inject, OnInit} from '@angular/core';
import {Component, inject, Input, OnInit, ViewChild} from '@angular/core';
import {CommonModule, NgFor, NgIf} from '@angular/common';
import {TuiAlertService, TuiButton, TuiCalendar, tuiDateFormatProvider, TuiIcon} from '@taiga-ui/core';
import {TuiAlertService, TuiButton, tuiDateFormatProvider, TuiIcon} from '@taiga-ui/core';
import {ModalComponent} from '../../components/modal/modal.component';
import {FormControl, FormGroup, ReactiveFormsModule, Validators} from '@angular/forms';
import {
@@ -19,13 +19,15 @@ import {NewItemComponent} from '../../components/new-item/new-item.component';
import {timeAfterStartValidator} from '../../models/validators/time-after-start-validator';
import {DropdownContentComponent} from '../../components/dropdown-content/dropdown-content.component';
import {AppointmentDto} from '../../models/appointment-dto';
import {WeekViewComponent} from '../../components/week-view/week-view.component';
import {DatepickerComponent} from '../../components/datepicker/datepicker.component';
@Component({
selector: 'app-agenda',
imports: [NgFor,
TuiButton, CommonModule, NgIf, ModalComponent, ReactiveFormsModule,
TuiInputTimeModule, TuiTextfieldControllerModule,
TuiInputModule, TuiTextareaModule, TuiInputDateModule, TuiIcon, DetailsComponent, TuiCalendar, NewItemComponent, DropdownContentComponent],
TuiInputModule, TuiTextareaModule, TuiInputDateModule, TuiIcon, DetailsComponent, NewItemComponent, DropdownContentComponent, WeekViewComponent, DatepickerComponent],
templateUrl: './agenda.component.html',
providers: [tuiDateFormatProvider({separator: '-'}), AppointmentService],
styleUrl: './agenda.component.scss'
@@ -49,6 +51,8 @@ export class AgendaComponent implements OnInit {
protected value: TuiDay | null = null;
showCalendar: boolean = false;
open = false
@Input() view: 'day' | 'week' | 'month' = 'day'
@ViewChild(WeekViewComponent) childComponent!: WeekViewComponent;
private readonly alerts = inject(TuiAlertService);
protected appointmentForm = new FormGroup({
@@ -110,6 +114,18 @@ export class AgendaComponent implements OnInit {
this.appointmentForm.get('date').setValue(new TuiDay(this.selectedDate.getFullYear(), this.selectedDate.getMonth(), this.selectedDate.getDate()))
}
nextWeek() {
this.selectedDate.setDate(this.selectedDate.getDate() + 7);
this.childComponent.getWeekDates()
this.childComponent.getAppointments()
}
previousWeek() {
this.selectedDate.setDate(this.selectedDate.getDate() - 7);
this.childComponent.getWeekDates()
this.childComponent.getAppointments()
}
getHours() {
let hours = this.today.getHours()
if (hours > 23) {
@@ -138,11 +154,20 @@ export class AgendaComponent implements OnInit {
return endTime;
}
setView(view: 'day' | 'week' | 'month') {
this.view = view
}
setToday() {
this.selectedDate = new Date()
if (this.view === 'day') {
this.getAppointmentsByDate(this.selectedDate);
this.appointmentForm.get('date').setValue(new TuiDay(this.selectedDate.getFullYear(), this.selectedDate.getMonth(), this.selectedDate.getDate()))
} else if (this.view === 'week') {
this.childComponent.setSelectedDate(this.selectedDate);
this.childComponent.getWeekDates()
this.childComponent.getAppointments()
}
}
getAppointmentsByDate(date: Date) {
@@ -176,12 +201,17 @@ export class AgendaComponent implements OnInit {
protected readonly DateFormatter = DateFormatter;
onDayClick(day: TuiDay) {
this.value = day;
this.selectedDate = new Date(day.year, day.month, day.day);
onDayClick(day: Date) {
this.selectedDate = day
this.toggleCalendar()
if (this.view === 'day') {
this.getAppointmentsByDate(this.selectedDate);
this.appointmentForm.get('date').setValue(new TuiDay(this.selectedDate.getFullYear(), this.selectedDate.getMonth(), this.selectedDate.getDate()))
this.toggleCalendar()
} else if (this.view === 'week') {
this.childComponent.getWeekDates()
}
}
toggleCalendar() {
@@ -234,5 +264,16 @@ export class AgendaComponent implements OnInit {
openSettings() {
this.open = !this.open
}
getWeek() {
const tempDate = new Date(this.selectedDate.getTime());
tempDate.setHours(0, 0, 0, 0);
// Zet de datum naar de donderdag van de week
tempDate.setDate(tempDate.getDate() + (4 - (tempDate.getDay() || 7)));// getDay() kan 0-6 zijn, waarbij 0 zondag is
const yearStart = new Date(tempDate.getFullYear(), 0, 1);
return Math.ceil((((tempDate.getTime() - yearStart.getTime()) / 86400000) + 1) / 7);
}
}

View File

@@ -15,7 +15,7 @@ export class AppointmentService {
}
getAllAppointments() {
return this.http.get<Appointment[]>(`${this.baseApi}`);
return this.http.get<AppointmentDto[]>(`${this.baseApi}`);
}
getAppointmentsByDate(date: Date) {
@@ -25,7 +25,17 @@ export class AppointmentService {
return this.http.get<AppointmentDto[]>(`${this.baseApi}/date?start=${year}-${month}-${day}`, {});
}
addAppointment(appointment: Appointment, companyId: number) {
getAppointmentsByWeek(date: Date, endDate: Date) {
const day = date.getDate().toString().padStart(2, '0')
const month = (date.getMonth() + 1).toString().padStart(2, '0')
const year = date.getFullYear();
const endDay = endDate.getDate().toString().padStart(2, '0')
const endMonth = (endDate.getMonth() + 1).toString().padStart(2, '0')
const endYear = endDate.getFullYear();
return this.http.get<AppointmentDto[]>(`${this.baseApi}/date/week?start=${year}-${month}-${day}&end=${endYear}-${endMonth}-${endDay}`, {});
}
addAppointment(appointment: AppointmentDto, companyId: number) {
return this.http.post<AppointmentDto>(`${this.baseApi}/${companyId}`, appointment);
}