Overview
Summary
Contact
Donate
Imprint
Prompt for the
IncidentView
Please create a React-JS view called "IncidentView" for the fields of the Incident entity. The IncidentView must contain the following fields: - name: Description type: STRING - name: Facility type: Facility - name: IncidentDateTime type: DATE - name: LaunchVehicle type: LaunchVehicle - name: Mission type: Mission - name: Notes type: STRING - name: RocketStage type: RocketStage - name: RootCause type: STRING - name: Severity type: STRING - name: Spacecraft type: Spacecraft The data source for the [RocketStage] select control should be loaded from the relative URL: "/LaunchVehicleService/rocketstage" (HTTP-GET) The data source for the [Spacecraft] select control should be loaded from the relative URL: "/MissionService/spacecraft" (HTTP-GET) The data source for the [Facility] select control should be loaded from the relative URL: "/FacilityService/facility" (HTTP-GET) The data source for the [Mission] select control should be loaded from the relative URL: "/MissionService/mission" (HTTP-GET) The data source for the [LaunchVehicle] select control should be loaded from the relative URL: "/LaunchVehicleService/launchvehicle" (HTTP-GET) An existing Incident entity should be loaded from the relative URL: "/FacilityService/incident/{id}" (HTTP-GET) If a new Incident entity has been created, the new entity should be posted to the relative URL: "/FacilityService/incident" (HTTP-POST) If an existing Incident entity has been updated, the modified entity should be sent to the relative URL: "/FacilityService/incident/{id}" (HTTP-PUT) If an existing Incident entity has to be deleted, the following relative URL should be called: "/FacilityService/incident/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint