|
| 1 | +let collection = [ |
| 2 | + { |
| 3 | + title: 'Oaklands Selection Pointed Red Peppers ', |
| 4 | + imageUrl: 'https://www.dropbox.com/s/3uvy83gkftwtmln/82632_01.jpg?raw=1', |
| 5 | + price: 1.05, |
| 6 | + categories: ['Bread', 'Dairy', 'Fruits', 'Seasoning and Spice', 'Vegetables'], |
| 7 | + category: 'Vegetables', |
| 8 | + }, |
| 9 | + { |
| 10 | + title: 'Oaklands Organic Vine Tomatoes', |
| 11 | + imageUrl: 'https://www.dropbox.com/s/7qe68yj8wyh0jd0/84570_01.jpg?raw=1', |
| 12 | + price: 1.60, |
| 13 | + categories: ['Bread', 'Dairy', 'Fruits', 'Seasoning and Spice', 'Vegetables'], |
| 14 | + category: 'Vegetables', |
| 15 | + }, |
| 16 | + { |
| 17 | + title: 'Oaklands Organic Carrots', |
| 18 | + imageUrl: 'https://www.dropbox.com/s/qf1597z38c1p2sy/84610_01.jpg?raw=1', |
| 19 | + price: 0.95, |
| 20 | + categories: ['Bread', 'Dairy', 'Fruits', 'Seasoning and Spice', 'Vegetables'], |
| 21 | + category: 'Vegetables', |
| 22 | + }, |
| 23 | + { |
| 24 | + title: 'Oaklands Baby Corn', |
| 25 | + imageUrl: 'https://www.dropbox.com/s/0cd780450mo01ho/82190_65.jpg?raw=1', |
| 26 | + price: 1.09, |
| 27 | + categories: ['Bread', 'Dairy', 'Fruits', 'Seasoning and Spice', 'Vegetables'], |
| 28 | + category: 'Vegetables', |
| 29 | + }, |
| 30 | + { |
| 31 | + title: 'Oaklands Selection British Piccolo Tomatoes', |
| 32 | + imageUrl: 'https://www.dropbox.com/s/daio1kdyrfw4jkp/82394_01.jpg?raw=1', |
| 33 | + price: 1.45, |
| 34 | + categories: ['Bread', 'Dairy', 'Fruits', 'Seasoning and Spice', 'Vegetables'], |
| 35 | + category: 'Vegetables', |
| 36 | + } |
| 37 | +] |
| 38 | + |
| 39 | + |
| 40 | +collection = collection.map((item, index) => { |
| 41 | + return { |
| 42 | + ...item, |
| 43 | + seqN: index + 1 |
| 44 | + } |
| 45 | +}) |
| 46 | + |
| 47 | + |
| 48 | +module.exports = { |
| 49 | + collection |
| 50 | +} |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | + |
| 60 | + |
0 commit comments