Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AbfallbehaelterApp
Please create a React-JS application for the AbfallbehaelterModule. The application has to offer the following views for the user interface: 1. AbfallbehaelterView 2. KampagnenBehaelterView 3. MaterialView 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 AbfallbehaelterView must contain the following fields: - name: AusserbetriebnahmeDatum type: DATE - name: Behaeltertyp type: Behaeltertyp - name: Beschreibung type: STRING - name: Energiequelle type: Energiequelle - name: HatDeckel type: BOOL - name: HatVerdichter type: BOOL - name: InbetriebnahmeDatum type: DATE - name: IstEinweg type: BOOL - name: IstInnenbereich type: BOOL - name: IstOeffentlich type: BOOL - name: IstSolarbetrieben type: BOOL - name: IstUnterflur type: BOOL - name: Material type: Material - name: Name type: STRING - name: Sammelsystem type: Sammelsystem - name: Standort type: Standort - name: Verdichtungstechnik type: Verdichtungstechnik - name: VolumenLiter type: STRING The data source for the [Verdichtungstechnik] select control should be loaded from the relative URL: "/TierabwehrmerkmalService/verdichtungstechnik" (HTTP-GET) The data source for the [Energiequelle] select control should be loaded from the relative URL: "/SammelsystemService/energiequelle" (HTTP-GET) The data source for the [Behaeltertyp] select control should be loaded from the relative URL: "/BehaeltertypService/behaeltertyp" (HTTP-GET) The data source for the [Sammelsystem] select control should be loaded from the relative URL: "/SammelsystemService/sammelsystem" (HTTP-GET) The data source for the [Material] select control should be loaded from the relative URL: "/AbfallbehaelterService/material" (HTTP-GET) The data source for the [Standort] select control should be loaded from the relative URL: "/GemeindeService/standort" (HTTP-GET) An existing Abfallbehaelter entity should be loaded from the relative URL: "/AbfallbehaelterService/abfallbehaelter/{id}" (HTTP-GET) If a new Abfallbehaelter entity has been created, the new entity should be posted to the relative URL: "/AbfallbehaelterService/abfallbehaelter" (HTTP-POST) If an existing Abfallbehaelter entity has been updated, the modified entity should be sent to the relative URL: "/AbfallbehaelterService/abfallbehaelter/{id}" (HTTP-PUT) If an existing Abfallbehaelter entity has to be deleted, the following relative URL should be called: "/AbfallbehaelterService/abfallbehaelter/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BehaelterSensor columns: - column: MeldetFuellstandOnline - column: Sensortyp - column: Verbindungstechnik - column: Abfallbehaelter - column: IstAktiv - column: Installationsdatum The table should have the title "BehaelterSensors" und the data must be loaded from the server with the following relative URL: "/BehaeltertypService/behaeltersensor/abfallbehaelter/{id}" Add a HTML table to the view with the following AbfallbehaelterAbfallart columns: - column: IstHauptfraktion - column: Abfallbehaelter - column: Abfallart The table should have the title "AbfallbehaelterAbfallarts" und the data must be loaded from the server with the following relative URL: "/AbfallartService/abfallbehaelterabfallart/abfallbehaelter/{id}" Add a HTML table to the view with the following BehaelterTierabwehrmerkmal columns: - column: Tierabwehrmerkmal - column: Abfallbehaelter The table should have the title "BehaelterTierabwehrmerkmals" und the data must be loaded from the server with the following relative URL: "/TierabwehrmerkmalService/behaeltertierabwehrmerkmal/abfallbehaelter/{id}" Add a HTML table to the view with the following HundekotStation columns: - column: IstImParkbereich - column: HatBeutelspender - column: Beutelkapazitaet - column: Abfallbehaelter The table should have the title "HundekotStations" und the data must be loaded from the server with the following relative URL: "/AbfallartService/hundekotstation/abfallbehaelter/{id}" Add a HTML table to the view with the following KampagnenBehaelter columns: - column: SloganVariante - column: OeffentlicheKampagne - column: Abfallbehaelter - column: IstGebrandet The table should have the title "KampagnenBehaelters" und the data must be loaded from the server with the following relative URL: "/AbfallbehaelterService/kampagnenbehaelter/abfallbehaelter/{id}" Add a HTML table to the view with the following DesignProjektBehaelter columns: - column: IstPrototyp - column: Abfallbehaelter - column: DesignProjekt The table should have the title "DesignProjektBehaelters" und the data must be loaded from the server with the following relative URL: "/OeffentlicheKampagneService/designprojektbehaelter/abfallbehaelter/{id}" Add a HTML table to the view with the following MedizinischerAbfallbehaelter columns: - column: IstWiederOeffnbar - column: Gefahrguttyp - column: MedizinischeEinrichtung - column: Entsorgungsmethode - column: Abfallbehaelter - column: IstEinweg The table should have the title "MedizinischerAbfallbehaelters" und the data must be loaded from the server with the following relative URL: "/GefahrguttypService/medizinischerabfallbehaelter/abfallbehaelter/{id}" 2. The KampagnenBehaelterView must contain the following fields: - name: Abfallbehaelter type: Abfallbehaelter - name: IstGebrandet type: BOOL - name: OeffentlicheKampagne type: OeffentlicheKampagne - name: SloganVariante type: STRING The data source for the [Abfallbehaelter] select control should be loaded from the relative URL: "/AbfallbehaelterService/abfallbehaelter" (HTTP-GET) The data source for the [OeffentlicheKampagne] select control should be loaded from the relative URL: "/OeffentlicheKampagneService/oeffentlichekampagne" (HTTP-GET) An existing KampagnenBehaelter entity should be loaded from the relative URL: "/AbfallbehaelterService/kampagnenbehaelter/{id}" (HTTP-GET) If a new KampagnenBehaelter entity has been created, the new entity should be posted to the relative URL: "/AbfallbehaelterService/kampagnenbehaelter" (HTTP-POST) If an existing KampagnenBehaelter entity has been updated, the modified entity should be sent to the relative URL: "/AbfallbehaelterService/kampagnenbehaelter/{id}" (HTTP-PUT) If an existing KampagnenBehaelter entity has to be deleted, the following relative URL should be called: "/AbfallbehaelterService/kampagnenbehaelter/{id}" (HTTP-DELETE) 3. The MaterialView must contain the following fields: - name: Beschreibung type: STRING - name: IstKorrosionsbestaendig type: BOOL - name: IstRecycelbar type: BOOL - name: Name type: STRING An existing Material entity should be loaded from the relative URL: "/AbfallbehaelterService/material/{id}" (HTTP-GET) If a new Material entity has been created, the new entity should be posted to the relative URL: "/AbfallbehaelterService/material" (HTTP-POST) If an existing Material entity has been updated, the modified entity should be sent to the relative URL: "/AbfallbehaelterService/material/{id}" (HTTP-PUT) If an existing Material entity has to be deleted, the following relative URL should be called: "/AbfallbehaelterService/material/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Abfallbehaelter columns: - column: Energiequelle - column: VolumenLiter - column: IstEinweg - column: IstInnenbereich - column: Standort - column: IstOeffentlich - column: HatDeckel - column: IstSolarbetrieben - column: Name - column: IstUnterflur - column: Beschreibung - column: AusserbetriebnahmeDatum - column: Material - column: Sammelsystem - column: HatVerdichter - column: Verdichtungstechnik - column: Behaeltertyp - column: InbetriebnahmeDatum The table should have the title "Abfallbehaelters" und the data must be loaded from the server with the following relative URL: "/AbfallbehaelterService/abfallbehaelter/material/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum