Overview
Summary
Contact
Donate
Imprint
Prompt for the
DataSourceApp
Please create a React-JS application for the DataSourceModule. The application has to offer the following views for the user interface: 1. BigDataSourceView 2. DataSourceView 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 BigDataSourceView must contain the following fields: - name: Category type: STRING - name: DataSource type: DataSource - name: Description type: STRING - name: PrivacyRiskLevel type: STRING The data source for the [DataSource] select control should be loaded from the relative URL: "/DataSourceService/datasource" (HTTP-GET) An existing BigDataSource entity should be loaded from the relative URL: "/DataSourceService/bigdatasource/{id}" (HTTP-GET) If a new BigDataSource entity has been created, the new entity should be posted to the relative URL: "/DataSourceService/bigdatasource" (HTTP-POST) If an existing BigDataSource entity has been updated, the modified entity should be sent to the relative URL: "/DataSourceService/bigdatasource/{id}" (HTTP-PUT) If an existing BigDataSource entity has to be deleted, the following relative URL should be called: "/DataSourceService/bigdatasource/{id}" (HTTP-DELETE) 2. The DataSourceView must contain the following fields: - name: Description type: STRING - name: IsBigData type: BOOL - name: Name type: STRING - name: Provider type: STRING - name: SourceType type: STRING An existing DataSource entity should be loaded from the relative URL: "/DataSourceService/datasource/{id}" (HTTP-GET) If a new DataSource entity has been created, the new entity should be posted to the relative URL: "/DataSourceService/datasource" (HTTP-POST) If an existing DataSource entity has been updated, the modified entity should be sent to the relative URL: "/DataSourceService/datasource/{id}" (HTTP-PUT) If an existing DataSource entity has to be deleted, the following relative URL should be called: "/DataSourceService/datasource/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HistoricalDataSet columns: - column: DataSource - column: Name - column: AssetUniverseDescription - column: Description - column: StartDate - column: AladdinSystem - column: EndDate The table should have the title "HistoricalDataSets" und the data must be loaded from the server with the following relative URL: "/AladdinSystemService/historicaldataset/datasource/{id}" Add a HTML table to the view with the following BigDataSource columns: - column: DataSource - column: PrivacyRiskLevel - column: Category - column: Description The table should have the title "BigDataSources" und the data must be loaded from the server with the following relative URL: "/DataSourceService/bigdatasource/datasource/{id}" Add a HTML table to the view with the following AladdinDataSource columns: - column: UsagePurpose - column: DataSource - column: AladdinSystem - column: EndDate - column: StartDate The table should have the title "AladdinDataSources" und the data must be loaded from the server with the following relative URL: "/AladdinSystemService/aladdindatasource/datasource/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint