Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KindergartenApp
Please create a React-JS application for the KindergartenModule. The application has to offer the following views for the user interface: 1. KindergartenView 2. KindergartenOeffnungszeitModellView 3. StadtView 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 KindergartenView must contain the following fields: - name: Beschreibung type: STRING - name: Gruendungsjahr type: INT - name: HoechstalterJahre type: STRING - name: IstIntegrativ type: BOOL - name: IstNurFuerKinderMitBehinderung type: BOOL - name: IstOeffentlich type: BOOL - name: IstPrivat type: BOOL - name: IstTeilDesSchulsystems type: BOOL - name: MindestalterJahre type: STRING - name: Name type: STRING - name: Stadt type: Stadt The data source for the [Stadt] select control should be loaded from the relative URL: "/KindergartenService/stadt" (HTTP-GET) An existing Kindergarten entity should be loaded from the relative URL: "/KindergartenService/kindergarten/{id}" (HTTP-GET) If a new Kindergarten entity has been created, the new entity should be posted to the relative URL: "/KindergartenService/kindergarten" (HTTP-POST) If an existing Kindergarten entity has been updated, the modified entity should be sent to the relative URL: "/KindergartenService/kindergarten/{id}" (HTTP-PUT) If an existing Kindergarten entity has to be deleted, the following relative URL should be called: "/KindergartenService/kindergarten/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KindergartenTraeger columns: - column: Traeger - column: BisDatum - column: Kindergarten - column: VonDatum The table should have the title "KindergartenTraegers" und the data must be loaded from the server with the following relative URL: "/TraegerTypService/kindergartentraeger/kindergarten/{id}" Add a HTML table to the view with the following KindergartenBehinderungsunterstuetzung columns: - column: Behinderungsart - column: Kindergarten - column: IstExklusiv - column: Beschreibung The table should have the title "KindergartenBehinderungsunterstuetzungs" und the data must be loaded from the server with the following relative URL: "/RegionService/kindergartenbehinderungsunterstuetzung/kindergarten/{id}" 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/kindergarten/{id}" Add a HTML table to the view with the following KindergartenKindergartenTyp columns: - column: BisDatum - column: KindergartenTyp - column: Kindergarten - column: VonDatum The table should have the title "KindergartenKindergartenTyps" und the data must be loaded from the server with the following relative URL: "/KindergartenTypService/kindergartenkindergartentyp/kindergarten/{id}" Add a HTML table to the view with the following KindergartenSprache columns: - column: IstHauptsprache - column: Kindergarten - column: Sprache The table should have the title "KindergartenSpraches" und the data must be loaded from the server with the following relative URL: "/SpracheService/kindergartensprache/kindergarten/{id}" Add a HTML table to the view with the following KindergartenPaedagogischesKonzept columns: - column: PaedagogischesKonzept - column: BisDatum - column: VonDatum - column: Kindergarten - column: IstHauptkonzept The table should have the title "KindergartenPaedagogischesKonzepts" und the data must be loaded from the server with the following relative URL: "/LandService/kindergartenpaedagogischeskonzept/kindergarten/{id}" Add a HTML table to the view with the following Personal columns: - column: Kindergarten - column: Vorname - column: BisDatum - column: VonDatum - column: QualifikationBeschreibung - column: Personalrolle - column: Nachname The table should have the title "Personals" und the data must be loaded from the server with the following relative URL: "/PersonalrolleService/personal/kindergarten/{id}" 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/kindergarten/{id}" Add a HTML table to the view with the following KindergartenGesetzOderProgramm columns: - column: Kindergarten - column: GesetzOderProgramm The table should have the title "KindergartenGesetzOderProgramms" und the data must be loaded from the server with the following relative URL: "/GesetzOderProgrammService/kindergartengesetzoderprogramm/kindergarten/{id}" 2. The KindergartenOeffnungszeitModellView must contain the following fields: - name: BisDatum type: DATE - name: EinschliesslichSamstag type: BOOL - name: EinschliesslichUebernachtung type: BOOL - name: Kindergarten type: Kindergarten - name: OeffnetUm type: STRING - name: OeffnungszeitModell type: OeffnungszeitModell - name: SchliesstUm type: STRING - name: VonDatum type: DATE The data source for the [OeffnungszeitModell] select control should be loaded from the relative URL: "/OeffnungszeitModellService/oeffnungszeitmodell" (HTTP-GET) The data source for the [Kindergarten] select control should be loaded from the relative URL: "/KindergartenService/kindergarten" (HTTP-GET) An existing KindergartenOeffnungszeitModell entity should be loaded from the relative URL: "/KindergartenService/kindergartenoeffnungszeitmodell/{id}" (HTTP-GET) If a new KindergartenOeffnungszeitModell entity has been created, the new entity should be posted to the relative URL: "/KindergartenService/kindergartenoeffnungszeitmodell" (HTTP-POST) If an existing KindergartenOeffnungszeitModell entity has been updated, the modified entity should be sent to the relative URL: "/KindergartenService/kindergartenoeffnungszeitmodell/{id}" (HTTP-PUT) If an existing KindergartenOeffnungszeitModell entity has to be deleted, the following relative URL should be called: "/KindergartenService/kindergartenoeffnungszeitmodell/{id}" (HTTP-DELETE) 3. The StadtView must contain the following fields: - name: Name type: STRING - name: Region type: Region The data source for the [Region] select control should be loaded from the relative URL: "/RegionService/region" (HTTP-GET) An existing Stadt entity should be loaded from the relative URL: "/KindergartenService/stadt/{id}" (HTTP-GET) If a new Stadt entity has been created, the new entity should be posted to the relative URL: "/KindergartenService/stadt" (HTTP-POST) If an existing Stadt entity has been updated, the modified entity should be sent to the relative URL: "/KindergartenService/stadt/{id}" (HTTP-PUT) If an existing Stadt entity has to be deleted, the following relative URL should be called: "/KindergartenService/stadt/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kindergarten columns: - column: IstOeffentlich - column: IstIntegrativ - column: HoechstalterJahre - column: IstNurFuerKinderMitBehinderung - column: Stadt - column: IstPrivat - column: IstTeilDesSchulsystems - column: MindestalterJahre - column: Name - column: Gruendungsjahr - column: Beschreibung The table should have the title "Kindergartens" und the data must be loaded from the server with the following relative URL: "/KindergartenService/kindergarten/stadt/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum