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.

47 lines
1.1 KiB

9 years ago
var _ = require('lodash'),
check = require('check-types'),
schemas = require('./labelSchema.json');
module.exports = function( record ){
var schema = getSchema(record.country_a);
var labelParts = getInitialLabel(record);
var buildOutput = function(parts, schemaArr, record) {
for (var i=0; i<schemaArr.length; i++) {
9 years ago
var fieldValue = record[schemaArr[i]];
if (check.nonEmptyString(fieldValue) && !_.includes(parts, fieldValue)) {
9 years ago
parts.push( fieldValue );
return parts;
}
}
return parts;
};
for (var key in schema) {
9 years ago
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;
}
function getInitialLabel(record) {
if ('region' === record.layer && ('geonames' === record.source || 'whosonfirst' === record.source)) {
return [];
}
return [record.name.default];
}