Overview
Summary
Contact
Donate
Imprint
Prompt for the
BundleApp
Please create a React-JS application for the BundleModule. The application has to offer the following views for the user interface: 1. BundleView 2. BundleServiceView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The BundleView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Bundle entity should be loaded from the relative URL: "/BundleService/bundle/{id}" (HTTP-GET) If a new Bundle entity has been created, the new entity should be posted to the relative URL: "/BundleService/bundle" (HTTP-POST) If an existing Bundle entity has been updated, the modified entity should be sent to the relative URL: "/BundleService/bundle/{id}" (HTTP-PUT) If an existing Bundle entity has to be deleted, the following relative URL should be called: "/BundleService/bundle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BundleService columns: - column: Bundle - column: Service The table should have the title "BundleServices" und the data must be loaded from the server with the following relative URL: "/BundleService/bundleservice/bundle/{id}" 2. The BundleServiceView must contain the following fields: - name: Bundle type: Bundle - name: Service type: Service The data source for the [Bundle] select control should be loaded from the relative URL: "/BundleService/bundle" (HTTP-GET) The data source for the [Service] select control should be loaded from the relative URL: "/ServiceService/service" (HTTP-GET) An existing BundleService entity should be loaded from the relative URL: "/BundleService/bundleservice/{id}" (HTTP-GET) If a new BundleService entity has been created, the new entity should be posted to the relative URL: "/BundleService/bundleservice" (HTTP-POST) If an existing BundleService entity has been updated, the modified entity should be sent to the relative URL: "/BundleService/bundleservice/{id}" (HTTP-PUT) If an existing BundleService entity has to be deleted, the following relative URL should be called: "/BundleService/bundleservice/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint