Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
JobDepartmentApp
Please create a React-JS application for the JobDepartmentModule. The application has to offer the following views for the user interface: 1. JobApplicationView 2. JobDepartmentView 3. JobLocationView 4. JobPostingView 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 JobApplicationView must contain the following fields: - name: CoverLetter type: STRING - name: CreatedAt type: DATE - name: CvReference type: STRING - name: Email type: STRING - name: FirstName type: STRING - name: JobPosting type: JobPosting - name: LastName type: STRING - name: PhoneNumber type: STRING - name: Status type: STRING The data source for the [JobPosting] select control should be loaded from the relative URL: "/JobDepartmentService/jobposting" (HTTP-GET) An existing JobApplication entity should be loaded from the relative URL: "/JobDepartmentService/jobapplication/{id}" (HTTP-GET) If a new JobApplication entity has been created, the new entity should be posted to the relative URL: "/JobDepartmentService/jobapplication" (HTTP-POST) If an existing JobApplication entity has been updated, the modified entity should be sent to the relative URL: "/JobDepartmentService/jobapplication/{id}" (HTTP-PUT) If an existing JobApplication entity has to be deleted, the following relative URL should be called: "/JobDepartmentService/jobapplication/{id}" (HTTP-DELETE) 2. The JobDepartmentView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing JobDepartment entity should be loaded from the relative URL: "/JobDepartmentService/jobdepartment/{id}" (HTTP-GET) If a new JobDepartment entity has been created, the new entity should be posted to the relative URL: "/JobDepartmentService/jobdepartment" (HTTP-POST) If an existing JobDepartment entity has been updated, the modified entity should be sent to the relative URL: "/JobDepartmentService/jobdepartment/{id}" (HTTP-PUT) If an existing JobDepartment entity has to be deleted, the following relative URL should be called: "/JobDepartmentService/jobdepartment/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobPosting columns: - column: EmploymentType - column: ValidUntil - column: JobDepartment - column: Description - column: Title - column: IsActive - column: PublishedAt - column: ApplicationEmail - column: JobLocation The table should have the title "JobPostings" und the data must be loaded from the server with the following relative URL: "/JobDepartmentService/jobposting/jobdepartment/{id}" 3. The JobLocationView must contain the following fields: - name: Address type: STRING - name: City type: STRING - name: Country type: STRING - name: Name type: STRING - name: PostalCode type: STRING An existing JobLocation entity should be loaded from the relative URL: "/JobDepartmentService/joblocation/{id}" (HTTP-GET) If a new JobLocation entity has been created, the new entity should be posted to the relative URL: "/JobDepartmentService/joblocation" (HTTP-POST) If an existing JobLocation entity has been updated, the modified entity should be sent to the relative URL: "/JobDepartmentService/joblocation/{id}" (HTTP-PUT) If an existing JobLocation entity has to be deleted, the following relative URL should be called: "/JobDepartmentService/joblocation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobPosting columns: - column: EmploymentType - column: ValidUntil - column: JobDepartment - column: Description - column: Title - column: IsActive - column: PublishedAt - column: ApplicationEmail - column: JobLocation The table should have the title "JobPostings" und the data must be loaded from the server with the following relative URL: "/JobDepartmentService/jobposting/joblocation/{id}" 4. The JobPostingView must contain the following fields: - name: ApplicationEmail type: STRING - name: Description type: STRING - name: EmploymentType type: STRING - name: IsActive type: BOOL - name: JobDepartment type: JobDepartment - name: JobLocation type: JobLocation - name: PublishedAt type: DATE - name: Title type: STRING - name: ValidUntil type: DATE The data source for the [JobLocation] select control should be loaded from the relative URL: "/JobDepartmentService/joblocation" (HTTP-GET) The data source for the [JobDepartment] select control should be loaded from the relative URL: "/JobDepartmentService/jobdepartment" (HTTP-GET) An existing JobPosting entity should be loaded from the relative URL: "/JobDepartmentService/jobposting/{id}" (HTTP-GET) If a new JobPosting entity has been created, the new entity should be posted to the relative URL: "/JobDepartmentService/jobposting" (HTTP-POST) If an existing JobPosting entity has been updated, the modified entity should be sent to the relative URL: "/JobDepartmentService/jobposting/{id}" (HTTP-PUT) If an existing JobPosting entity has to be deleted, the following relative URL should be called: "/JobDepartmentService/jobposting/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobApplication columns: - column: LastName - column: Email - column: FirstName - column: CoverLetter - column: PhoneNumber - column: JobPosting - column: CvReference - column: Status - column: CreatedAt The table should have the title "JobApplications" und the data must be loaded from the server with the following relative URL: "/JobDepartmentService/jobapplication/jobposting/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum