Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserAccountView
Please create a React-JS view called "UserAccountView" for the fields of the UserAccount entity. The UserAccountView must contain the following fields: - name: Country type: Country - name: CreatedAt type: DATE - name: DisplayName type: STRING - name: Email type: STRING - name: IsActive type: BOOL - name: PasswordHash type: STRING - name: PreferredLanguage type: Language - name: UpdatedAt type: DATE - name: Username type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) The data source for the [PreferredLanguage] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) An existing UserAccount entity should be loaded from the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-GET) If a new UserAccount entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/useraccount" (HTTP-POST) If an existing UserAccount entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/useraccount/{id}" (HTTP-PUT) If an existing UserAccount entity has to be deleted, the following relative URL should be called: "/UserAccountService/useraccount/{id}" (HTTP-DELETE) 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/useraccount/{id}" Add a HTML table to the view with the following Poll columns: - column: Question - column: IsActive - column: CreatedAt - column: ClosedAt - column: CreatedBy - column: Description The table should have the title "Polls" und the data must be loaded from the server with the following relative URL: "/UserAccountService/poll/createdby/{id}" Add a HTML table to the view with the following Watchlist columns: - column: CreatedAt - column: Description - column: IsDefault - column: UserAccount - column: UpdatedAt - column: Name The table should have the title "Watchlists" und the data must be loaded from the server with the following relative URL: "/UserAccountService/watchlist/useraccount/{id}" 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/useraccount/{id}" Add a HTML table to the view with the following PollVote columns: - column: PollOption - column: UserAccount - column: VotedAt The table should have the title "PollVotes" und the data must be loaded from the server with the following relative URL: "/EditorialArticleService/pollvote/useraccount/{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/useraccount/{id}" Add a HTML table to the view with the following UserList columns: - column: IsPublic - column: UpdatedAt - column: UserAccount - column: CreatedAt - column: Name - column: Description The table should have the title "UserLists" und the data must be loaded from the server with the following relative URL: "/AwardEventService/userlist/useraccount/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint