mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
131 lines
3.9 KiB
JavaScript
131 lines
3.9 KiB
JavaScript
import {
|
|
select as d3_select
|
|
} from 'd3-selection';
|
|
|
|
import { presetManager } from '../presets';
|
|
import { modeSelect } from '../modes/select';
|
|
import { t, localizer } from '../core/localizer';
|
|
import { utilDisplayName, utilHighlightEntities, utilEntityRoot } from '../util';
|
|
|
|
|
|
export function uiKeepRightDetails(context) {
|
|
let _qaItem;
|
|
|
|
|
|
function issueDetail(d) {
|
|
const { itemType, parentIssueType } = d;
|
|
const unknown = { html: t.html('inspector.unknown') };
|
|
let replacements = d.replacements || {};
|
|
replacements.default = unknown; // special key `default` works as a fallback string
|
|
|
|
if (localizer.hasTextForStringId(`QA.keepRight.errorTypes.${itemType}.title`)) {
|
|
return t.html(`QA.keepRight.errorTypes.${itemType}.description`, replacements);
|
|
} else {
|
|
return t.html(`QA.keepRight.errorTypes.${parentIssueType}.description`, replacements);
|
|
}
|
|
}
|
|
|
|
|
|
function keepRightDetails(selection) {
|
|
const details = selection.selectAll('.error-details')
|
|
.data(
|
|
(_qaItem ? [_qaItem] : []),
|
|
d => `${d.id}-${d.status || 0}`
|
|
);
|
|
|
|
details.exit()
|
|
.remove();
|
|
|
|
const detailsEnter = details.enter()
|
|
.append('div')
|
|
.attr('class', 'error-details qa-details-container');
|
|
|
|
// description
|
|
const descriptionEnter = detailsEnter
|
|
.append('div')
|
|
.attr('class', 'qa-details-subsection');
|
|
|
|
descriptionEnter
|
|
.append('h4')
|
|
.call(t.append('QA.keepRight.detail_description'));
|
|
|
|
descriptionEnter
|
|
.append('div')
|
|
.attr('class', 'qa-details-description-text')
|
|
.html(issueDetail);
|
|
|
|
// If there are entity links in the error message..
|
|
let relatedEntities = [];
|
|
descriptionEnter.selectAll('.error_entity_link, .error_object_link')
|
|
.attr('href', '#')
|
|
.each(function() {
|
|
const link = d3_select(this);
|
|
const isObjectLink = link.classed('error_object_link');
|
|
const entityID = isObjectLink ?
|
|
(utilEntityRoot(_qaItem.objectType) + _qaItem.objectId)
|
|
: this.textContent;
|
|
const entity = context.hasEntity(entityID);
|
|
|
|
relatedEntities.push(entityID);
|
|
|
|
// Add click handler
|
|
link
|
|
.on('mouseenter', () => {
|
|
utilHighlightEntities([entityID], true, context);
|
|
})
|
|
.on('mouseleave', () => {
|
|
utilHighlightEntities([entityID], false, context);
|
|
})
|
|
.on('click', (d3_event) => {
|
|
d3_event.preventDefault();
|
|
|
|
utilHighlightEntities([entityID], false, context);
|
|
|
|
const osmlayer = context.layers().layer('osm');
|
|
if (!osmlayer.enabled()) {
|
|
osmlayer.enabled(true);
|
|
}
|
|
|
|
context.map().centerZoomEase(_qaItem.loc, 20);
|
|
|
|
if (entity) {
|
|
context.enter(modeSelect(context, [entityID]));
|
|
} else {
|
|
context.loadEntity(entityID, (err, result) => {
|
|
if (err) return;
|
|
const entity = result.data.find(e => e.id === entityID);
|
|
if (entity) context.enter(modeSelect(context, [entityID]));
|
|
});
|
|
}
|
|
});
|
|
|
|
// Replace with friendly name if possible
|
|
// (The entity may not yet be loaded into the graph)
|
|
if (entity) {
|
|
let name = utilDisplayName(entity); // try to use common name
|
|
|
|
if (!name && !isObjectLink) {
|
|
const preset = presetManager.match(entity, context.graph());
|
|
name = preset && !preset.isFallback() && preset.name(); // fallback to preset name
|
|
}
|
|
|
|
if (name) {
|
|
this.innerText = name;
|
|
}
|
|
}
|
|
});
|
|
|
|
// Don't hide entities related to this issue - #5880
|
|
context.features().forceVisible(relatedEntities);
|
|
context.map().pan([0,0]); // trigger a redraw
|
|
}
|
|
|
|
keepRightDetails.issue = function(val) {
|
|
if (!arguments.length) return _qaItem;
|
|
_qaItem = val;
|
|
return keepRightDetails;
|
|
};
|
|
|
|
return keepRightDetails;
|
|
}
|