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. HiddenCameraIncidentView 3. RegulationPlatformImpactView 4. StockListingView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The CompanyView must contain the following fields: - name: City type: City - name: Country type: Country - name: FoundedDate type: DATE - name: HeadquartersAddress type: STRING - name: Industry type: STRING - name: IsPublic type: BOOL - name: LegalForm type: STRING - 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) The data source for the [City] select control should be loaded from the relative URL: "/ListingService/city" (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 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/company/{id}" Add a HTML table to the view with the following CompanyAdvocacyGroupRelation columns: - column: AdvocacyGroup - column: Description - column: Company - column: RelationType The table should have the title "CompanyAdvocacyGroupRelations" und the data must be loaded from the server with the following relative URL: "/AdvocacyGroupService/companyadvocacygrouprelation/company/{id}" Add a HTML table to the view with the following RegulationPlatformImpact columns: - column: ImpactType - column: Description - column: Company - column: Regulation The table should have the title "RegulationPlatformImpacts" und the data must be loaded from the server with the following relative URL: "/CompanyService/regulationplatformimpact/company/{id}" Add a HTML table to the view with the following FundingRound columns: - column: AmountUsd - column: SourceReference - column: AnnouncementDate - column: LeadInvestor - column: RoundType - column: Company The table should have the title "FundingRounds" und the data must be loaded from the server with the following relative URL: "/FundingRoundService/fundinground/company/{id}" Add a HTML table to the view with the following TaxCase columns: - column: Status - column: EndDate - column: Description - column: Currency - column: StartDate - column: AmountAssessed - column: Company - column: Jurisdiction The table should have the title "TaxCases" und the data must be loaded from the server with the following relative URL: "/BookingService/taxcase/company/{id}" Add a HTML table to the view with the following StockListing columns: - column: Exchange - column: Isin - column: ListingDate - column: Segment - column: Ticker - column: Company The table should have the title "StockListings" und the data must be loaded from the server with the following relative URL: "/CompanyService/stocklisting/company/{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/company/{id}" Add a HTML table to the view with the following Fine columns: - column: Regulation - column: Jurisdiction - column: Currency - column: Amount - column: DecisionDate - column: Description - column: Company The table should have the title "Fines" und the data must be loaded from the server with the following relative URL: "/JurisdictionService/fine/company/{id}" Add a HTML table to the view with the following CovidImpact columns: - column: PeriodEnd - column: MetricType - column: Company - column: Market - column: Currency - column: Notes - column: Value - column: PeriodStart The table should have the title "CovidImpacts" und the data must be loaded from the server with the following relative URL: "/MarketService/covidimpact/company/{id}" 2. The HiddenCameraIncidentView must contain the following fields: - name: Description type: STRING - name: InvolvedGuests type: INT - name: LawEnforcementContacted type: BOOL - name: Listing type: Listing - name: ReportedAt type: DATE - name: SettlementType type: STRING The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) An existing HiddenCameraIncident entity should be loaded from the relative URL: "/CompanyService/hiddencameraincident/{id}" (HTTP-GET) If a new HiddenCameraIncident entity has been created, the new entity should be posted to the relative URL: "/CompanyService/hiddencameraincident" (HTTP-POST) If an existing HiddenCameraIncident entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/hiddencameraincident/{id}" (HTTP-PUT) If an existing HiddenCameraIncident entity has to be deleted, the following relative URL should be called: "/CompanyService/hiddencameraincident/{id}" (HTTP-DELETE) 3. The RegulationPlatformImpactView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: ImpactType type: STRING - name: Regulation type: Regulation The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Regulation] select control should be loaded from the relative URL: "/JurisdictionService/regulation" (HTTP-GET) An existing RegulationPlatformImpact entity should be loaded from the relative URL: "/CompanyService/regulationplatformimpact/{id}" (HTTP-GET) If a new RegulationPlatformImpact entity has been created, the new entity should be posted to the relative URL: "/CompanyService/regulationplatformimpact" (HTTP-POST) If an existing RegulationPlatformImpact entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/regulationplatformimpact/{id}" (HTTP-PUT) If an existing RegulationPlatformImpact entity has to be deleted, the following relative URL should be called: "/CompanyService/regulationplatformimpact/{id}" (HTTP-DELETE) 4. The StockListingView must contain the following fields: - name: Company type: Company - name: Exchange type: STRING - name: Isin type: STRING - name: ListingDate type: Listing - name: Segment type: STRING - name: Ticker type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ListingDate] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) An existing StockListing entity should be loaded from the relative URL: "/CompanyService/stocklisting/{id}" (HTTP-GET) If a new StockListing entity has been created, the new entity should be posted to the relative URL: "/CompanyService/stocklisting" (HTTP-POST) If an existing StockListing entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/stocklisting/{id}" (HTTP-PUT) If an existing StockListing entity has to be deleted, the following relative URL should be called: "/CompanyService/stocklisting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint