Overview
Summary
Contact
Donate
Imprint
Prompt for the
ExchangeApp
Please create a React-JS application for the ExchangeModule. The application has to offer the following views for the user interface: 1. CountryView 2. ExchangeView 3. InspectionView 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 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: "/ExchangeService/country/{id}" (HTTP-GET) If a new Country entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/country" (HTTP-POST) If an existing Country entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/country/{id}" (HTTP-PUT) If an existing Country entity has to be deleted, the following relative URL should be called: "/ExchangeService/country/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regulator columns: - column: Country - column: Website - column: Name - column: Type The table should have the title "Regulators" und the data must be loaded from the server with the following relative URL: "/RegulatorService/regulator/country/{id}" 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/locationcountry/{id}" Add a HTML table to the view with the following City columns: - column: Country - column: Name The table should have the title "Citys" und the data must be loaded from the server with the following relative URL: "/CityService/city/country/{id}" Add a HTML table to the view with the following MarketMaker columns: - column: Regulator - column: Name - column: IsNasdaqMember - column: Country The table should have the title "MarketMakers" und the data must be loaded from the server with the following relative URL: "/RegulatorService/marketmaker/country/{id}" Add a HTML table to the view with the following Company columns: - column: IsForeign - column: Country - column: FoundedDate - column: Sector - column: IsTechnologyFocused - column: Name 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}" 2. The ExchangeView must contain the following fields: - name: Currency type: STRING - name: FoundedDate type: DATE - name: IsElectronic type: BOOL - name: ListingsCount type: INT - name: LocationCity type: City - name: LocationCountry type: Country - name: MarketCapUsd type: DOUBLE - name: Name type: STRING - name: OwnerCompany type: Company - name: Type type: STRING - name: Website type: STRING The data source for the [LocationCountry] select control should be loaded from the relative URL: "/ExchangeService/country" (HTTP-GET) The data source for the [LocationCity] select control should be loaded from the relative URL: "/CityService/city" (HTTP-GET) The data source for the [OwnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Exchange entity should be loaded from the relative URL: "/ExchangeService/exchange/{id}" (HTTP-GET) If a new Exchange entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/exchange" (HTTP-POST) If an existing Exchange entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/exchange/{id}" (HTTP-PUT) If an existing Exchange entity has to be deleted, the following relative URL should be called: "/ExchangeService/exchange/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MarketTier columns: - column: MinPublicFloatPercent - column: Exchange - column: MinShareholders - column: Name - column: Code - column: MinMarketCapUsd - column: Description The table should have the title "MarketTiers" und the data must be loaded from the server with the following relative URL: "/MarketTierService/markettier/exchange/{id}" 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/exchange/{id}" Add a HTML table to the view with the following MarketMakerQuotePermission columns: - column: MarketMaker - column: EffectiveTo - column: EffectiveFrom - column: Exchange - column: QuoteLevel The table should have the title "MarketMakerQuotePermissions" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/marketmakerquotepermission/exchange/{id}" Add a HTML table to the view with the following QuoteLevel columns: - column: IsForMarketMakers - column: Description - column: Exchange - column: LevelNumber The table should have the title "QuoteLevels" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/quotelevel/exchange/{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/exchange/{id}" Add a HTML table to the view with the following TradingSession columns: - column: Name - column: Exchange - column: SessionType - column: EndTimeLocal - column: IsExtendedHours - column: StartTimeLocal - column: TimeZone The table should have the title "TradingSessions" und the data must be loaded from the server with the following relative URL: "/ListingService/tradingsession/exchange/{id}" Add a HTML table to the view with the following ListingFeeSchedule columns: - column: MinFeeUsd - column: EffectiveFrom - column: Exchange - column: EffectiveTo - column: ForAcquisitionCompanies - column: MarketTier - column: MaxFeeUsd The table should have the title "ListingFeeSchedules" und the data must be loaded from the server with the following relative URL: "/MarketTierService/listingfeeschedule/exchange/{id}" Add a HTML table to the view with the following ExchangeMembershipInInitiative columns: - column: SustainabilityInitiative - column: JoinDate - column: Exchange The table should have the title "ExchangeMembershipInInitiatives" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/exchangemembershipininitiative/exchange/{id}" Add a HTML table to the view with the following TradingVolumeStat columns: - column: MarketSharePercent - column: AverageDailyTrades - column: Exchange - column: Year The table should have the title "TradingVolumeStats" und the data must be loaded from the server with the following relative URL: "/CityService/tradingvolumestat/exchange/{id}" Add a HTML table to the view with the following LegalAction columns: - column: Exchange - column: ActionDate - column: ActionType - column: Description - column: Regulator The table should have the title "LegalActions" und the data must be loaded from the server with the following relative URL: "/RegulatorService/legalaction/exchange/{id}" Add a HTML table to the view with the following Index columns: - column: Name - column: Exchange - column: Description - column: Code - column: IsCapitalizationWeighted The table should have the title "Indexs" und the data must be loaded from the server with the following relative URL: "/ListingService/index/exchange/{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/bidderexchange/{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/targetexchange/{id}" Add a HTML table to the view with the following Event columns: - column: Source - column: Exchange - column: EventDate - column: Description - column: EventType The table should have the title "Events" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/event/exchange/{id}" Add a HTML table to the view with the following TradingScheduleChange columns: - column: EffectiveDate - column: Exchange - column: AnnouncementDate - column: Description The table should have the title "TradingScheduleChanges" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/tradingschedulechange/exchange/{id}" Add a HTML table to the view with the following OrderBookFeature columns: - column: LaunchDate - column: Description - column: Exchange - column: Name The table should have the title "OrderBookFeatures" und the data must be loaded from the server with the following relative URL: "/MarketTierService/orderbookfeature/exchange/{id}" Add a HTML table to the view with the following ExchangeVenue columns: - column: IsPrimary - column: Exchange - column: City The table should have the title "ExchangeVenues" und the data must be loaded from the server with the following relative URL: "/CityService/exchangevenue/exchange/{id}" Add a HTML table to the view with the following Inspection columns: - column: InspectionDate - column: IsAntitrustRelated - column: Description - column: Regulator - column: Exchange The table should have the title "Inspections" und the data must be loaded from the server with the following relative URL: "/ExchangeService/inspection/exchange/{id}" 3. The InspectionView must contain the following fields: - name: Description type: STRING - name: Exchange type: Exchange - name: InspectionDate type: DATE - name: IsAntitrustRelated type: BOOL - name: Regulator type: Regulator The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [Regulator] select control should be loaded from the relative URL: "/RegulatorService/regulator" (HTTP-GET) An existing Inspection entity should be loaded from the relative URL: "/ExchangeService/inspection/{id}" (HTTP-GET) If a new Inspection entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/inspection" (HTTP-POST) If an existing Inspection entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/inspection/{id}" (HTTP-PUT) If an existing Inspection entity has to be deleted, the following relative URL should be called: "/ExchangeService/inspection/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint