Add movie search and schedule header components

Introduces MovieSearchComponent, ScheduleHeaderComponent, and MovieScheduleNoSearchResultComponent for improved movie search and schedule display. Updates schedule and navbar to support search functionality and UI enhancements. Adds movie fetching to HttpService and refines layout and styles for better user experience.
This commit is contained in:
2025-11-05 01:04:56 +01:00
parent 5cf71a43ed
commit 0bd3887701
17 changed files with 174 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
import {Kinosaal, Sitzplatz, Vorstellung} from '@infinimotion/model-frontend';
import { Kinosaal, Sitzplatz, Vorstellung, Film } from '@infinimotion/model-frontend';
import { HttpClient } from "@angular/common/http";
import { inject, Injectable } from "@angular/core";
import { Observable } from "rxjs";
@@ -67,6 +67,13 @@ export class HttpService {
}
/* Vorstellung APIs */
/* GET /api/film */
getMovies(): Observable<Film[]> {
return this.http.get<Film[]>(`${this.baseUrl}film`);
}
/* Show-Seats APIs*/