Overview
Summary
Contact
Donate
Imprint
Prompt for the
SatelliteBatchView
Please create a React-JS view called "SatelliteBatchView" for the fields of the SatelliteBatch entity. The SatelliteBatchView must contain the following fields: - name: BatchName type: STRING - name: LaunchDate type: DATE - name: LaunchSite type: STRING - name: LaunchVehicle type: STRING - name: Notes type: STRING - name: NumberOfSatellites type: INT An existing SatelliteBatch entity should be loaded from the relative URL: "/SatelliteBatchService/satellitebatch/{id}" (HTTP-GET) If a new SatelliteBatch entity has been created, the new entity should be posted to the relative URL: "/SatelliteBatchService/satellitebatch" (HTTP-POST) If an existing SatelliteBatch entity has been updated, the modified entity should be sent to the relative URL: "/SatelliteBatchService/satellitebatch/{id}" (HTTP-PUT) If an existing SatelliteBatch entity has to be deleted, the following relative URL should be called: "/SatelliteBatchService/satellitebatch/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Satellite columns: - column: MassKg - column: PropulsionType - column: InclinationDeg - column: HeightKm - column: Generation - column: Name - column: OrbitShell - column: Version - column: HasLaserLink - column: MaterialNotes - column: CommunicationCapacityGbit - column: Status - column: SatelliteBatch - column: LaunchDate - column: DeorbitDate The table should have the title "Satellites" und the data must be loaded from the server with the following relative URL: "/SatelliteService/satellite/satellitebatch/{id}" Add a HTML table to the view with the following RegulatoryApprovalSatelliteBatch columns: - column: SatelliteBatch - column: RegulatoryApproval The table should have the title "RegulatoryApprovalSatelliteBatchs" und the data must be loaded from the server with the following relative URL: "/SatelliteBatchService/regulatoryapprovalsatellitebatch/satellitebatch/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint