Overview
Summary
Contact
Donate
Imprint
Prompt for the
JobView
Please create a React-JS view called "JobView" for the fields of the Job entity. The JobView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: EmploymentType type: STRING - name: ExpirationAt type: DATE - name: IsActive type: BOOL - name: Location type: STRING - name: PostedAt type: DATE - name: PostedByUser type: UserAccount - name: RemoteAllowed type: BOOL - name: SalaryCurrency type: STRING - name: SalaryMax type: DOUBLE - name: SalaryMin type: DOUBLE - name: SeniorityLevel type: STRING - name: Title type: STRING - name: WorkplaceType type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [PostedByUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Job entity should be loaded from the relative URL: "/UserAccountService/job/{id}" (HTTP-GET) If a new Job entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/job" (HTTP-POST) If an existing Job entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/job/{id}" (HTTP-PUT) If an existing Job entity has to be deleted, the following relative URL should be called: "/UserAccountService/job/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobApplication columns: - column: CoverLetter - column: SubmittedAt - column: Status - column: ApplicantUser - column: IsEasyApply - column: Source - column: Job The table should have the title "JobApplications" und the data must be loaded from the server with the following relative URL: "/UserAccountService/jobapplication/job/{id}" Add a HTML table to the view with the following SavedJob columns: - column: Job - column: SavedAt - column: User The table should have the title "SavedJobs" und the data must be loaded from the server with the following relative URL: "/PostTopicService/savedjob/job/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint