Overview
Summary
Contact
Donate
Imprint
Prompt for the
SatelliteView
Please create a React-JS view called "SatelliteView" for the fields of the Satellite entity. The SatelliteView must contain the following fields: - name: CommunicationCapacityGbit type: DOUBLE - name: DeorbitDate type: DATE - name: Generation type: STRING - name: HasLaserLink type: BOOL - name: HeightKm type: DOUBLE - name: InclinationDeg type: DOUBLE - name: LaunchDate type: DATE - name: MassKg type: DOUBLE - name: MaterialNotes type: STRING - name: Name type: STRING - name: OrbitShell type: OrbitShell - name: PropulsionType type: STRING - name: SatelliteBatch type: SatelliteBatch - name: Status type: STRING - name: Version type: STRING The data source for the [SatelliteBatch] select control should be loaded from the relative URL: "/SatelliteBatchService/satellitebatch" (HTTP-GET) The data source for the [OrbitShell] select control should be loaded from the relative URL: "/SatelliteService/orbitshell" (HTTP-GET) An existing Satellite entity should be loaded from the relative URL: "/SatelliteService/satellite/{id}" (HTTP-GET) If a new Satellite entity has been created, the new entity should be posted to the relative URL: "/SatelliteService/satellite" (HTTP-POST) If an existing Satellite entity has been updated, the modified entity should be sent to the relative URL: "/SatelliteService/satellite/{id}" (HTTP-PUT) If an existing Satellite entity has to be deleted, the following relative URL should be called: "/SatelliteService/satellite/{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/satellite/{id}" Add a HTML table to the view with the following LaserLink columns: - column: SatelliteA - column: ActivationDate - column: Status - column: SatelliteB The table should have the title "LaserLinks" und the data must be loaded from the server with the following relative URL: "/SatelliteService/laserlink/satellitea/{id}" Add a HTML table to the view with the following LaserLink columns: - column: SatelliteA - column: ActivationDate - column: Status - column: SatelliteB The table should have the title "LaserLinks" und the data must be loaded from the server with the following relative URL: "/SatelliteService/laserlink/satelliteb/{id}" Add a HTML table to the view with the following DeorbitEvent columns: - column: Satellite - column: Cause - column: Notes - column: Date The table should have the title "DeorbitEvents" und the data must be loaded from the server with the following relative URL: "/SatelliteService/deorbitevent/satellite/{id}" Add a HTML table to the view with the following SatelliteFrequencyBand columns: - column: FrequencyBand - column: Satellite The table should have the title "SatelliteFrequencyBands" und the data must be loaded from the server with the following relative URL: "/FrequencyBandService/satellitefrequencyband/satellite/{id}" Add a HTML table to the view with the following SatelliteGroundStation columns: - column: Satellite - column: GroundStation The table should have the title "SatelliteGroundStations" und the data must be loaded from the server with the following relative URL: "/SatelliteService/satellitegroundstation/satellite/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint