mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
85 lines
2.4 KiB
JavaScript
85 lines
2.4 KiB
JavaScript
import { dispatch as d3_dispatch } from 'd3-dispatch';
|
|
import { select as d3_select } from 'd3-selection';
|
|
|
|
import { t } from '../../core/localizer';
|
|
import {
|
|
utilGetSetValue,
|
|
utilNoAuto,
|
|
utilRebind
|
|
} from '../../util';
|
|
import { uiLengthIndicator } from '..';
|
|
|
|
|
|
export function uiFieldTextarea(field, context) {
|
|
var dispatch = d3_dispatch('change');
|
|
var input = d3_select(null);
|
|
var _lengthIndicator = uiLengthIndicator(context.maxCharsForTagValue())
|
|
.silent(field.usage === 'changeset' && field.key === 'comment');
|
|
var _tags;
|
|
|
|
|
|
function textarea(selection) {
|
|
var 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)
|
|
.style('position', 'relative')
|
|
.merge(wrap);
|
|
|
|
input = wrap.selectAll('textarea')
|
|
.data([0]);
|
|
|
|
input = input.enter()
|
|
.append('textarea')
|
|
.attr('id', field.domId)
|
|
.call(utilNoAuto)
|
|
.on('input', change(true))
|
|
.on('blur', change())
|
|
.on('change', change())
|
|
.merge(input);
|
|
|
|
wrap.call(_lengthIndicator);
|
|
|
|
function change(onInput) {
|
|
return function() {
|
|
|
|
var val = utilGetSetValue(input);
|
|
if (!onInput) val = context.cleanTagValue(val);
|
|
|
|
// don't override multiple values with blank string
|
|
if (!val && Array.isArray(_tags[field.key])) return;
|
|
|
|
var t = {};
|
|
t[field.key] = val || undefined;
|
|
dispatch.call('change', this, t, onInput);
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
textarea.tags = function(tags) {
|
|
_tags = tags;
|
|
|
|
var isMixed = Array.isArray(tags[field.key]);
|
|
|
|
utilGetSetValue(input, !isMixed && tags[field.key] ? tags[field.key] : '')
|
|
.attr('title', isMixed ? tags[field.key].filter(Boolean).join('\n') : undefined)
|
|
.attr('placeholder', isMixed ? t('inspector.multiple_values') : (field.placeholder() || t('inspector.unknown')))
|
|
.classed('mixed', isMixed);
|
|
|
|
if (!isMixed) {
|
|
_lengthIndicator.update(tags[field.key]);
|
|
}
|
|
};
|
|
|
|
|
|
textarea.focus = function() {
|
|
input.node().focus();
|
|
};
|
|
|
|
|
|
return utilRebind(textarea, dispatch, 'on');
|
|
}
|