mirror of
https://github.com/FoggedLens/iD.git
synced 2026-06-05 22:46:38 +02:00
+24
-4
@@ -4,11 +4,31 @@ iD.actions.Revert = function(id) {
|
||||
var entity = graph.hasEntity(id),
|
||||
base = graph.base().entities[id];
|
||||
|
||||
if (entity && !base) {
|
||||
return iD.actions.DeleteMultiple([id])(graph);
|
||||
} else {
|
||||
return graph.revert(id);
|
||||
if (entity && !base) { // entity will be removed..
|
||||
if (entity.type === 'node') {
|
||||
graph.parentWays(entity)
|
||||
.forEach(function(parent) {
|
||||
parent = parent.removeNode(id);
|
||||
graph = graph.replace(parent);
|
||||
|
||||
if (parent.isDegenerate()) {
|
||||
graph = iD.actions.DeleteWay(parent.id)(graph);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
graph.parentRelations(entity)
|
||||
.forEach(function(parent) {
|
||||
parent = parent.removeMembersWithID(id);
|
||||
graph = graph.replace(parent);
|
||||
|
||||
if (parent.isDegenerate()) {
|
||||
graph = iD.actions.DeleteRelation(parent.id)(graph);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return graph.revert(id);
|
||||
};
|
||||
|
||||
return action;
|
||||
|
||||
Reference in New Issue
Block a user