Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SaalApp
Please create a React-JS application for the SaalModule. The application has to offer the following views for the user interface: 1. SaalView 2. SaalProjektionsTechnikView 3. SitzView 4. SitzkategorieView 5. SitzReservierungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The SaalView must contain the following fields: - name: Beschreibung type: STRING - name: HatBalkon type: BOOL - name: HatBuehne type: BOOL - name: HatGalerie type: BOOL - name: Kapazitaet type: LONG - name: Kino type: Kino - name: Name type: STRING The data source for the [Kino] select control should be loaded from the relative URL: "/KinoService/kino" (HTTP-GET) An existing Saal entity should be loaded from the relative URL: "/SaalService/saal/{id}" (HTTP-GET) If a new Saal entity has been created, the new entity should be posted to the relative URL: "/SaalService/saal" (HTTP-POST) If an existing Saal entity has been updated, the modified entity should be sent to the relative URL: "/SaalService/saal/{id}" (HTTP-PUT) If an existing Saal entity has to be deleted, the following relative URL should be called: "/SaalService/saal/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SaalTonTechnik columns: - column: TonTechnik - column: Saal - column: BisDatum - column: VonDatum The table should have the title "SaalTonTechniks" und the data must be loaded from the server with the following relative URL: "/FilmService/saaltontechnik/saal/{id}" Add a HTML table to the view with the following SaalProjektionsTechnik columns: - column: BisDatum - column: ProjektionsTechnik - column: Saal - column: VonDatum The table should have the title "SaalProjektionsTechniks" und the data must be loaded from the server with the following relative URL: "/SaalService/saalprojektionstechnik/saal/{id}" Add a HTML table to the view with the following Vorstellung columns: - column: Saal - column: ProjektionsTechnik - column: DigitalStandard - column: Film - column: Sprachversion - column: Endzeit - column: Startzeit - column: Ist3D - column: IstEffektkino - column: BasisTicketpreis - column: TonTechnik The table should have the title "Vorstellungs" und the data must be loaded from the server with the following relative URL: "/FilmService/vorstellung/saal/{id}" Add a HTML table to the view with the following Sitz columns: - column: Nummer - column: Sitzkategorie - column: Saal - column: IstBarrierefrei - column: Reihe The table should have the title "Sitzs" und the data must be loaded from the server with the following relative URL: "/SaalService/sitz/saal/{id}" Add a HTML table to the view with the following SaalDigitalStandard columns: - column: VonDatum - column: DigitalStandard - column: BisDatum - column: Saal The table should have the title "SaalDigitalStandards" und the data must be loaded from the server with the following relative URL: "/StadtService/saaldigitalstandard/saal/{id}" 2. The SaalProjektionsTechnikView must contain the following fields: - name: BisDatum type: DATE - name: ProjektionsTechnik type: ProjektionsTechnik - name: Saal type: Saal - name: VonDatum type: DATE The data source for the [ProjektionsTechnik] select control should be loaded from the relative URL: "/ProjektionsTechnikService/projektionstechnik" (HTTP-GET) The data source for the [Saal] select control should be loaded from the relative URL: "/SaalService/saal" (HTTP-GET) An existing SaalProjektionsTechnik entity should be loaded from the relative URL: "/SaalService/saalprojektionstechnik/{id}" (HTTP-GET) If a new SaalProjektionsTechnik entity has been created, the new entity should be posted to the relative URL: "/SaalService/saalprojektionstechnik" (HTTP-POST) If an existing SaalProjektionsTechnik entity has been updated, the modified entity should be sent to the relative URL: "/SaalService/saalprojektionstechnik/{id}" (HTTP-PUT) If an existing SaalProjektionsTechnik entity has to be deleted, the following relative URL should be called: "/SaalService/saalprojektionstechnik/{id}" (HTTP-DELETE) 3. The SitzView must contain the following fields: - name: IstBarrierefrei type: BOOL - name: Nummer type: STRING - name: Reihe type: STRING - name: Saal type: Saal - name: Sitzkategorie type: Sitzkategorie The data source for the [Sitzkategorie] select control should be loaded from the relative URL: "/SaalService/sitzkategorie" (HTTP-GET) The data source for the [Saal] select control should be loaded from the relative URL: "/SaalService/saal" (HTTP-GET) An existing Sitz entity should be loaded from the relative URL: "/SaalService/sitz/{id}" (HTTP-GET) If a new Sitz entity has been created, the new entity should be posted to the relative URL: "/SaalService/sitz" (HTTP-POST) If an existing Sitz entity has been updated, the modified entity should be sent to the relative URL: "/SaalService/sitz/{id}" (HTTP-PUT) If an existing Sitz entity has to be deleted, the following relative URL should be called: "/SaalService/sitz/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SitzReservierung columns: - column: Sitz - column: Ticket The table should have the title "SitzReservierungs" und the data must be loaded from the server with the following relative URL: "/SaalService/sitzreservierung/sitz/{id}" 4. The SitzkategorieView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Sitzkategorie entity should be loaded from the relative URL: "/SaalService/sitzkategorie/{id}" (HTTP-GET) If a new Sitzkategorie entity has been created, the new entity should be posted to the relative URL: "/SaalService/sitzkategorie" (HTTP-POST) If an existing Sitzkategorie entity has been updated, the modified entity should be sent to the relative URL: "/SaalService/sitzkategorie/{id}" (HTTP-PUT) If an existing Sitzkategorie entity has to be deleted, the following relative URL should be called: "/SaalService/sitzkategorie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Sitz columns: - column: Nummer - column: Sitzkategorie - column: Saal - column: IstBarrierefrei - column: Reihe The table should have the title "Sitzs" und the data must be loaded from the server with the following relative URL: "/SaalService/sitz/sitzkategorie/{id}" 5. The SitzReservierungView must contain the following fields: - name: Sitz type: Sitz - name: Ticket type: Ticket The data source for the [Ticket] select control should be loaded from the relative URL: "/LandService/ticket" (HTTP-GET) The data source for the [Sitz] select control should be loaded from the relative URL: "/SaalService/sitz" (HTTP-GET) An existing SitzReservierung entity should be loaded from the relative URL: "/SaalService/sitzreservierung/{id}" (HTTP-GET) If a new SitzReservierung entity has been created, the new entity should be posted to the relative URL: "/SaalService/sitzreservierung" (HTTP-POST) If an existing SitzReservierung entity has been updated, the modified entity should be sent to the relative URL: "/SaalService/sitzreservierung/{id}" (HTTP-PUT) If an existing SitzReservierung entity has to be deleted, the following relative URL should be called: "/SaalService/sitzreservierung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum