mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
Consolidate localization behavior and init to a coreLocalizer function and singleton Explicitly support `en-US` locale Rename coreData to coreFileFetcher and export a singleton rather than using a property of coreContext Add `apiConnections` property of coreContext to simplify adding a source switcher Replace some init functions with re-callable, promise-supporting `ensureLoaded` functions Make coreContext itself load the UI if a container has been specified at init time Fix code tests
171 lines
5.4 KiB
JavaScript
171 lines
5.4 KiB
JavaScript
import { dispatch as d3_dispatch } from 'd3-dispatch';
|
|
import { select as d3_select } from 'd3-selection';
|
|
|
|
import { uiCombobox } from '../combobox';
|
|
import { utilGetSetValue, utilNoAuto, utilRebind } from '../../util';
|
|
import { t } from '../../core/localizer';
|
|
|
|
|
|
export function uiFieldCycleway(field, context) {
|
|
var dispatch = d3_dispatch('change');
|
|
var items = d3_select(null);
|
|
var wrap = d3_select(null);
|
|
var _tags;
|
|
|
|
function cycleway(selection) {
|
|
|
|
function stripcolon(s) {
|
|
return s.replace(':', '');
|
|
}
|
|
|
|
|
|
wrap = selection.selectAll('.form-field-input-wrap')
|
|
.data([0]);
|
|
|
|
wrap = wrap.enter()
|
|
.append('div')
|
|
.attr('class', 'form-field-input-wrap form-field-input-' + field.type)
|
|
.merge(wrap);
|
|
|
|
|
|
var div = wrap.selectAll('ul')
|
|
.data([0]);
|
|
|
|
div = div.enter()
|
|
.append('ul')
|
|
.attr('class', 'rows')
|
|
.merge(div);
|
|
|
|
var keys = ['cycleway:left', 'cycleway:right'];
|
|
|
|
items = div.selectAll('li')
|
|
.data(keys);
|
|
|
|
var enter = items.enter()
|
|
.append('li')
|
|
.attr('class', function(d) { return 'labeled-input preset-cycleway-' + stripcolon(d); });
|
|
|
|
enter
|
|
.append('span')
|
|
.attr('class', 'label preset-label-cycleway')
|
|
.attr('for', function(d) { return 'preset-input-cycleway-' + stripcolon(d); })
|
|
.text(function(d) { return field.t('types.' + d); });
|
|
|
|
enter
|
|
.append('div')
|
|
.attr('class', 'preset-input-cycleway-wrap')
|
|
.append('input')
|
|
.attr('type', 'text')
|
|
.attr('maxlength', context.maxCharsForTagValue())
|
|
.attr('class', function(d) { return 'preset-input-cycleway preset-input-' + stripcolon(d); })
|
|
.call(utilNoAuto)
|
|
.each(function(d) {
|
|
d3_select(this)
|
|
.call(uiCombobox(context, 'cycleway-' + stripcolon(d))
|
|
.data(cycleway.options(d))
|
|
);
|
|
});
|
|
|
|
items = items.merge(enter);
|
|
|
|
// Update
|
|
wrap.selectAll('.preset-input-cycleway')
|
|
.on('change', change)
|
|
.on('blur', change);
|
|
}
|
|
|
|
|
|
function change(key) {
|
|
|
|
var newValue = utilGetSetValue(d3_select(this));
|
|
|
|
// don't override multiple values with blank string
|
|
if (!newValue && (Array.isArray(_tags.cycleway) || Array.isArray(_tags[key]))) return;
|
|
|
|
if (newValue === 'none' || newValue === '') { newValue = undefined; }
|
|
|
|
var otherKey = key === 'cycleway:left' ? 'cycleway:right' : 'cycleway:left';
|
|
var otherValue = typeof _tags.cycleway === 'string' ? _tags.cycleway : _tags[otherKey];
|
|
if (otherValue && Array.isArray(otherValue)) {
|
|
// we must always have an explicit value for comparison
|
|
otherValue = otherValue[0];
|
|
}
|
|
if (otherValue === 'none' || otherValue === '') { otherValue = undefined; }
|
|
|
|
var tag = {};
|
|
|
|
// If the left and right tags match, use the cycleway tag to tag both
|
|
// sides the same way
|
|
if (newValue === otherValue) {
|
|
tag = {
|
|
cycleway: newValue,
|
|
'cycleway:left': undefined,
|
|
'cycleway:right': undefined
|
|
};
|
|
} else {
|
|
// Always set both left and right as changing one can affect the other
|
|
tag = {
|
|
cycleway: undefined
|
|
};
|
|
tag[key] = newValue;
|
|
tag[otherKey] = otherValue;
|
|
}
|
|
|
|
dispatch.call('change', this, tag);
|
|
}
|
|
|
|
|
|
cycleway.options = function() {
|
|
return Object.keys(field.strings.options).map(function(option) {
|
|
return {
|
|
title: field.t('options.' + option + '.description'),
|
|
value: option
|
|
};
|
|
});
|
|
};
|
|
|
|
|
|
cycleway.tags = function(tags) {
|
|
_tags = tags;
|
|
|
|
// If cycleway is set, use that instead of individual values
|
|
var commonValue = typeof tags.cycleway === 'string' && tags.cycleway;
|
|
|
|
utilGetSetValue(items.selectAll('.preset-input-cycleway'), function(d) {
|
|
if (commonValue) return commonValue;
|
|
return !tags.cycleway && typeof tags[d] === 'string' ? tags[d] : '';
|
|
})
|
|
.attr('title', function(d) {
|
|
if (Array.isArray(tags.cycleway) || Array.isArray(tags[d])) {
|
|
var vals = [];
|
|
if (Array.isArray(tags.cycleway)) {
|
|
vals = vals.concat(tags.cycleway);
|
|
}
|
|
if (Array.isArray(tags[d])) {
|
|
vals = vals.concat(tags[d]);
|
|
}
|
|
return vals.filter(Boolean).join('\n');
|
|
}
|
|
return null;
|
|
})
|
|
.attr('placeholder', function(d) {
|
|
if (Array.isArray(tags.cycleway) || Array.isArray(tags[d])) {
|
|
return t('inspector.multiple_values');
|
|
}
|
|
return field.placeholder();
|
|
})
|
|
.classed('mixed', function(d) {
|
|
return Array.isArray(tags.cycleway) || Array.isArray(tags[d]);
|
|
});
|
|
};
|
|
|
|
|
|
cycleway.focus = function() {
|
|
var node = wrap.selectAll('input').node();
|
|
if (node) node.focus();
|
|
};
|
|
|
|
|
|
return utilRebind(cycleway, dispatch, 'on');
|
|
}
|