import { actionAddEntity } from '../actions/add_entity'; import { actionAddMidpoint } from '../actions/add_midpoint'; import { actionAddVertex } from '../actions/add_vertex'; import { behaviorAddWay } from '../behavior/add_way'; import { modeDrawLine } from './draw_line'; import { osmNode, osmWay } from '../osm'; export function modeAddLine(context, mode) { mode.id = 'add-line'; var behavior = behaviorAddWay(context) .on('start', start) .on('startFromWay', startFromWay) .on('startFromNode', startFromNode); function defaultTags(loc) { var defaultTags = {}; if (mode.preset) defaultTags = mode.preset.setTags(defaultTags, 'line', false, loc); return defaultTags; } function start(loc) { var startGraph = context.graph(); var node = osmNode({ loc: loc }); var way = osmWay({ tags: defaultTags(loc) }); context.perform( actionAddEntity(node), actionAddEntity(way), actionAddVertex(way.id, node.id) ); context.enter(modeDrawLine(context, way.id, startGraph, mode.button)); } function startFromWay(loc, edge) { var startGraph = context.graph(); var node = osmNode({ loc: loc }); var way = osmWay({ tags: defaultTags(loc) }); context.perform( actionAddEntity(node), actionAddEntity(way), actionAddVertex(way.id, node.id), actionAddMidpoint({ loc: loc, edge: edge }, node) ); context.enter(modeDrawLine(context, way.id, startGraph, mode.button)); } function startFromNode(node) { var startGraph = context.graph(); var way = osmWay({ tags: defaultTags(node.loc) }); context.perform( actionAddEntity(way), actionAddVertex(way.id, node.id) ); context.enter(modeDrawLine(context, way.id, startGraph, mode.button)); } mode.enter = function() { context.install(behavior); }; mode.exit = function() { context.uninstall(behavior); }; return mode; }