Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
HilfeplanApp
Please create a React-JS application for the HilfeplanModule. The application has to offer the following views for the user interface: 1. AndereAufgabeView 2. FamilienmitgliedschaftView 3. HilfeplanView 4. HilfeplanBeteiligterView 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 AndereAufgabeView must contain the following fields: - name: Aufgabenart type: STRING - name: Beschreibung type: STRING - name: Jugendamt type: Jugendamt - name: RechtsgrundlageParagraf type: STRING The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) An existing AndereAufgabe entity should be loaded from the relative URL: "/HilfeplanService/andereaufgabe/{id}" (HTTP-GET) If a new AndereAufgabe entity has been created, the new entity should be posted to the relative URL: "/HilfeplanService/andereaufgabe" (HTTP-POST) If an existing AndereAufgabe entity has been updated, the modified entity should be sent to the relative URL: "/HilfeplanService/andereaufgabe/{id}" (HTTP-PUT) If an existing AndereAufgabe entity has to be deleted, the following relative URL should be called: "/HilfeplanService/andereaufgabe/{id}" (HTTP-DELETE) 2. The FamilienmitgliedschaftView must contain the following fields: - name: BisDatum type: DATE - name: Familie type: Familie - name: Person type: Person - name: RolleInFamilie type: STRING - name: VonDatum type: DATE The data source for the [Familie] select control should be loaded from the relative URL: "/FamilieService/familie" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Familienmitgliedschaft entity should be loaded from the relative URL: "/HilfeplanService/familienmitgliedschaft/{id}" (HTTP-GET) If a new Familienmitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/HilfeplanService/familienmitgliedschaft" (HTTP-POST) If an existing Familienmitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/HilfeplanService/familienmitgliedschaft/{id}" (HTTP-PUT) If an existing Familienmitgliedschaft entity has to be deleted, the following relative URL should be called: "/HilfeplanService/familienmitgliedschaft/{id}" (HTTP-DELETE) 3. The HilfeplanView must contain the following fields: - name: Erstellungsdatum type: DATE - name: Kontrollmechanismus type: STRING - name: Leistungsfall type: Leistungsfall - name: LetzteFortschreibung type: DATE - name: NaechsteUeberpruefung type: DATE - name: SchutzplanBeschreibung type: STRING - name: Zielbeschreibung type: STRING The data source for the [Leistungsfall] select control should be loaded from the relative URL: "/FamilieService/leistungsfall" (HTTP-GET) An existing Hilfeplan entity should be loaded from the relative URL: "/HilfeplanService/hilfeplan/{id}" (HTTP-GET) If a new Hilfeplan entity has been created, the new entity should be posted to the relative URL: "/HilfeplanService/hilfeplan" (HTTP-POST) If an existing Hilfeplan entity has been updated, the modified entity should be sent to the relative URL: "/HilfeplanService/hilfeplan/{id}" (HTTP-PUT) If an existing Hilfeplan entity has to be deleted, the following relative URL should be called: "/HilfeplanService/hilfeplan/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HilfeplanBeteiligter columns: - column: Hilfeplan - column: Person - column: Rolle The table should have the title "HilfeplanBeteiligters" und the data must be loaded from the server with the following relative URL: "/HilfeplanService/hilfeplanbeteiligter/hilfeplan/{id}" 4. The HilfeplanBeteiligterView must contain the following fields: - name: Hilfeplan type: Hilfeplan - name: Person type: Person - name: Rolle type: STRING The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Hilfeplan] select control should be loaded from the relative URL: "/HilfeplanService/hilfeplan" (HTTP-GET) An existing HilfeplanBeteiligter entity should be loaded from the relative URL: "/HilfeplanService/hilfeplanbeteiligter/{id}" (HTTP-GET) If a new HilfeplanBeteiligter entity has been created, the new entity should be posted to the relative URL: "/HilfeplanService/hilfeplanbeteiligter" (HTTP-POST) If an existing HilfeplanBeteiligter entity has been updated, the modified entity should be sent to the relative URL: "/HilfeplanService/hilfeplanbeteiligter/{id}" (HTTP-PUT) If an existing HilfeplanBeteiligter entity has to be deleted, the following relative URL should be called: "/HilfeplanService/hilfeplanbeteiligter/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum