Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
MitgliedApp
Please create a React-JS application for the MitgliedModule. The application has to offer the following views for the user interface: 1. MitgliedView 2. OrganmitgliedView 3. VereinsregisterView 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 MitgliedView must contain the following fields: - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: IstMinderjaehrig type: BOOL - name: Nachname type: STRING - name: Staatsangehoerigkeit type: LONG - name: Vorname type: STRING An existing Mitglied entity should be loaded from the relative URL: "/MitgliedService/mitglied/{id}" (HTTP-GET) If a new Mitglied entity has been created, the new entity should be posted to the relative URL: "/MitgliedService/mitglied" (HTTP-POST) If an existing Mitglied entity has been updated, the modified entity should be sent to the relative URL: "/MitgliedService/mitglied/{id}" (HTTP-PUT) If an existing Mitglied entity has to be deleted, the following relative URL should be called: "/MitgliedService/mitglied/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Organmitglied columns: - column: BisDatum - column: Organ - column: Rolle - column: IstStimmberechtigt - column: Mitglied - column: VonDatum The table should have the title "Organmitglieds" und the data must be loaded from the server with the following relative URL: "/MitgliedService/organmitglied/mitglied/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: IstAktiv - column: Austrittsdatum - column: Verein - column: Mitglied - column: Eintrittsdatum - column: Mitgliedschaftsart The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/VersammlungstypService/mitgliedschaft/mitglied/{id}" 2. The OrganmitgliedView must contain the following fields: - name: BisDatum type: DATE - name: IstStimmberechtigt type: BOOL - name: Mitglied type: Mitglied - name: Organ type: Organ - name: Rolle type: STRING - name: VonDatum type: DATE The data source for the [Mitglied] select control should be loaded from the relative URL: "/MitgliedService/mitglied" (HTTP-GET) The data source for the [Organ] select control should be loaded from the relative URL: "/VereinService/organ" (HTTP-GET) An existing Organmitglied entity should be loaded from the relative URL: "/MitgliedService/organmitglied/{id}" (HTTP-GET) If a new Organmitglied entity has been created, the new entity should be posted to the relative URL: "/MitgliedService/organmitglied" (HTTP-POST) If an existing Organmitglied entity has been updated, the modified entity should be sent to the relative URL: "/MitgliedService/organmitglied/{id}" (HTTP-PUT) If an existing Organmitglied entity has to be deleted, the following relative URL should be called: "/MitgliedService/organmitglied/{id}" (HTTP-DELETE) 3. The VereinsregisterView must contain the following fields: - name: IstElektronisch type: BOOL - name: Land type: Land - name: Name type: STRING - name: Registergericht type: LONG - name: SeitJahr type: INT The data source for the [Land] select control should be loaded from the relative URL: "/VereinService/land" (HTTP-GET) An existing Vereinsregister entity should be loaded from the relative URL: "/MitgliedService/vereinsregister/{id}" (HTTP-GET) If a new Vereinsregister entity has been created, the new entity should be posted to the relative URL: "/MitgliedService/vereinsregister" (HTTP-POST) If an existing Vereinsregister entity has been updated, the modified entity should be sent to the relative URL: "/MitgliedService/vereinsregister/{id}" (HTTP-PUT) If an existing Vereinsregister entity has to be deleted, the following relative URL should be called: "/MitgliedService/vereinsregister/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum