Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FilmApp
Please create a React-JS application for the FilmModule. The application has to offer the following views for the user interface: 1. DigitalStandardView 2. FilmView 3. SaalTonTechnikView 4. TonTechnikView 5. VorstellungView 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 DigitalStandardView must contain the following fields: - name: Beschreibung type: STRING - name: Einfuehrungsjahr type: LONG - name: Name type: STRING An existing DigitalStandard entity should be loaded from the relative URL: "/FilmService/digitalstandard/{id}" (HTTP-GET) If a new DigitalStandard entity has been created, the new entity should be posted to the relative URL: "/FilmService/digitalstandard" (HTTP-POST) If an existing DigitalStandard entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/digitalstandard/{id}" (HTTP-PUT) If an existing DigitalStandard entity has to be deleted, the following relative URL should be called: "/FilmService/digitalstandard/{id}" (HTTP-DELETE) 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/digitalstandard/{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/digitalstandard/{id}" 2. The FilmView must contain the following fields: - name: Erscheinungsjahr type: LONG - name: Ist3D type: BOOL - name: IstAnimation type: BOOL - name: IstStummfilm type: BOOL - name: LaufzeitMinuten type: LONG - name: OriginalTitel type: STRING - name: Produktionsland type: LONG - name: Titel type: STRING An existing Film entity should be loaded from the relative URL: "/FilmService/film/{id}" (HTTP-GET) If a new Film entity has been created, the new entity should be posted to the relative URL: "/FilmService/film" (HTTP-POST) If an existing Film entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/film/{id}" (HTTP-PUT) If an existing Film entity has to be deleted, the following relative URL should be called: "/FilmService/film/{id}" (HTTP-DELETE) 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/film/{id}" Add a HTML table to the view with the following FilmFilmformat columns: - column: Filmformat - column: Film The table should have the title "FilmFilmformats" und the data must be loaded from the server with the following relative URL: "/KinotypService/filmfilmformat/filmformat/{id}" Add a HTML table to the view with the following FilmFilmformat columns: - column: Filmformat - column: Film The table should have the title "FilmFilmformats" und the data must be loaded from the server with the following relative URL: "/KinotypService/filmfilmformat/film/{id}" 3. The SaalTonTechnikView must contain the following fields: - name: BisDatum type: DATE - name: Saal type: Saal - name: TonTechnik type: TonTechnik - name: VonDatum type: DATE The data source for the [TonTechnik] select control should be loaded from the relative URL: "/FilmService/tontechnik" (HTTP-GET) The data source for the [Saal] select control should be loaded from the relative URL: "/SaalService/saal" (HTTP-GET) An existing SaalTonTechnik entity should be loaded from the relative URL: "/FilmService/saaltontechnik/{id}" (HTTP-GET) If a new SaalTonTechnik entity has been created, the new entity should be posted to the relative URL: "/FilmService/saaltontechnik" (HTTP-POST) If an existing SaalTonTechnik entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/saaltontechnik/{id}" (HTTP-PUT) If an existing SaalTonTechnik entity has to be deleted, the following relative URL should be called: "/FilmService/saaltontechnik/{id}" (HTTP-DELETE) 4. The TonTechnikView must contain the following fields: - name: Beschreibung type: STRING - name: IstSurround type: BOOL - name: Name type: STRING An existing TonTechnik entity should be loaded from the relative URL: "/FilmService/tontechnik/{id}" (HTTP-GET) If a new TonTechnik entity has been created, the new entity should be posted to the relative URL: "/FilmService/tontechnik" (HTTP-POST) If an existing TonTechnik entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/tontechnik/{id}" (HTTP-PUT) If an existing TonTechnik entity has to be deleted, the following relative URL should be called: "/FilmService/tontechnik/{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/tontechnik/{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/tontechnik/{id}" 5. The VorstellungView must contain the following fields: - name: BasisTicketpreis type: DOUBLE - name: DigitalStandard type: DigitalStandard - name: Endzeit type: DATE - name: Film type: Film - name: Ist3D type: BOOL - name: IstEffektkino type: BOOL - name: ProjektionsTechnik type: ProjektionsTechnik - name: Saal type: Saal - name: Sprachversion type: STRING - name: Startzeit type: DATE - name: TonTechnik type: TonTechnik The data source for the [Film] select control should be loaded from the relative URL: "/FilmService/film" (HTTP-GET) The data source for the [TonTechnik] select control should be loaded from the relative URL: "/FilmService/tontechnik" (HTTP-GET) The data source for the [DigitalStandard] select control should be loaded from the relative URL: "/FilmService/digitalstandard" (HTTP-GET) 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 Vorstellung entity should be loaded from the relative URL: "/FilmService/vorstellung/{id}" (HTTP-GET) If a new Vorstellung entity has been created, the new entity should be posted to the relative URL: "/FilmService/vorstellung" (HTTP-POST) If an existing Vorstellung entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/vorstellung/{id}" (HTTP-PUT) If an existing Vorstellung entity has to be deleted, the following relative URL should be called: "/FilmService/vorstellung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ticket columns: - column: Steuersatz - column: Verkaufszeit - column: IstErmaessigt - column: Vorstellung - column: PreisGezahlt The table should have the title "Tickets" und the data must be loaded from the server with the following relative URL: "/LandService/ticket/vorstellung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum