Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandesverbandApp
Please create a React-JS application for the LandesverbandModule. The application has to offer the following views for the user interface: 1. AuslandseinheitArtView 2. JugendgruppeView 3. JugendmitgliedschaftView 4. LandesverbandView 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 AuslandseinheitArtView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing AuslandseinheitArt entity should be loaded from the relative URL: "/LandesverbandService/auslandseinheitart/{id}" (HTTP-GET) If a new AuslandseinheitArt entity has been created, the new entity should be posted to the relative URL: "/LandesverbandService/auslandseinheitart" (HTTP-POST) If an existing AuslandseinheitArt entity has been updated, the modified entity should be sent to the relative URL: "/LandesverbandService/auslandseinheitart/{id}" (HTTP-PUT) If an existing AuslandseinheitArt entity has to be deleted, the following relative URL should be called: "/LandesverbandService/auslandseinheitart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Auslandseinheit columns: - column: TechnischesHilfswerk - column: AuslandseinheitArt - column: Name - column: BasisLand - column: BasisStadt The table should have the title "Auslandseinheits" und the data must be loaded from the server with the following relative URL: "/TechnischesHilfswerkService/auslandseinheit/auslandseinheitart/{id}" 2. The JugendgruppeView must contain the following fields: - name: Name type: STRING - name: Ortsverband type: Ortsverband The data source for the [Ortsverband] select control should be loaded from the relative URL: "/OrtsverbandService/ortsverband" (HTTP-GET) An existing Jugendgruppe entity should be loaded from the relative URL: "/LandesverbandService/jugendgruppe/{id}" (HTTP-GET) If a new Jugendgruppe entity has been created, the new entity should be posted to the relative URL: "/LandesverbandService/jugendgruppe" (HTTP-POST) If an existing Jugendgruppe entity has been updated, the modified entity should be sent to the relative URL: "/LandesverbandService/jugendgruppe/{id}" (HTTP-PUT) If an existing Jugendgruppe entity has to be deleted, the following relative URL should be called: "/LandesverbandService/jugendgruppe/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Jugendmitgliedschaft columns: - column: BisDatum - column: Person - column: VonDatum - column: Jugendgruppe The table should have the title "Jugendmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/LandesverbandService/jugendmitgliedschaft/jugendgruppe/{id}" 3. The JugendmitgliedschaftView must contain the following fields: - name: BisDatum type: DATE - name: Jugendgruppe type: Jugendgruppe - name: Person type: Person - name: VonDatum type: DATE The data source for the [Jugendgruppe] select control should be loaded from the relative URL: "/LandesverbandService/jugendgruppe" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Jugendmitgliedschaft entity should be loaded from the relative URL: "/LandesverbandService/jugendmitgliedschaft/{id}" (HTTP-GET) If a new Jugendmitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/LandesverbandService/jugendmitgliedschaft" (HTTP-POST) If an existing Jugendmitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/LandesverbandService/jugendmitgliedschaft/{id}" (HTTP-PUT) If an existing Jugendmitgliedschaft entity has to be deleted, the following relative URL should be called: "/LandesverbandService/jugendmitgliedschaft/{id}" (HTTP-DELETE) 4. The LandesverbandView must contain the following fields: - name: Kennung type: STRING - name: Name type: STRING - name: SitzBundesland type: STRING - name: SitzStadt type: STRING - name: TechnischesHilfswerk type: TechnischesHilfswerk The data source for the [TechnischesHilfswerk] select control should be loaded from the relative URL: "/TechnischesHilfswerkService/technischeshilfswerk" (HTTP-GET) An existing Landesverband entity should be loaded from the relative URL: "/LandesverbandService/landesverband/{id}" (HTTP-GET) If a new Landesverband entity has been created, the new entity should be posted to the relative URL: "/LandesverbandService/landesverband" (HTTP-POST) If an existing Landesverband entity has been updated, the modified entity should be sent to the relative URL: "/LandesverbandService/landesverband/{id}" (HTTP-PUT) If an existing Landesverband entity has to be deleted, the following relative URL should be called: "/LandesverbandService/landesverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Logistikzentrum columns: - column: StandortStadt - column: Name - column: Landesverband - column: Schwerpunkt - column: TechnischesHilfswerk - column: StandortBundesland The table should have the title "Logistikzentrums" und the data must be loaded from the server with the following relative URL: "/TechnischesHilfswerkService/logistikzentrum/landesverband/{id}" Add a HTML table to the view with the following Personenrolle columns: - column: Regionalstelle - column: Ausbildungszentrum - column: Landesverband - column: Person - column: Rollenart - column: TechnischerZug - column: VonDatum - column: Ortsverband - column: BisDatum - column: Logistikzentrum - column: IstAktuell The table should have the title "Personenrolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/landesverband/{id}" Add a HTML table to the view with the following Regionalstelle columns: - column: SitzBundesland - column: Landesverband - column: SitzStadt - column: Name The table should have the title "Regionalstelles" und the data must be loaded from the server with the following relative URL: "/PersonService/regionalstelle/landesverband/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum