Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
NetzwerkFrueheHilfenApp
Please create a React-JS application for the NetzwerkFrueheHilfenModule. The application has to offer the following views for the user interface: 1. AusschussMitgliedView 2. NetzwerkFrueheHilfenView 3. NetzwerkTeilnehmerView 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 AusschussMitgliedView must contain the following fields: - name: BisDatum type: DATE - name: EntsendedurchOrganisation type: STRING - name: Jugendhilfeausschuss type: Jugendhilfeausschuss - name: Mitgliedsrolle type: STRING - name: Person type: Person - name: VonDatum type: DATE The data source for the [Jugendhilfeausschuss] select control should be loaded from the relative URL: "/JugendamtService/jugendhilfeausschuss" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing AusschussMitglied entity should be loaded from the relative URL: "/NetzwerkFrueheHilfenService/ausschussmitglied/{id}" (HTTP-GET) If a new AusschussMitglied entity has been created, the new entity should be posted to the relative URL: "/NetzwerkFrueheHilfenService/ausschussmitglied" (HTTP-POST) If an existing AusschussMitglied entity has been updated, the modified entity should be sent to the relative URL: "/NetzwerkFrueheHilfenService/ausschussmitglied/{id}" (HTTP-PUT) If an existing AusschussMitglied entity has to be deleted, the following relative URL should be called: "/NetzwerkFrueheHilfenService/ausschussmitglied/{id}" (HTTP-DELETE) 2. The NetzwerkFrueheHilfenView must contain the following fields: - name: Beginn type: DATE - name: Beschreibung type: STRING - name: Ende type: DATE - name: Jugendamt type: Jugendamt - name: Name type: STRING The data source for the [Jugendamt] select control should be loaded from the relative URL: "/JugendamtService/jugendamt" (HTTP-GET) An existing NetzwerkFrueheHilfen entity should be loaded from the relative URL: "/NetzwerkFrueheHilfenService/netzwerkfruehehilfen/{id}" (HTTP-GET) If a new NetzwerkFrueheHilfen entity has been created, the new entity should be posted to the relative URL: "/NetzwerkFrueheHilfenService/netzwerkfruehehilfen" (HTTP-POST) If an existing NetzwerkFrueheHilfen entity has been updated, the modified entity should be sent to the relative URL: "/NetzwerkFrueheHilfenService/netzwerkfruehehilfen/{id}" (HTTP-PUT) If an existing NetzwerkFrueheHilfen entity has to be deleted, the following relative URL should be called: "/NetzwerkFrueheHilfenService/netzwerkfruehehilfen/{id}" (HTTP-DELETE) Add a HTML table to the view with the following NetzwerkTeilnehmer columns: - column: Kontaktperson - column: Beschreibung - column: Organisationstyp - column: NetzwerkFrueheHilfen - column: OrganisationName The table should have the title "NetzwerkTeilnehmers" und the data must be loaded from the server with the following relative URL: "/NetzwerkFrueheHilfenService/netzwerkteilnehmer/netzwerkfruehehilfen/{id}" 3. The NetzwerkTeilnehmerView must contain the following fields: - name: Beschreibung type: STRING - name: Kontaktperson type: STRING - name: NetzwerkFrueheHilfen type: NetzwerkFrueheHilfen - name: OrganisationName type: STRING - name: Organisationstyp type: STRING The data source for the [NetzwerkFrueheHilfen] select control should be loaded from the relative URL: "/NetzwerkFrueheHilfenService/netzwerkfruehehilfen" (HTTP-GET) An existing NetzwerkTeilnehmer entity should be loaded from the relative URL: "/NetzwerkFrueheHilfenService/netzwerkteilnehmer/{id}" (HTTP-GET) If a new NetzwerkTeilnehmer entity has been created, the new entity should be posted to the relative URL: "/NetzwerkFrueheHilfenService/netzwerkteilnehmer" (HTTP-POST) If an existing NetzwerkTeilnehmer entity has been updated, the modified entity should be sent to the relative URL: "/NetzwerkFrueheHilfenService/netzwerkteilnehmer/{id}" (HTTP-PUT) If an existing NetzwerkTeilnehmer entity has to be deleted, the following relative URL should be called: "/NetzwerkFrueheHilfenService/netzwerkteilnehmer/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum