Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryApp
Please create a React-JS application for the CountryModule. The application has to offer the following views for the user interface: 1. CountryView 2. HeadquartersView 3. InternetServiceProviderView 4. InvestmentView 5. ProductionCompanyView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The CountryView must contain the following fields: - name: IsoCode2 type: STRING - name: IsoCode3 type: STRING - name: Name type: STRING - name: Region type: STRING An existing Country entity should be loaded from the relative URL: "/CountryService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/CountryService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/CountryService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PrizeTeam columns: - column: Name - column: Country - column: PrizeCompetition - column: Notes The table should have the title "PrizeTeams" und the data must be loaded from the server with the following relative URL: "/RecommendationAlgorithmService/prizeteam/country/{id}" Add a HTML table to the view with the following RegulatoryRestriction columns: - column: Reason - column: StartDate - column: EndDate - column: RestrictionType - column: ServiceSupply - column: Country The table should have the title "RegulatoryRestrictions" und the data must be loaded from the server with the following relative URL: "/ServiceSupplyService/regulatoryrestriction/country/{id}" Add a HTML table to the view with the following TrafficStatistic columns: - column: ServiceSupply - column: Country - column: RankGlobal - column: Notes - column: Year - column: TrafficSharePercent The table should have the title "TrafficStatistics" und the data must be loaded from the server with the following relative URL: "/ServiceSupplyService/trafficstatistic/country/{id}" Add a HTML table to the view with the following ProductionCompany columns: - column: Name - column: Country - column: Website The table should have the title "ProductionCompanys" und the data must be loaded from the server with the following relative URL: "/CountryService/productioncompany/country/{id}" Add a HTML table to the view with the following Headquarters columns: - column: Country - column: Region - column: AddressLine - column: City - column: Company - column: EndDate - column: StartDate The table should have the title "Headquarterss" und the data must be loaded from the server with the following relative URL: "/CountryService/headquarters/country/{id}" Add a HTML table to the view with the following MarketPresence columns: - column: ServiceSupply - column: Country - column: Status - column: Notes - column: ExitDate - column: LaunchDate The table should have the title "MarketPresences" und the data must be loaded from the server with the following relative URL: "/ServiceSupplyService/marketpresence/country/{id}" Add a HTML table to the view with the following ContentAvailability columns: - column: EndDate - column: Country - column: ServiceSupply - column: StartDate - column: Notes - column: ContentTitle The table should have the title "ContentAvailabilitys" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contentavailability/country/{id}" Add a HTML table to the view with the following UserAccount columns: - column: Country - column: Email - column: CreatedAt - column: Status The table should have the title "UserAccounts" und the data must be loaded from the server with the following relative URL: "/UserProfileService/useraccount/country/{id}" Add a HTML table to the view with the following RegulatoryEvent columns: - column: Company - column: Name - column: Description - column: EventDate - column: Country The table should have the title "RegulatoryEvents" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulatoryevent/country/{id}" Add a HTML table to the view with the following Investment columns: - column: Country - column: Company - column: StartDate - column: Amount - column: EndDate - column: Currency - column: Description The table should have the title "Investments" und the data must be loaded from the server with the following relative URL: "/CountryService/investment/country/{id}" Add a HTML table to the view with the following InternetServiceProvider columns: - column: Name - column: Country The table should have the title "InternetServiceProviders" und the data must be loaded from the server with the following relative URL: "/CountryService/internetserviceprovider/country/{id}" 2. The HeadquartersView must contain the following fields: - name: AddressLine type: STRING - name: City type: STRING - name: Company type: Company - name: Country type: Country - name: EndDate type: DATE - name: Region 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) The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Headquarters entity should be loaded from the relative URL: "/CountryService/headquarters/{id}" (HTTP-GET) If a new Headquarters entity has been created, the new entity should be posted to the relative URL: "/CountryService/headquarters" (HTTP-POST) If an existing Headquarters entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/headquarters/{id}" (HTTP-PUT) If an existing Headquarters entity has to be deleted, the following relative URL should be called: "/CountryService/headquarters/{id}" (HTTP-DELETE) 3. The InternetServiceProviderView must contain the following fields: - name: Country type: Country - name: Name type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing InternetServiceProvider entity should be loaded from the relative URL: "/CountryService/internetserviceprovider/{id}" (HTTP-GET) If a new InternetServiceProvider entity has been created, the new entity should be posted to the relative URL: "/CountryService/internetserviceprovider" (HTTP-POST) If an existing InternetServiceProvider entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/internetserviceprovider/{id}" (HTTP-PUT) If an existing InternetServiceProvider entity has to be deleted, the following relative URL should be called: "/CountryService/internetserviceprovider/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PeeringAgreement columns: - column: InternetServiceProvider - column: StartDate - column: Notes - column: EndDate - column: ServiceSupply The table should have the title "PeeringAgreements" und the data must be loaded from the server with the following relative URL: "/LanguageService/peeringagreement/internetserviceprovider/{id}" 4. The InvestmentView must contain the following fields: - name: Amount type: STRING - name: Company type: Company - name: Country type: Country - name: Currency type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: StartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Investment entity should be loaded from the relative URL: "/CountryService/investment/{id}" (HTTP-GET) If a new Investment entity has been created, the new entity should be posted to the relative URL: "/CountryService/investment" (HTTP-POST) If an existing Investment entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/investment/{id}" (HTTP-PUT) If an existing Investment entity has to be deleted, the following relative URL should be called: "/CountryService/investment/{id}" (HTTP-DELETE) 5. The ProductionCompanyView must contain the following fields: - name: Country type: Country - name: Name type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing ProductionCompany entity should be loaded from the relative URL: "/CountryService/productioncompany/{id}" (HTTP-GET) If a new ProductionCompany entity has been created, the new entity should be posted to the relative URL: "/CountryService/productioncompany" (HTTP-POST) If an existing ProductionCompany entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/productioncompany/{id}" (HTTP-PUT) If an existing ProductionCompany entity has to be deleted, the following relative URL should be called: "/CountryService/productioncompany/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ContentTitle columns: - column: ProductionCompany - column: ReleaseDate - column: Synopsis - column: ImdbId - column: OriginalTitle - column: IsNetflixOriginal - column: ContentType - column: LocalizedTitle - column: RuntimeMinutes The table should have the title "ContentTitles" und the data must be loaded from the server with the following relative URL: "/ContentTitleService/contenttitle/productioncompany/{id}" Add a HTML table to the view with the following ContentDeal columns: - column: DealType - column: Currency - column: ProductionCompany - column: Name - column: Notes - column: EndDate - column: Company - column: StartDate - column: ValueAmount The table should have the title "ContentDeals" und the data must be loaded from the server with the following relative URL: "/CompanyService/contentdeal/productioncompany/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint