Files
iD/modules/ui/preset_icon.js
2017-03-08 16:46:30 -05:00

114 lines
2.9 KiB
JavaScript

import * as d3 from 'd3';
import { dataFeatureIcons } from '../../data/index';
import { svgIcon } from '../svg/index';
import { utilFunctor } from '../util/index';
export function uiPresetIcon() {
var preset, geometry;
function presetIcon(selection) {
selection.each(render);
}
function getIcon(p, geom) {
if (p.icon)
return p.icon;
else if (geom === 'line')
return 'other-line';
else if (geom === 'vertex')
return p.isFallback() ? '' : 'poi-vertex';
else
return 'marker-stroked';
}
function render() {
var selection = d3.select(this),
p = preset.apply(this, arguments),
geom = geometry.apply(this, arguments),
picon = getIcon(p, geom),
isPoi = picon.match(/^poi-/) !== null,
isMaki = dataFeatureIcons.indexOf(picon) !== -1,
isFramed = (geom === 'area' || geom === 'verex');
function tag_classes(p) {
var s = '';
for (var i in p.tags) {
s += ' tag-' + i;
if (p.tags[i] !== '*') {
s += ' tag-' + i + '-' + p.tags[i];
}
}
return s;
}
var fill = selection.selectAll('.preset-icon-fill')
.data([0]);
fill = fill.enter()
.append('div')
.merge(fill);
fill
.attr('class', function() {
return 'preset-icon-fill preset-icon-fill-' + geom + tag_classes(p);
});
var areaFrame = selection.selectAll('.preset-icon-frame')
.data((geom === 'area') ? [0] : []);
areaFrame.exit()
.remove();
areaFrame = areaFrame.enter()
.append('div')
.attr('class', 'preset-icon-frame')
.call(svgIcon('#preset-icon-frame'));
var icon = selection.selectAll('.preset-icon')
.data([0]);
icon = icon.enter()
.append('div')
.attr('class', 'preset-icon')
.call(svgIcon(''))
.merge(icon);
icon
.attr('class', 'preset-icon preset-icon-' +
((isMaki || isPoi) ? (isFramed ? '24' : '28') : (isFramed ? '44' : '60'))
);
icon.selectAll('svg')
.attr('class', function() {
return 'icon ' + picon + (isMaki || isPoi ? '' : tag_classes(p));
});
icon.selectAll('use')
.attr('href', '#' + picon + (isMaki ? '-15' : ''));
}
presetIcon.preset = function(_) {
if (!arguments.length) return preset;
preset = utilFunctor(_);
return presetIcon;
};
presetIcon.geometry = function(_) {
if (!arguments.length) return geometry;
geometry = utilFunctor(_);
return presetIcon;
};
return presetIcon;
}