Overview
Summary
Contact
Donate
Imprint
Prompt for the
NetworkTechnologyApp
Please create a React-JS application for the NetworkTechnologyModule. The application has to offer the following views for the user interface: 1. GroundStationView 2. NetworkTechnologyView 3. SpectrumBandView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The GroundStationView must contain the following fields: - name: City type: City - name: Latitude type: STRING - name: Longitude type: STRING - name: Name type: STRING - name: NetworkTechnology type: NetworkTechnology - name: SpectrumBand type: SpectrumBand The data source for the [NetworkTechnology] select control should be loaded from the relative URL: "/NetworkTechnologyService/networktechnology" (HTTP-GET) The data source for the [SpectrumBand] select control should be loaded from the relative URL: "/NetworkTechnologyService/spectrumband" (HTTP-GET) The data source for the [City] select control should be loaded from the relative URL: "/RegionService/city" (HTTP-GET) An existing GroundStation entity should be loaded from the relative URL: "/NetworkTechnologyService/groundstation/{id}" (HTTP-GET) If a new GroundStation entity has been created, the new entity should be posted to the relative URL: "/NetworkTechnologyService/groundstation" (HTTP-POST) If an existing GroundStation entity has been updated, the modified entity should be sent to the relative URL: "/NetworkTechnologyService/groundstation/{id}" (HTTP-PUT) If an existing GroundStation entity has to be deleted, the following relative URL should be called: "/NetworkTechnologyService/groundstation/{id}" (HTTP-DELETE) 2. The NetworkTechnologyView must contain the following fields: - name: MaxThroughputMbitPerSec type: STRING - name: Name type: STRING - name: Standard type: STRING An existing NetworkTechnology entity should be loaded from the relative URL: "/NetworkTechnologyService/networktechnology/{id}" (HTTP-GET) If a new NetworkTechnology entity has been created, the new entity should be posted to the relative URL: "/NetworkTechnologyService/networktechnology" (HTTP-POST) If an existing NetworkTechnology entity has been updated, the modified entity should be sent to the relative URL: "/NetworkTechnologyService/networktechnology/{id}" (HTTP-PUT) If an existing NetworkTechnology entity has to be deleted, the following relative URL should be called: "/NetworkTechnologyService/networktechnology/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GroundStation columns: - column: NetworkTechnology - column: City - column: Name - column: SpectrumBand - column: Latitude - column: Longitude The table should have the title "GroundStations" und the data must be loaded from the server with the following relative URL: "/NetworkTechnologyService/groundstation/networktechnology/{id}" 3. The SpectrumBandView must contain the following fields: - name: DuplexMode type: STRING - name: FrequencyRangeMhz type: STRING - name: Name type: STRING An existing SpectrumBand entity should be loaded from the relative URL: "/NetworkTechnologyService/spectrumband/{id}" (HTTP-GET) If a new SpectrumBand entity has been created, the new entity should be posted to the relative URL: "/NetworkTechnologyService/spectrumband" (HTTP-POST) If an existing SpectrumBand entity has been updated, the modified entity should be sent to the relative URL: "/NetworkTechnologyService/spectrumband/{id}" (HTTP-PUT) If an existing SpectrumBand entity has to be deleted, the following relative URL should be called: "/NetworkTechnologyService/spectrumband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GroundStation columns: - column: NetworkTechnology - column: City - column: Name - column: SpectrumBand - column: Latitude - column: Longitude The table should have the title "GroundStations" und the data must be loaded from the server with the following relative URL: "/NetworkTechnologyService/groundstation/spectrumband/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint