Overview
Summary
Contact
Donate
Imprint
Prompt for the
AuctionView
Please create a React-JS view called "AuctionView" for the fields of the Auction entity. The AuctionView must contain the following fields: - name: AutoExtendEnabled type: BOOL - name: Listing type: Listing - name: MinimumBidIncrement type: STRING - name: ReservePrice type: STRING The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) An existing Auction entity should be loaded from the relative URL: "/AuctionService/auction/{id}" (HTTP-GET) If a new Auction entity has been created, the new entity should be posted to the relative URL: "/AuctionService/auction" (HTTP-POST) If an existing Auction entity has been updated, the modified entity should be sent to the relative URL: "/AuctionService/auction/{id}" (HTTP-PUT) If an existing Auction entity has to be deleted, the following relative URL should be called: "/AuctionService/auction/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Bid columns: - column: BidAmount - column: Auction - column: Currency - column: BidTime - column: IsWinning - column: BidderUserAccount The table should have the title "Bids" und the data must be loaded from the server with the following relative URL: "/AuctionService/bid/auction/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint