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: ExternalReference type: STRING - name: ImdbId type: STRING - name: IsOriginalProduction type: BOOL - name: Name type: STRING - name: OriginalLanguage type: Language - name: OriginalName type: STRING - name: ProductionCountry type: Country - name: ReleaseDate type: DATE - name: RuntimeMinutes type: LONG - name: Synopsis type: STRING - name: Type type: STRING The data source for the [OriginalLanguage] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) The data source for the [ProductionCountry] select control should be loaded from the relative URL: "/TitleService/country" (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 SubtitleTrack columns: - column: Language - column: Format - column: IsClosedCaption - column: Description - column: Title The table should have the title "SubtitleTracks" und the data must be loaded from the server with the following relative URL: "/LanguageService/subtitletrack/title/{id}" Add a HTML table to the view with the following Episode columns: - column: Name - column: EpisodeNumber - column: Synopsis - column: RuntimeMinutes - column: Season - column: Title - column: ReleaseDate The table should have the title "Episodes" und the data must be loaded from the server with the following relative URL: "/EpisodeService/episode/title/{id}" Add a HTML table to the view with the following TitleDrmScheme columns: - column: Title - column: DrmScheme The table should have the title "TitleDrmSchemes" und the data must be loaded from the server with the following relative URL: "/DrmSchemeService/titledrmscheme/title/{id}" Add a HTML table to the view with the following SportsEvent columns: - column: Country - column: Name - column: EventDate - column: Venue - column: Title - column: CompetitionName - column: SportType The table should have the title "SportsEvents" und the data must be loaded from the server with the following relative URL: "/ChannelService/sportsevent/title/{id}" Add a HTML table to the view with the following ContentAvailability columns: - column: Title - column: Country - column: AvailableTo - column: Notes - column: AvailableFrom - column: IsTransactional - column: IsIncludedWithSubscription The table should have the title "ContentAvailabilitys" und the data must be loaded from the server with the following relative URL: "/CompanyService/contentavailability/title/{id}" Add a HTML table to the view with the following AudioTrack columns: - column: Description - column: Title - column: Codec - column: IsOriginal - column: Language - column: ChannelLayout The table should have the title "AudioTracks" und the data must be loaded from the server with the following relative URL: "/LanguageService/audiotrack/title/{id}" Add a HTML table to the view with the following LiveProgram columns: - column: IsSportsEvent - column: Channel - column: EndTime - column: Title - column: SportsEvent - column: StartTime The table should have the title "LivePrograms" und the data must be loaded from the server with the following relative URL: "/ChannelService/liveprogram/title/{id}" Add a HTML table to the view with the following PlaybackSession columns: - column: IsLive - column: Season - column: Title - column: Profile - column: Episode - column: EndedAt - column: PlaybackType - column: Device - column: StartedAt The table should have the title "PlaybackSessions" und the data must be loaded from the server with the following relative URL: "/EpisodeService/playbacksession/title/{id}" Add a HTML table to the view with the following Season columns: - column: Title - column: Synopsis - column: Name - column: ReleaseDate - 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/title/{id}" Add a HTML table to the view with the following ContentRating columns: - column: Title - column: RatingSystem - column: RatingDescription - column: RatingCode The table should have the title "ContentRatings" und the data must be loaded from the server with the following relative URL: "/ProductionCompanyService/contentrating/title/{id}" Add a HTML table to the view with the following TitleCast columns: - column: CharacterName - column: BillingOrder - column: Person - column: IsVoiceRole - column: Title The table should have the title "TitleCasts" und the data must be loaded from the server with the following relative URL: "/GenreService/titlecast/title/{id}" Add a HTML table to the view with the following DownloadLicense columns: - column: Episode - column: Profile - column: Season - column: DeviceLimit - column: GrantedAt - column: IsExpired - column: ExpiresAt - column: Title The table should have the title "DownloadLicenses" und the data must be loaded from the server with the following relative URL: "/SeasonService/downloadlicense/title/{id}" Add a HTML table to the view with the following WatchlistItem columns: - column: Profile - column: AddedAt - column: Title The table should have the title "WatchlistItems" und the data must be loaded from the server with the following relative URL: "/ProfileService/watchlistitem/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: "/GenreService/titlegenre/title/{id}" Add a HTML table to the view with the following UserRating columns: - column: RatedAt - column: Profile - column: RatingValue - column: Title The table should have the title "UserRatings" und the data must be loaded from the server with the following relative URL: "/VideoFormatService/userrating/title/{id}" Add a HTML table to the view with the following LicenseAgreement columns: - column: LicensorCompany - column: IsExclusive - column: LicenseEnd - column: LicenseStart - column: TerritoryScope - column: Title The table should have the title "LicenseAgreements" und the data must be loaded from the server with the following relative URL: "/CompanyService/licenseagreement/title/{id}" Add a HTML table to the view with the following TitleProductionCompany columns: - column: ProductionCompany - column: Title - column: Role The table should have the title "TitleProductionCompanys" und the data must be loaded from the server with the following relative URL: "/TitleService/titleproductioncompany/title/{id}" Add a HTML table to the view with the following WatchHistory columns: - column: Episode - column: Profile - column: StartedAt - column: ProgressPercent - column: Season - column: CompletedAt - column: Title - column: LastPositionSeconds The table should have the title "WatchHistorys" und the data must be loaded from the server with the following relative URL: "/ProfileService/watchhistory/title/{id}" Add a HTML table to the view with the following TitleCrew columns: - column: Person - column: CreditOrder - column: RoleType - column: Title 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 TitleVideoFormat columns: - column: VideoFormat - column: Title The table should have the title "TitleVideoFormats" und the data must be loaded from the server with the following relative URL: "/VideoFormatService/titlevideoformat/title/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint