Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. GesetzlicheBezeichnungView 2. HistorischesEreignisView 3. LandView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The GesetzlicheBezeichnungView must contain the following fields: - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: Land type: Land - name: Name type: STRING - name: SignalSystem type: SignalSystem The data source for the [SignalSystem] select control should be loaded from the relative URL: "/SignalSystemService/signalsystem" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/KreuzungService/gesetz" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing GesetzlicheBezeichnung entity should be loaded from the relative URL: "/LandService/gesetzlichebezeichnung/{id}" (HTTP-GET) If a new GesetzlicheBezeichnung entity has been created, the new entity should be posted to the relative URL: "/LandService/gesetzlichebezeichnung" (HTTP-POST) If an existing GesetzlicheBezeichnung entity has been updated, the modified entity should be sent to the relative URL: "/LandService/gesetzlichebezeichnung/{id}" (HTTP-PUT) If an existing GesetzlicheBezeichnung entity has to be deleted, the following relative URL should be called: "/LandService/gesetzlichebezeichnung/{id}" (HTTP-DELETE) 2. The HistorischesEreignisView must contain the following fields: - name: Beschreibung type: STRING - name: Datum type: DATE - name: Ereignistyp type: STRING - name: Land type: Land - name: SignalInstallation type: SignalInstallation - name: Stadt type: STRING The data source for the [SignalInstallation] select control should be loaded from the relative URL: "/SignalInstallationService/signalinstallation" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing HistorischesEreignis entity should be loaded from the relative URL: "/LandService/historischesereignis/{id}" (HTTP-GET) If a new HistorischesEreignis entity has been created, the new entity should be posted to the relative URL: "/LandService/historischesereignis" (HTTP-POST) If an existing HistorischesEreignis entity has been updated, the modified entity should be sent to the relative URL: "/LandService/historischesereignis/{id}" (HTTP-PUT) If an existing HistorischesEreignis entity has to be deleted, the following relative URL should be called: "/LandService/historischesereignis/{id}" (HTTP-DELETE) 3. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING - name: Region type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Umgangsbezeichnung columns: - column: Beschreibung - column: Sprache - column: Name - column: Land - column: SignalSystem The table should have the title "Umgangsbezeichnungs" und the data must be loaded from the server with the following relative URL: "/SignalInstallationService/umgangsbezeichnung/land/{id}" Add a HTML table to the view with the following LandStandard columns: - column: Standard - column: Land The table should have the title "LandStandards" und the data must be loaded from the server with the following relative URL: "/VerkehrsartService/landstandard/land/{id}" Add a HTML table to the view with the following HistorischesEreignis columns: - column: SignalInstallation - column: Beschreibung - column: Datum - column: Land - column: Stadt - column: Ereignistyp The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/LandService/historischesereignis/land/{id}" Add a HTML table to the view with the following Kreuzung columns: - column: IstKreisverkehrMoeglich - column: AnzahlArme - column: HatFussgaengerueberwege - column: Land - column: Stadt - column: Laengengrad - column: Name - column: HatBusspur - column: HatRadueberwege - column: HatTram - column: Breitengrad The table should have the title "Kreuzungs" und the data must be loaded from the server with the following relative URL: "/KreuzungService/kreuzung/land/{id}" Add a HTML table to the view with the following GesetzlicheBezeichnung columns: - column: Gesetz - column: Beschreibung - column: SignalSystem - column: Land - column: Name The table should have the title "GesetzlicheBezeichnungs" und the data must be loaded from the server with the following relative URL: "/LandService/gesetzlichebezeichnung/land/{id}" Add a HTML table to the view with the following Gesetz columns: - column: Land - column: Beschreibung - column: Name - column: Paragraph The table should have the title "Gesetzs" und the data must be loaded from the server with the following relative URL: "/KreuzungService/gesetz/land/{id}" Add a HTML table to the view with the following TechnischeBezeichnung columns: - column: Beschreibung - column: Name - column: Standard - column: Land - column: SignalSystem The table should have the title "TechnischeBezeichnungs" und the data must be loaded from the server with the following relative URL: "/SignalSystemService/technischebezeichnung/land/{id}" Add a HTML table to the view with the following SignalSystem columns: - column: Name - column: GesetzlicheBezeichnung - column: StandardBezeichnung - column: Beschreibung - column: Land - column: Gesetz The table should have the title "SignalSystems" und the data must be loaded from the server with the following relative URL: "/SignalSystemService/signalsystem/land/{id}" Add a HTML table to the view with the following Standard columns: - column: Name - column: Land - column: Referenzcode - column: Beschreibung - column: Herausgeber The table should have the title "Standards" und the data must be loaded from the server with the following relative URL: "/StandardService/standard/land/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum