mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-25 15:05:32 +00:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import { Straighten as StraightenAction } from '../actions/index';
|
|
export function Straighten(selectedIDs, context) {
|
|
var entityId = selectedIDs[0],
|
|
action = StraightenAction(entityId, context.projection);
|
|
|
|
function operation() {
|
|
var annotation = t('operations.straighten.annotation');
|
|
context.perform(action, annotation);
|
|
}
|
|
|
|
operation.available = function() {
|
|
var entity = context.entity(entityId);
|
|
return selectedIDs.length === 1 &&
|
|
entity.type === 'way' &&
|
|
!entity.isClosed() &&
|
|
_.uniq(entity.nodes).length > 2;
|
|
};
|
|
|
|
operation.disabled = function() {
|
|
var reason;
|
|
if (context.hasHiddenConnections(entityId)) {
|
|
reason = 'connected_to_hidden';
|
|
}
|
|
return action.disabled(context.graph()) || reason;
|
|
};
|
|
|
|
operation.tooltip = function() {
|
|
var disable = operation.disabled();
|
|
return disable ?
|
|
t('operations.straighten.' + disable) :
|
|
t('operations.straighten.description');
|
|
};
|
|
|
|
operation.id = 'straighten';
|
|
operation.keys = [t('operations.straighten.key')];
|
|
operation.title = t('operations.straighten.title');
|
|
|
|
return operation;
|
|
}
|