Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BundeslandApp
Please create a React-JS application for the BundeslandModule. The application has to offer the following views for the user interface: 1. BundeslandView 2. StatistikDatensatzView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The BundeslandView must contain the following fields: - name: Abkuerzung type: STRING - name: Name type: STRING - name: Staat type: Staat The data source for the [Staat] select control should be loaded from the relative URL: "/StaatService/staat" (HTTP-GET) An existing Bundesland entity should be loaded from the relative URL: "/BundeslandService/bundesland/{id}" (HTTP-GET) If a new Bundesland entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/bundesland" (HTTP-POST) If an existing Bundesland entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/bundesland/{id}" (HTTP-PUT) If an existing Bundesland entity has to be deleted, the following relative URL should be called: "/BundeslandService/bundesland/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tagespflegeperson columns: - column: Geschlecht - column: IstInGrossTagespflege - column: AktivVon - column: IstPaedFachkraft - column: MaxKinder - column: AktivBis - column: IstOeffentlichGefoerdert - column: Nachname - column: HatPflegeerlaubnis - column: PflegeerlaubnisBis - column: PflegeerlaubnisVon - column: Jugendamt - column: Staat - column: Vorname - column: Bundesland - column: Kommune The table should have the title "Tagespflegepersons" und the data must be loaded from the server with the following relative URL: "/TagespflegepersonService/tagespflegeperson/bundesland/{id}" Add a HTML table to the view with the following Foerderprogramm columns: - column: Bundesland - column: EndDatum - column: Beschreibung - column: Name - column: StartDatum - column: Rechtsgrundlage - column: Staat The table should have the title "Foerderprogramms" und the data must be loaded from the server with the following relative URL: "/FoerderprogrammService/foerderprogramm/bundesland/{id}" Add a HTML table to the view with the following Kind columns: - column: Nachname - column: Vorname - column: Geburtsdatum - column: Kommune - column: Staat - column: Geschlecht - column: Bundesland The table should have the title "Kinds" und the data must be loaded from the server with the following relative URL: "/KindService/kind/bundesland/{id}" Add a HTML table to the view with the following StatistikDatensatz columns: - column: Quelle - column: GrossTagespflegen - column: Tagespflegepersonen - column: KinderInPflege - column: Jahr - column: Monat - column: Staat - column: Bundesland The table should have the title "StatistikDatensatzs" und the data must be loaded from the server with the following relative URL: "/BundeslandService/statistikdatensatz/bundesland/{id}" Add a HTML table to the view with the following Raum columns: - column: IstPrivatwohnung - column: Bundesland - column: Postleitzahl - column: IstGemietet - column: IstAbgenommen - column: Adresse2 - column: Staat - column: Adresse1 - column: Kapazitaet - column: IstElternwohnung - column: Ort - column: Kommune The table should have the title "Raums" und the data must be loaded from the server with the following relative URL: "/JugendamtService/raum/bundesland/{id}" Add a HTML table to the view with the following Verband columns: - column: Bundesland - column: Webseite - column: Staat - column: Name - column: Typ The table should have the title "Verbands" und the data must be loaded from the server with the following relative URL: "/VerbandService/verband/bundesland/{id}" Add a HTML table to the view with the following Haushalt columns: - column: Postleitzahl - column: Einkommensstufe - column: Adresse1 - column: Ort - column: Adresse2 - column: Bundesland - column: Kommune - column: Staat The table should have the title "Haushalts" und the data must be loaded from the server with the following relative URL: "/KommuneService/haushalt/bundesland/{id}" Add a HTML table to the view with the following Kommune columns: - column: Name - column: Bundesland The table should have the title "Kommunes" und the data must be loaded from the server with the following relative URL: "/KommuneService/kommune/bundesland/{id}" 2. The StatistikDatensatzView must contain the following fields: - name: Bundesland type: Bundesland - name: GrossTagespflegen type: LONG - name: Jahr type: LONG - name: KinderInPflege type: LONG - name: Monat type: LONG - name: Quelle type: STRING - name: Staat type: Staat - name: Tagespflegepersonen type: LONG The data source for the [Bundesland] select control should be loaded from the relative URL: "/BundeslandService/bundesland" (HTTP-GET) The data source for the [Staat] select control should be loaded from the relative URL: "/StaatService/staat" (HTTP-GET) An existing StatistikDatensatz entity should be loaded from the relative URL: "/BundeslandService/statistikdatensatz/{id}" (HTTP-GET) If a new StatistikDatensatz entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/statistikdatensatz" (HTTP-POST) If an existing StatistikDatensatz entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/statistikdatensatz/{id}" (HTTP-PUT) If an existing StatistikDatensatz entity has to be deleted, the following relative URL should be called: "/BundeslandService/statistikdatensatz/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum