Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProjectView
Please create a React-JS view called "ProjectView" for the fields of the Project entity. The ProjectView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: StartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Project entity should be loaded from the relative URL: "/ProjectService/project/{id}" (HTTP-GET) If a new Project entity has been created, the new entity should be posted to the relative URL: "/ProjectService/project" (HTTP-POST) If an existing Project entity has been updated, the modified entity should be sent to the relative URL: "/ProjectService/project/{id}" (HTTP-PUT) If an existing Project entity has to be deleted, the following relative URL should be called: "/ProjectService/project/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Experiment columns: - column: Project - column: Description - column: EndDate - column: StartDate - column: Name The table should have the title "Experiments" und the data must be loaded from the server with the following relative URL: "/LaunchSiteService/experiment/project/{id}" Add a HTML table to the view with the following RegulatoryApproval columns: - column: ApprovalDate - column: Notes - column: Project - column: ExpiryDate - column: RegulatoryAuthority - column: ServiceArea The table should have the title "RegulatoryApprovals" und the data must be loaded from the server with the following relative URL: "/CountryService/regulatoryapproval/project/{id}" Add a HTML table to the view with the following BalloonFlight columns: - column: BalloonModel - column: AverageSpeedKmh - column: Project - column: MinAltitudeKm - column: LaunchDateTime - column: MaxAltitudeKm - column: Status - column: TerminationDateTime - column: LaunchSite The table should have the title "BalloonFlights" und the data must be loaded from the server with the following relative URL: "/ProjectService/balloonflight/project/{id}" Add a HTML table to the view with the following MediaCoverage columns: - column: Project - column: Publisher - column: Title - column: Summary - column: PublicationDate - column: Url The table should have the title "MediaCoverages" und the data must be loaded from the server with the following relative URL: "/LaunchSiteService/mediacoverage/project/{id}" Add a HTML table to the view with the following ServiceDeployment columns: - column: StartDate - column: ServiceArea - column: Description - column: PeakUsers - column: IsEmergencyDeployment - column: AverageThroughputMbitPerSec - column: EndDate - column: Project The table should have the title "ServiceDeployments" und the data must be loaded from the server with the following relative URL: "/ServiceDeploymentService/servicedeployment/project/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint