Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KinoApp
Please create a React-JS application for the KinoModule. The application has to offer the following views for the user interface: 1. KinoView 2. KinoketteView 3. KinoStatistikJahrView 4. KinoSteuerView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The KinoView must contain the following fields: - name: AnzahlSaeale type: LONG - name: Beschreibung type: STRING - name: Eroeffnungsdatum type: DATE - name: HistorischeBedeutung type: STRING - name: IstInBetrieb type: BOOL - name: Kinokette type: Kinokette - name: Name type: STRING - name: Stadt type: Stadt - name: Webseite type: STRING The data source for the [Stadt] select control should be loaded from the relative URL: "/StadtService/stadt" (HTTP-GET) The data source for the [Kinokette] select control should be loaded from the relative URL: "/KinoService/kinokette" (HTTP-GET) An existing Kino entity should be loaded from the relative URL: "/KinoService/kino/{id}" (HTTP-GET) If a new Kino entity has been created, the new entity should be posted to the relative URL: "/KinoService/kino" (HTTP-POST) If an existing Kino entity has been updated, the modified entity should be sent to the relative URL: "/KinoService/kino/{id}" (HTTP-PUT) If an existing Kino entity has to be deleted, the following relative URL should be called: "/KinoService/kino/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KinoArchitektur columns: - column: Kino - column: BisJahr - column: Architekturstil - column: VonJahr The table should have the title "KinoArchitekturs" und the data must be loaded from the server with the following relative URL: "/ProjektionsTechnikService/kinoarchitektur/kino/{id}" Add a HTML table to the view with the following KinoStatistikJahr columns: - column: Durchschnittspreis - column: Kino - column: Besucher - column: Umsatz - column: Jahr The table should have the title "KinoStatistikJahrs" und the data must be loaded from the server with the following relative URL: "/KinoService/kinostatistikjahr/kino/{id}" Add a HTML table to the view with the following KinoKinomerkmal columns: - column: Kinomerkmal - column: VonDatum - column: Kino - column: BisDatum The table should have the title "KinoKinomerkmals" und the data must be loaded from the server with the following relative URL: "/KinomerkmalService/kinokinomerkmal/kino/{id}" Add a HTML table to the view with the following KinoKinotyp columns: - column: Kinotyp - column: BisDatum - column: VonDatum - column: Kino The table should have the title "KinoKinotyps" und the data must be loaded from the server with the following relative URL: "/KinotypService/kinokinotyp/kino/{id}" Add a HTML table to the view with the following Saal columns: - column: HatGalerie - column: Kapazitaet - column: Name - column: Beschreibung - column: Kino - column: HatBalkon - column: HatBuehne The table should have the title "Saals" und the data must be loaded from the server with the following relative URL: "/SaalService/saal/kino/{id}" Add a HTML table to the view with the following KinoSteuer columns: - column: Kino - column: BisDatum - column: KommunaleVergnuegungssteuerProzent - column: Steuersatz - column: VonDatum The table should have the title "KinoSteuers" und the data must be loaded from the server with the following relative URL: "/KinoService/kinosteuer/kino/{id}" 2. The KinoketteView must contain the following fields: - name: Gruendungsjahr type: LONG - name: HauptsitzStadt type: LONG - name: Name type: STRING - name: Webseite type: STRING An existing Kinokette entity should be loaded from the relative URL: "/KinoService/kinokette/{id}" (HTTP-GET) If a new Kinokette entity has been created, the new entity should be posted to the relative URL: "/KinoService/kinokette" (HTTP-POST) If an existing Kinokette entity has been updated, the modified entity should be sent to the relative URL: "/KinoService/kinokette/{id}" (HTTP-PUT) If an existing Kinokette entity has to be deleted, the following relative URL should be called: "/KinoService/kinokette/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kino columns: - column: IstInBetrieb - column: HistorischeBedeutung - column: Kinokette - column: Stadt - column: Beschreibung - column: Webseite - column: Name - column: AnzahlSaeale - column: Eroeffnungsdatum The table should have the title "Kinos" und the data must be loaded from the server with the following relative URL: "/KinoService/kino/kinokette/{id}" 3. The KinoStatistikJahrView must contain the following fields: - name: Besucher type: LONG - name: Durchschnittspreis type: DOUBLE - name: Jahr type: LONG - name: Kino type: Kino - name: Umsatz type: DOUBLE The data source for the [Kino] select control should be loaded from the relative URL: "/KinoService/kino" (HTTP-GET) An existing KinoStatistikJahr entity should be loaded from the relative URL: "/KinoService/kinostatistikjahr/{id}" (HTTP-GET) If a new KinoStatistikJahr entity has been created, the new entity should be posted to the relative URL: "/KinoService/kinostatistikjahr" (HTTP-POST) If an existing KinoStatistikJahr entity has been updated, the modified entity should be sent to the relative URL: "/KinoService/kinostatistikjahr/{id}" (HTTP-PUT) If an existing KinoStatistikJahr entity has to be deleted, the following relative URL should be called: "/KinoService/kinostatistikjahr/{id}" (HTTP-DELETE) 4. The KinoSteuerView must contain the following fields: - name: BisDatum type: DATE - name: Kino type: Kino - name: KommunaleVergnuegungssteuerProzent type: DOUBLE - name: Steuersatz type: Steuersatz - name: VonDatum type: DATE The data source for the [Steuersatz] select control should be loaded from the relative URL: "/LandService/steuersatz" (HTTP-GET) The data source for the [Kino] select control should be loaded from the relative URL: "/KinoService/kino" (HTTP-GET) An existing KinoSteuer entity should be loaded from the relative URL: "/KinoService/kinosteuer/{id}" (HTTP-GET) If a new KinoSteuer entity has been created, the new entity should be posted to the relative URL: "/KinoService/kinosteuer" (HTTP-POST) If an existing KinoSteuer entity has been updated, the modified entity should be sent to the relative URL: "/KinoService/kinosteuer/{id}" (HTTP-PUT) If an existing KinoSteuer entity has to be deleted, the following relative URL should be called: "/KinoService/kinosteuer/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum