Overview
Summary
Contact
Donate
Imprint
Prompt for the
StarlinkNetworkApp
Please create a React-JS application for the StarlinkNetworkModule. The application has to offer the following views for the user interface: 1. StarlinkMarketView 2. StarlinkMarketAvailabilityView 3. StarlinkNetworkView 4. StarlinkSatelliteView 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 StarlinkMarketView must contain the following fields: - name: Country type: STRING - name: Notes type: STRING - name: Region type: STRING An existing StarlinkMarket entity should be loaded from the relative URL: "/StarlinkNetworkService/starlinkmarket/{id}" (HTTP-GET) If a new StarlinkMarket entity has been created, the new entity should be posted to the relative URL: "/StarlinkNetworkService/starlinkmarket" (HTTP-POST) If an existing StarlinkMarket entity has been updated, the modified entity should be sent to the relative URL: "/StarlinkNetworkService/starlinkmarket/{id}" (HTTP-PUT) If an existing StarlinkMarket entity has to be deleted, the following relative URL should be called: "/StarlinkNetworkService/starlinkmarket/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StarlinkMarketAvailability columns: - column: AvailableFrom - column: StarlinkNetwork - column: StarlinkMarket - column: AvailableTo - column: Notes The table should have the title "StarlinkMarketAvailabilitys" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinkmarketavailability/starlinkmarket/{id}" 2. The StarlinkMarketAvailabilityView must contain the following fields: - name: AvailableFrom type: DATE - name: AvailableTo type: DATE - name: Notes type: STRING - name: StarlinkMarket type: StarlinkMarket - name: StarlinkNetwork type: StarlinkNetwork The data source for the [StarlinkMarket] select control should be loaded from the relative URL: "/StarlinkNetworkService/starlinkmarket" (HTTP-GET) The data source for the [StarlinkNetwork] select control should be loaded from the relative URL: "/StarlinkNetworkService/starlinknetwork" (HTTP-GET) An existing StarlinkMarketAvailability entity should be loaded from the relative URL: "/StarlinkNetworkService/starlinkmarketavailability/{id}" (HTTP-GET) If a new StarlinkMarketAvailability entity has been created, the new entity should be posted to the relative URL: "/StarlinkNetworkService/starlinkmarketavailability" (HTTP-POST) If an existing StarlinkMarketAvailability entity has been updated, the modified entity should be sent to the relative URL: "/StarlinkNetworkService/starlinkmarketavailability/{id}" (HTTP-PUT) If an existing StarlinkMarketAvailability entity has to be deleted, the following relative URL should be called: "/StarlinkNetworkService/starlinkmarketavailability/{id}" (HTTP-DELETE) 3. The StarlinkNetworkView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: Name type: STRING - name: Notes type: STRING - name: StartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing StarlinkNetwork entity should be loaded from the relative URL: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-GET) If a new StarlinkNetwork entity has been created, the new entity should be posted to the relative URL: "/StarlinkNetworkService/starlinknetwork" (HTTP-POST) If an existing StarlinkNetwork entity has been updated, the modified entity should be sent to the relative URL: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-PUT) If an existing StarlinkNetwork entity has to be deleted, the following relative URL should be called: "/StarlinkNetworkService/starlinknetwork/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StarlinkSatellite columns: - column: Plane - column: StarlinkNetwork - column: Notes - column: Shell - column: Slot - column: Satellite - column: Block The table should have the title "StarlinkSatellites" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinksatellite/starlinknetwork/{id}" Add a HTML table to the view with the following StarlinkUserTerminal columns: - column: StarlinkNetwork - column: Notes - column: ProductionFacility - column: HardwareVersion - column: ModelName The table should have the title "StarlinkUserTerminals" und the data must be loaded from the server with the following relative URL: "/FacilityService/starlinkuserterminal/starlinknetwork/{id}" Add a HTML table to the view with the following StarlinkMarketAvailability columns: - column: AvailableFrom - column: StarlinkNetwork - column: StarlinkMarket - column: AvailableTo - column: Notes The table should have the title "StarlinkMarketAvailabilitys" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinkmarketavailability/starlinknetwork/{id}" 4. The StarlinkSatelliteView must contain the following fields: - name: Block type: STRING - name: Notes type: STRING - name: Plane type: INT - name: Satellite type: Satellite - name: Shell type: STRING - name: Slot type: INT - name: StarlinkNetwork type: StarlinkNetwork The data source for the [Satellite] select control should be loaded from the relative URL: "/CustomerService/satellite" (HTTP-GET) The data source for the [StarlinkNetwork] select control should be loaded from the relative URL: "/StarlinkNetworkService/starlinknetwork" (HTTP-GET) An existing StarlinkSatellite entity should be loaded from the relative URL: "/StarlinkNetworkService/starlinksatellite/{id}" (HTTP-GET) If a new StarlinkSatellite entity has been created, the new entity should be posted to the relative URL: "/StarlinkNetworkService/starlinksatellite" (HTTP-POST) If an existing StarlinkSatellite entity has been updated, the modified entity should be sent to the relative URL: "/StarlinkNetworkService/starlinksatellite/{id}" (HTTP-PUT) If an existing StarlinkSatellite entity has to be deleted, the following relative URL should be called: "/StarlinkNetworkService/starlinksatellite/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint