Overview
Summary
Contact
Donate
Imprint
Prompt for the
MissionTypeView
Please create a React-JS view called "MissionTypeView" for the fields of the MissionType entity. The MissionTypeView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing MissionType entity should be loaded from the relative URL: "/MissionService/missiontype/{id}" (HTTP-GET) If a new MissionType entity has been created, the new entity should be posted to the relative URL: "/MissionService/missiontype" (HTTP-POST) If an existing MissionType entity has been updated, the modified entity should be sent to the relative URL: "/MissionService/missiontype/{id}" (HTTP-PUT) If an existing MissionType entity has to be deleted, the following relative URL should be called: "/MissionService/missiontype/{id}" (HTTP-DELETE) 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/missiontype/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint