Files
iD/modules/ui/fields/input.js
Bryan Housel 4a71aa6146 Use safer field ids in classes, element ids, css selectors
Fixes issue with nested/namespaced fields, such as `maxspeed/advisory`,
in situations where would try to use a css selector or element id.
Can't use characters like '/' in a css selector.
2018-03-15 00:57:41 -04:00

122 lines
3.2 KiB
JavaScript

import { dispatch as d3_dispatch } from 'd3-dispatch';
import { event as d3_event } from 'd3-selection';
import { t, textDirection } from '../../util/locale';
import { dataPhoneFormats } from '../../../data';
import { services } from '../../services';
import {
utilGetSetValue,
utilNoAuto,
utilRebind
} from '../../util';
export {
uiFieldText as uiFieldUrl,
uiFieldText as uiFieldNumber,
uiFieldText as uiFieldTel,
uiFieldText as uiFieldEmail
};
export function uiFieldText(field, context) {
var dispatch = d3_dispatch('change'),
nominatim = services.geocoder,
input,
entity;
function i(selection) {
var fieldId = 'preset-input-' + field.safeid;
input = selection.selectAll('input')
.data([0]);
input = input.enter()
.append('input')
.attr('type', field.type)
.attr('id', fieldId)
.attr('placeholder', field.placeholder() || t('inspector.unknown'))
.call(utilNoAuto)
.merge(input);
input
.on('input', change(true))
.on('blur', change())
.on('change', change());
if (field.type === 'tel' && nominatim && entity) {
var center = entity.extent(context.graph()).center();
nominatim.countryCode(center, function (err, countryCode) {
if (err || !dataPhoneFormats[countryCode]) return;
selection.selectAll('#' + fieldId)
.attr('placeholder', dataPhoneFormats[countryCode]);
});
} else if (field.type === 'number') {
var rtl = (textDirection === 'rtl');
input.attr('type', 'text');
var spinControl = selection.selectAll('.spin-control')
.data([0]);
var enter = spinControl.enter()
.append('div')
.attr('class', 'spin-control');
enter
.append('button')
.datum(rtl ? 1 : -1)
.attr('class', rtl ? 'increment' : 'decrement')
.attr('tabindex', -1);
enter
.append('button')
.datum(rtl ? -1 : 1)
.attr('class', rtl ? 'decrement' : 'increment')
.attr('tabindex', -1);
spinControl = spinControl
.merge(enter);
spinControl.selectAll('button')
.on('click', function(d) {
d3_event.preventDefault();
var num = parseInt(input.node().value || 0, 10);
if (!isNaN(num)) input.node().value = num + d;
change()();
});
}
}
function change(onInput) {
return function() {
var t = {};
t[field.key] = utilGetSetValue(input) || undefined;
dispatch.call('change', this, t, onInput);
};
}
i.entity = function(_) {
if (!arguments.length) return entity;
entity = _;
return i;
};
i.tags = function(tags) {
utilGetSetValue(input, tags[field.key] || '');
};
i.focus = function() {
var node = input.node();
if (node) node.focus();
};
return utilRebind(i, dispatch, 'on');
}