Overview
Summary
Contact
Donate
Imprint
Prompt for the
SkillView
Please create a React-JS view called "SkillView" for the fields of the Skill entity. The SkillView must contain the following fields: - name: Description type: STRING - name: Name type: STRING An existing Skill entity should be loaded from the relative URL: "/SkillService/skill/{id}" (HTTP-GET) If a new Skill entity has been created, the new entity should be posted to the relative URL: "/SkillService/skill" (HTTP-POST) If an existing Skill entity has been updated, the modified entity should be sent to the relative URL: "/SkillService/skill/{id}" (HTTP-PUT) If an existing Skill entity has to be deleted, the following relative URL should be called: "/SkillService/skill/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UserSkill columns: - column: IsPrimary - column: User - column: ProficiencyLevel - column: YearsOfExperience - column: Skill The table should have the title "UserSkills" und the data must be loaded from the server with the following relative URL: "/SkillService/userskill/skill/{id}" Add a HTML table to the view with the following SkillEndorsement columns: - column: Skill - column: EndorserUser - column: TargetUser - column: Comment - column: CreatedAt The table should have the title "SkillEndorsements" und the data must be loaded from the server with the following relative URL: "/UserAccountService/skillendorsement/skill/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint