Overview
Summary
Contact
Donate
Imprint
Prompt for the
CountryView
Please create a React-JS view called "CountryView" for the fields of the Country entity. 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}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint