Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EventView
Please create a React-JS view called "EventView" for the fields of the Event entity. The EventView must contain the following fields: - name: Arena type: Arena - name: Description type: STRING - name: DoorOpenTime type: DATE - name: EndDateTime type: DATE - name: EventCategory type: EventCategory - name: EventSeries type: EventSeries - name: ExternalReference type: STRING - name: IsCanceled type: BOOL - name: IsPostponed type: BOOL - name: Language type: STRING - name: MinimumAge type: LONG - name: Name type: STRING - name: Organizer type: Organizer - name: StartDateTime type: DATE - name: Subtitle type: STRING - name: TicketUrl type: STRING - name: VenueArea type: VenueArea The data source for the [EventCategory] select control should be loaded from the relative URL: "/EventService/eventcategory" (HTTP-GET) The data source for the [Organizer] select control should be loaded from the relative URL: "/EventService/organizer" (HTTP-GET) The data source for the [EventSeries] select control should be loaded from the relative URL: "/EventSeriesService/eventseries" (HTTP-GET) The data source for the [VenueArea] select control should be loaded from the relative URL: "/VenueAreaService/venuearea" (HTTP-GET) The data source for the [Arena] select control should be loaded from the relative URL: "/ArenaService/arena" (HTTP-GET) An existing Event entity should be loaded from the relative URL: "/EventService/event/{id}" (HTTP-GET) If a new Event entity has been created, the new entity should be posted to the relative URL: "/EventService/event" (HTTP-POST) If an existing Event entity has been updated, the modified entity should be sent to the relative URL: "/EventService/event/{id}" (HTTP-PUT) If an existing Event entity has to be deleted, the following relative URL should be called: "/EventService/event/{id}" (HTTP-DELETE) Add a HTML table to the view with the following NewsArticle columns: - column: Event - column: Teaser - column: IsHighlighted - column: Content - column: Slug - column: PublishedAt - column: Title The table should have the title "NewsArticles" und the data must be loaded from the server with the following relative URL: "/EventSeriesService/newsarticle/event/{id}" Add a HTML table to the view with the following SportsMatch columns: - column: League - column: Notes - column: IsPenalty - column: HomeScore - column: MatchDay - column: HomeTeam - column: AwayTeam - column: AwayScore - column: IsOvertime - column: Event The table should have the title "SportsMatchs" und the data must be loaded from the server with the following relative URL: "/ArenaService/sportsmatch/event/{id}" Add a HTML table to the view with the following BookingItem columns: - column: Quantity - column: Event - column: Seat - column: UnitPrice - column: EventTicketType - column: Booking - column: TotalPrice The table should have the title "BookingItems" und the data must be loaded from the server with the following relative URL: "/EventService/bookingitem/event/{id}" Add a HTML table to the view with the following EventTicketType columns: - column: VenueArea - column: SoldQuantity - column: TicketType - column: SeatBlock - column: IsActive - column: TotalAllocation - column: Event - column: PriceCategory - column: BasePrice The table should have the title "EventTicketTypes" und the data must be loaded from the server with the following relative URL: "/PriceCategoryService/eventtickettype/event/{id}" Add a HTML table to the view with the following EventPerformer columns: - column: DisplayOrder - column: Role - column: Performer - column: Event The table should have the title "EventPerformers" und the data must be loaded from the server with the following relative URL: "/EventService/eventperformer/event/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum