Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BenutzerkontoApp
Please create a React-JS application for the BenutzerkontoModule. The application has to offer the following views for the user interface: 1. BenutzerkontoView 2. BenutzerrolleView 3. RolleView 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 BenutzerkontoView must contain the following fields: - name: Aktiv type: BOOL - name: Anzeigename type: STRING - name: Benutzername type: STRING - name: Email type: STRING - name: ErzeugtAm type: DATE - name: Organisationseinheit type: Organisationseinheit The data source for the [Organisationseinheit] select control should be loaded from the relative URL: "/OrganisationseinheitService/organisationseinheit" (HTTP-GET) An existing Benutzerkonto entity should be loaded from the relative URL: "/BenutzerkontoService/benutzerkonto/{id}" (HTTP-GET) If a new Benutzerkonto entity has been created, the new entity should be posted to the relative URL: "/BenutzerkontoService/benutzerkonto" (HTTP-POST) If an existing Benutzerkonto entity has been updated, the modified entity should be sent to the relative URL: "/BenutzerkontoService/benutzerkonto/{id}" (HTTP-PUT) If an existing Benutzerkonto entity has to be deleted, the following relative URL should be called: "/BenutzerkontoService/benutzerkonto/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zugriffsprotokoll columns: - column: Geodatensatz - column: ZugriffAm - column: ClientIp - column: Kartendienst - column: Benutzerkonto - column: Aktion The table should have the title "Zugriffsprotokolls" und the data must be loaded from the server with the following relative URL: "/KartendienstService/zugriffsprotokoll/benutzerkonto/{id}" Add a HTML table to the view with the following Benutzerrolle columns: - column: Benutzerkonto - column: Rolle - column: ZugewiesenAm The table should have the title "Benutzerrolles" und the data must be loaded from the server with the following relative URL: "/BenutzerkontoService/benutzerrolle/benutzerkonto/{id}" 2. The BenutzerrolleView must contain the following fields: - name: Benutzerkonto type: Benutzerkonto - name: Rolle type: Rolle - name: ZugewiesenAm type: DATE The data source for the [Benutzerkonto] select control should be loaded from the relative URL: "/BenutzerkontoService/benutzerkonto" (HTTP-GET) The data source for the [Rolle] select control should be loaded from the relative URL: "/BenutzerkontoService/rolle" (HTTP-GET) An existing Benutzerrolle entity should be loaded from the relative URL: "/BenutzerkontoService/benutzerrolle/{id}" (HTTP-GET) If a new Benutzerrolle entity has been created, the new entity should be posted to the relative URL: "/BenutzerkontoService/benutzerrolle" (HTTP-POST) If an existing Benutzerrolle entity has been updated, the modified entity should be sent to the relative URL: "/BenutzerkontoService/benutzerrolle/{id}" (HTTP-PUT) If an existing Benutzerrolle entity has to be deleted, the following relative URL should be called: "/BenutzerkontoService/benutzerrolle/{id}" (HTTP-DELETE) 3. The RolleView must contain the following fields: - name: Beschreibung type: STRING - name: ErzeugtAm type: DATE - name: Name type: STRING An existing Rolle entity should be loaded from the relative URL: "/BenutzerkontoService/rolle/{id}" (HTTP-GET) If a new Rolle entity has been created, the new entity should be posted to the relative URL: "/BenutzerkontoService/rolle" (HTTP-POST) If an existing Rolle entity has been updated, the modified entity should be sent to the relative URL: "/BenutzerkontoService/rolle/{id}" (HTTP-PUT) If an existing Rolle entity has to be deleted, the following relative URL should be called: "/BenutzerkontoService/rolle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Benutzerrolle columns: - column: Benutzerkonto - column: Rolle - column: ZugewiesenAm The table should have the title "Benutzerrolles" und the data must be loaded from the server with the following relative URL: "/BenutzerkontoService/benutzerrolle/rolle/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum