Overview
Summary
Contact
Donate
Imprint
Prompt for the
ArtistView
Please create a React-JS view called "ArtistView" for the fields of the Artist entity. The ArtistView must contain the following fields: - name: Country type: Country - name: IsGhostArtist type: BOOL - name: IsVerified type: BOOL - name: Name type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Artist entity should be loaded from the relative URL: "/TrackService/artist/{id}" (HTTP-GET) If a new Artist entity has been created, the new entity should be posted to the relative URL: "/TrackService/artist" (HTTP-POST) If an existing Artist entity has been updated, the modified entity should be sent to the relative URL: "/TrackService/artist/{id}" (HTTP-PUT) If an existing Artist entity has to be deleted, the following relative URL should be called: "/TrackService/artist/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CreatorToolUsage columns: - column: Podcast - column: Artist - column: UserAccount - column: StartedAt - column: CreatorTool The table should have the title "CreatorToolUsages" und the data must be loaded from the server with the following relative URL: "/TrackService/creatortoolusage/artist/{id}" Add a HTML table to the view with the following TrackArtist columns: - column: Role - column: Artist - column: SortOrder - column: Track The table should have the title "TrackArtists" und the data must be loaded from the server with the following relative URL: "/TrackService/trackartist/artist/{id}" Add a HTML table to the view with the following RoyaltyRecipient columns: - column: Label - column: Type - column: Artist - column: NameOverride The table should have the title "RoyaltyRecipients" und the data must be loaded from the server with the following relative URL: "/CountryService/royaltyrecipient/artist/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint