Overview
Summary
Contact
Donate
Imprint
Prompt for the
SupportVendorApp
Please create a React-JS application for the SupportVendorModule. The application has to offer the following views for the user interface: 1. DataBreachView 2. PlatformView 3. SupportVendorView 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 DataBreachView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: IncidentDate type: DATE - name: Name type: STRING - name: RansomDemanded type: BOOL - name: RecordsAffected type: LONG - name: ThirdPartyVendor type: SupportVendor The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ThirdPartyVendor] select control should be loaded from the relative URL: "/SupportVendorService/supportvendor" (HTTP-GET) An existing DataBreach entity should be loaded from the relative URL: "/SupportVendorService/databreach/{id}" (HTTP-GET) If a new DataBreach entity has been created, the new entity should be posted to the relative URL: "/SupportVendorService/databreach" (HTTP-POST) If an existing DataBreach entity has been updated, the modified entity should be sent to the relative URL: "/SupportVendorService/databreach/{id}" (HTTP-PUT) If an existing DataBreach entity has to be deleted, the following relative URL should be called: "/SupportVendorService/databreach/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BreachDataExposure columns: - column: BreachDataType - column: EstimatedCount - column: IsConfirmed - column: DataBreach The table should have the title "BreachDataExposures" und the data must be loaded from the server with the following relative URL: "/SubscriptionPlanService/breachdataexposure/databreach/{id}" 2. The PlatformView must contain the following fields: - name: Name type: STRING - name: ReleaseDate type: DATE - name: Type type: STRING - name: Vendor type: STRING An existing Platform entity should be loaded from the relative URL: "/SupportVendorService/platform/{id}" (HTTP-GET) If a new Platform entity has been created, the new entity should be posted to the relative URL: "/SupportVendorService/platform" (HTTP-POST) If an existing Platform entity has been updated, the modified entity should be sent to the relative URL: "/SupportVendorService/platform/{id}" (HTTP-PUT) If an existing Platform entity has to be deleted, the following relative URL should be called: "/SupportVendorService/platform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PartnerIntegration columns: - column: EndDate - column: PartnerName - column: Company - column: Platform - column: StartDate - column: Description The table should have the title "PartnerIntegrations" und the data must be loaded from the server with the following relative URL: "/CompanyService/partnerintegration/platform/{id}" Add a HTML table to the view with the following Application columns: - column: ProgrammingLanguage - column: License - column: Type - column: Platform - column: Website - column: Company - column: Name - column: ReleaseDate The table should have the title "Applications" und the data must be loaded from the server with the following relative URL: "/CompanyService/application/platform/{id}" 3. The SupportVendorView must contain the following fields: - name: Description type: STRING - name: Name type: STRING - name: Platform type: STRING An existing SupportVendor entity should be loaded from the relative URL: "/SupportVendorService/supportvendor/{id}" (HTTP-GET) If a new SupportVendor entity has been created, the new entity should be posted to the relative URL: "/SupportVendorService/supportvendor" (HTTP-POST) If an existing SupportVendor entity has been updated, the modified entity should be sent to the relative URL: "/SupportVendorService/supportvendor/{id}" (HTTP-PUT) If an existing SupportVendor entity has to be deleted, the following relative URL should be called: "/SupportVendorService/supportvendor/{id}" (HTTP-DELETE) Add a HTML table to the view with the following DataBreach columns: - column: Name - column: Description - column: IncidentDate - column: ThirdPartyVendor - column: RecordsAffected - column: RansomDemanded - column: Company The table should have the title "DataBreachs" und the data must be loaded from the server with the following relative URL: "/SupportVendorService/databreach/thirdpartyvendor/{id}" Add a HTML table to the view with the following SupportSystem columns: - column: Description - column: Name - column: Company - column: Vendor - column: IsThirdParty The table should have the title "SupportSystems" und the data must be loaded from the server with the following relative URL: "/CompanyService/supportsystem/vendor/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint