Overview
Summary
Contact
Donate
Imprint
Prompt for the
AwardEventEditionApp
Please create a React-JS application for the AwardEventEditionModule. The application has to offer the following views for the user interface: 1. AwardEventEditionView 2. PersonAwardView 3. TitleAwardView 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 AwardEventEditionView must contain the following fields: - name: AwardEvent type: AwardEvent - name: EditionNumber type: LONG - name: EventDate type: DATE - name: Location type: STRING - name: Year type: INT The data source for the [AwardEvent] select control should be loaded from the relative URL: "/AwardEventService/awardevent" (HTTP-GET) An existing AwardEventEdition entity should be loaded from the relative URL: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-GET) If a new AwardEventEdition entity has been created, the new entity should be posted to the relative URL: "/AwardEventEditionService/awardeventedition" (HTTP-POST) If an existing AwardEventEdition entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-PUT) If an existing AwardEventEdition entity has to be deleted, the following relative URL should be called: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PersonAward columns: - column: AwardEventEdition - column: AwardCategory - column: Person - column: Title - column: Notes - column: IsWinner The table should have the title "PersonAwards" und the data must be loaded from the server with the following relative URL: "/AwardEventEditionService/personaward/awardeventedition/{id}" Add a HTML table to the view with the following TitleAward columns: - column: Notes - column: AwardCategory - column: IsWinner - column: Title - column: AwardEventEdition The table should have the title "TitleAwards" und the data must be loaded from the server with the following relative URL: "/AwardEventEditionService/titleaward/awardeventedition/{id}" 2. The PersonAwardView must contain the following fields: - name: AwardCategory type: AwardCategory - name: AwardEventEdition type: AwardEventEdition - name: IsWinner type: BOOL - name: Notes type: STRING - name: Person type: Person - name: Title type: Title The data source for the [AwardCategory] select control should be loaded from the relative URL: "/AwardEventService/awardcategory" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [AwardEventEdition] select control should be loaded from the relative URL: "/AwardEventEditionService/awardeventedition" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing PersonAward entity should be loaded from the relative URL: "/AwardEventEditionService/personaward/{id}" (HTTP-GET) If a new PersonAward entity has been created, the new entity should be posted to the relative URL: "/AwardEventEditionService/personaward" (HTTP-POST) If an existing PersonAward entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventEditionService/personaward/{id}" (HTTP-PUT) If an existing PersonAward entity has to be deleted, the following relative URL should be called: "/AwardEventEditionService/personaward/{id}" (HTTP-DELETE) 3. The TitleAwardView must contain the following fields: - name: AwardCategory type: AwardCategory - name: AwardEventEdition type: AwardEventEdition - name: IsWinner type: BOOL - name: Notes type: STRING - name: Title type: Title The data source for the [AwardCategory] select control should be loaded from the relative URL: "/AwardEventService/awardcategory" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [AwardEventEdition] select control should be loaded from the relative URL: "/AwardEventEditionService/awardeventedition" (HTTP-GET) An existing TitleAward entity should be loaded from the relative URL: "/AwardEventEditionService/titleaward/{id}" (HTTP-GET) If a new TitleAward entity has been created, the new entity should be posted to the relative URL: "/AwardEventEditionService/titleaward" (HTTP-POST) If an existing TitleAward entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventEditionService/titleaward/{id}" (HTTP-PUT) If an existing TitleAward entity has to be deleted, the following relative URL should be called: "/AwardEventEditionService/titleaward/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint