Overview
Summary
Contact
Donate
Imprint
Prompt for the
RocketEngineView
Please create a React-JS view called "RocketEngineView" for the fields of the RocketEngine entity. The RocketEngineView must contain the following fields: - name: Company type: Company - name: CycleType type: STRING - name: Name type: STRING - name: Notes type: STRING - name: SpecificImpulseVacSec type: STRING - name: ThrustKn type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing RocketEngine entity should be loaded from the relative URL: "/ShipRoleService/rocketengine/{id}" (HTTP-GET) If a new RocketEngine entity has been created, the new entity should be posted to the relative URL: "/ShipRoleService/rocketengine" (HTTP-POST) If an existing RocketEngine entity has been updated, the modified entity should be sent to the relative URL: "/ShipRoleService/rocketengine/{id}" (HTTP-PUT) If an existing RocketEngine entity has to be deleted, the following relative URL should be called: "/ShipRoleService/rocketengine/{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/rocketengine/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint