AyoAlfonso / code_interview_lynchpyn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

Assignment Details

There are 3 tasks to this assignment:

  1. Fix the priority picker on the front end that updates the backend in real time. It currently updates in the front end but does not persist in the backend. (This is the little circle beside each Key Activity) Video demo: https://drive.google.com/file/d/1v4vqNCs-_obXxv635fz9dT4szDW9WQEH/view?usp=sharing

Please refer to:

For the home components: app/javascript/domains//home/*
For individual components related to key activities: /app/javascript/components/domains/key-activities/*
  1. Add a new sort in the current sort dropdown to allow for a sort that is based on "due date first and then priority" Video demo: https://drive.google.com/file/d/1AEHufgA0RyASgQv64jE4oklU-7eoFd3Z/view?usp=sharing

Please refer to:

Front end components:
For components: /app/javascript/components/domains/key-activities/*

Backend portion: 
app/services/key_activity_resort_service.rb
spec/services/key_activity_resort_service_spec.rb
  1. Create another component separate from HomeKeyActivities that will retrieve all completed Key activities and do not allow them to be editable and display them in a paginated format with a limit of 2 items per page.

BONUS: point out and put in some good code cleanup.

Submission

When your code is ready please make please make a private gist and include any of the key file changes for us that you've done. This will be multiple files given the nature of the questions.

Setup

This project uses a rails backend and a react / mobx-state-tree front end. For details on rails:

If you need to set up ruby:

  • To run this you will need to ensure you have the right version of ruby installed (2.6.5), it may be useful to install rbenv to manage your ruby version (https://github.com/rbenv/rbenv)
  • Once it has been installed you can run 'gem install bundler' to ensure you can download all the gems for the project.

If you need to set up node:

  • To run this you will want node 12.x or higher. It may be useful to install n to manage your node version. (https://github.com/tj/n)
  • Once installed you can run 'yarn' to install the packages required.

If you are on a windows environment you may want to use a virtual machine:

The sample project uses sql lite which should not require other dependencies. You will need the following steps to set up the project in terminal:

bundle install
yarn
bundle exec rails db:create db:migrate
bundle exec raild db:seed

Once that is complete, you can run the app by startng the rails app:

bundle exec rails s

For hot reloading, it would be best to run webpacker in a separate window:

bin/webpack-dev-server

Now if you go to localhost:3000 you should be off to the races.

About


Languages

Language:TypeScript 67.1%Language:Ruby 26.0%Language:JavaScript 2.8%Language:HTML 2.6%Language:CSS 1.1%Language:SCSS 0.5%