seats are now selectable. returns list of selected seats. colors might not work anymore. 😢😢

This commit is contained in:
Marcel-Anker
2025-11-12 19:33:28 +01:00
parent 5699f23540
commit c0f022e65c
6 changed files with 1687 additions and 386 deletions

View File

@@ -1,6 +1,7 @@
import {Component, input} from '@angular/core';
import {Component, inject, input, OnInit, output} from '@angular/core';
import {TheaterSeatState} from '../model/theater-seat-state.model';
import {Sitzkategorie} from '@infinimotion/model-frontend';
import {Sitzkategorie, Sitzplatz} from '@infinimotion/model-frontend';
import {SelectedSeatsService} from '../selected-seats.service';
@Component({
selector: 'app-seat',
@@ -8,19 +9,36 @@ import {Sitzkategorie} from '@infinimotion/model-frontend';
templateUrl: './seat.component.html',
styleUrl: './seat.component.css'
})
export class SeatComponent {
seatState = input.required<TheaterSeatState>();
seatCategory = input.required<Sitzkategorie>();
export class SeatComponent{
seat = input.required<Sitzplatz>();
state = input.required<TheaterSeatState>()
selected: boolean = false;
private seatService = inject(SelectedSeatsService)
getSeatStateColor(): any {
switch (this.seatState()) {
switch (this.state()) {
case TheaterSeatState.RESERVED:
return {'color': 'orange'};
return 'orange';
case TheaterSeatState.BOOKED:
return {'color': 'red'};
return 'red';
default:
case TheaterSeatState.AVAILABLE:
return {'color': 'black'};
return 'black';
}
}
updateSelectedSeats(selectedSeat: Sitzplatz) : void {
if(!this.selected){
this.seatService.pushSelectedSeat(selectedSeat);
} else {
this.seatService.removeSelectedSeat(selectedSeat);
}
this.selected = !this.selected;
//console.log(this.selected)
}
protected readonly TheaterSeatState = TheaterSeatState;
}