Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyApp
Please create a React-JS application for the CompanyModule. The application has to offer the following views for the user interface: 1. CompanyView 2. PlatformView 3. PlatformAdoptionView 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 CompanyView must contain the following fields: - name: Country type: Country - name: FoundedDate type: DATE - name: IsForeign type: BOOL - name: IsTechnologyFocused type: BOOL - name: Name type: STRING - name: Sector type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/ExchangeService/country" (HTTP-GET) An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Exchange columns: - column: ListingsCount - column: Type - column: FoundedDate - column: Website - column: OwnerCompany - column: Name - column: MarketCapUsd - column: Currency - column: IsElectronic - column: LocationCity - column: LocationCountry The table should have the title "Exchanges" und the data must be loaded from the server with the following relative URL: "/ExchangeService/exchange/ownercompany/{id}" Add a HTML table to the view with the following Ownership columns: - column: ParentCompany - column: OwnershipType - column: SubsidiaryCompany - column: EndDate - column: StartDate The table should have the title "Ownerships" und the data must be loaded from the server with the following relative URL: "/MarketTierService/ownership/subsidiarycompany/{id}" Add a HTML table to the view with the following Ownership columns: - column: ParentCompany - column: OwnershipType - column: SubsidiaryCompany - column: EndDate - column: StartDate The table should have the title "Ownerships" und the data must be loaded from the server with the following relative URL: "/MarketTierService/ownership/parentcompany/{id}" Add a HTML table to the view with the following MergerAttempt columns: - column: Status - column: WithdrawnDate - column: AnnouncementDate - column: BidderExchange - column: PartnerCompany - column: ReasonWithdrawn - column: TargetExchange The table should have the title "MergerAttempts" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/mergerattempt/partnercompany/{id}" Add a HTML table to the view with the following Acquisition columns: - column: AnnouncementDate - column: AmountUsd - column: CloseDate - column: Description - column: AcquirerCompany - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CityService/acquisition/acquirercompany/{id}" Add a HTML table to the view with the following Acquisition columns: - column: AnnouncementDate - column: AmountUsd - column: CloseDate - column: Description - column: AcquirerCompany - column: TargetCompany The table should have the title "Acquisitions" und the data must be loaded from the server with the following relative URL: "/CityService/acquisition/targetcompany/{id}" Add a HTML table to the view with the following Listing columns: - column: Company - column: Currency - column: IsPrimary - column: Status - column: TickerSymbol - column: MarketTier - column: ListingDate - column: Exchange The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/company/{id}" Add a HTML table to the view with the following Platform columns: - column: ProviderCompany - column: LaunchDate - column: Name - column: IsCloudBased - column: Description The table should have the title "Platforms" und the data must be loaded from the server with the following relative URL: "/CompanyService/platform/providercompany/{id}" 2. The PlatformView must contain the following fields: - name: Description type: STRING - name: IsCloudBased type: BOOL - name: LaunchDate type: DATE - name: Name type: STRING - name: ProviderCompany type: Company The data source for the [ProviderCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Platform entity should be loaded from the relative URL: "/CompanyService/platform/{id}" (HTTP-GET) If a new Platform entity has been created, the new entity should be posted to the relative URL: "/CompanyService/platform" (HTTP-POST) If an existing Platform entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/platform/{id}" (HTTP-PUT) If an existing Platform entity has to be deleted, the following relative URL should be called: "/CompanyService/platform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PlatformAdoption columns: - column: Description - column: Platform - column: AdoptionDate - column: Exchange The table should have the title "PlatformAdoptions" und the data must be loaded from the server with the following relative URL: "/CompanyService/platformadoption/platform/{id}" 3. The PlatformAdoptionView must contain the following fields: - name: AdoptionDate type: DATE - name: Description type: STRING - name: Exchange type: Exchange - name: Platform type: Platform The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [Platform] select control should be loaded from the relative URL: "/CompanyService/platform" (HTTP-GET) An existing PlatformAdoption entity should be loaded from the relative URL: "/CompanyService/platformadoption/{id}" (HTTP-GET) If a new PlatformAdoption entity has been created, the new entity should be posted to the relative URL: "/CompanyService/platformadoption" (HTTP-POST) If an existing PlatformAdoption entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/platformadoption/{id}" (HTTP-PUT) If an existing PlatformAdoption entity has to be deleted, the following relative URL should be called: "/CompanyService/platformadoption/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint