Welcome to the Flickr Gallery application. This app is simple, you write a tag at the top and you get images from flickr with that tag.
To get this app running locally all you need to do is:
- Fork this repo into your personal github account.
- Clone the forked repo into your computer
git clone [email protected]:[YOUR_USERNAME]/flickr-gallery.git
- In the created folder install the node modules
npm install
- Run the app
npm start
- Your local app should be available at
http://localhost:3000
This project includes several tasks for different skill levels. You may try completing them all but if you are new to Web Development, complete the tasks that are a bit above your level. You can and should learn new skills during the process, you may consult with Google and friends but you will need to explain why you implemented what you implemented, so be responsible for your code.
Each image has three buttons that appear on mouse hover. You need to make them work.
- Delete: clicking the delete button should remove the image from the display. (easy)
- Rotate: each click should rotate the image by 90 degrees. (intermediate)
- Expand: clicking an image should display this image in a larger view. (hard)
- Responsive: the gallery adjusts the size of each image so that all the images will fit into the screen without margin. However, when the window is resized, the images are not fitted so well. Make sure the images are always adjusted to the window width. (easy)
- Infinite Scroll: currently the gallery displays only 100 images. Create a mechanizm that loads more images from flickr when the user is scrolling past the last image. (hard)
- You don't need to complete all tasks. If you are new to web development, finish only the easy tasks. If you have the required skills, try to complete the intermediate and hard tasks too. This test is designed to see how you complete tasks that require self learning, not to test your existing knowledge.
- You can see a working demo video of the completed app here
- Think about the product you create, try inovating the user interface, you don't have to create the exact solution in the video, be creative.
After you've completed your tasks, and you are ready to submit it, do the following:
- Make sure your code is on the
master
branch and that it is pushed into your repo. - Run the deploy script
npm run deploy
- You project should be live on
https://[YOUR_USERNAME].github.io/flickr-gallery/
- Send us an email with the repo link and the deployed app link
- Profit
Good Luck!