Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AkteurApp
Please create a React-JS application for the AkteurModule. The application has to offer the following views for the user interface: 1. AkteurView 2. LandView 3. RechtsinstrumentView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The AkteurView must contain the following fields: - name: Adresszeile type: STRING - name: AkteurTyp type: STRING - name: KontaktEmail type: STRING - name: KontaktTelefon type: STRING - name: Land type: Land - name: Name type: STRING - name: Postleitzahl type: STRING - name: Rechtsform type: STRING - name: Stadt type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/AkteurService/land" (HTTP-GET) An existing Akteur entity should be loaded from the relative URL: "/AkteurService/akteur/{id}" (HTTP-GET) If a new Akteur entity has been created, the new entity should be posted to the relative URL: "/AkteurService/akteur" (HTTP-POST) If an existing Akteur entity has been updated, the modified entity should be sent to the relative URL: "/AkteurService/akteur/{id}" (HTTP-PUT) If an existing Akteur entity has to be deleted, the following relative URL should be called: "/AkteurService/akteur/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Dienstleistungsvertrag columns: - column: DienstleisterAkteur - column: Leistungsbeschreibung - column: Kostenmodell - column: Gemeinde - column: AuftraggeberAkteur - column: Vertragsbeginn - column: Vertragsende The table should have the title "Dienstleistungsvertrags" und the data must be loaded from the server with the following relative URL: "/AbfallfraktionService/dienstleistungsvertrag/auftraggeberakteur/{id}" Add a HTML table to the view with the following Dienstleistungsvertrag columns: - column: DienstleisterAkteur - column: Leistungsbeschreibung - column: Kostenmodell - column: Gemeinde - column: AuftraggeberAkteur - column: Vertragsbeginn - column: Vertragsende The table should have the title "Dienstleistungsvertrags" und the data must be loaded from the server with the following relative URL: "/AbfallfraktionService/dienstleistungsvertrag/dienstleisterakteur/{id}" Add a HTML table to the view with the following Anlage columns: - column: InbetriebnahmeDatum - column: AnlagenTyp - column: Name - column: Gemeinde - column: Beschreibung - column: StilllegungDatum - column: BetreiberAkteur - column: Stadt - column: Postleitzahl - column: Adresszeile The table should have the title "Anlages" und the data must be loaded from the server with the following relative URL: "/GemeindeService/anlage/betreiberakteur/{id}" Add a HTML table to the view with the following Sammelfahrzeug columns: - column: Kennzeichen - column: BetreiberAkteur - column: InbetriebnahmeDatum - column: AusserbetriebDatum - column: Fahrzeugtyp The table should have the title "Sammelfahrzeugs" und the data must be loaded from the server with the following relative URL: "/SammelfahrzeugService/sammelfahrzeug/betreiberakteur/{id}" Add a HTML table to the view with the following Abfallstrom columns: - column: Abfallart - column: Beschreibung - column: Entstehungsjahr - column: QuelleAkteur - column: MengeTonnenGeschaetzt - column: Abfallkategorie - column: Abfallfraktion The table should have the title "Abfallstroms" und the data must be loaded from the server with the following relative URL: "/AbfallstromService/abfallstrom/quelleakteur/{id}" Add a HTML table to the view with the following Deponie columns: - column: Gemeinde - column: BetreiberAkteur - column: SchliessDatum - column: DeponieTyp - column: Beschreibung - column: Name - column: StartDatum The table should have the title "Deponies" und the data must be loaded from the server with the following relative URL: "/DeponieService/deponie/betreiberakteur/{id}" 2. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING An existing Land entity should be loaded from the relative URL: "/AkteurService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/AkteurService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/AkteurService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/AkteurService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Rechtsinstrument columns: - column: Rechtsart - column: Fundstelle - column: InkraftDatum - column: Titel - column: Land - column: Kurztitel - column: EndeDatum - column: Beschreibung The table should have the title "Rechtsinstruments" und the data must be loaded from the server with the following relative URL: "/AkteurService/rechtsinstrument/land/{id}" Add a HTML table to the view with the following Akteur columns: - column: Rechtsform - column: Stadt - column: Adresszeile - column: Land - column: KontaktTelefon - column: Postleitzahl - column: AkteurTyp - column: Name - column: KontaktEmail The table should have the title "Akteurs" und the data must be loaded from the server with the following relative URL: "/AkteurService/akteur/land/{id}" Add a HTML table to the view with the following Abfallwirtschaftsplan columns: - column: PlanEbene - column: GueltigBis - column: Land - column: Gemeinde - column: GueltigVon - column: Region - column: Titel - column: Beschreibung The table should have the title "Abfallwirtschaftsplans" und the data must be loaded from the server with the following relative URL: "/RegionService/abfallwirtschaftsplan/land/{id}" Add a HTML table to the view with the following Gemeinde columns: - column: Name - column: Land - column: Einwohnerzahl - column: FlaecheQuadratkilometer - column: Region The table should have the title "Gemeindes" und the data must be loaded from the server with the following relative URL: "/GemeindeService/gemeinde/land/{id}" Add a HTML table to the view with the following HistorischesEreignis columns: - column: Beschreibung - column: Titel - column: Gemeinde - column: EreignisDatum - column: Land The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/RechtsanforderungService/historischesereignis/land/{id}" Add a HTML table to the view with the following Region columns: - column: Land - column: Name The table should have the title "Regions" und the data must be loaded from the server with the following relative URL: "/RegionService/region/land/{id}" 3. The RechtsinstrumentView must contain the following fields: - name: Beschreibung type: STRING - name: EndeDatum type: DATE - name: Fundstelle type: STRING - name: InkraftDatum type: DATE - name: Kurztitel type: STRING - name: Land type: Land - name: Rechtsart type: STRING - name: Titel type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/AkteurService/land" (HTTP-GET) An existing Rechtsinstrument entity should be loaded from the relative URL: "/AkteurService/rechtsinstrument/{id}" (HTTP-GET) If a new Rechtsinstrument entity has been created, the new entity should be posted to the relative URL: "/AkteurService/rechtsinstrument" (HTTP-POST) If an existing Rechtsinstrument entity has been updated, the modified entity should be sent to the relative URL: "/AkteurService/rechtsinstrument/{id}" (HTTP-PUT) If an existing Rechtsinstrument entity has to be deleted, the following relative URL should be called: "/AkteurService/rechtsinstrument/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Rechtsanforderung columns: - column: Rechtsinstrument - column: Titel - column: Beschreibung - column: AnforderungCode The table should have the title "Rechtsanforderungs" und the data must be loaded from the server with the following relative URL: "/RechtsanforderungService/rechtsanforderung/rechtsinstrument/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum