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: IsoCode 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 Market columns: - column: RegionName - column: IsKeyMarket - column: City - column: Country The table should have the title "Markets" und the data must be loaded from the server with the following relative URL: "/MarketService/market/country/{id}" Add a HTML table to the view with the following HomeSharingClub columns: - column: Description - column: Country - column: City - column: SupportedByCompany - column: FoundedDate The table should have the title "HomeSharingClubs" und the data must be loaded from the server with the following relative URL: "/ListingService/homesharingclub/country/{id}" Add a HTML table to the view with the following Office columns: - column: IsHeadquarters - column: Company - column: Country - column: AddressLine - column: City - column: OpenedDate - column: ClosedDate The table should have the title "Offices" und the data must be loaded from the server with the following relative URL: "/AdvocacyGroupService/office/country/{id}" Add a HTML table to the view with the following Listing columns: - column: PostalCode - column: UpdatedAt - column: IsInstantBookable - column: PropertyType - column: Title - column: Status - column: Country - column: City - column: Bathrooms - column: CreatedAt - column: AddressLine - column: Beds - column: Bedrooms - column: MaxGuests - column: Latitude - column: HostProfile - column: Description - column: RoomType - column: Longitude The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/country/{id}" Add a HTML table to the view with the following AdvocacyGroup columns: - column: GroupType - column: Country - column: Description - column: Name The table should have the title "AdvocacyGroups" und the data must be loaded from the server with the following relative URL: "/AdvocacyGroupService/advocacygroup/country/{id}" Add a HTML table to the view with the following City columns: - column: Region - column: Latitude - column: Country - column: Name - column: Longitude The table should have the title "Citys" und the data must be loaded from the server with the following relative URL: "/ListingService/city/country/{id}" Add a HTML table to the view with the following Acquisition columns: - column: AcquiringCompany - column: AcquiredCompany - column: AnnouncementDate - column: Country - column: DealValueUsd - column: Notes - column: CloseDate The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CountryService/acquisition/country/{id}" Add a HTML table to the view with the following Jurisdiction columns: - column: Level - column: Notes - column: Country - column: Name The table should have the title "Jurisdictions" und the data must be loaded from the server with the following relative URL: "/JurisdictionService/jurisdiction/country/{id}" Add a HTML table to the view with the following Investor columns: - column: InvestorType - column: Website - column: Name - column: Country The table should have the title "Investors" und the data must be loaded from the server with the following relative URL: "/FundingRoundService/investor/country/{id}" Add a HTML table to the view with the following DataProcessingPartner columns: - column: Country - column: ProcessingType - column: Name - column: Description - column: Company - column: StartDate - column: EndDate The table should have the title "DataProcessingPartners" und the data must be loaded from the server with the following relative URL: "/CountryService/dataprocessingpartner/country/{id}" Add a HTML table to the view with the following PlatformUser columns: - column: FacebookProfileUrl - column: CreatedAt - column: City - column: FullName - column: Country - column: UpdatedAt - column: PhoneNumber - column: Email - column: DateOfBirth - column: VerificationLevel - column: GoogleProfileUrl - column: ProfilePhotoUrl - column: LinkedinProfileUrl The table should have the title "PlatformUsers" und the data must be loaded from the server with the following relative URL: "/PlatformUserService/platformuser/country/{id}" Add a HTML table to the view with the following Company columns: - column: Website - column: Industry - column: Name - column: HeadquartersAddress - column: IsPublic - column: FoundedDate - column: Country - column: City - column: LegalForm The table should have the title "Companys" und the data must be loaded from the server with the following relative URL: "/CompanyService/company/country/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint