Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ArenaView
Please create a React-JS view called "ArenaView" for the fields of the Arena entity. The ArenaView must contain the following fields: - name: Address type: STRING - name: City type: STRING - name: Country type: STRING - name: Description type: STRING - name: Name type: STRING - name: OpenedDate type: DATE - name: PostalCode type: STRING - name: WebsiteUrl type: STRING An existing Arena entity should be loaded from the relative URL: "/ArenaService/arena/{id}" (HTTP-GET) If a new Arena entity has been created, the new entity should be posted to the relative URL: "/ArenaService/arena" (HTTP-POST) If an existing Arena entity has been updated, the modified entity should be sent to the relative URL: "/ArenaService/arena/{id}" (HTTP-PUT) If an existing Arena entity has to be deleted, the following relative URL should be called: "/ArenaService/arena/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Event columns: - column: ExternalReference - column: TicketUrl - column: DoorOpenTime - column: StartDateTime - column: Organizer - column: EndDateTime - column: Subtitle - column: VenueArea - column: Language - column: Arena - column: Name - column: Description - column: IsCanceled - column: EventSeries - column: IsPostponed - column: EventCategory - column: MinimumAge The table should have the title "Events" und the data must be loaded from the server with the following relative URL: "/EventService/event/arena/{id}" Add a HTML table to the view with the following VenueArea columns: - column: Arena - column: Name - column: Capacity - column: Description - column: Type The table should have the title "VenueAreas" und the data must be loaded from the server with the following relative URL: "/VenueAreaService/venuearea/arena/{id}" Add a HTML table to the view with the following SportsTeam columns: - column: Country - column: ShortName - column: City - column: IsHomeTeam - column: HomeArena - column: Name - column: WebsiteUrl The table should have the title "SportsTeams" und the data must be loaded from the server with the following relative URL: "/ArenaService/sportsteam/homearena/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum