Overview
Summary
Contact
Donate
Imprint
Prompt for the
BalloonFlightView
Please create a React-JS view called "BalloonFlightView" for the fields of the BalloonFlight entity. The BalloonFlightView must contain the following fields: - name: AverageSpeedKmh type: STRING - name: BalloonModel type: BalloonModel - name: LaunchDateTime type: DATE - name: LaunchSite type: LaunchSite - name: MaxAltitudeKm type: STRING - name: MinAltitudeKm type: STRING - name: Project type: Project - name: Status type: STRING - name: TerminationDateTime type: DATE The data source for the [BalloonModel] select control should be loaded from the relative URL: "/WindLayerService/balloonmodel" (HTTP-GET) The data source for the [Project] select control should be loaded from the relative URL: "/ProjectService/project" (HTTP-GET) The data source for the [LaunchSite] select control should be loaded from the relative URL: "/LaunchSiteService/launchsite" (HTTP-GET) An existing BalloonFlight entity should be loaded from the relative URL: "/ProjectService/balloonflight/{id}" (HTTP-GET) If a new BalloonFlight entity has been created, the new entity should be posted to the relative URL: "/ProjectService/balloonflight" (HTTP-POST) If an existing BalloonFlight entity has been updated, the modified entity should be sent to the relative URL: "/ProjectService/balloonflight/{id}" (HTTP-PUT) If an existing BalloonFlight entity has to be deleted, the following relative URL should be called: "/ProjectService/balloonflight/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BalloonFlightWindLayer columns: - column: WindLayer - column: AssociationType - column: RelevanceScore - column: BalloonFlight The table should have the title "BalloonFlightWindLayers" und the data must be loaded from the server with the following relative URL: "/ProjectService/balloonflightwindlayer/balloonflight/{id}" Add a HTML table to the view with the following BalloonTelemetrySample columns: - column: AltitudeKm - column: TemperatureC - column: Latitude - column: SampleTime - column: SignalQualityDb - column: Longitude - column: BatteryLevelPercent - column: BalloonFlight The table should have the title "BalloonTelemetrySamples" und the data must be loaded from the server with the following relative URL: "/CompanyService/balloontelemetrysample/balloonflight/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint