Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KindApp
Please create a React-JS application for the KindModule. The application has to offer the following views for the user interface: 1. BetreuungsverhaeltnisView 2. KindView 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 BetreuungsverhaeltnisView must contain the following fields: - name: EndDatum type: DATE - name: IstOeffentlich type: BOOL - name: IstPrivat type: BOOL - name: Jugendamt type: Jugendamt - name: Kind type: Kind - name: Raum type: Raum - name: StartDatum type: DATE - name: StundenProWoche type: STRING - name: Tagespflegeperson type: Tagespflegeperson - name: Typ type: STRING 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) The data source for the [Tagespflegeperson] select control should be loaded from the relative URL: "/TagespflegepersonService/tagespflegeperson" (HTTP-GET) The data source for the [Kind] select control should be loaded from the relative URL: "/KindService/kind" (HTTP-GET) An existing Betreuungsverhaeltnis entity should be loaded from the relative URL: "/KindService/betreuungsverhaeltnis/{id}" (HTTP-GET) If a new Betreuungsverhaeltnis entity has been created, the new entity should be posted to the relative URL: "/KindService/betreuungsverhaeltnis" (HTTP-POST) If an existing Betreuungsverhaeltnis entity has been updated, the modified entity should be sent to the relative URL: "/KindService/betreuungsverhaeltnis/{id}" (HTTP-PUT) If an existing Betreuungsverhaeltnis entity has to be deleted, the following relative URL should be called: "/KindService/betreuungsverhaeltnis/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BetreuungFoerderung columns: - column: Monatsbetrag - column: BisDatum - column: Betreuungsverhaeltnis - column: Foerderprogramm - column: VonDatum - column: IstVollfoerderung The table should have the title "BetreuungFoerderungs" und the data must be loaded from the server with the following relative URL: "/FoerderprogrammService/betreuungfoerderung/betreuungsverhaeltnis/{id}" Add a HTML table to the view with the following Elternbeitrag columns: - column: ZahlerTyp - column: Betrag - column: Waehrung - column: IstEinkommensabhaengig - column: Haushalt - column: Betreuungsverhaeltnis - column: VonDatum - column: BisDatum The table should have the title "Elternbeitrags" und the data must be loaded from the server with the following relative URL: "/KommuneService/elternbeitrag/betreuungsverhaeltnis/{id}" 2. The KindView must contain the following fields: - name: Bundesland type: Bundesland - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: Kommune type: Kommune - name: Nachname type: STRING - name: Staat type: Staat - name: Vorname type: STRING 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 Kind entity should be loaded from the relative URL: "/KindService/kind/{id}" (HTTP-GET) If a new Kind entity has been created, the new entity should be posted to the relative URL: "/KindService/kind" (HTTP-POST) If an existing Kind entity has been updated, the modified entity should be sent to the relative URL: "/KindService/kind/{id}" (HTTP-PUT) If an existing Kind entity has to be deleted, the following relative URL should be called: "/KindService/kind/{id}" (HTTP-DELETE) 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/kind/{id}" Add a HTML table to the view with the following KindElternteil columns: - column: Kind - column: Beziehung - column: Elternteil - column: HatSorgerecht The table should have the title "KindElternteils" und the data must be loaded from the server with the following relative URL: "/ElternteilService/kindelternteil/kind/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum