import { t } from '../util/locale'; import { actionAddEntity, actionAddMidpoint, actionAddVertex } from '../actions/index'; import { behaviorAddWay } from '../behavior/index'; import { modeDrawLine } from './index'; import { osmNode, osmWay } from '../osm/index'; export function modeAddLine(context) { var mode = { id: 'add-line', button: 'line', title: t('modes.add_line.title'), description: t('modes.add_line.description'), key: '2' }; var behavior = behaviorAddWay(context) .tail(t('modes.add_line.tail')) .on('start', start) .on('startFromWay', startFromWay) .on('startFromNode', startFromNode); function start(loc) { var startGraph = context.graph(), node = osmNode({ loc: loc }), way = osmWay(); context.perform( actionAddEntity(node), actionAddEntity(way), actionAddVertex(way.id, node.id) ); context.enter(modeDrawLine(context, way.id, startGraph)); } function startFromWay(loc, edge) { var startGraph = context.graph(), node = osmNode({ loc: loc }), way = osmWay(); context.perform( actionAddEntity(node), actionAddEntity(way), actionAddVertex(way.id, node.id), actionAddMidpoint({ loc: loc, edge: edge }, node) ); context.enter(modeDrawLine(context, way.id, startGraph)); } function startFromNode(node) { var startGraph = context.graph(), way = osmWay(); context.perform( actionAddEntity(way), actionAddVertex(way.id, node.id) ); context.enter(modeDrawLine(context, way.id, startGraph)); } mode.enter = function() { context.install(behavior); }; mode.exit = function() { context.uninstall(behavior); }; return mode; }