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. LandView 2. RechtsgrundlageView 3. VerkehrszeichenSystemView 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 LandView must contain the following fields: - name: AmtlicherName type: STRING - 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 VerkehrszeichenSystem columns: - column: Name - column: Land - column: Rechtsgrundlage - column: Beschreibung - column: GueltigVon - column: GueltigBis The table should have the title "VerkehrszeichenSystems" und the data must be loaded from the server with the following relative URL: "/LandService/verkehrszeichensystem/land/{id}" Add a HTML table to the view with the following Rechtsgrundlage columns: - column: Titel - column: Kurztitel - column: ArtikelOderParagraph - column: Fundstelle - column: Land - column: GueltigBis - column: GueltigVon The table should have the title "Rechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/LandService/rechtsgrundlage/land/{id}" Add a HTML table to the view with the following Behoerde columns: - column: Beschreibung - column: Behoerdenart - column: Name - column: Land The table should have the title "Behoerdes" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/behoerde/land/{id}" Add a HTML table to the view with the following ZusatzBeschilderung columns: - column: StandortBeschreibung - column: Name - column: Land - column: ZusatzBeschilderungTyp - column: IstAmtlich - column: Beschreibung - column: Behoerde The table should have the title "ZusatzBeschilderungs" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/zusatzbeschilderung/land/{id}" Add a HTML table to the view with the following KonventionsLand columns: - column: Land - column: Hinweise - column: InternationaleKonvention - column: Ratifikationsdatum The table should have the title "KonventionsLands" und the data must be loaded from the server with the following relative URL: "/InternationaleKonventionService/konventionsland/land/{id}" 2. The RechtsgrundlageView must contain the following fields: - name: ArtikelOderParagraph type: STRING - name: Fundstelle type: STRING - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: Kurztitel type: STRING - name: Land type: Land - name: Titel type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Rechtsgrundlage entity should be loaded from the relative URL: "/LandService/rechtsgrundlage/{id}" (HTTP-GET) If a new Rechtsgrundlage entity has been created, the new entity should be posted to the relative URL: "/LandService/rechtsgrundlage" (HTTP-POST) If an existing Rechtsgrundlage entity has been updated, the modified entity should be sent to the relative URL: "/LandService/rechtsgrundlage/{id}" (HTTP-PUT) If an existing Rechtsgrundlage entity has to be deleted, the following relative URL should be called: "/LandService/rechtsgrundlage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verkehrszeichen columns: - column: VerkehrszeichenSystem - column: GueltigVon - column: Beschreibung - column: GueltigBis - column: IstMarkierung - column: IstAmtlich - column: IstVariabel - column: Code - column: ZeichenKategorie - column: Rechtsgrundlage - column: ZeichenForm - column: Kurzbezeichnung - column: ZeichenFunktion - column: Piktogramm - column: Langbezeichnung - column: Farbschema - column: Behoerde The table should have the title "Verkehrszeichens" und the data must be loaded from the server with the following relative URL: "/VerkehrszeichenService/verkehrszeichen/rechtsgrundlage/{id}" Add a HTML table to the view with the following VerkehrszeichenSystem columns: - column: Name - column: Land - column: Rechtsgrundlage - column: Beschreibung - column: GueltigVon - column: GueltigBis The table should have the title "VerkehrszeichenSystems" und the data must be loaded from the server with the following relative URL: "/LandService/verkehrszeichensystem/rechtsgrundlage/{id}" 3. The VerkehrszeichenSystemView must contain the following fields: - name: Beschreibung type: STRING - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: Land type: Land - name: Name type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/LandService/rechtsgrundlage" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing VerkehrszeichenSystem entity should be loaded from the relative URL: "/LandService/verkehrszeichensystem/{id}" (HTTP-GET) If a new VerkehrszeichenSystem entity has been created, the new entity should be posted to the relative URL: "/LandService/verkehrszeichensystem" (HTTP-POST) If an existing VerkehrszeichenSystem entity has been updated, the modified entity should be sent to the relative URL: "/LandService/verkehrszeichensystem/{id}" (HTTP-PUT) If an existing VerkehrszeichenSystem entity has to be deleted, the following relative URL should be called: "/LandService/verkehrszeichensystem/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Verkehrszeichen columns: - column: VerkehrszeichenSystem - column: GueltigVon - column: Beschreibung - column: GueltigBis - column: IstMarkierung - column: IstAmtlich - column: IstVariabel - column: Code - column: ZeichenKategorie - column: Rechtsgrundlage - column: ZeichenForm - column: Kurzbezeichnung - column: ZeichenFunktion - column: Piktogramm - column: Langbezeichnung - column: Farbschema - column: Behoerde The table should have the title "Verkehrszeichens" und the data must be loaded from the server with the following relative URL: "/VerkehrszeichenService/verkehrszeichen/verkehrszeichensystem/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum