Overview
Summary
Contact
Donate
Imprint
Prompt for the
SatelliteBatchApp
Please create a React-JS application for the SatelliteBatchModule. The application has to offer the following views for the user interface: 1. CountryAvailabilityView 2. IncidentView 3. RegulatoryApprovalSatelliteBatchView 4. SatelliteBatchView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The CountryAvailabilityView must contain the following fields: - name: Country type: STRING - name: Notes type: STRING - name: StartDate type: DATE An existing CountryAvailability entity should be loaded from the relative URL: "/SatelliteBatchService/countryavailability/{id}" (HTTP-GET) If a new CountryAvailability entity has been created, the new entity should be posted to the relative URL: "/SatelliteBatchService/countryavailability" (HTTP-POST) If an existing CountryAvailability entity has been updated, the modified entity should be sent to the relative URL: "/SatelliteBatchService/countryavailability/{id}" (HTTP-PUT) If an existing CountryAvailability entity has to be deleted, the following relative URL should be called: "/SatelliteBatchService/countryavailability/{id}" (HTTP-DELETE) 2. The IncidentView must contain the following fields: - name: Date type: DATE - name: Description type: STRING - name: IncidentType type: STRING - name: InvolvedParty type: STRING An existing Incident entity should be loaded from the relative URL: "/SatelliteBatchService/incident/{id}" (HTTP-GET) If a new Incident entity has been created, the new entity should be posted to the relative URL: "/SatelliteBatchService/incident" (HTTP-POST) If an existing Incident entity has been updated, the modified entity should be sent to the relative URL: "/SatelliteBatchService/incident/{id}" (HTTP-PUT) If an existing Incident entity has to be deleted, the following relative URL should be called: "/SatelliteBatchService/incident/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SatelliteIncident columns: - column: Satellite - column: Incident The table should have the title "SatelliteIncidents" und the data must be loaded from the server with the following relative URL: "/SatelliteService/satelliteincident/incident/{id}" 3. The RegulatoryApprovalSatelliteBatchView must contain the following fields: - name: RegulatoryApproval type: RegulatoryApproval - name: SatelliteBatch type: SatelliteBatch The data source for the [SatelliteBatch] select control should be loaded from the relative URL: "/SatelliteBatchService/satellitebatch" (HTTP-GET) The data source for the [RegulatoryApproval] select control should be loaded from the relative URL: "/RegulatoryApprovalService/regulatoryapproval" (HTTP-GET) An existing RegulatoryApprovalSatelliteBatch entity should be loaded from the relative URL: "/SatelliteBatchService/regulatoryapprovalsatellitebatch/{id}" (HTTP-GET) If a new RegulatoryApprovalSatelliteBatch entity has been created, the new entity should be posted to the relative URL: "/SatelliteBatchService/regulatoryapprovalsatellitebatch" (HTTP-POST) If an existing RegulatoryApprovalSatelliteBatch entity has been updated, the modified entity should be sent to the relative URL: "/SatelliteBatchService/regulatoryapprovalsatellitebatch/{id}" (HTTP-PUT) If an existing RegulatoryApprovalSatelliteBatch entity has to be deleted, the following relative URL should be called: "/SatelliteBatchService/regulatoryapprovalsatellitebatch/{id}" (HTTP-DELETE) 4. 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