Overview
Summary
Contact
Donate
Imprint
Prompt for the
ContentTitleView
Please create a React-JS view called "ContentTitleView" for the fields of the ContentTitle entity. The ContentTitleView must contain the following fields: - name: ContentType type: ContentType - name: ImdbId type: STRING - name: IsNetflixOriginal type: BOOL - name: LocalizedTitle type: STRING - name: OriginalTitle type: STRING - name: ProductionCompany type: ProductionCompany - name: ReleaseDate type: DATE - name: RuntimeMinutes type: LONG - name: Synopsis type: STRING The data source for the [ContentType] select control should be loaded from the relative URL: "/ContentTypeService/contenttype" (HTTP-GET) The data source for the [ProductionCompany] select control should be loaded from the relative URL: "/CountryService/productioncompany" (HTTP-GET) An existing ContentTitle entity should be loaded from the relative URL: "/ContentTitleService/contenttitle/{id}" (HTTP-GET) If a new ContentTitle entity has been created, the new entity should be posted to the relative URL: "/ContentTitleService/contenttitle" (HTTP-POST) If an existing ContentTitle entity has been updated, the modified entity should be sent to the relative URL: "/ContentTitleService/contenttitle/{id}" (HTTP-PUT) If an existing ContentTitle entity has to be deleted, the following relative URL should be called: "/ContentTitleService/contenttitle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RecommendationEvent columns: - column: RatingValue - column: EventType - column: EventDate - column: UserProfile - column: ContentTitle - column: RecommendationAlgorithm The table should have the title "RecommendationEvents" und the data must be loaded from the server with the following relative URL: "/UserProfileService/recommendationevent/contenttitle/{id}" Add a HTML table to the view with the following ContentPersonCredit columns: - column: ContentTitle - column: CharacterName - column: CreditType - column: Person The table should have the title "ContentPersonCredits" und the data must be loaded from the server with the following relative URL: "/PersonService/contentpersoncredit/contenttitle/{id}" Add a HTML table to the view with the following Episode columns: - column: Synopsis - column: Title - column: ContentTitle - column: RuntimeMinutes - column: Season - column: EpisodeNumber - column: ReleaseDate The table should have the title "Episodes" und the data must be loaded from the server with the following relative URL: "/SeasonService/episode/contenttitle/{id}" Add a HTML table to the view with the following Season columns: - column: ReleaseDate - column: EpisodeCount - column: ContentTitle - column: SeasonNumber The table should have the title "Seasons" und the data must be loaded from the server with the following relative URL: "/SeasonService/season/contenttitle/{id}" Add a HTML table to the view with the following ContentAvailability columns: - column: EndDate - column: Country - column: ServiceSupply - column: StartDate - column: Notes - column: ContentTitle The table should have the title "ContentAvailabilitys" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contentavailability/contenttitle/{id}" Add a HTML table to the view with the following ContentAward columns: - column: Result - column: Category - column: AwardName - column: ContentTitle - column: Year The table should have the title "ContentAwards" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contentaward/contenttitle/{id}" Add a HTML table to the view with the following ContentGenre columns: - column: ContentTitle - column: Genre The table should have the title "ContentGenres" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contentgenre/contenttitle/{id}" Add a HTML table to the view with the following PlaybackSession columns: - column: EndedAt - column: DurationSeconds - column: UserProfile - column: ContentTitle - column: StartedAt - column: Device - column: WasCompleted The table should have the title "PlaybackSessions" und the data must be loaded from the server with the following relative URL: "/DeviceService/playbacksession/contenttitle/{id}" Add a HTML table to the view with the following ContentDealTitle columns: - column: ContentDeal - column: ContentTitle - column: Notes The table should have the title "ContentDealTitles" und the data must be loaded from the server with the following relative URL: "/PersonService/contentdealtitle/contenttitle/{id}" Add a HTML table to the view with the following ContentDistribution columns: - column: StartDate - column: EndDate - column: DistributionType - column: Notes - column: ContentTitle - column: ServiceSupply The table should have the title "ContentDistributions" und the data must be loaded from the server with the following relative URL: "/DeviceService/contentdistribution/contenttitle/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint