Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
JugendamtApp
Please create a React-JS application for the JugendamtModule. The application has to offer the following views for the user interface: 1. GrossTagespflegeView 2. JugendamtView 3. RaumView 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 GrossTagespflegeView must contain the following fields: - name: EndDatum type: DATE - name: Jugendamt type: Jugendamt - name: Name type: STRING - name: Raum type: Raum - name: StartDatum type: DATE The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) The data source for the [Raum] select control should be loaded from the relative URL: "/JugendamtService/raum" (HTTP-GET) An existing GrossTagespflege entity should be loaded from the relative URL: "/JugendamtService/grosstagespflege/{id}" (HTTP-GET) If a new GrossTagespflege entity has been created, the new entity should be posted to the relative URL: "/JugendamtService/grosstagespflege" (HTTP-POST) If an existing GrossTagespflege entity has been updated, the modified entity should be sent to the relative URL: "/JugendamtService/grosstagespflege/{id}" (HTTP-PUT) If an existing GrossTagespflege entity has to be deleted, the following relative URL should be called: "/JugendamtService/grosstagespflege/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GrossTagespflegeMitgliedschaft columns: - column: VonDatum - column: GrossTagespflege - column: Tagespflegeperson - column: BisDatum - column: Rolle The table should have the title "GrossTagespflegeMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/TagespflegepersonService/grosstagespflegemitgliedschaft/grosstagespflege/{id}" 2. The JugendamtView must contain the following fields: - name: Email type: STRING - name: Kommune type: Kommune - name: Name type: STRING - name: Telefon type: STRING - name: Typ type: STRING The data source for the [Kommune] select control should be loaded from the relative URL: "/KommuneService/kommune" (HTTP-GET) An existing Jugendamt entity should be loaded from the relative URL: "/JugendamtService/jugendamt/{id}" (HTTP-GET) If a new Jugendamt entity has been created, the new entity should be posted to the relative URL: "/JugendamtService/jugendamt" (HTTP-POST) If an existing Jugendamt entity has been updated, the modified entity should be sent to the relative URL: "/JugendamtService/jugendamt/{id}" (HTTP-PUT) If an existing Jugendamt entity has to be deleted, the following relative URL should be called: "/JugendamtService/jugendamt/{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/jugendamt/{id}" Add a HTML table to the view with the following GrossTagespflege columns: - column: StartDatum - column: EndDatum - column: Raum - column: Name - column: Jugendamt The table should have the title "GrossTagespfleges" und the data must be loaded from the server with the following relative URL: "/JugendamtService/grosstagespflege/jugendamt/{id}" Add a HTML table to the view with the following Betreuungsverhaeltnis columns: - column: Kind - column: Tagespflegeperson - column: IstOeffentlich - column: StundenProWoche - column: Raum - column: IstPrivat - column: EndDatum - column: Typ - column: StartDatum - column: Jugendamt The table should have the title "Betreuungsverhaeltniss" und the data must be loaded from the server with the following relative URL: "/KindService/betreuungsverhaeltnis/jugendamt/{id}" 3. The RaumView must contain the following fields: - name: Adresse1 type: STRING - name: Adresse2 type: STRING - name: Bundesland type: Bundesland - name: IstAbgenommen type: BOOL - name: IstElternwohnung type: BOOL - name: IstGemietet type: BOOL - name: IstPrivatwohnung type: BOOL - name: Kapazitaet type: LONG - name: Kommune type: Kommune - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Staat type: Staat 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) The data source for the [Kommune] select control should be loaded from the relative URL: "/KommuneService/kommune" (HTTP-GET) An existing Raum entity should be loaded from the relative URL: "/JugendamtService/raum/{id}" (HTTP-GET) If a new Raum entity has been created, the new entity should be posted to the relative URL: "/JugendamtService/raum" (HTTP-POST) If an existing Raum entity has been updated, the modified entity should be sent to the relative URL: "/JugendamtService/raum/{id}" (HTTP-PUT) If an existing Raum entity has to be deleted, the following relative URL should be called: "/JugendamtService/raum/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GrossTagespflege columns: - column: StartDatum - column: EndDatum - column: Raum - column: Name - column: Jugendamt The table should have the title "GrossTagespfleges" und the data must be loaded from the server with the following relative URL: "/JugendamtService/grosstagespflege/raum/{id}" Add a HTML table to the view with the following Betreuungsverhaeltnis columns: - column: Kind - column: Tagespflegeperson - column: IstOeffentlich - column: StundenProWoche - column: Raum - column: IstPrivat - column: EndDatum - column: Typ - column: StartDatum - column: Jugendamt The table should have the title "Betreuungsverhaeltniss" und the data must be loaded from the server with the following relative URL: "/KindService/betreuungsverhaeltnis/raum/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum