mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
This is because, like tooltip(), it doesn't always make sense to call it, and it should never get called if the operation is not available.
66 lines
2.0 KiB
JavaScript
66 lines
2.0 KiB
JavaScript
import _ from 'lodash';
|
|
import { t } from '../util/locale';
|
|
import { behaviorOperation } from '../behavior/index';
|
|
import { geoExtent } from '../geo/index';
|
|
import { modeMove } from '../modes/index';
|
|
|
|
|
|
export function operationMove(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(modeMove(context, selectedIDs));
|
|
};
|
|
|
|
|
|
operation.available = function() {
|
|
return selectedIDs.length > 1 ||
|
|
context.entity(selectedIDs[0]).type !== 'node';
|
|
};
|
|
|
|
|
|
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.move.' + disable + '.' + multi) :
|
|
t('operations.move.description.' + multi);
|
|
};
|
|
|
|
|
|
operation.annotation = function() {
|
|
return selectedIDs.length === 1 ?
|
|
t('operations.move.annotation.' + context.geometry(selectedIDs[0])) :
|
|
t('operations.move.annotation.multiple');
|
|
};
|
|
|
|
|
|
operation.id = 'move';
|
|
operation.keys = [t('operations.move.key')];
|
|
operation.title = t('operations.move.title');
|
|
operation.behavior = behaviorOperation(context).which(operation);
|
|
|
|
return operation;
|
|
}
|