Overview
Summary
Contact
Donate
Imprint
Prompt for the
PublicationApp
Please create a React-JS application for the PublicationModule. The application has to offer the following views for the user interface: 1. CriticismView 2. CriticismRiskConcernView 3. PublicationView 4. RiskConcernView 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 CriticismView must contain the following fields: - name: AladdinSystem type: AladdinSystem - name: Description type: STRING - name: Person type: Person - name: Publication type: Publication - name: RiskType type: STRING - name: SeverityAssessment type: STRING - name: Title type: STRING The data source for the [AladdinSystem] select control should be loaded from the relative URL: "/AladdinSystemService/aladdinsystem" (HTTP-GET) The data source for the [Publication] select control should be loaded from the relative URL: "/PublicationService/publication" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Criticism entity should be loaded from the relative URL: "/PublicationService/criticism/{id}" (HTTP-GET) If a new Criticism entity has been created, the new entity should be posted to the relative URL: "/PublicationService/criticism" (HTTP-POST) If an existing Criticism entity has been updated, the modified entity should be sent to the relative URL: "/PublicationService/criticism/{id}" (HTTP-PUT) If an existing Criticism entity has to be deleted, the following relative URL should be called: "/PublicationService/criticism/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CriticismRiskConcern columns: - column: Criticism - column: RiskConcern The table should have the title "CriticismRiskConcerns" und the data must be loaded from the server with the following relative URL: "/PublicationService/criticismriskconcern/criticism/{id}" 2. The CriticismRiskConcernView must contain the following fields: - name: Criticism type: Criticism - name: RiskConcern type: RiskConcern The data source for the [RiskConcern] select control should be loaded from the relative URL: "/PublicationService/riskconcern" (HTTP-GET) The data source for the [Criticism] select control should be loaded from the relative URL: "/PublicationService/criticism" (HTTP-GET) An existing CriticismRiskConcern entity should be loaded from the relative URL: "/PublicationService/criticismriskconcern/{id}" (HTTP-GET) If a new CriticismRiskConcern entity has been created, the new entity should be posted to the relative URL: "/PublicationService/criticismriskconcern" (HTTP-POST) If an existing CriticismRiskConcern entity has been updated, the modified entity should be sent to the relative URL: "/PublicationService/criticismriskconcern/{id}" (HTTP-PUT) If an existing CriticismRiskConcern entity has to be deleted, the following relative URL should be called: "/PublicationService/criticismriskconcern/{id}" (HTTP-DELETE) 3. The PublicationView must contain the following fields: - name: Language type: STRING - name: PublicationDate type: DATE - name: PublicationType type: STRING - name: Publisher type: STRING - name: Title type: STRING - name: Url type: STRING An existing Publication entity should be loaded from the relative URL: "/PublicationService/publication/{id}" (HTTP-GET) If a new Publication entity has been created, the new entity should be posted to the relative URL: "/PublicationService/publication" (HTTP-POST) If an existing Publication entity has been updated, the modified entity should be sent to the relative URL: "/PublicationService/publication/{id}" (HTTP-PUT) If an existing Publication entity has to be deleted, the following relative URL should be called: "/PublicationService/publication/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Author columns: - column: Person - column: AuthorOrder - column: Publication The table should have the title "Authors" und the data must be loaded from the server with the following relative URL: "/PersonService/author/publication/{id}" Add a HTML table to the view with the following Criticism columns: - column: RiskType - column: Description - column: Person - column: Publication - column: Title - column: SeverityAssessment - column: AladdinSystem The table should have the title "Criticisms" und the data must be loaded from the server with the following relative URL: "/PublicationService/criticism/publication/{id}" 4. The RiskConcernView must contain the following fields: - name: Category type: STRING - name: Description type: STRING - name: Name type: STRING An existing RiskConcern entity should be loaded from the relative URL: "/PublicationService/riskconcern/{id}" (HTTP-GET) If a new RiskConcern entity has been created, the new entity should be posted to the relative URL: "/PublicationService/riskconcern" (HTTP-POST) If an existing RiskConcern entity has been updated, the modified entity should be sent to the relative URL: "/PublicationService/riskconcern/{id}" (HTTP-PUT) If an existing RiskConcern entity has to be deleted, the following relative URL should be called: "/PublicationService/riskconcern/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CriticismRiskConcern columns: - column: Criticism - column: RiskConcern The table should have the title "CriticismRiskConcerns" und the data must be loaded from the server with the following relative URL: "/PublicationService/criticismriskconcern/riskconcern/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint