mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
Generalize tooltip into popover control Use the same popover control for tooltip as the preset browser and tools list popovers Smartly position the preset browser popover and menu bar tooltips to stay fully onscreen Position most tooltips closer to their controls Fix small gap that could appear between a tooltip and its arrow Allow wider toolbar tooltips
144 lines
4.1 KiB
JavaScript
144 lines
4.1 KiB
JavaScript
import _debounce from 'lodash-es/debounce';
|
|
|
|
import { select as d3_select } from 'd3-selection';
|
|
|
|
import {
|
|
modeAddNote,
|
|
modeBrowse
|
|
} from '../../modes';
|
|
|
|
import { t } from '../../util/locale';
|
|
import { svgIcon } from '../../svg';
|
|
import { tooltip } from '../../util/tooltip';
|
|
import { uiTooltipHtml } from '../tooltipHtml';
|
|
|
|
export function uiToolNotes(context) {
|
|
|
|
var tool = {
|
|
id: 'notes',
|
|
label: t('modes.add_note.label')
|
|
};
|
|
|
|
var mode = modeAddNote(context);
|
|
|
|
function enabled() {
|
|
return notesEnabled() && notesEditable();
|
|
}
|
|
|
|
function notesEnabled() {
|
|
var noteLayer = context.layers().layer('notes');
|
|
return noteLayer && noteLayer.enabled();
|
|
}
|
|
|
|
function notesEditable() {
|
|
var mode = context.mode();
|
|
return context.map().notesEditable() && mode && mode.id !== 'save';
|
|
}
|
|
|
|
context.keybinding().on(mode.key, function() {
|
|
if (!enabled(mode)) return;
|
|
|
|
if (mode.id === context.mode().id) {
|
|
context.enter(modeBrowse(context));
|
|
} else {
|
|
context.enter(mode);
|
|
}
|
|
});
|
|
|
|
tool.render = function(selection) {
|
|
|
|
context
|
|
.on('enter.editor.notes', function(entered) {
|
|
selection.selectAll('button.add-button')
|
|
.classed('active', function(mode) { return entered.button === mode.button; });
|
|
context.container()
|
|
.classed('mode-' + entered.id, true);
|
|
});
|
|
|
|
context
|
|
.on('exit.editor.notes', function(exited) {
|
|
context.container()
|
|
.classed('mode-' + exited.id, false);
|
|
});
|
|
|
|
|
|
var debouncedUpdate = _debounce(update, 500, { leading: true, trailing: true });
|
|
|
|
context.map()
|
|
.on('move.notes', debouncedUpdate)
|
|
.on('drawn.notes', debouncedUpdate);
|
|
|
|
context
|
|
.on('enter.notes', update);
|
|
|
|
update();
|
|
|
|
|
|
function update() {
|
|
var showNotes = notesEnabled();
|
|
var data = showNotes ? [mode] : [];
|
|
|
|
var buttons = selection.selectAll('button.add-button')
|
|
.data(data, function(d) { return d.id; });
|
|
|
|
// exit
|
|
buttons.exit()
|
|
.remove();
|
|
|
|
// enter
|
|
var buttonsEnter = buttons.enter()
|
|
.append('button')
|
|
.attr('tabindex', -1)
|
|
.attr('class', function(d) { return d.id + ' add-button bar-button'; })
|
|
.on('click.notes', function(d) {
|
|
if (!enabled(d)) return;
|
|
|
|
// When drawing, ignore accidental clicks on mode buttons - #4042
|
|
var currMode = context.mode().id;
|
|
if (/^draw/.test(currMode)) return;
|
|
|
|
if (d.id === currMode) {
|
|
context.enter(modeBrowse(context));
|
|
} else {
|
|
context.enter(d);
|
|
}
|
|
})
|
|
.call(tooltip()
|
|
.placement('bottom')
|
|
.html(true)
|
|
.title(function(d) { return uiTooltipHtml(d.description, d.key); })
|
|
.scrollContainer(d3_select('#bar'))
|
|
);
|
|
|
|
buttonsEnter
|
|
.each(function(d) {
|
|
d3_select(this)
|
|
.call(svgIcon(d.icon || '#iD-icon-' + d.button));
|
|
});
|
|
|
|
// if we are adding/removing the buttons, check if toolbar has overflowed
|
|
if (buttons.enter().size() || buttons.exit().size()) {
|
|
context.ui().checkOverflow('#bar', true);
|
|
}
|
|
|
|
// update
|
|
buttons = buttons
|
|
.merge(buttonsEnter)
|
|
.classed('disabled', function(d) { return !enabled(d); });
|
|
}
|
|
};
|
|
|
|
tool.uninstall = function() {
|
|
context
|
|
.on('enter.editor.notes', null)
|
|
.on('exit.editor.notes', null)
|
|
.on('enter.notes', null);
|
|
|
|
context.map()
|
|
.on('move.notes', null)
|
|
.on('drawn.notes', null);
|
|
};
|
|
|
|
return tool;
|
|
}
|