Overview
Summary
Contact
Donate
Imprint
Prompt for the
TitleView
Please create a React-JS view called "TitleView" for the fields of the Title entity. 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}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint