This is a chance for you to show us how you think we should display our products.
- Build a product catalogue experience based on two sample APIs.
http://127.0.0.1:3000/api/products
http://127.0.0.1:3000/api/product/$id
- Implement pagination/infinite scroll
- Filters and sorts (eg. lowest price first, select a size)
- A mix of server and clientside rendering
- It should be device agnostic
- A quick view or extended view for product
- This is just a starting point. Feel free to use any framework or technology you want, but be prepared to answer why you selected them.
- Aesthetics are very important to the Net-a-porter brand but so is performance.
- Don't worry about header/footer.
The following are examples of the existing mobile and desktop listing pages:
You can replicate these or if you think there is something we should be doing, or it should work another way - feel free to be creative but tell us why and what you think we are doing wrong.
To run the app:
$ npm install
$ npm start
Returns a list of products.
Example:
GET /api/products/?offset=0&limit=60
HTTP 200
Content-Type: application/json
{
"offset": 0,
"limit": 60,
"total": 274,
"data": [{
"id": 540559,
"name": "Roadmaster Waxed-Cotton Jacket",
"price": "£550",
"designer": "Belstaff",
"image": {
outfit: "//cache.net-a-porter.com/images/products/543002/543002_ou_sl.jpg"
}
}, ...]
}
Parameters:
offset
(optional) - defaults to 0limit
(optional) - defaults to 60
Example:
GET /api/product/$id
HTTP 200
Content-Type: application/json
{
id: 504815,
name: "Cutout stretch-jersey dress",
price: "£1270",
designer: "Donna Karan",
onSale: false,
sizes: [
{
id: "00004_S_Clothing",
name: "S"
},
{
id: "00005_M_Clothing",
name: "M"
},
{
id: "00006_L_Clothing",
name: "L"
},
{
id: "00007_XL_Clothing",
name: "XL"
}
],
badges: [
"In_Stock"
],
images: {
outfit: "//cache.net-a-porter.com/images/products/504815/504815_ou_sl.jpg",
small: "//cache.net-a-porter.com/images/products/504815/504815_in_sl.jpg",
large: "//cache.net-a-porter.com/images/products/504815/504815_in_pp.jpg"
}
}