Overview
Summary
Contact
Donate
Imprint
Prompt for the
LaunchVehicleView
Please create a React-JS view called "LaunchVehicleView" for the fields of the LaunchVehicle entity. The LaunchVehicleView must contain the following fields: - name: Company type: Company - name: Family type: STRING - name: FirstFlightDate type: DATE - name: MaxPayloadGtoT type: STRING - name: MaxPayloadLeoT type: STRING - name: Name type: STRING - name: Notes type: STRING - name: Reusable type: BOOL - name: Status type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing LaunchVehicle entity should be loaded from the relative URL: "/LaunchVehicleService/launchvehicle/{id}" (HTTP-GET) If a new LaunchVehicle entity has been created, the new entity should be posted to the relative URL: "/LaunchVehicleService/launchvehicle" (HTTP-POST) If an existing LaunchVehicle entity has been updated, the modified entity should be sent to the relative URL: "/LaunchVehicleService/launchvehicle/{id}" (HTTP-PUT) If an existing LaunchVehicle entity has to be deleted, the following relative URL should be called: "/LaunchVehicleService/launchvehicle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RocketStage columns: - column: StageNumber - column: PropellantFuel - column: Name - column: Reusable - column: Notes - column: LaunchVehicle - column: PropellantOxidizer The table should have the title "RocketStages" und the data must be loaded from the server with the following relative URL: "/LaunchVehicleService/rocketstage/launchvehicle/{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/launchvehicle/{id}" Add a HTML table to the view with the following Mission columns: - column: Notes - column: Spacecraft - column: Contract - column: Customer - column: Company - column: Name - column: LaunchVehicle - column: LandingSite - column: Program - column: MissionType - column: Orbit - column: LaunchDateTime - column: Description - column: LaunchSite - column: Success The table should have the title "Missions" und the data must be loaded from the server with the following relative URL: "/MissionService/mission/launchvehicle/{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/launchvehicle/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint