Overview
Summary
Contact
Donate
Imprint
Prompt for the
TitleReviewView
Please create a React-JS view called "TitleReviewView" for the fields of the TitleReview entity. The TitleReviewView must contain the following fields: - name: Body type: STRING - name: CreatedAt type: DATE - name: Headline type: STRING - name: HelpfulnessScore type: LONG - name: IsSpoiler type: BOOL - name: Language type: Language - name: Title type: Title - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount The data source for the [Language] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing TitleReview entity should be loaded from the relative URL: "/LanguageService/titlereview/{id}" (HTTP-GET) If a new TitleReview entity has been created, the new entity should be posted to the relative URL: "/LanguageService/titlereview" (HTTP-POST) If an existing TitleReview entity has been updated, the modified entity should be sent to the relative URL: "/LanguageService/titlereview/{id}" (HTTP-PUT) If an existing TitleReview entity has to be deleted, the following relative URL should be called: "/LanguageService/titlereview/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ReviewVote columns: - column: VotedAt - column: IsHelpful - column: TitleReview - column: UserAccount The table should have the title "ReviewVotes" und the data must be loaded from the server with the following relative URL: "/LanguageService/reviewvote/titlereview/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint