Guest User

Untitled

a guest
Jan 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. Background
  2. You were assigned a task to create React.js application to mange activities for the human resources department in ABC company. HR managers now place sticky notes on the blackboard with the activity description and the employee name. When the activity is done, they take that note from blackboard and trash it.
  3.  
  4. Since you are a frontend developer you have agreed to automatize this process by applictation based on React.js with REDUX store.
  5.  
  6. Functionalities
  7. The Activity manager application should have the following functionalities:
  8.  
  9. Activities have description, employee name, and done/undone status
  10. Menu with the following links: Employees, Add activity, Current activities, Past activities
  11. Page for Employees - where they can list all employees and add new ones
  12. Page Add activity - where they can add new activity (writing some description and selecting employee from the dropdown)
  13. Page Current activities - they see a list of all undone activities with description and to whom they are assigend - they can click on a link 'Mark as Done' within each activity and it would cause it to disappear from the list (it will appear on Past activities list in turn)
  14. Page Past activities - they can see list of done activities with descriptions and to whom they were assigned
  15. Note
  16. Don't bild everything from scratch - use some app generator to create React.js with ES6 config. You can install any library you need and use any documentation online. The goal of this task is to have all the functionallity in place. The app does not need to look pretty at this stage so you don't need to bother with styling for now. When you finish, please push the solution onto your github account.
Add Comment
Please, Sign In to add comment