mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 01:33:03 +00:00
161 lines
5.0 KiB
JavaScript
161 lines
5.0 KiB
JavaScript
iD.modes.Select = function (entity) {
|
|
var mode = {
|
|
id: 'select',
|
|
button: 'browse',
|
|
entity: entity
|
|
};
|
|
|
|
var inspector = iD.ui.inspector(),
|
|
behaviors;
|
|
|
|
function remove() {
|
|
if (entity.type === 'way') {
|
|
mode.history.perform(
|
|
iD.actions.DeleteWay(entity.id),
|
|
'deleted a way');
|
|
} else if (entity.type === 'node') {
|
|
var parents = mode.history.graph().parentWays(entity),
|
|
operations = [iD.actions.DeleteNode(entity.id)];
|
|
parents.forEach(function(parent) {
|
|
if (_.uniq(parent.nodes).length === 1) operations.push(iD.actions.DeleteWay(parent.id));
|
|
});
|
|
mode.history.perform.apply(mode.history,
|
|
operations.concat(['deleted a node']));
|
|
}
|
|
|
|
mode.controller.exit();
|
|
}
|
|
|
|
function changeTags(d, tags) {
|
|
if (!_.isEqual(entity.tags, tags)) {
|
|
mode.history.perform(
|
|
iD.actions.ChangeEntityTags(d.id, tags),
|
|
'changed tags');
|
|
}
|
|
}
|
|
|
|
mode.enter = function () {
|
|
var surface = mode.map.surface;
|
|
|
|
behaviors = [
|
|
iD.behavior.Hover(),
|
|
iD.behavior.DragNode(mode),
|
|
iD.behavior.DragWay(mode),
|
|
iD.behavior.DragMidpoint(mode)];
|
|
|
|
behaviors.forEach(function(behavior) {
|
|
behavior(surface);
|
|
});
|
|
|
|
d3.select('.inspector-wrap')
|
|
.style('display', 'block')
|
|
.style('opacity', 1)
|
|
.datum(entity)
|
|
.call(inspector);
|
|
|
|
// Pan the map if the clicked feature intersects with the position
|
|
// of the inspector
|
|
var inspector_size = d3.select('.inspector-wrap').size(),
|
|
map_size = mode.map.size(),
|
|
entity_extent = entity.extent(mode.history.graph()),
|
|
left_edge = map_size[0] - inspector_size[0],
|
|
left = mode.map.projection(entity_extent[1])[0],
|
|
right = mode.map.projection(entity_extent[0])[0];
|
|
|
|
if (left > left_edge &&
|
|
right > left_edge) mode.map.centerEase(
|
|
mode.map.projection.invert([(window.innerWidth), d3.event.y]));
|
|
|
|
inspector
|
|
.on('changeTags', changeTags)
|
|
.on('changeWayDirection', function(d) {
|
|
mode.history.perform(
|
|
iD.actions.ReverseWay(d.id),
|
|
'reversed a way');
|
|
|
|
}).on('splitWay', function(d) {
|
|
mode.history.perform(
|
|
iD.actions.SplitWay(d.id),
|
|
'split a way on a node');
|
|
|
|
}).on('remove', function() {
|
|
remove();
|
|
|
|
}).on('close', function() {
|
|
mode.controller.exit();
|
|
});
|
|
|
|
// Exit mode if selected entity gets undone
|
|
mode.history.on('change.entity-undone', function() {
|
|
var old = entity;
|
|
entity = mode.history.graph().entity(entity.id);
|
|
if (!entity) {
|
|
mode.controller.enter(iD.modes.Browse());
|
|
} else if(!_.isEqual(entity.tags, old.tags)) {
|
|
inspector.tags(entity.tags);
|
|
}
|
|
});
|
|
|
|
function click() {
|
|
var datum = d3.select(d3.event.target).datum();
|
|
if (datum instanceof iD.Entity) {
|
|
mode.controller.enter(iD.modes.Select(datum));
|
|
} else {
|
|
mode.controller.enter(iD.modes.Browse());
|
|
}
|
|
}
|
|
|
|
function dblclick() {
|
|
var datum = d3.select(d3.event.target).datum();
|
|
if (datum instanceof iD.Entity &&
|
|
(datum.geometry() === 'area' || datum.geometry() === 'line')) {
|
|
var choice = iD.util.geo.chooseIndex(datum,
|
|
d3.mouse(mode.map.surface.node()), mode.map),
|
|
node = iD.Node({ loc: choice.loc });
|
|
|
|
mode.history.perform(
|
|
iD.actions.AddNode(node),
|
|
iD.actions.AddWayNode(datum.id, node.id, choice.index),
|
|
'added a point to a road');
|
|
|
|
d3.event.preventDefault();
|
|
d3.event.stopPropagation();
|
|
}
|
|
}
|
|
|
|
surface.on('click.select', click)
|
|
.on('dblclick.browse', dblclick);
|
|
|
|
mode.map.keybinding().on('⌫.select', function(e) {
|
|
remove();
|
|
e.preventDefault();
|
|
});
|
|
|
|
surface.selectAll("*")
|
|
.filter(function (d) { return d === entity; })
|
|
.classed('selected', true);
|
|
};
|
|
|
|
mode.exit = function () {
|
|
var surface = mode.map.surface;
|
|
|
|
entity && changeTags(entity, inspector.tags());
|
|
d3.select('.inspector-wrap')
|
|
.style('display', 'none')
|
|
.html('');
|
|
|
|
behaviors.forEach(function(behavior) {
|
|
behavior.off(surface);
|
|
});
|
|
|
|
surface.on("click.select", null);
|
|
mode.map.keybinding().on('⌫.select', null);
|
|
mode.history.on('change.entity-undone', null);
|
|
|
|
surface.selectAll(".selected")
|
|
.classed('selected', false);
|
|
};
|
|
|
|
return mode;
|
|
};
|