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. AcquisitionView 2. CountryView 3. DataProcessingPartnerView 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 AcquisitionView must contain the following fields: - name: AcquiredCompany type: LONG - name: AcquiringCompany type: LONG - name: AnnouncementDate type: DATE - name: CloseDate type: DATE - name: Country type: Country - name: DealValueUsd type: DOUBLE - name: Notes type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Acquisition entity should be loaded from the relative URL: "/CountryService/acquisition/{id}" (HTTP-GET) If a new Acquisition entity has been created, the new entity should be posted to the relative URL: "/CountryService/acquisition" (HTTP-POST) If an existing Acquisition entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/acquisition/{id}" (HTTP-PUT) If an existing Acquisition entity has to be deleted, the following relative URL should be called: "/CountryService/acquisition/{id}" (HTTP-DELETE) 2. 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}" 3. The DataProcessingPartnerView must contain the following fields: - name: Company type: Company - name: Country type: Country - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: ProcessingType 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 DataProcessingPartner entity should be loaded from the relative URL: "/CountryService/dataprocessingpartner/{id}" (HTTP-GET) If a new DataProcessingPartner entity has been created, the new entity should be posted to the relative URL: "/CountryService/dataprocessingpartner" (HTTP-POST) If an existing DataProcessingPartner entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/dataprocessingpartner/{id}" (HTTP-PUT) If an existing DataProcessingPartner entity has to be deleted, the following relative URL should be called: "/CountryService/dataprocessingpartner/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint