Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. HistorischesEreignisView 2. LandView 3. RegelungView 4. RegionView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The HistorischesEreignisView must contain the following fields: - name: Beschreibung type: STRING - name: Jahr type: INT - name: Land type: Land - name: Organisation type: Organisation - name: Region type: Region - name: Titel type: STRING The data source for the [Organisation] select control should be loaded from the relative URL: "/GlasFarbeService/organisation" (HTTP-GET) The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing HistorischesEreignis entity should be loaded from the relative URL: "/LandService/historischesereignis/{id}" (HTTP-GET) If a new HistorischesEreignis entity has been created, the new entity should be posted to the relative URL: "/LandService/historischesereignis" (HTTP-POST) If an existing HistorischesEreignis entity has been updated, the modified entity should be sent to the relative URL: "/LandService/historischesereignis/{id}" (HTTP-PUT) If an existing HistorischesEreignis entity has to be deleted, the following relative URL should be called: "/LandService/historischesereignis/{id}" (HTTP-DELETE) 2. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING - name: Notizen type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regelung columns: - column: Jahr - column: Beschreibung - column: Organisation - column: Name - column: Land - column: Region The table should have the title "Regelungs" und the data must be loaded from the server with the following relative URL: "/LandService/regelung/land/{id}" Add a HTML table to the view with the following RecyclingAnlage columns: - column: Beschreibung - column: Stadt - column: KapazitaetTonnenProJahr - column: Land - column: Name - column: AnlagenTyp The table should have the title "RecyclingAnlages" und the data must be loaded from the server with the following relative URL: "/GlasKategorieService/recyclinganlage/land/{id}" Add a HTML table to the view with the following SammelSystem columns: - column: Land - column: SystemTyp - column: Name - column: Beschreibung The table should have the title "SammelSystems" und the data must be loaded from the server with the following relative URL: "/SammelSystemService/sammelsystem/land/{id}" Add a HTML table to the view with the following HistorischesEreignis columns: - column: Organisation - column: Beschreibung - column: Region - column: Titel - column: Land - column: Jahr The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/LandService/historischesereignis/land/{id}" Add a HTML table to the view with the following Organisation columns: - column: Typ - column: Name - column: Beschreibung - column: Land The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/GlasFarbeService/organisation/land/{id}" Add a HTML table to the view with the following JahresStatistik columns: - column: GesammeltTonnen - column: RecyclingQuoteProzent - column: SammelQuoteProzent - column: Jahr - column: PostConsumerAnteilProzent - column: Notizen - column: RecyceltTonnen - column: MarktMengeTonnen - column: GlasKategorie - column: Region - column: Land The table should have the title "JahresStatistiks" und the data must be loaded from the server with the following relative URL: "/GlasProduktService/jahresstatistik/land/{id}" 3. The RegelungView must contain the following fields: - name: Beschreibung type: STRING - name: Jahr type: INT - name: Land type: Land - name: Name type: STRING - name: Organisation type: Organisation - name: Region type: Region The data source for the [Organisation] select control should be loaded from the relative URL: "/GlasFarbeService/organisation" (HTTP-GET) The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Regelung entity should be loaded from the relative URL: "/LandService/regelung/{id}" (HTTP-GET) If a new Regelung entity has been created, the new entity should be posted to the relative URL: "/LandService/regelung" (HTTP-POST) If an existing Regelung entity has been updated, the modified entity should be sent to the relative URL: "/LandService/regelung/{id}" (HTTP-PUT) If an existing Regelung entity has to be deleted, the following relative URL should be called: "/LandService/regelung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RegelungsZiel columns: - column: Notizen - column: Regelung - column: ZielTyp - column: ZielProzent - column: ZielJahr - column: GlasKategorie - column: Abfallstrom The table should have the title "RegelungsZiels" und the data must be loaded from the server with the following relative URL: "/GlasKategorieService/regelungsziel/regelung/{id}" 4. The RegionView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Region entity should be loaded from the relative URL: "/LandService/region/{id}" (HTTP-GET) If a new Region entity has been created, the new entity should be posted to the relative URL: "/LandService/region" (HTTP-POST) If an existing Region entity has been updated, the modified entity should be sent to the relative URL: "/LandService/region/{id}" (HTTP-PUT) If an existing Region entity has to be deleted, the following relative URL should be called: "/LandService/region/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regelung columns: - column: Jahr - column: Beschreibung - column: Organisation - column: Name - column: Land - column: Region The table should have the title "Regelungs" und the data must be loaded from the server with the following relative URL: "/LandService/regelung/region/{id}" Add a HTML table to the view with the following HistorischesEreignis columns: - column: Organisation - column: Beschreibung - column: Region - column: Titel - column: Land - column: Jahr The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/LandService/historischesereignis/region/{id}" Add a HTML table to the view with the following JahresStatistik columns: - column: GesammeltTonnen - column: RecyclingQuoteProzent - column: SammelQuoteProzent - column: Jahr - column: PostConsumerAnteilProzent - column: Notizen - column: RecyceltTonnen - column: MarktMengeTonnen - column: GlasKategorie - column: Region - column: Land The table should have the title "JahresStatistiks" und the data must be loaded from the server with the following relative URL: "/GlasProduktService/jahresstatistik/region/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum