Overview
Summary
Contact
Donate
Imprint
Prompt for the
BalloonModelView
Please create a React-JS view called "BalloonModelView" for the fields of the BalloonModel entity. The BalloonModelView must contain the following fields: - name: Description type: STRING - name: DesignLifetimeDays type: INT - name: EnvelopeMaterial type: STRING - name: MaxAltitudeKm type: STRING - name: MaxSpeedMbitPerSec type: STRING - name: MinAltitudeKm type: STRING - name: Name type: STRING An existing BalloonModel entity should be loaded from the relative URL: "/WindLayerService/balloonmodel/{id}" (HTTP-GET) If a new BalloonModel entity has been created, the new entity should be posted to the relative URL: "/WindLayerService/balloonmodel" (HTTP-POST) If an existing BalloonModel entity has been updated, the modified entity should be sent to the relative URL: "/WindLayerService/balloonmodel/{id}" (HTTP-PUT) If an existing BalloonModel entity has to be deleted, the following relative URL should be called: "/WindLayerService/balloonmodel/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BalloonFlight columns: - column: BalloonModel - column: AverageSpeedKmh - column: Project - column: MinAltitudeKm - column: LaunchDateTime - column: MaxAltitudeKm - column: Status - column: TerminationDateTime - column: LaunchSite The table should have the title "BalloonFlights" und the data must be loaded from the server with the following relative URL: "/ProjectService/balloonflight/balloonmodel/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint