Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharacterApp
Please create a React-JS application for the CharacterModule. The application has to offer the following views for the user interface: 1. CharacterView 2. KeywordView 3. TitleKeywordView 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 CharacterView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Character entity should be loaded from the relative URL: "/CharacterService/character/{id}" (HTTP-GET) If a new Character entity has been created, the new entity should be posted to the relative URL: "/CharacterService/character" (HTTP-POST) If an existing Character entity has been updated, the modified entity should be sent to the relative URL: "/CharacterService/character/{id}" (HTTP-PUT) If an existing Character entity has to be deleted, the following relative URL should be called: "/CharacterService/character/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TitleCast columns: - column: CreditOrder - column: IsGuestAppearance - column: Person - column: RoleDescription - column: Character - column: Title - column: IsUncredited The table should have the title "TitleCasts" und the data must be loaded from the server with the following relative URL: "/PersonService/titlecast/character/{id}" 2. The KeywordView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Keyword entity should be loaded from the relative URL: "/CharacterService/keyword/{id}" (HTTP-GET) If a new Keyword entity has been created, the new entity should be posted to the relative URL: "/CharacterService/keyword" (HTTP-POST) If an existing Keyword entity has been updated, the modified entity should be sent to the relative URL: "/CharacterService/keyword/{id}" (HTTP-PUT) If an existing Keyword entity has to be deleted, the following relative URL should be called: "/CharacterService/keyword/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TitleKeyword columns: - column: Keyword - column: Title The table should have the title "TitleKeywords" und the data must be loaded from the server with the following relative URL: "/CharacterService/titlekeyword/keyword/{id}" 3. The TitleKeywordView must contain the following fields: - name: Keyword type: Keyword - name: Title type: Title The data source for the [Keyword] select control should be loaded from the relative URL: "/CharacterService/keyword" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing TitleKeyword entity should be loaded from the relative URL: "/CharacterService/titlekeyword/{id}" (HTTP-GET) If a new TitleKeyword entity has been created, the new entity should be posted to the relative URL: "/CharacterService/titlekeyword" (HTTP-POST) If an existing TitleKeyword entity has been updated, the modified entity should be sent to the relative URL: "/CharacterService/titlekeyword/{id}" (HTTP-PUT) If an existing TitleKeyword entity has to be deleted, the following relative URL should be called: "/CharacterService/titlekeyword/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint