Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PipelineView
Please create a React-JS view called "PipelineView" for the fields of the Pipeline entity. The PipelineView must contain the following fields: - name: Endjahr type: LONG - name: HauptGasart type: Gasart - name: HerkunftsLand type: Land - name: LaengeKm type: STRING - name: Name type: STRING - name: Notizen type: STRING - name: Startjahr type: LONG - name: ZielLand type: Land The data source for the [HauptGasart] select control should be loaded from the relative URL: "/GasartService/gasart" (HTTP-GET) The data source for the [ZielLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) The data source for the [HerkunftsLand] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Pipeline entity should be loaded from the relative URL: "/PipelineService/pipeline/{id}" (HTTP-GET) If a new Pipeline entity has been created, the new entity should be posted to the relative URL: "/PipelineService/pipeline" (HTTP-POST) If an existing Pipeline entity has been updated, the modified entity should be sent to the relative URL: "/PipelineService/pipeline/{id}" (HTTP-PUT) If an existing Pipeline entity has to be deleted, the following relative URL should be called: "/PipelineService/pipeline/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PipelineAbschnitt columns: - column: ZuAnlage - column: Pipeline - column: LaengeKm - column: VonAnlage - column: Fertigstellung - column: Notizen The table should have the title "PipelineAbschnitts" und the data must be loaded from the server with the following relative URL: "/PipelineService/pipelineabschnitt/pipeline/{id}" Add a HTML table to the view with the following EreignisBeteiligung columns: - column: Notizen - column: Person - column: Organisation - column: Pipeline - column: Rolle - column: Anlage - column: Ereignis The table should have the title "EreignisBeteiligungs" und the data must be loaded from the server with the following relative URL: "/AnlageService/ereignisbeteiligung/pipeline/{id}" Add a HTML table to the view with the following Gasimport columns: - column: VolumenBcm - column: ExportLand - column: Notizen - column: Gasart - column: Jahr - column: PipelineRoute - column: ImportLand The table should have the title "Gasimports" und the data must be loaded from the server with the following relative URL: "/GasartService/gasimport/pipelineroute/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum