Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: FoundedDate type: DATE - name: HeadquartersCity type: STRING - name: HeadquartersCountry type: STRING - name: HeadquartersRegion type: STRING - name: Industry type: STRING - name: LegalForm type: STRING - name: Name type: STRING - name: Notes type: STRING - name: Website type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LaunchVehicle columns: - column: Status - column: Company - column: FirstFlightDate - column: Family - column: Name - column: Notes - column: MaxPayloadGtoT - column: Reusable - column: MaxPayloadLeoT The table should have the title "LaunchVehicles" und the data must be loaded from the server with the following relative URL: "/LaunchVehicleService/launchvehicle/company/{id}" Add a HTML table to the view with the following Contract columns: - column: Name - column: EndDate - column: Program - column: Description - column: ValueUsd - column: SignedDate - column: StartDate - column: Company - column: Customer The table should have the title "Contracts" und the data must be loaded from the server with the following relative URL: "/CompanyService/contract/company/{id}" Add a HTML table to the view with the following Facility columns: - column: Latitude - column: Company - column: Name - column: Notes - column: Country - column: City - column: Region - column: FacilityType - column: Longitude The table should have the title "Facilitys" und the data must be loaded from the server with the following relative URL: "/FacilityService/facility/company/{id}" Add a HTML table to the view with the following Ship columns: - column: Name - column: ShipType - column: HomePort - column: Company - column: Notes The table should have the title "Ships" und the data must be loaded from the server with the following relative URL: "/CompanyService/ship/company/{id}" Add a HTML table to the view with the following Satellite columns: - column: Notes - column: Purpose - column: DesignLifeYears - column: Payload - column: Operator The table should have the title "Satellites" und the data must be loaded from the server with the following relative URL: "/CustomerService/satellite/operator/{id}" Add a HTML table to the view with the following Mission columns: - column: Notes - column: Spacecraft - column: Contract - column: Customer - column: Company - column: Name - column: LaunchVehicle - column: LandingSite - column: Program - column: MissionType - column: Orbit - column: LaunchDateTime - column: Description - column: LaunchSite - column: Success The table should have the title "Missions" und the data must be loaded from the server with the following relative URL: "/MissionService/mission/company/{id}" Add a HTML table to the view with the following CompanyRole columns: - column: Title - column: Notes - column: Company - column: Person - column: StartDate - column: EndDate The table should have the title "CompanyRoles" und the data must be loaded from the server with the following relative URL: "/CompanyService/companyrole/company/{id}" Add a HTML table to the view with the following Spacecraft columns: - column: Status - column: SpacecraftType - column: Notes - column: Reusable - column: Company - column: Name - column: FirstFlightDate The table should have the title "Spacecrafts" und the data must be loaded from the server with the following relative URL: "/MissionService/spacecraft/company/{id}" Add a HTML table to the view with the following Program columns: - column: EndDate - column: Description - column: Company - column: Name - column: ProgramType - column: Notes - column: StartDate The table should have the title "Programs" und the data must be loaded from the server with the following relative URL: "/CompanyService/program/company/{id}" Add a HTML table to the view with the following RocketEngine columns: - column: CycleType - column: Company - column: Name - column: ThrustKn - column: Notes - column: SpecificImpulseVacSec The table should have the title "RocketEngines" und the data must be loaded from the server with the following relative URL: "/ShipRoleService/rocketengine/company/{id}" Add a HTML table to the view with the following StarlinkNetwork columns: - column: Name - column: Notes - column: Description - column: Company - column: StartDate The table should have the title "StarlinkNetworks" und the data must be loaded from the server with the following relative URL: "/StarlinkNetworkService/starlinknetwork/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint