Overview
Summary
Contact
Donate
Imprint
Prompt for the
RocketStageView
Please create a React-JS view called "RocketStageView" for the fields of the RocketStage entity. The RocketStageView must contain the following fields: - name: LaunchVehicle type: LaunchVehicle - name: Name type: STRING - name: Notes type: STRING - name: PropellantFuel type: STRING - name: PropellantOxidizer type: STRING - name: Reusable type: BOOL - name: StageNumber type: INT The data source for the [LaunchVehicle] select control should be loaded from the relative URL: "/LaunchVehicleService/launchvehicle" (HTTP-GET) An existing RocketStage entity should be loaded from the relative URL: "/LaunchVehicleService/rocketstage/{id}" (HTTP-GET) If a new RocketStage entity has been created, the new entity should be posted to the relative URL: "/LaunchVehicleService/rocketstage" (HTTP-POST) If an existing RocketStage entity has been updated, the modified entity should be sent to the relative URL: "/LaunchVehicleService/rocketstage/{id}" (HTTP-PUT) If an existing RocketStage entity has to be deleted, the following relative URL should be called: "/LaunchVehicleService/rocketstage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StageEngine columns: - column: RocketEngine - column: EngineCount - column: RocketStage - column: Role The table should have the title "StageEngines" und the data must be loaded from the server with the following relative URL: "/ShipRoleService/stageengine/rocketstage/{id}" Add a HTML table to the view with the following Incident columns: - column: IncidentDateTime - column: LaunchVehicle - column: Description - column: Facility - column: RocketStage - column: Notes - column: RootCause - column: Spacecraft - column: Severity - column: Mission The table should have the title "Incidents" und the data must be loaded from the server with the following relative URL: "/FacilityService/incident/rocketstage/{id}" Add a HTML table to the view with the following TestFlight columns: - column: TestType - column: Spacecraft - column: Mission - column: Description - column: RocketStage - column: TestSite - column: Notes - column: LaunchVehicle The table should have the title "TestFlights" und the data must be loaded from the server with the following relative URL: "/LaunchVehicleService/testflight/rocketstage/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint