Overview
Summary
Contact
Donate
Imprint
Prompt for the
MarketTierApp
Please create a React-JS application for the MarketTierModule. The application has to offer the following views for the user interface: 1. ListingFeeScheduleView 2. MarketTierView 3. OrderBookFeatureView 4. OwnershipView 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 ListingFeeScheduleView must contain the following fields: - name: EffectiveFrom type: DATE - name: EffectiveTo type: DATE - name: Exchange type: Exchange - name: ForAcquisitionCompanies type: BOOL - name: MarketTier type: MarketTier - name: MaxFeeUsd type: DOUBLE - name: MinFeeUsd type: DOUBLE The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [MarketTier] select control should be loaded from the relative URL: "/MarketTierService/markettier" (HTTP-GET) An existing ListingFeeSchedule entity should be loaded from the relative URL: "/MarketTierService/listingfeeschedule/{id}" (HTTP-GET) If a new ListingFeeSchedule entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/listingfeeschedule" (HTTP-POST) If an existing ListingFeeSchedule entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/listingfeeschedule/{id}" (HTTP-PUT) If an existing ListingFeeSchedule entity has to be deleted, the following relative URL should be called: "/MarketTierService/listingfeeschedule/{id}" (HTTP-DELETE) 2. The MarketTierView must contain the following fields: - name: Code type: STRING - name: Description type: STRING - name: Exchange type: Exchange - name: MinMarketCapUsd type: DOUBLE - name: MinPublicFloatPercent type: DOUBLE - name: MinShareholders type: INT - name: Name type: STRING The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing MarketTier entity should be loaded from the relative URL: "/MarketTierService/markettier/{id}" (HTTP-GET) If a new MarketTier entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/markettier" (HTTP-POST) If an existing MarketTier entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/markettier/{id}" (HTTP-PUT) If an existing MarketTier entity has to be deleted, the following relative URL should be called: "/MarketTierService/markettier/{id}" (HTTP-DELETE) 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/markettier/{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/markettier/{id}" 3. The OrderBookFeatureView must contain the following fields: - name: Description type: STRING - name: Exchange type: Exchange - name: LaunchDate type: DATE - name: Name type: STRING The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing OrderBookFeature entity should be loaded from the relative URL: "/MarketTierService/orderbookfeature/{id}" (HTTP-GET) If a new OrderBookFeature entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/orderbookfeature" (HTTP-POST) If an existing OrderBookFeature entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/orderbookfeature/{id}" (HTTP-PUT) If an existing OrderBookFeature entity has to be deleted, the following relative URL should be called: "/MarketTierService/orderbookfeature/{id}" (HTTP-DELETE) 4. The OwnershipView must contain the following fields: - name: EndDate type: DATE - name: OwnershipType type: STRING - name: ParentCompany type: Company - name: StartDate type: DATE - name: SubsidiaryCompany type: Company The data source for the [ParentCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [SubsidiaryCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Ownership entity should be loaded from the relative URL: "/MarketTierService/ownership/{id}" (HTTP-GET) If a new Ownership entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/ownership" (HTTP-POST) If an existing Ownership entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/ownership/{id}" (HTTP-PUT) If an existing Ownership entity has to be deleted, the following relative URL should be called: "/MarketTierService/ownership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint