Michael-Antczak / cakes

An app for pre-interview test with some company.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CAKELOVE

The project description can be found here:
https://github.com/Michael-Antczak/cakes/blob/master/client/README.md

My implementation

  1. React app sitting on top of Node.js server.
  2. All traffic goes to the React app, so it also handles missing pages.
  3. Mobile first approach, so for wider screens CSS would have to adjusted with media queries.
  4. Live app can be viewed here: http://cakelove.eu-west-1.elasticbeanstalk.com/
  5. Single repo on GitHub.
  6. I took the liberty of replacing the provided backend with Firebase Realtime database. In my opinion more suited in this case. The app listens for changes in the DB. Every time there is an update, the new data automatically updates the app state, which in turn rerenders the list of cakes on the main page. The API could be easily implemented with axios.
  7. Build workflow: run yarn build inside the client folder, then from the root folder commit the changes.
  8. Deployment: An app is delivered through AWS CodePipeline on every commit to the master branch in GitHub repo. CodePipeline is connected to the Node.js server managed by AWS Elastic Beanstalk. Server is in an Auto-Scaling group with one server. If the server is killed, it is automagically restarted.
  9. I have added an additional search cake functionality. Just type a few letters from the existing cake to see the list rerender.
  10. This app could be easily extended into a mobile app with React Native.

Acceptance Criteria

S1

  • A simple list showing the image and name of the cake and nothing else
    Simply go to the main page

S2

  • I should be able add a cake from the list of all cakes view
    Use plus sign in the header on the right hand side
  • I should be taken to a view where I am able to specify the name a comment and a yum factor between 1 and 5.
    See above. Also, the user can add a link to the image, which will be displayed if the link is valid
  • I should be returned back to the list of cakes after submitting.
    Basic form validation in play with error messages displayed to the user. Once data is in the form and Add cake button is clicked, data is sent to Firebase, the user is taken back to the main page that now also displays the newly added cake

S3

  • I can select/click or tap any cake in the list and be taken to a view where I can see the comment/review made.
    Just click on any cake in the list view
  • I should be able to close or navigate back to the list of cakes once I’ve read the cake details.
    Use the main logo to go back to the main page

About

An app for pre-interview test with some company.


Languages

Language:JavaScript 83.0%Language:HTML 9.4%Language:CSS 7.6%