Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyView
Please create a React-JS view called "CompanyView" for the fields of the Company entity. The CompanyView must contain the following fields: - name: CompanySizeMax type: INT - name: CompanySizeMin type: INT - name: Description type: STRING - name: FoundedYear type: INT - name: HeadquartersLocation type: STRING - name: Industry type: STRING - name: LogoUrl type: STRING - name: Name type: STRING - name: Type type: STRING - name: WebsiteUrl type: STRING An existing Company entity should be loaded from the relative URL: "/CompanyService/company/{id}" (HTTP-GET) If a new Company entity has been created, the new entity should be posted to the relative URL: "/CompanyService/company" (HTTP-POST) If an existing Company entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/company/{id}" (HTTP-PUT) If an existing Company entity has to be deleted, the following relative URL should be called: "/CompanyService/company/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Experience columns: - column: Title - column: EmploymentType - column: Location - column: Description - column: EndDate - column: Company - column: StartDate - column: User - column: IsCurrent The table should have the title "Experiences" und the data must be loaded from the server with the following relative URL: "/CompanyService/experience/company/{id}" Add a HTML table to the view with the following Course columns: - column: Language - column: IsPremium - column: ProviderCompany - column: Level - column: ReleasedAt - column: DurationMinutes - column: Description - column: Url - column: Title The table should have the title "Courses" und the data must be loaded from the server with the following relative URL: "/CompanyService/course/providercompany/{id}" Add a HTML table to the view with the following CompanyEmployee columns: - column: IsCurrent - column: SinceDate - column: Title - column: Company - column: User The table should have the title "CompanyEmployees" und the data must be loaded from the server with the following relative URL: "/CompanyService/companyemployee/company/{id}" Add a HTML table to the view with the following Follow columns: - column: FollowerUser - column: CreatedAt - column: Company - column: TargetUser The table should have the title "Follows" und the data must be loaded from the server with the following relative URL: "/CompanyService/follow/company/{id}" Add a HTML table to the view with the following Product columns: - column: ReviewsCount - column: Name - column: AverageRating - column: Description - column: Company - column: ProductCategory - column: Url The table should have the title "Products" und the data must be loaded from the server with the following relative URL: "/ProductService/product/company/{id}" Add a HTML table to the view with the following Post columns: - column: AuthorUser - column: UpdatedAt - column: OriginalPost - column: MediaUrl - column: Body - column: Visibility - column: Company - column: CreatedAt - column: IsReshare The table should have the title "Posts" und the data must be loaded from the server with the following relative URL: "/PostService/post/company/{id}" Add a HTML table to the view with the following Job columns: - column: SalaryMax - column: Description - column: SeniorityLevel - column: Title - column: ExpirationAt - column: PostedAt - column: RemoteAllowed - column: SalaryMin - column: Location - column: SalaryCurrency - column: Company - column: WorkplaceType - column: EmploymentType - column: IsActive - column: PostedByUser The table should have the title "Jobs" und the data must be loaded from the server with the following relative URL: "/UserAccountService/job/company/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint