import _filter from 'lodash-es/filter'; import _some from 'lodash-es/some'; import _without from 'lodash-es/without'; import { t } from '../util/locale'; import { actionSplit } from '../actions/index'; import { behaviorOperation } from '../behavior/index'; import { modeSelect } from '../modes/index'; export function operationSplit(selectedIDs, context) { var vertices = _filter(selectedIDs, function(entityId) { return context.geometry(entityId) === 'vertex'; }); var entityId = vertices[0], action = actionSplit(entityId), ways = []; if (vertices.length === 1) { if (selectedIDs.length > 1) { action.limitWays(_without(selectedIDs, entityId)); } ways = action.ways(context.graph()); } var operation = function() { var difference = context.perform(action, operation.annotation()); context.enter(modeSelect(context, difference.extantIDs())); }; operation.available = function() { return vertices.length === 1; }; operation.disabled = function() { var reason; if (_some(selectedIDs, context.hasHiddenConnections)) { reason = 'connected_to_hidden'; } return action.disabled(context.graph()) || reason; }; operation.tooltip = function() { var disable = operation.disabled(); if (disable) { return t('operations.split.' + disable); } if (ways.length === 1) { return t('operations.split.description.' + context.geometry(ways[0].id)); } else { return t('operations.split.description.multiple'); } }; operation.annotation = function() { return ways.length === 1 ? t('operations.split.annotation.' + context.geometry(ways[0].id)) : t('operations.split.annotation.multiple', { n: ways.length }); }; operation.id = 'split'; operation.keys = [t('operations.split.key')]; operation.title = t('operations.split.title'); operation.behavior = behaviorOperation(context).which(operation); return operation; }