This repository was archived by the owner on Jul 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
34 lines (26 loc) · 1.47 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var lunr = require('lunr');
var namesIndex = require('./json/namesIndex.json');
var fullData = require('./json/full.json');
var idx = lunr.Index.load(namesIndex);
var foodItem = function (rawList) {
var terms = ['ndb', 'title', 'water', 'kcal', 'protein', 'lipidTotal', 'ash', 'carb', 'fiberTotalDietary', 'sugarTotal', 'elCa', 'elFe', 'elMg', 'elP', 'elK', 'elNa', 'elZn', 'elCu', 'elMa', 'elSe', 'vitaminC', 'thiamin','riboflavin', 'niacin', 'pantothenicAcid', 'vitaminB6', 'folateTotal', 'folicAcid', 'foodFolate', 'dietaryFolate', 'cholineTotal', 'vitaminB12', 'vitaminAIU', 'vitaminA', 'retinol', 'alphaCarotene', 'betaCarotene', 'betaCryptoxanthin', 'lycopene', 'luteinZeazanthin', 'vitaminE', 'vitaminD', 'vitaminDIU', 'vitaminK', 'saturatedFat', 'monounsaturatedFat', 'polyunsaturatedFat', 'cholesterol', 'primaryWeight', 'primaryWeightDesc', 'secondaryWeight', 'secondaryWeightDesc', 'refuse'];
for (var i in terms) {
this[terms[i]] = rawList[i];
}
};
var foodMatch = function (match) {
this.internal = match;
this.score = match.score;
this.data = new foodItem(fullData[Number(match.ref)]);
};
var foodWeb = {};
foodWeb.internal = idx;
foodWeb.search = function (term, maxLength) {
if (typeof maxLength !== 'number' || isNaN(maxLength)) maxLength = Infinity;
return idx.search(term).reduce(function (a, b, c) {
if (c >= maxLength) return a;
a.push(new foodMatch(b));
return a;
}, []);
};
module.exports = foodWeb;