mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
890 B
37 lines
890 B
|
|
var _ = require('lodash'), |
|
check = require('check-types'), |
|
schemas = require('./labelSchema.json'); |
|
|
|
module.exports = function( record ){ |
|
var schema = getSchema(record.country_a); |
|
|
|
var labelParts = [ record.name.default ]; |
|
|
|
var buildOutput = function(parts, schemaArr, record) { |
|
for (var i=0; i<schemaArr.length; i++) { |
|
var fieldValue = record[schemaArr[i]]; |
|
if (check.nonEmptyString(fieldValue) && !_.includes(parts, fieldValue)) { |
|
parts.push( fieldValue ); |
|
return parts; |
|
} |
|
} |
|
return parts; |
|
}; |
|
|
|
for (var key in schema) { |
|
labelParts = buildOutput(labelParts, schema[key], record); |
|
} |
|
|
|
// de-dupe, join, trim |
|
return _.uniq( labelParts ).join(', ').trim(); |
|
}; |
|
|
|
function getSchema(country_a) { |
|
if (country_a && country_a.length && schemas[country_a]) { |
|
return schemas[country_a]; |
|
} |
|
|
|
return schemas.default; |
|
|
|
}
|
|
|