Overview
Summary
Contact
Donate
Imprint
Prompt for the
TitleApp
Please create a React-JS application for the TitleModule. The application has to offer the following views for the user interface: 1. EditorialArticleTitleView 2. GenreView 3. TitleView 4. TitleCompanyView 5. TitleGenreView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The EditorialArticleTitleView must contain the following fields: - name: EditorialArticle type: EditorialArticle - name: Position type: LONG - name: Title type: Title The data source for the [EditorialArticle] select control should be loaded from the relative URL: "/EditorialArticleService/editorialarticle" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing EditorialArticleTitle entity should be loaded from the relative URL: "/TitleService/editorialarticletitle/{id}" (HTTP-GET) If a new EditorialArticleTitle entity has been created, the new entity should be posted to the relative URL: "/TitleService/editorialarticletitle" (HTTP-POST) If an existing EditorialArticleTitle entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/editorialarticletitle/{id}" (HTTP-PUT) If an existing EditorialArticleTitle entity has to be deleted, the following relative URL should be called: "/TitleService/editorialarticletitle/{id}" (HTTP-DELETE) 2. The GenreView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Genre entity should be loaded from the relative URL: "/TitleService/genre/{id}" (HTTP-GET) If a new Genre entity has been created, the new entity should be posted to the relative URL: "/TitleService/genre" (HTTP-POST) If an existing Genre entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/genre/{id}" (HTTP-PUT) If an existing Genre entity has to be deleted, the following relative URL should be called: "/TitleService/genre/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TitleGenre columns: - column: Genre - column: Title The table should have the title "TitleGenres" und the data must be loaded from the server with the following relative URL: "/TitleService/titlegenre/genre/{id}" 3. The TitleView must contain the following fields: - name: AverageRating type: STRING - name: EndYear type: INT - name: IsAdult type: BOOL - name: NumVotes type: LONG - name: OriginalTitle type: STRING - name: PlotSummary type: STRING - name: PosterUrl type: STRING - name: PrimaryTitle type: STRING - name: ReleaseDate type: DATE - name: RuntimeMinutes type: LONG - name: StartYear type: INT - name: Storyline type: STRING - name: Tagline type: STRING - name: TitleType type: TitleType The data source for the [TitleType] select control should be loaded from the relative URL: "/EditorialArticleService/titletype" (HTTP-GET) An existing Title entity should be loaded from the relative URL: "/TitleService/title/{id}" (HTTP-GET) If a new Title entity has been created, the new entity should be posted to the relative URL: "/TitleService/title" (HTTP-POST) If an existing Title entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/title/{id}" (HTTP-PUT) If an existing Title entity has to be deleted, the following relative URL should be called: "/TitleService/title/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EditorialArticleTitle columns: - column: EditorialArticle - column: Position - column: Title The table should have the title "EditorialArticleTitles" und the data must be loaded from the server with the following relative URL: "/TitleService/editorialarticletitle/title/{id}" Add a HTML table to the view with the following MediaItem columns: - column: Title - column: Person - column: MediaType - column: DurationSeconds - column: PublishedAt - column: ThumbnailUrl - column: Url - column: Caption The table should have the title "MediaItems" und the data must be loaded from the server with the following relative URL: "/JobTypeService/mediaitem/title/{id}" Add a HTML table to the view with the following WatchlistItem columns: - column: Title - column: Position - column: AddedAt - column: Notes - column: Watchlist The table should have the title "WatchlistItems" und the data must be loaded from the server with the following relative URL: "/UserAccountService/watchlistitem/title/{id}" Add a HTML table to the view with the following UserListItem columns: - column: Position - column: UserList - column: Notes - column: AddedAt - column: Person - column: Title The table should have the title "UserListItems" und the data must be loaded from the server with the following relative URL: "/PersonService/userlistitem/title/{id}" Add a HTML table to the view with the following PollOption columns: - column: Position - column: Title - column: Text - column: Person - column: Poll The table should have the title "PollOptions" und the data must be loaded from the server with the following relative URL: "/PersonService/polloption/title/{id}" 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/title/{id}" Add a HTML table to the view with the following TitleLanguage columns: - column: Title - column: Language - column: IsOriginalLanguage The table should have the title "TitleLanguages" und the data must be loaded from the server with the following relative URL: "/LanguageService/titlelanguage/title/{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/title/{id}" Add a HTML table to the view with the following Episode columns: - column: SeasonNumber - column: ParentSeries - column: Title - column: AbsoluteNumber - column: EpisodeNumber The table should have the title "Episodes" und the data must be loaded from the server with the following relative URL: "/AwardEventService/episode/title/{id}" Add a HTML table to the view with the following Episode columns: - column: SeasonNumber - column: ParentSeries - column: Title - column: AbsoluteNumber - column: EpisodeNumber The table should have the title "Episodes" und the data must be loaded from the server with the following relative URL: "/AwardEventService/episode/parentseries/{id}" Add a HTML table to the view with the following TitleReview columns: - column: HelpfulnessScore - column: Language - column: UpdatedAt - column: CreatedAt - column: UserAccount - column: Title - column: Body - column: Headline - column: IsSpoiler The table should have the title "TitleReviews" und the data must be loaded from the server with the following relative URL: "/LanguageService/titlereview/title/{id}" Add a HTML table to the view with the following TitleCompany columns: - column: Title - column: Role - column: Company The table should have the title "TitleCompanys" und the data must be loaded from the server with the following relative URL: "/TitleService/titlecompany/title/{id}" Add a HTML table to the view with the following TitleCountry columns: - column: Title - column: Country The table should have the title "TitleCountrys" und the data must be loaded from the server with the following relative URL: "/CountryService/titlecountry/title/{id}" Add a HTML table to the view with the following TitleCrew columns: - column: Department - column: Person - column: Title - column: Job The table should have the title "TitleCrews" und the data must be loaded from the server with the following relative URL: "/PersonService/titlecrew/title/{id}" Add a HTML table to the view with the following TitleGenre columns: - column: Genre - column: Title The table should have the title "TitleGenres" und the data must be loaded from the server with the following relative URL: "/TitleService/titlegenre/title/{id}" 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/title/{id}" 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/title/{id}" Add a HTML table to the view with the following TitleRating columns: - column: RatedAt - column: UserAccount - column: RatingValue - column: Title The table should have the title "TitleRatings" und the data must be loaded from the server with the following relative URL: "/UserAccountService/titlerating/title/{id}" 4. The TitleCompanyView must contain the following fields: - name: Company type: Company - name: Role type: STRING - name: Title type: Title The data source for the [Company] select control should be loaded from the relative URL: "/CountryService/company" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing TitleCompany entity should be loaded from the relative URL: "/TitleService/titlecompany/{id}" (HTTP-GET) If a new TitleCompany entity has been created, the new entity should be posted to the relative URL: "/TitleService/titlecompany" (HTTP-POST) If an existing TitleCompany entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/titlecompany/{id}" (HTTP-PUT) If an existing TitleCompany entity has to be deleted, the following relative URL should be called: "/TitleService/titlecompany/{id}" (HTTP-DELETE) 5. The TitleGenreView must contain the following fields: - name: Genre type: Genre - name: Title type: Title The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [Genre] select control should be loaded from the relative URL: "/TitleService/genre" (HTTP-GET) An existing TitleGenre entity should be loaded from the relative URL: "/TitleService/titlegenre/{id}" (HTTP-GET) If a new TitleGenre entity has been created, the new entity should be posted to the relative URL: "/TitleService/titlegenre" (HTTP-POST) If an existing TitleGenre entity has been updated, the modified entity should be sent to the relative URL: "/TitleService/titlegenre/{id}" (HTTP-PUT) If an existing TitleGenre entity has to be deleted, the following relative URL should be called: "/TitleService/titlegenre/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint