mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import * as d3 from 'd3';
|
|
import { t } from '../../util/locale';
|
|
import {
|
|
utilGetSetValue,
|
|
utilNoAuto,
|
|
utilRebind
|
|
} from '../../util';
|
|
|
|
|
|
export function uiFieldTextarea(field) {
|
|
var dispatch = d3.dispatch('change'),
|
|
input = d3.select(null);
|
|
|
|
|
|
function textarea(selection) {
|
|
input = selection.selectAll('textarea')
|
|
.data([0]);
|
|
|
|
input = input.enter()
|
|
.append('textarea')
|
|
.attr('id', 'preset-input-' + field.id)
|
|
.attr('placeholder', field.placeholder() || t('inspector.unknown'))
|
|
.attr('maxlength', 255)
|
|
.call(utilNoAuto)
|
|
.on('input', change(true))
|
|
.on('blur', change())
|
|
.on('change', change())
|
|
.merge(input);
|
|
}
|
|
|
|
|
|
function change(onInput) {
|
|
return function() {
|
|
var t = {};
|
|
t[field.key] = utilGetSetValue(input) || undefined;
|
|
dispatch.call('change', this, t, onInput);
|
|
};
|
|
}
|
|
|
|
|
|
textarea.tags = function(tags) {
|
|
utilGetSetValue(input, tags[field.key] || '');
|
|
};
|
|
|
|
|
|
textarea.focus = function() {
|
|
input.node().focus();
|
|
};
|
|
|
|
|
|
return utilRebind(textarea, dispatch, 'on');
|
|
}
|