mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import _some from 'lodash-es/some';
|
|
import _uniqBy from 'lodash-es/uniqBy';
|
|
|
|
import { t } from '../util/locale';
|
|
import { behaviorOperation } from '../behavior';
|
|
import { geoExtent } from '../geo';
|
|
import { modeRotate } from '../modes';
|
|
import { utilGetAllNodes } from '../util';
|
|
|
|
|
|
export function operationRotate(selectedIDs, context) {
|
|
var multi = (selectedIDs.length === 1 ? 'single' : 'multiple'),
|
|
extent = selectedIDs.reduce(function(extent, id) {
|
|
return extent.extend(context.entity(id).extent(context.graph()));
|
|
}, geoExtent());
|
|
|
|
|
|
var operation = function() {
|
|
context.enter(modeRotate(context, selectedIDs));
|
|
};
|
|
|
|
|
|
operation.available = function() {
|
|
var nodes = utilGetAllNodes(selectedIDs, context.graph());
|
|
return _uniqBy(nodes, function(n) { return n.loc; }).length >= 2;
|
|
};
|
|
|
|
|
|
operation.disabled = function() {
|
|
var reason;
|
|
if (extent.area() && extent.percentContainedIn(context.extent()) < 0.8) {
|
|
reason = 'too_large';
|
|
} else if (_some(selectedIDs, context.hasHiddenConnections)) {
|
|
reason = 'connected_to_hidden';
|
|
} else if (_some(selectedIDs, incompleteRelation)) {
|
|
reason = 'incomplete_relation';
|
|
}
|
|
return reason;
|
|
|
|
function incompleteRelation(id) {
|
|
var entity = context.entity(id);
|
|
return entity.type === 'relation' && !entity.isComplete(context.graph());
|
|
}
|
|
};
|
|
|
|
|
|
operation.tooltip = function() {
|
|
var disable = operation.disabled();
|
|
return disable ?
|
|
t('operations.rotate.' + disable + '.' + multi) :
|
|
t('operations.rotate.description.' + multi);
|
|
};
|
|
|
|
|
|
operation.annotation = function() {
|
|
return selectedIDs.length === 1 ?
|
|
t('operations.rotate.annotation.' + context.geometry(selectedIDs[0])) :
|
|
t('operations.rotate.annotation.multiple');
|
|
};
|
|
|
|
|
|
operation.id = 'rotate';
|
|
operation.keys = [t('operations.rotate.key')];
|
|
operation.title = t('operations.rotate.title');
|
|
operation.behavior = behaviorOperation(context).which(operation);
|
|
|
|
return operation;
|
|
}
|