Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OeffnungszeitModellApp
Please create a React-JS application for the OeffnungszeitModellModule. The application has to offer the following views for the user interface: 1. BelegungView 2. KindView 3. OeffnungszeitModellView 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 BelegungView must contain the following fields: - name: BisDatum type: DATE - name: Gruppenname type: STRING - name: IstVollzeit type: BOOL - name: Kind type: Kind - name: Kindergarten type: Kindergarten - name: VonDatum type: DATE The data source for the [Kind] select control should be loaded from the relative URL: "/OeffnungszeitModellService/kind" (HTTP-GET) The data source for the [Kindergarten] select control should be loaded from the relative URL: "/KindergartenService/kindergarten" (HTTP-GET) An existing Belegung entity should be loaded from the relative URL: "/OeffnungszeitModellService/belegung/{id}" (HTTP-GET) If a new Belegung entity has been created, the new entity should be posted to the relative URL: "/OeffnungszeitModellService/belegung" (HTTP-POST) If an existing Belegung entity has been updated, the modified entity should be sent to the relative URL: "/OeffnungszeitModellService/belegung/{id}" (HTTP-PUT) If an existing Belegung entity has to be deleted, the following relative URL should be called: "/OeffnungszeitModellService/belegung/{id}" (HTTP-DELETE) 2. The KindView must contain the following fields: - name: BesondererFoerderbedarfBeschreibung type: STRING - name: Erstsprache type: STRING - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: Nachname type: STRING - name: Vorname type: STRING An existing Kind entity should be loaded from the relative URL: "/OeffnungszeitModellService/kind/{id}" (HTTP-GET) If a new Kind entity has been created, the new entity should be posted to the relative URL: "/OeffnungszeitModellService/kind" (HTTP-POST) If an existing Kind entity has been updated, the modified entity should be sent to the relative URL: "/OeffnungszeitModellService/kind/{id}" (HTTP-PUT) If an existing Kind entity has to be deleted, the following relative URL should be called: "/OeffnungszeitModellService/kind/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Belegung columns: - column: BisDatum - column: Kind - column: VonDatum - column: Kindergarten - column: IstVollzeit - column: Gruppenname The table should have the title "Belegungs" und the data must be loaded from the server with the following relative URL: "/OeffnungszeitModellService/belegung/kind/{id}" 3. The OeffnungszeitModellView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing OeffnungszeitModell entity should be loaded from the relative URL: "/OeffnungszeitModellService/oeffnungszeitmodell/{id}" (HTTP-GET) If a new OeffnungszeitModell entity has been created, the new entity should be posted to the relative URL: "/OeffnungszeitModellService/oeffnungszeitmodell" (HTTP-POST) If an existing OeffnungszeitModell entity has been updated, the modified entity should be sent to the relative URL: "/OeffnungszeitModellService/oeffnungszeitmodell/{id}" (HTTP-PUT) If an existing OeffnungszeitModell entity has to be deleted, the following relative URL should be called: "/OeffnungszeitModellService/oeffnungszeitmodell/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KindergartenOeffnungszeitModell columns: - column: VonDatum - column: EinschliesslichUebernachtung - column: OeffnungszeitModell - column: EinschliesslichSamstag - column: SchliesstUm - column: BisDatum - column: Kindergarten - column: OeffnetUm The table should have the title "KindergartenOeffnungszeitModells" und the data must be loaded from the server with the following relative URL: "/KindergartenService/kindergartenoeffnungszeitmodell/oeffnungszeitmodell/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum