Overview
Summary
Contact
Donate
Imprint
Prompt for the
FrequencyBandApp
Please create a React-JS application for the FrequencyBandModule. The application has to offer the following views for the user interface: 1. FrequencyBandView 2. SatelliteFrequencyBandView 3. UserTerminalFrequencyBandView 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 FrequencyBandView must contain the following fields: - name: BandName type: STRING - name: FrequencyEndGHz type: DOUBLE - name: FrequencyStartGHz type: DOUBLE - name: UsageType type: STRING An existing FrequencyBand entity should be loaded from the relative URL: "/FrequencyBandService/frequencyband/{id}" (HTTP-GET) If a new FrequencyBand entity has been created, the new entity should be posted to the relative URL: "/FrequencyBandService/frequencyband" (HTTP-POST) If an existing FrequencyBand entity has been updated, the modified entity should be sent to the relative URL: "/FrequencyBandService/frequencyband/{id}" (HTTP-PUT) If an existing FrequencyBand entity has to be deleted, the following relative URL should be called: "/FrequencyBandService/frequencyband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GroundStationFrequencyBand columns: - column: GroundStation - column: FrequencyBand The table should have the title "GroundStationFrequencyBands" und the data must be loaded from the server with the following relative URL: "/GroundStationService/groundstationfrequencyband/frequencyband/{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/frequencyband/{id}" Add a HTML table to the view with the following UserTerminalFrequencyBand columns: - column: FrequencyBand - column: UserTerminal The table should have the title "UserTerminalFrequencyBands" und the data must be loaded from the server with the following relative URL: "/FrequencyBandService/userterminalfrequencyband/frequencyband/{id}" 2. The SatelliteFrequencyBandView must contain the following fields: - name: FrequencyBand type: FrequencyBand - name: Satellite type: Satellite The data source for the [FrequencyBand] select control should be loaded from the relative URL: "/FrequencyBandService/frequencyband" (HTTP-GET) The data source for the [Satellite] select control should be loaded from the relative URL: "/SatelliteService/satellite" (HTTP-GET) An existing SatelliteFrequencyBand entity should be loaded from the relative URL: "/FrequencyBandService/satellitefrequencyband/{id}" (HTTP-GET) If a new SatelliteFrequencyBand entity has been created, the new entity should be posted to the relative URL: "/FrequencyBandService/satellitefrequencyband" (HTTP-POST) If an existing SatelliteFrequencyBand entity has been updated, the modified entity should be sent to the relative URL: "/FrequencyBandService/satellitefrequencyband/{id}" (HTTP-PUT) If an existing SatelliteFrequencyBand entity has to be deleted, the following relative URL should be called: "/FrequencyBandService/satellitefrequencyband/{id}" (HTTP-DELETE) 3. The UserTerminalFrequencyBandView must contain the following fields: - name: FrequencyBand type: FrequencyBand - name: UserTerminal type: UserTerminal The data source for the [FrequencyBand] select control should be loaded from the relative URL: "/FrequencyBandService/frequencyband" (HTTP-GET) The data source for the [UserTerminal] select control should be loaded from the relative URL: "/UserTerminalService/userterminal" (HTTP-GET) An existing UserTerminalFrequencyBand entity should be loaded from the relative URL: "/FrequencyBandService/userterminalfrequencyband/{id}" (HTTP-GET) If a new UserTerminalFrequencyBand entity has been created, the new entity should be posted to the relative URL: "/FrequencyBandService/userterminalfrequencyband" (HTTP-POST) If an existing UserTerminalFrequencyBand entity has been updated, the modified entity should be sent to the relative URL: "/FrequencyBandService/userterminalfrequencyband/{id}" (HTTP-PUT) If an existing UserTerminalFrequencyBand entity has to be deleted, the following relative URL should be called: "/FrequencyBandService/userterminalfrequencyband/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint