Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FamilieApp
Please create a React-JS application for the FamilieModule. The application has to offer the following views for the user interface: 1. FamilieView 2. LeistungsfallView 3. UnterhaltsfallView 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 FamilieView must contain the following fields: - name: Beschreibung type: STRING - name: Bundesland type: STRING - name: Name type: STRING - name: Wohnort type: STRING An existing Familie entity should be loaded from the relative URL: "/FamilieService/familie/{id}" (HTTP-GET) If a new Familie entity has been created, the new entity should be posted to the relative URL: "/FamilieService/familie" (HTTP-POST) If an existing Familie entity has been updated, the modified entity should be sent to the relative URL: "/FamilieService/familie/{id}" (HTTP-PUT) If an existing Familie entity has to be deleted, the following relative URL should be called: "/FamilieService/familie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Familienmitgliedschaft columns: - column: RolleInFamilie - column: VonDatum - column: Familie - column: BisDatum - column: Person The table should have the title "Familienmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/HilfeplanService/familienmitgliedschaft/familie/{id}" Add a HTML table to the view with the following Leistungsfall columns: - column: Familie - column: HilfeplanErforderlich - column: Status - column: RechtsgrundlageParagraf - column: Kind - column: Jugendlicher - column: Antragsteller - column: Ende - column: Beginn - column: Leistungsart - column: Jugendamt The table should have the title "Leistungsfalls" und the data must be loaded from the server with the following relative URL: "/FamilieService/leistungsfall/familie/{id}" Add a HTML table to the view with the following KindeswohlgefaehrdungsHinweis columns: - column: Quelle - column: Familie - column: Meldedatum - column: BetroffenePerson - column: Jugendamt - column: MeldendePerson - column: Beschreibung The table should have the title "KindeswohlgefaehrdungsHinweiss" und the data must be loaded from the server with the following relative URL: "/KindeswohlgefaehrdungsHinweisService/kindeswohlgefaehrdungshinweis/familie/{id}" Add a HTML table to the view with the following InobhutnahmeFall columns: - column: Pflegeperson - column: Beginn - column: GerichtlicheEntscheidung - column: GerichtlicheEntscheidungErforderlich - column: Einrichtung - column: Jugendamt - column: Grund - column: Unterbringungsart - column: Familie - column: Ende - column: GegenWillenSorgeberechtigter - column: BetroffenePerson The table should have the title "InobhutnahmeFalls" und the data must be loaded from the server with the following relative URL: "/FreierTraegerService/inobhutnahmefall/familie/{id}" 2. The LeistungsfallView must contain the following fields: - name: Antragsteller type: Person - name: Beginn type: DATE - name: Ende type: DATE - name: Familie type: Familie - name: HilfeplanErforderlich type: BOOL - name: Jugendamt type: Jugendamt - name: Jugendlicher type: Person - name: Kind type: Person - name: Leistungsart type: Leistungsart - name: RechtsgrundlageParagraf type: STRING - name: Status 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 [Leistungsart] select control should be loaded from the relative URL: "/LeistungsartService/leistungsart" (HTTP-GET) The data source for the [Jugendlicher] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Antragsteller] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Kind] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Familie] select control should be loaded from the relative URL: "/FamilieService/familie" (HTTP-GET) An existing Leistungsfall entity should be loaded from the relative URL: "/FamilieService/leistungsfall/{id}" (HTTP-GET) If a new Leistungsfall entity has been created, the new entity should be posted to the relative URL: "/FamilieService/leistungsfall" (HTTP-POST) If an existing Leistungsfall entity has been updated, the modified entity should be sent to the relative URL: "/FamilieService/leistungsfall/{id}" (HTTP-PUT) If an existing Leistungsfall entity has to be deleted, the following relative URL should be called: "/FamilieService/leistungsfall/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Hilfeplan columns: - column: SchutzplanBeschreibung - column: Erstellungsdatum - column: Zielbeschreibung - column: LetzteFortschreibung - column: Leistungsfall - column: NaechsteUeberpruefung - column: Kontrollmechanismus The table should have the title "Hilfeplans" und the data must be loaded from the server with the following relative URL: "/HilfeplanService/hilfeplan/leistungsfall/{id}" 3. The UnterhaltsfallView must contain the following fields: - name: Beginn type: DATE - name: Beschreibung type: STRING - name: Ende type: DATE - name: Jugendamt type: Jugendamt - name: Kind type: Person - name: Status type: STRING - name: UnterhaltspflichtigePerson type: Person The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) The data source for the [Kind] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [UnterhaltspflichtigePerson] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Unterhaltsfall entity should be loaded from the relative URL: "/FamilieService/unterhaltsfall/{id}" (HTTP-GET) If a new Unterhaltsfall entity has been created, the new entity should be posted to the relative URL: "/FamilieService/unterhaltsfall" (HTTP-POST) If an existing Unterhaltsfall entity has been updated, the modified entity should be sent to the relative URL: "/FamilieService/unterhaltsfall/{id}" (HTTP-PUT) If an existing Unterhaltsfall entity has to be deleted, the following relative URL should be called: "/FamilieService/unterhaltsfall/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum