Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SignalSystemApp
Please create a React-JS application for the SignalSystemModule. The application has to offer the following views for the user interface: 1. SignalgeraetView 2. SignalSystemView 3. TechnischeBezeichnungView 4. ZufahrtView 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 SignalgeraetView must contain the following fields: - name: Geraetetyp type: STRING - name: IstFahrzeug type: BOOL - name: IstFussgaenger type: BOOL - name: IstOeffentlicherVerkehr type: BOOL - name: IstRadfahrer type: BOOL - name: IstTemporar type: BOOL - name: Montageart type: STRING - name: Name type: STRING - name: Positionsbeschreibung type: STRING - name: SignalInstallation type: SignalInstallation - name: SignalSystem type: SignalSystem - name: Verkehrsart type: Verkehrsart The data source for the [SignalSystem] select control should be loaded from the relative URL: "/SignalSystemService/signalsystem" (HTTP-GET) The data source for the [Verkehrsart] select control should be loaded from the relative URL: "/VerkehrsartService/verkehrsart" (HTTP-GET) The data source for the [SignalInstallation] select control should be loaded from the relative URL: "/SignalInstallationService/signalinstallation" (HTTP-GET) An existing Signalgeraet entity should be loaded from the relative URL: "/SignalSystemService/signalgeraet/{id}" (HTTP-GET) If a new Signalgeraet entity has been created, the new entity should be posted to the relative URL: "/SignalSystemService/signalgeraet" (HTTP-POST) If an existing Signalgeraet entity has been updated, the modified entity should be sent to the relative URL: "/SignalSystemService/signalgeraet/{id}" (HTTP-PUT) If an existing Signalgeraet entity has to be deleted, the following relative URL should be called: "/SignalSystemService/signalgeraet/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SignalgeraetSignalgruppe columns: - column: Rolle - column: Signalgeraet - column: Signalgruppe The table should have the title "SignalgeraetSignalgruppes" und the data must be loaded from the server with the following relative URL: "/SignalSymbolService/signalgeraetsignalgruppe/signalgeraet/{id}" Add a HTML table to the view with the following SignalgeraetStandard columns: - column: Signalgeraet - column: Beschreibung - column: Standard The table should have the title "SignalgeraetStandards" und the data must be loaded from the server with the following relative URL: "/StandardService/signalgeraetstandard/signalgeraet/{id}" Add a HTML table to the view with the following SignalAspekt columns: - column: PositionsIndex - column: IstCountdown - column: SignalSymbol - column: Bedeutung - column: SignalFarbe - column: IstKombiniert - column: Form - column: Signalgeraet - column: IstBlinkend The table should have the title "SignalAspekts" und the data must be loaded from the server with the following relative URL: "/SignalFarbeService/signalaspekt/signalgeraet/{id}" 2. The SignalSystemView must contain the following fields: - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: GesetzlicheBezeichnung type: STRING - name: Land type: Land - name: Name type: STRING - name: StandardBezeichnung type: STRING The data source for the [Gesetz] select control should be loaded from the relative URL: "/KreuzungService/gesetz" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing SignalSystem entity should be loaded from the relative URL: "/SignalSystemService/signalsystem/{id}" (HTTP-GET) If a new SignalSystem entity has been created, the new entity should be posted to the relative URL: "/SignalSystemService/signalsystem" (HTTP-POST) If an existing SignalSystem entity has been updated, the modified entity should be sent to the relative URL: "/SignalSystemService/signalsystem/{id}" (HTTP-PUT) If an existing SignalSystem entity has to be deleted, the following relative URL should be called: "/SignalSystemService/signalsystem/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Umgangsbezeichnung columns: - column: Beschreibung - column: Sprache - column: Name - column: Land - column: SignalSystem The table should have the title "Umgangsbezeichnungs" und the data must be loaded from the server with the following relative URL: "/SignalInstallationService/umgangsbezeichnung/signalsystem/{id}" Add a HTML table to the view with the following GesetzlicheBezeichnung columns: - column: Gesetz - column: Beschreibung - column: SignalSystem - column: Land - column: Name The table should have the title "GesetzlicheBezeichnungs" und the data must be loaded from the server with the following relative URL: "/LandService/gesetzlichebezeichnung/signalsystem/{id}" Add a HTML table to the view with the following TechnischeBezeichnung columns: - column: Beschreibung - column: Name - column: Standard - column: Land - column: SignalSystem The table should have the title "TechnischeBezeichnungs" und the data must be loaded from the server with the following relative URL: "/SignalSystemService/technischebezeichnung/signalsystem/{id}" Add a HTML table to the view with the following Signalgeraet columns: - column: SignalSystem - column: IstTemporar - column: IstFahrzeug - column: IstRadfahrer - column: SignalInstallation - column: Verkehrsart - column: Montageart - column: IstOeffentlicherVerkehr - column: Name - column: IstFussgaenger - column: Positionsbeschreibung - column: Geraetetyp The table should have the title "Signalgeraets" und the data must be loaded from the server with the following relative URL: "/SignalSystemService/signalgeraet/signalsystem/{id}" Add a HTML table to the view with the following SignalSystemStandard columns: - column: SignalSystem - column: Beschreibung - column: Standard The table should have the title "SignalSystemStandards" und the data must be loaded from the server with the following relative URL: "/StandardService/signalsystemstandard/signalsystem/{id}" 3. The TechnischeBezeichnungView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: Land - name: Name type: STRING - name: SignalSystem type: SignalSystem - name: Standard type: Standard The data source for the [SignalSystem] select control should be loaded from the relative URL: "/SignalSystemService/signalsystem" (HTTP-GET) The data source for the [Standard] select control should be loaded from the relative URL: "/StandardService/standard" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing TechnischeBezeichnung entity should be loaded from the relative URL: "/SignalSystemService/technischebezeichnung/{id}" (HTTP-GET) If a new TechnischeBezeichnung entity has been created, the new entity should be posted to the relative URL: "/SignalSystemService/technischebezeichnung" (HTTP-POST) If an existing TechnischeBezeichnung entity has been updated, the modified entity should be sent to the relative URL: "/SignalSystemService/technischebezeichnung/{id}" (HTTP-PUT) If an existing TechnischeBezeichnung entity has to be deleted, the following relative URL should be called: "/SignalSystemService/technischebezeichnung/{id}" (HTTP-DELETE) 4. The ZufahrtView must contain the following fields: - name: AnzahlFahrstreifen type: LONG - name: Beschreibung type: STRING - name: GeschwindigkeitslimitKmh type: LONG - name: HatBusspur type: BOOL - name: HatTramgleis type: BOOL - name: Kreuzung type: Kreuzung - name: Richtung type: STRING The data source for the [Kreuzung] select control should be loaded from the relative URL: "/KreuzungService/kreuzung" (HTTP-GET) An existing Zufahrt entity should be loaded from the relative URL: "/SignalSystemService/zufahrt/{id}" (HTTP-GET) If a new Zufahrt entity has been created, the new entity should be posted to the relative URL: "/SignalSystemService/zufahrt" (HTTP-POST) If an existing Zufahrt entity has been updated, the modified entity should be sent to the relative URL: "/SignalSystemService/zufahrt/{id}" (HTTP-PUT) If an existing Zufahrt entity has to be deleted, the following relative URL should be called: "/SignalSystemService/zufahrt/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum