Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SpracheApp
Please create a React-JS application for the SpracheModule. The application has to offer the following views for the user interface: 1. BewegungOderVerbandView 2. KindergartenSpracheView 3. SpracheView 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 BewegungOderVerbandView must contain the following fields: - name: Beschreibung type: STRING - name: Gruendungsjahr type: INT - name: Land type: Land - name: Name type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing BewegungOderVerband entity should be loaded from the relative URL: "/SpracheService/bewegungoderverband/{id}" (HTTP-GET) If a new BewegungOderVerband entity has been created, the new entity should be posted to the relative URL: "/SpracheService/bewegungoderverband" (HTTP-POST) If an existing BewegungOderVerband entity has been updated, the modified entity should be sent to the relative URL: "/SpracheService/bewegungoderverband/{id}" (HTTP-PUT) If an existing BewegungOderVerband entity has to be deleted, the following relative URL should be called: "/SpracheService/bewegungoderverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BewegungPerson columns: - column: Rollenbeschreibung - column: Person - column: BewegungOderVerband The table should have the title "BewegungPersons" und the data must be loaded from the server with the following relative URL: "/PersonService/bewegungperson/bewegungoderverband/{id}" 2. The KindergartenSpracheView must contain the following fields: - name: IstHauptsprache type: BOOL - name: Kindergarten type: Kindergarten - name: Sprache type: Sprache The data source for the [Kindergarten] select control should be loaded from the relative URL: "/KindergartenService/kindergarten" (HTTP-GET) The data source for the [Sprache] select control should be loaded from the relative URL: "/SpracheService/sprache" (HTTP-GET) An existing KindergartenSprache entity should be loaded from the relative URL: "/SpracheService/kindergartensprache/{id}" (HTTP-GET) If a new KindergartenSprache entity has been created, the new entity should be posted to the relative URL: "/SpracheService/kindergartensprache" (HTTP-POST) If an existing KindergartenSprache entity has been updated, the modified entity should be sent to the relative URL: "/SpracheService/kindergartensprache/{id}" (HTTP-PUT) If an existing KindergartenSprache entity has to be deleted, the following relative URL should be called: "/SpracheService/kindergartensprache/{id}" (HTTP-DELETE) 3. The SpracheView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING An existing Sprache entity should be loaded from the relative URL: "/SpracheService/sprache/{id}" (HTTP-GET) If a new Sprache entity has been created, the new entity should be posted to the relative URL: "/SpracheService/sprache" (HTTP-POST) If an existing Sprache entity has been updated, the modified entity should be sent to the relative URL: "/SpracheService/sprache/{id}" (HTTP-PUT) If an existing Sprache entity has to be deleted, the following relative URL should be called: "/SpracheService/sprache/{id}" (HTTP-DELETE) 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/sprache/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum