Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GruppentreffenApp
Please create a React-JS application for the GruppentreffenModule. The application has to offer the following views for the user interface: 1. GruppentreffenView 2. GruppentreffenTeilnehmerView 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 GruppentreffenView must contain the following fields: - name: Beschreibung type: STRING - name: Datum type: DATE - name: Thema type: STRING - name: Wohnanlage type: Wohnanlage The data source for the [Wohnanlage] select control should be loaded from the relative URL: "/TraegerorganisationService/wohnanlage" (HTTP-GET) An existing Gruppentreffen entity should be loaded from the relative URL: "/GruppentreffenService/gruppentreffen/{id}" (HTTP-GET) If a new Gruppentreffen entity has been created, the new entity should be posted to the relative URL: "/GruppentreffenService/gruppentreffen" (HTTP-POST) If an existing Gruppentreffen entity has been updated, the modified entity should be sent to the relative URL: "/GruppentreffenService/gruppentreffen/{id}" (HTTP-PUT) If an existing Gruppentreffen entity has to be deleted, the following relative URL should be called: "/GruppentreffenService/gruppentreffen/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GruppentreffenTeilnehmer columns: - column: Gruppentreffen - column: Rolle - column: Bewohner The table should have the title "GruppentreffenTeilnehmers" und the data must be loaded from the server with the following relative URL: "/GruppentreffenService/gruppentreffenteilnehmer/gruppentreffen/{id}" 2. The GruppentreffenTeilnehmerView must contain the following fields: - name: Bewohner type: Bewohner - name: Gruppentreffen type: Gruppentreffen - name: Rolle type: STRING The data source for the [Gruppentreffen] select control should be loaded from the relative URL: "/GruppentreffenService/gruppentreffen" (HTTP-GET) The data source for the [Bewohner] select control should be loaded from the relative URL: "/BewohnerService/bewohner" (HTTP-GET) An existing GruppentreffenTeilnehmer entity should be loaded from the relative URL: "/GruppentreffenService/gruppentreffenteilnehmer/{id}" (HTTP-GET) If a new GruppentreffenTeilnehmer entity has been created, the new entity should be posted to the relative URL: "/GruppentreffenService/gruppentreffenteilnehmer" (HTTP-POST) If an existing GruppentreffenTeilnehmer entity has been updated, the modified entity should be sent to the relative URL: "/GruppentreffenService/gruppentreffenteilnehmer/{id}" (HTTP-PUT) If an existing GruppentreffenTeilnehmer entity has to be deleted, the following relative URL should be called: "/GruppentreffenService/gruppentreffenteilnehmer/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum