/*! * bpmn-js - bpmn-modeler v0.25.0 * Copyright 2014 - 2017 camunda Services GmbH and other contributors * * Released under the bpmn.io license * http://bpmn.io/license * * Source Code: https://github.com/bpmn-io/bpmn-js * * Date: 2017-11-21 */ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.BpmnJS = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + ''; /** * A modeler for BPMN 2.0 diagrams. * * * ## Extending the Modeler * * In order to extend the viewer pass extension modules to bootstrap via the * `additionalModules` option. An extension module is an object that exposes * named services. * * The following example depicts the integration of a simple * logging component that integrates with interaction events: * * * ```javascript * * // logging component * function InteractionLogger(eventBus) { * eventBus.on('element.hover', function(event) { * console.log() * }) * } * * InteractionLogger.$inject = [ 'eventBus' ]; // minification save * * // extension module * var extensionModule = { * __init__: [ 'interactionLogger' ], * interactionLogger: [ 'type', InteractionLogger ] * }; * * // extend the viewer * var bpmnModeler = new Modeler({ additionalModules: [ extensionModule ] }); * bpmnModeler.importXML(...); * ``` * * * ## Customizing / Replacing Components * * You can replace individual diagram components by redefining them in override modules. * This works for all components, including those defined in the core. * * Pass in override modules via the `options.additionalModules` flag like this: * * ```javascript * function CustomContextPadProvider(contextPad) { * * contextPad.registerProvider(this); * * this.getContextPadEntries = function(element) { * // no entries, effectively disable the context pad * return {}; * }; * } * * CustomContextPadProvider.$inject = [ 'contextPad' ]; * * var overrideModule = { * contextPadProvider: [ 'type', CustomContextPadProvider ] * }; * * var bpmnModeler = new Modeler({ additionalModules: [ overrideModule ]}); * ``` * * @param {Object} [options] configuration options to pass to the viewer * @param {DOMElement} [options.container] the container to render the viewer in, defaults to body. * @param {String|Number} [options.width] the width of the viewer * @param {String|Number} [options.height] the height of the viewer * @param {Object} [options.moddleExtensions] extension packages to provide * @param {Array} [options.modules] a list of modules to override the default modules * @param {Array} [options.additionalModules] a list of modules to use with the default modules */ function Modeler(options) { Viewer.call(this, options); // hook ID collection into the modeler this.on('import.parse.complete', function(event) { if (!event.error) { this._collectIds(event.definitions, event.context); } }, this); this.on('diagram.destroy', function() { this.get('moddle').ids.clear(); }, this); } inherits(Modeler, Viewer); module.exports = Modeler; module.exports.Viewer = Viewer; module.exports.NavigatedViewer = NavigatedViewer; /** * Create a new diagram to start modeling. * * @param {Function} [done] */ Modeler.prototype.createDiagram = function(done) { return this.importXML(initialDiagram, done); }; /** * Create a moddle instance, attaching ids to it. * * @param {Object} options */ Modeler.prototype._createModdle = function(options) { var moddle = Viewer.prototype._createModdle.call(this, options); // attach ids to moddle to be able to track // and validated ids in the BPMN 2.0 XML document // tree moddle.ids = new Ids([ 32, 36, 1 ]); return moddle; }; /** * Collect ids processed during parsing of the * definitions object. * * @param {ModdleElement} definitions * @param {Context} context */ Modeler.prototype._collectIds = function(definitions, context) { var moddle = definitions.$model, ids = moddle.ids, id; // remove references from previous import ids.clear(); for (id in context.elementsById) { ids.claim(id, context.elementsById[id]); } }; Modeler.prototype._interactionModules = [ // non-modeling components _dereq_(256), _dereq_(257), _dereq_(260) ]; Modeler.prototype._modelingModules = [ // modeling components _dereq_(139), _dereq_(145), _dereq_(206), _dereq_(224), _dereq_(10), _dereq_(18), _dereq_(12), _dereq_(22), _dereq_(27), _dereq_(66), _dereq_(72), _dereq_(77), _dereq_(87) ]; // modules the modeler is composed of // // - viewer modules // - interaction modules // - modeling modules Modeler.prototype._modules = [].concat( Modeler.prototype._modules, Modeler.prototype._interactionModules, Modeler.prototype._modelingModules); },{"10":10,"12":12,"139":139,"145":145,"18":18,"2":2,"206":206,"22":22,"224":224,"256":256,"257":257,"260":260,"27":27,"288":288,"289":289,"3":3,"66":66,"72":72,"77":77,"87":87}],2:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var Viewer = _dereq_(3); /** * A viewer that includes mouse navigation facilities * * @param {Object} options */ function NavigatedViewer(options) { Viewer.call(this, options); } inherits(NavigatedViewer, Viewer); module.exports = NavigatedViewer; NavigatedViewer.prototype._navigationModules = [ _dereq_(260), _dereq_(256) ]; NavigatedViewer.prototype._modules = [].concat( NavigatedViewer.prototype._modules, NavigatedViewer.prototype._navigationModules); },{"256":256,"260":260,"289":289,"3":3}],3:[function(_dereq_,module,exports){ /** * The code in the area * must not be changed. * * @see http://bpmn.io/license for more information. */ 'use strict'; var assign = _dereq_(431), omit = _dereq_(436), isNumber = _dereq_(425); var domify = _dereq_(449), domQuery = _dereq_(452), domRemove = _dereq_(453); var innerSVG = _dereq_(480); var Diagram = _dereq_(117), BpmnModdle = _dereq_(99); var inherits = _dereq_(289); var Importer = _dereq_(90); function checkValidationError(err) { // check if we can help the user by indicating wrong BPMN 2.0 xml // (in case he or the exporting tool did not get that right) var pattern = /unparsable content <([^>]+)> detected([\s\S]*)$/; var match = pattern.exec(err.message); if (match) { err.message = 'unparsable content <' + match[1] + '> detected; ' + 'this may indicate an invalid BPMN 2.0 diagram file' + match[2]; } return err; } var DEFAULT_OPTIONS = { width: '100%', height: '100%', position: 'relative' }; /** * Ensure the passed argument is a proper unit (defaulting to px) */ function ensureUnit(val) { return val + (isNumber(val) ? 'px' : ''); } /** * A viewer for BPMN 2.0 diagrams. * * Have a look at {@link NavigatedViewer} or {@link Modeler} for bundles that include * additional features. * * * ## Extending the Viewer * * In order to extend the viewer pass extension modules to bootstrap via the * `additionalModules` option. An extension module is an object that exposes * named services. * * The following example depicts the integration of a simple * logging component that integrates with interaction events: * * * ```javascript * * // logging component * function InteractionLogger(eventBus) { * eventBus.on('element.hover', function(event) { * console.log() * }) * } * * InteractionLogger.$inject = [ 'eventBus' ]; // minification save * * // extension module * var extensionModule = { * __init__: [ 'interactionLogger' ], * interactionLogger: [ 'type', InteractionLogger ] * }; * * // extend the viewer * var bpmnViewer = new Viewer({ additionalModules: [ extensionModule ] }); * bpmnViewer.importXML(...); * ``` * * @param {Object} [options] configuration options to pass to the viewer * @param {DOMElement} [options.container] the container to render the viewer in, defaults to body. * @param {String|Number} [options.width] the width of the viewer * @param {String|Number} [options.height] the height of the viewer * @param {Object} [options.moddleExtensions] extension packages to provide * @param {Array} [options.modules] a list of modules to override the default modules * @param {Array} [options.additionalModules] a list of modules to use with the default modules */ function Viewer(options) { options = assign({}, DEFAULT_OPTIONS, options); this._moddle = this._createModdle(options); this._container = this._createContainer(options); /* */ addProjectLogo(this._container); /* */ this._init(this._container, this._moddle, options); } inherits(Viewer, Diagram); module.exports = Viewer; /** * Parse and render a BPMN 2.0 diagram. * * Once finished the viewer reports back the result to the * provided callback function with (err, warnings). * * ## Life-Cycle Events * * During import the viewer will fire life-cycle events: * * * import.parse.start (about to read model from xml) * * import.parse.complete (model read; may have worked or not) * * import.render.start (graphical import start) * * import.render.complete (graphical import finished) * * import.done (everything done) * * You can use these events to hook into the life-cycle. * * @param {String} xml the BPMN 2.0 xml * @param {Function} [done] invoked with (err, warnings=[]) */ Viewer.prototype.importXML = function(xml, done) { // done is optional done = done || function() {}; var self = this; // hook in pre-parse listeners + // allow xml manipulation xml = this._emit('import.parse.start', { xml: xml }) || xml; this._moddle.fromXML(xml, 'bpmn:Definitions', function(err, definitions, context) { // hook in post parse listeners + // allow definitions manipulation definitions = self._emit('import.parse.complete', { error: err, definitions: definitions, context: context }) || definitions; var parseWarnings = context.warnings; if (err) { err = checkValidationError(err); self._emit('import.done', { error: err, warnings: parseWarnings }); return done(err, parseWarnings); } self.importDefinitions(definitions, function(err, importWarnings) { var allWarnings = [].concat(parseWarnings, importWarnings || []); self._emit('import.done', { error: err, warnings: allWarnings }); done(err, allWarnings); }); }); }; /** * Export the currently displayed BPMN 2.0 diagram as * a BPMN 2.0 XML document. * * @param {Object} [options] export options * @param {Boolean} [options.format=false] output formated XML * @param {Boolean} [options.preamble=true] output preamble * * @param {Function} done invoked with (err, xml) */ Viewer.prototype.saveXML = function(options, done) { if (!done) { done = options; options = {}; } var definitions = this._definitions; if (!definitions) { return done(new Error('no definitions loaded')); } this._moddle.toXML(definitions, options, done); }; /** * Export the currently displayed BPMN 2.0 diagram as * an SVG image. * * @param {Object} [options] * @param {Function} done invoked with (err, svgStr) */ Viewer.prototype.saveSVG = function(options, done) { if (!done) { done = options; options = {}; } var canvas = this.get('canvas'); var contentNode = canvas.getDefaultLayer(), defsNode = domQuery('defs', canvas._svg); var contents = innerSVG(contentNode), defs = defsNode ? '' + innerSVG(defsNode) + '' : ''; var bbox = contentNode.getBBox(); var svg = '\n' + '\n' + '\n' + '' + defs + contents + ''; done(null, svg); }; /** * Get a named diagram service. * * @example * * var elementRegistry = viewer.get('elementRegistry'); * var startEventShape = elementRegistry.get('StartEvent_1'); * * @param {String} name * * @return {Object} diagram service instance * * @method Viewer#get */ /** * Invoke a function in the context of this viewer. * * @example * * viewer.invoke(function(elementRegistry) { * var startEventShape = elementRegistry.get('StartEvent_1'); * }); * * @param {Function} fn to be invoked * * @return {Object} the functions return value * * @method Viewer#invoke */ /** * Remove all drawn elements from the viewer. * * After calling this method the viewer can still * be reused for opening another diagram. * * @method Viewer#clear */ Viewer.prototype.importDefinitions = function(definitions, done) { // use try/catch to not swallow synchronous exceptions // that may be raised during model parsing try { if (this._definitions) { // clear existing rendered diagram this.clear(); } // update definitions this._definitions = definitions; // perform graphical import Importer.importBpmnDiagram(this, definitions, done); } catch (e) { // handle synchronous errors done(e); } }; Viewer.prototype.getModules = function() { return this._modules; }; /** * Destroy the viewer instance and remove all its * remainders from the document tree. */ Viewer.prototype.destroy = function() { // diagram destroy Diagram.prototype.destroy.call(this); // dom detach domRemove(this._container); }; /** * Register an event listener * * Remove a previously added listener via {@link #off(event, callback)}. * * @param {String} event * @param {Number} [priority] * @param {Function} callback * @param {Object} [that] */ Viewer.prototype.on = function(event, priority, callback, target) { return this.get('eventBus').on(event, priority, callback, target); }; /** * De-register an event listener * * @param {String} event * @param {Function} callback */ Viewer.prototype.off = function(event, callback) { this.get('eventBus').off(event, callback); }; Viewer.prototype.attachTo = function(parentNode) { if (!parentNode) { throw new Error('parentNode required'); } // ensure we detach from the // previous, old parent this.detach(); // unwrap jQuery if provided if (parentNode.get && parentNode.constructor.prototype.jquery) { parentNode = parentNode.get(0); } if (typeof parentNode === 'string') { parentNode = domQuery(parentNode); } parentNode.appendChild(this._container); this._emit('attach', {}); }; Viewer.prototype.detach = function() { var container = this._container, parentNode = container.parentNode; if (!parentNode) { return; } this._emit('detach', {}); parentNode.removeChild(container); }; Viewer.prototype._init = function(container, moddle, options) { var baseModules = options.modules || this.getModules(), additionalModules = options.additionalModules || [], staticModules = [ { bpmnjs: [ 'value', this ], moddle: [ 'value', moddle ] } ]; var diagramModules = [].concat(staticModules, baseModules, additionalModules); var diagramOptions = assign(omit(options, 'additionalModules'), { canvas: assign({}, options.canvas, { container: container }), modules: diagramModules }); // invoke diagram constructor Diagram.call(this, diagramOptions); if (options && options.container) { this.attachTo(options.container); } }; /** * Emit an event on the underlying {@link EventBus} * * @param {String} type * @param {Object} event * * @return {Object} event processing result (if any) */ Viewer.prototype._emit = function(type, event) { return this.get('eventBus').fire(type, event); }; Viewer.prototype._createContainer = function(options) { var container = domify('
'); assign(container.style, { width: ensureUnit(options.width), height: ensureUnit(options.height), position: options.position }); return container; }; Viewer.prototype._createModdle = function(options) { var moddleOptions = assign({}, this._moddleExtensions, options.moddleExtensions); return new BpmnModdle(moddleOptions); }; // modules the viewer is composed of Viewer.prototype._modules = [ _dereq_(4), _dereq_(248), _dereq_(233), _dereq_(211) ]; // default moddle extensions the viewer is composed of Viewer.prototype._moddleExtensions = {}; /* */ var PoweredBy = _dereq_(96), domEvent = _dereq_(450); /** * Adds the project logo to the diagram container as * required by the bpmn.io license. * * @see http://bpmn.io/license * * @param {Element} container */ function addProjectLogo(container) { var logoData = PoweredBy.BPMNIO_LOGO; var linkMarkup = '' + '' + ''; var linkElement = domify(linkMarkup); container.appendChild(linkElement); domEvent.bind(linkElement, 'click', function(event) { PoweredBy.open(); event.preventDefault(); }); } /* */ },{"117":117,"211":211,"233":233,"248":248,"289":289,"4":4,"425":425,"431":431,"436":436,"449":449,"450":450,"452":452,"453":453,"480":480,"90":90,"96":96,"99":99}],4:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(7), _dereq_(92) ] }; },{"7":7,"92":92}],5:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289), isObject = _dereq_(426), assign = _dereq_(431), forEach = _dereq_(303), every = _dereq_(300), some = _dereq_(309); var BaseRenderer = _dereq_(128), TextUtil = _dereq_(280), DiUtil = _dereq_(93); var getBusinessObject = _dereq_(95).getBusinessObject, is = _dereq_(95).is; var RenderUtil = _dereq_(278); var componentsToPath = RenderUtil.componentsToPath, createLine = RenderUtil.createLine; var domQuery = _dereq_(452); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478), svgClasses = _dereq_(475); var rotate = _dereq_(279).rotate, transform = _dereq_(279).transform, translate = _dereq_(279).translate; var Ids = _dereq_(288), RENDERER_IDS = new Ids(); var TASK_BORDER_RADIUS = 10; var INNER_OUTER_DIST = 3; var LABEL_STYLE = { fontFamily: 'Arial, sans-serif', fontSize: 12 }; function BpmnRenderer(eventBus, styles, pathMap, canvas, priority) { BaseRenderer.call(this, eventBus, priority); var rendererId = RENDERER_IDS.next(); var textUtil = new TextUtil({ style: LABEL_STYLE, size: { width: 100 } }); var markers = {}; var computeStyle = styles.computeStyle; function addMarker(id, options) { var attrs = assign({ fill: 'black', strokeWidth: 1, strokeLinecap: 'round', strokeDasharray: 'none' }, options.attrs); var ref = options.ref || { x: 0, y: 0 }; var scale = options.scale || 1; // fix for safari / chrome / firefox bug not correctly // resetting stroke dash array if (attrs.strokeDasharray === 'none') { attrs.strokeDasharray = [10000, 1]; } var marker = svgCreate('marker'); svgAttr(options.element, attrs); svgAppend(marker, options.element); svgAttr(marker, { id: id, viewBox: '0 0 20 20', refX: ref.x, refY: ref.y, markerWidth: 20 * scale, markerHeight: 20 * scale, orient: 'auto' }); var defs = domQuery('defs', canvas._svg); if (!defs) { defs = svgCreate('defs'); svgAppend(canvas._svg, defs); } svgAppend(defs, marker); markers[id] = marker; } function marker(type, fill, stroke) { var id = type + '-' + fill + '-' + stroke + '-' + rendererId; if (!markers[id]) { createMarker(type, fill, stroke); } return 'url(#' + id + ')'; } function createMarker(type, fill, stroke) { var id = type + '-' + fill + '-' + stroke + '-' + rendererId; if (type === 'sequenceflow-end') { var sequenceflowEnd = svgCreate('path'); svgAttr(sequenceflowEnd, { d: 'M 1 5 L 11 10 L 1 15 Z' }); addMarker(id, { element: sequenceflowEnd, ref: { x: 11, y: 10 }, scale: 0.5, attrs: { fill: stroke, stroke: stroke } }); } if (type === 'messageflow-start') { var messageflowStart = svgCreate('circle'); svgAttr(messageflowStart, { cx: 6, cy: 6, r: 3.5 }); addMarker(id, { element: messageflowStart, attrs: { fill: fill, stroke: stroke }, ref: { x: 6, y: 6 } }); } if (type === 'messageflow-end') { var messageflowEnd = svgCreate('path'); svgAttr(messageflowEnd, { d: 'm 1 5 l 0 -3 l 7 3 l -7 3 z' }); addMarker(id, { element: messageflowEnd, attrs: { fill: fill, stroke: stroke, strokeLinecap: 'butt' }, ref: { x: 8.5, y: 5 } }); } if (type === 'association-start') { var associationStart = svgCreate('path'); svgAttr(associationStart, { d: 'M 11 5 L 1 10 L 11 15' }); addMarker(id, { element: associationStart, attrs: { fill: 'none', stroke: stroke, strokeWidth: 1.5 }, ref: { x: 1, y: 10 }, scale: 0.5 }); } if (type === 'association-end') { var associationEnd = svgCreate('path'); svgAttr(associationEnd, { d: 'M 1 5 L 11 10 L 1 15' }); addMarker(id, { element: associationEnd, attrs: { fill: 'none', stroke: stroke, strokeWidth: 1.5 }, ref: { x: 12, y: 10 }, scale: 0.5 }); } if (type === 'conditional-flow-marker') { var conditionalflowMarker = svgCreate('path'); svgAttr(conditionalflowMarker, { d: 'M 0 10 L 8 6 L 16 10 L 8 14 Z' }); addMarker(id, { element: conditionalflowMarker, attrs: { fill: fill, stroke: stroke }, ref: { x: -1, y: 10 }, scale: 0.5 }); } if (type === 'conditional-default-flow-marker') { var conditionaldefaultflowMarker = svgCreate('path'); svgAttr(conditionaldefaultflowMarker, { d: 'M 6 4 L 10 16' }); addMarker(id, { element: conditionaldefaultflowMarker, attrs: { stroke: stroke }, ref: { x: 0, y: 10 }, scale: 0.5 }); } } function drawCircle(parentGfx, width, height, offset, attrs) { if (isObject(offset)) { attrs = offset; offset = 0; } offset = offset || 0; attrs = computeStyle(attrs, { stroke: 'black', strokeWidth: 2, fill: 'white' }); var cx = width / 2, cy = height / 2; var circle = svgCreate('circle'); svgAttr(circle, { cx: cx, cy: cy, r: Math.round((width + height) / 4 - offset) }); svgAttr(circle, attrs); svgAppend(parentGfx, circle); return circle; } function drawRect(parentGfx, width, height, r, offset, attrs) { if (isObject(offset)) { attrs = offset; offset = 0; } offset = offset || 0; attrs = computeStyle(attrs, { stroke: 'black', strokeWidth: 2, fill: 'white' }); var rect = svgCreate('rect'); svgAttr(rect, { x: offset, y: offset, width: width - offset * 2, height: height - offset * 2, rx: r, ry: r }); svgAttr(rect, attrs); svgAppend(parentGfx, rect); return rect; } function drawDiamond(parentGfx, width, height, attrs) { var x_2 = width / 2; var y_2 = height / 2; var points = [{ x: x_2, y: 0 }, { x: width, y: y_2 }, { x: x_2, y: height }, { x: 0, y: y_2 }]; var pointsString = points.map(function(point) { return point.x + ',' + point.y; }).join(' '); attrs = computeStyle(attrs, { stroke: 'black', strokeWidth: 2, fill: 'white' }); var polygon = svgCreate('polygon'); svgAttr(polygon, { points: pointsString }); svgAttr(polygon, attrs); svgAppend(parentGfx, polygon); return polygon; } function drawLine(parentGfx, waypoints, attrs) { attrs = computeStyle(attrs, [ 'no-fill' ], { stroke: 'black', strokeWidth: 2, fill: 'none' }); var line = createLine(waypoints, attrs); svgAppend(parentGfx, line); return line; } function drawPath(parentGfx, d, attrs) { attrs = computeStyle(attrs, [ 'no-fill' ], { strokeWidth: 2, stroke: 'black' }); var path = svgCreate('path'); svgAttr(path, { d: d }); svgAttr(path, attrs); svgAppend(parentGfx, path); return path; } function drawMarker(type, parentGfx, path, attrs) { return drawPath(parentGfx, path, assign({ 'data-marker': type }, attrs)); } function as(type) { return function(parentGfx, element) { return handlers[type](parentGfx, element); }; } function renderer(type) { return handlers[type]; } function renderEventContent(element, parentGfx) { var event = getSemantic(element); var isThrowing = isThrowEvent(event); if (isTypedEvent(event, 'bpmn:MessageEventDefinition')) { return renderer('bpmn:MessageEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:TimerEventDefinition')) { return renderer('bpmn:TimerEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:ConditionalEventDefinition')) { return renderer('bpmn:ConditionalEventDefinition')(parentGfx, element); } if (isTypedEvent(event, 'bpmn:SignalEventDefinition')) { return renderer('bpmn:SignalEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:CancelEventDefinition') && isTypedEvent(event, 'bpmn:TerminateEventDefinition', { parallelMultiple: false })) { return renderer('bpmn:MultipleEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:CancelEventDefinition') && isTypedEvent(event, 'bpmn:TerminateEventDefinition', { parallelMultiple: true })) { return renderer('bpmn:ParallelMultipleEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:EscalationEventDefinition')) { return renderer('bpmn:EscalationEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:LinkEventDefinition')) { return renderer('bpmn:LinkEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:ErrorEventDefinition')) { return renderer('bpmn:ErrorEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:CancelEventDefinition')) { return renderer('bpmn:CancelEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:CompensateEventDefinition')) { return renderer('bpmn:CompensateEventDefinition')(parentGfx, element, isThrowing); } if (isTypedEvent(event, 'bpmn:TerminateEventDefinition')) { return renderer('bpmn:TerminateEventDefinition')(parentGfx, element, isThrowing); } return null; } function renderLabel(parentGfx, label, options) { var text = textUtil.createText(label || '', options); svgClasses(text).add('djs-label'); svgAppend(parentGfx, text); return text; } function renderEmbeddedLabel(parentGfx, element, align) { var semantic = getSemantic(element); return renderLabel(parentGfx, semantic.name, { box: element, align: align, padding: 5, style: { fill: getStrokeColor(element) } }); } function renderExternalLabel(parentGfx, element) { var semantic = getSemantic(element); var box = { width: 90, height: 30, x: element.width / 2 + element.x, y: element.height / 2 + element.y }; return renderLabel(parentGfx, semantic.name, { box: box, fitBox: true, style: { fontSize: '11px' } }); } function renderLaneLabel(parentGfx, text, element) { var textBox = renderLabel(parentGfx, text, { box: { height: 30, width: element.height }, align: 'center-middle', style: { fill: getStrokeColor(element) } }); var top = -1 * element.height; transform(textBox, 0, -top, 270); } function createPathFromConnection(connection) { var waypoints = connection.waypoints; var pathData = 'm ' + waypoints[0].x + ',' + waypoints[0].y; for (var i = 1; i < waypoints.length; i++) { pathData += 'L' + waypoints[i].x + ',' + waypoints[i].y + ' '; } return pathData; } var handlers = this.handlers = { 'bpmn:Event': function(parentGfx, element, attrs) { return drawCircle(parentGfx, element.width, element.height, attrs); }, 'bpmn:StartEvent': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var semantic = getSemantic(element); if (!semantic.isInterrupting) { attrs = { strokeDasharray: '6', strokeLinecap: 'round' }; } var circle = renderer('bpmn:Event')(parentGfx, element, attrs); renderEventContent(element, parentGfx); return circle; }, 'bpmn:MessageEventDefinition': function(parentGfx, element, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_MESSAGE', { xScaleFactor: 0.9, yScaleFactor: 0.9, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.235, my: 0.315 } }); var fill = isThrowing ? getStrokeColor(element) : getFillColor(element); var stroke = isThrowing ? getFillColor(element) : getStrokeColor(element); var messagePath = drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: stroke }); return messagePath; }, 'bpmn:TimerEventDefinition': function(parentGfx, element) { var circle = drawCircle(parentGfx, element.width, element.height, 0.2 * element.height, { strokeWidth: 2, fill: getFillColor(element), stroke: getStrokeColor(element) }); var pathData = pathMap.getScaledPath('EVENT_TIMER_WH', { xScaleFactor: 0.75, yScaleFactor: 0.75, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.5, my: 0.5 } }); drawPath(parentGfx, pathData, { strokeWidth: 2, strokeLinecap: 'square', stroke: getStrokeColor(element) }); for (var i = 0;i < 12;i++) { var linePathData = pathMap.getScaledPath('EVENT_TIMER_LINE', { xScaleFactor: 0.75, yScaleFactor: 0.75, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.5, my: 0.5 } }); var width = element.width / 2; var height = element.height / 2; drawPath(parentGfx, linePathData, { strokeWidth: 1, strokeLinecap: 'square', transform: 'rotate(' + (i * 30) + ',' + height + ',' + width + ')', stroke: getStrokeColor(element) }); } return circle; }, 'bpmn:EscalationEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_ESCALATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.5, my: 0.2 } }); var fill = isThrowing ? getStrokeColor(event) : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: getStrokeColor(event) }); }, 'bpmn:ConditionalEventDefinition': function(parentGfx, event) { var pathData = pathMap.getScaledPath('EVENT_CONDITIONAL', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.5, my: 0.222 } }); return drawPath(parentGfx, pathData, { strokeWidth: 1, stroke: getStrokeColor(event) }); }, 'bpmn:LinkEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_LINK', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.57, my: 0.263 } }); var fill = isThrowing ? getStrokeColor(event) : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: getStrokeColor(event) }); }, 'bpmn:ErrorEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_ERROR', { xScaleFactor: 1.1, yScaleFactor: 1.1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.2, my: 0.722 } }); var fill = isThrowing ? getStrokeColor(event) : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: getStrokeColor(event) }); }, 'bpmn:CancelEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_CANCEL_45', { xScaleFactor: 1.0, yScaleFactor: 1.0, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.638, my: -0.055 } }); var fill = isThrowing ? 'black' : 'none'; var path = drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill }); rotate(path, 45); return path; }, 'bpmn:CompensateEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_COMPENSATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.22, my: 0.5 } }); var fill = isThrowing ? getStrokeColor(event) : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: getStrokeColor(event) }); }, 'bpmn:SignalEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_SIGNAL', { xScaleFactor: 0.9, yScaleFactor: 0.9, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.5, my: 0.2 } }); var fill = isThrowing ? getStrokeColor(event) : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill, stroke: getStrokeColor(event) }); }, 'bpmn:MultipleEventDefinition': function(parentGfx, event, isThrowing) { var pathData = pathMap.getScaledPath('EVENT_MULTIPLE', { xScaleFactor: 1.1, yScaleFactor: 1.1, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.222, my: 0.36 } }); var fill = isThrowing ? 'black' : 'none'; return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: fill }); }, 'bpmn:ParallelMultipleEventDefinition': function(parentGfx, event) { var pathData = pathMap.getScaledPath('EVENT_PARALLEL_MULTIPLE', { xScaleFactor: 1.2, yScaleFactor: 1.2, containerWidth: event.width, containerHeight: event.height, position: { mx: 0.458, my: 0.194 } }); return drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getStrokeColor(event), stroke: getStrokeColor(event) }); }, 'bpmn:EndEvent': function(parentGfx, element) { var circle = renderer('bpmn:Event')(parentGfx, element, { strokeWidth: 4, fill: getFillColor(element), stroke: getStrokeColor(element) }); renderEventContent(element, parentGfx, true); return circle; }, 'bpmn:TerminateEventDefinition': function(parentGfx, element) { var circle = drawCircle(parentGfx, element.width, element.height, 8, { strokeWidth: 4, fill: getStrokeColor(element), stroke: getStrokeColor(element) }); return circle; }, 'bpmn:IntermediateEvent': function(parentGfx, element) { var outer = renderer('bpmn:Event')(parentGfx, element, { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }); /* inner */ drawCircle(parentGfx, element.width, element.height, INNER_OUTER_DIST, { strokeWidth: 1, fill: getFillColor(element, 'none'), stroke: getStrokeColor(element) }); renderEventContent(element, parentGfx); return outer; }, 'bpmn:IntermediateCatchEvent': as('bpmn:IntermediateEvent'), 'bpmn:IntermediateThrowEvent': as('bpmn:IntermediateEvent'), 'bpmn:Activity': function(parentGfx, element, attrs) { return drawRect(parentGfx, element.width, element.height, TASK_BORDER_RADIUS, attrs); }, 'bpmn:Task': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var rect = renderer('bpmn:Activity')(parentGfx, element, attrs); renderEmbeddedLabel(parentGfx, element, 'center-middle'); attachTaskMarkers(parentGfx, element); return rect; }, 'bpmn:ServiceTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var pathDataBG = pathMap.getScaledPath('TASK_TYPE_SERVICE', { abspos: { x: 12, y: 18 } }); /* service bg */ drawPath(parentGfx, pathDataBG, { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }); var fillPathData = pathMap.getScaledPath('TASK_TYPE_SERVICE_FILL', { abspos: { x: 17.2, y: 18 } }); /* service fill */ drawPath(parentGfx, fillPathData, { strokeWidth: 0, fill: getFillColor(element) }); var pathData = pathMap.getScaledPath('TASK_TYPE_SERVICE', { abspos: { x: 17, y: 22 } }); /* service */ drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }); return task; }, 'bpmn:UserTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var x = 15; var y = 12; var pathData = pathMap.getScaledPath('TASK_TYPE_USER_1', { abspos: { x: x, y: y } }); /* user path */ drawPath(parentGfx, pathData, { strokeWidth: 0.5, fill: getFillColor(element), stroke: getStrokeColor(element) }); var pathData2 = pathMap.getScaledPath('TASK_TYPE_USER_2', { abspos: { x: x, y: y } }); /* user2 path */ drawPath(parentGfx, pathData2, { strokeWidth: 0.5, fill: getFillColor(element), stroke: getStrokeColor(element) }); var pathData3 = pathMap.getScaledPath('TASK_TYPE_USER_3', { abspos: { x: x, y: y } }); /* user3 path */ drawPath(parentGfx, pathData3, { strokeWidth: 0.5, fill: getStrokeColor(element), stroke: getStrokeColor(element) }); return task; }, 'bpmn:ManualTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var pathData = pathMap.getScaledPath('TASK_TYPE_MANUAL', { abspos: { x: 17, y: 15 } }); /* manual path */ drawPath(parentGfx, pathData, { strokeWidth: 0.5, // 0.25, fill: getFillColor(element), stroke: getStrokeColor(element) }); return task; }, 'bpmn:SendTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var pathData = pathMap.getScaledPath('TASK_TYPE_SEND', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: 21, containerHeight: 14, position: { mx: 0.285, my: 0.357 } }); /* send path */ drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getStrokeColor(element), stroke: getFillColor(element) }); return task; }, 'bpmn:ReceiveTask' : function(parentGfx, element) { var semantic = getSemantic(element); var task = renderer('bpmn:Task')(parentGfx, element); var pathData; if (semantic.instantiate) { drawCircle(parentGfx, 28, 28, 20 * 0.22, { strokeWidth: 1 }); pathData = pathMap.getScaledPath('TASK_TYPE_INSTANTIATING_SEND', { abspos: { x: 7.77, y: 9.52 } }); } else { pathData = pathMap.getScaledPath('TASK_TYPE_SEND', { xScaleFactor: 0.9, yScaleFactor: 0.9, containerWidth: 21, containerHeight: 14, position: { mx: 0.3, my: 0.4 } }); } /* receive path */ drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }); return task; }, 'bpmn:ScriptTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var pathData = pathMap.getScaledPath('TASK_TYPE_SCRIPT', { abspos: { x: 15, y: 20 } }); /* script path */ drawPath(parentGfx, pathData, { strokeWidth: 1, stroke: getStrokeColor(element) }); return task; }, 'bpmn:BusinessRuleTask': function(parentGfx, element) { var task = renderer('bpmn:Task')(parentGfx, element); var headerPathData = pathMap.getScaledPath('TASK_TYPE_BUSINESS_RULE_HEADER', { abspos: { x: 8, y: 8 } }); var businessHeaderPath = drawPath(parentGfx, headerPathData); svgAttr(businessHeaderPath, { strokeWidth: 1, fill: getFillColor(element, '#aaaaaa'), stroke: getStrokeColor(element) }); var headerData = pathMap.getScaledPath('TASK_TYPE_BUSINESS_RULE_MAIN', { abspos: { x: 8, y: 8 } }); var businessPath = drawPath(parentGfx, headerData); svgAttr(businessPath, { strokeWidth: 1, stroke: getStrokeColor(element) }); return task; }, 'bpmn:SubProcess': function(parentGfx, element, attrs) { attrs = assign({ fillOpacity: 0.95, fill: getFillColor(element), stroke: getStrokeColor(element) }, attrs); var rect = renderer('bpmn:Activity')(parentGfx, element, attrs); var expanded = DiUtil.isExpanded(element); var isEventSubProcess = DiUtil.isEventSubProcess(element); if (isEventSubProcess) { svgAttr(rect, { strokeDasharray: '1,2' }); } renderEmbeddedLabel(parentGfx, element, expanded ? 'center-top' : 'center-middle'); if (expanded) { attachTaskMarkers(parentGfx, element); } else { attachTaskMarkers(parentGfx, element, ['SubProcessMarker']); } return rect; }, 'bpmn:AdHocSubProcess': function(parentGfx, element) { return renderer('bpmn:SubProcess')(parentGfx, element); }, 'bpmn:Transaction': function(parentGfx, element) { var outer = renderer('bpmn:SubProcess')(parentGfx, element); var innerAttrs = styles.style([ 'no-fill', 'no-events' ], { stroke: getStrokeColor(element) }); /* inner path */ drawRect(parentGfx, element.width, element.height, TASK_BORDER_RADIUS - 2, INNER_OUTER_DIST, innerAttrs); return outer; }, 'bpmn:CallActivity': function(parentGfx, element) { return renderer('bpmn:SubProcess')(parentGfx, element, { strokeWidth: 5 }); }, 'bpmn:Participant': function(parentGfx, element) { var attrs = { fillOpacity: 0.95, fill: getFillColor(element), stroke: getStrokeColor(element) }; var lane = renderer('bpmn:Lane')(parentGfx, element, attrs); var expandedPool = DiUtil.isExpanded(element); if (expandedPool) { drawLine(parentGfx, [ { x: 30, y: 0 }, { x: 30, y: element.height } ], { stroke: getStrokeColor(element) }); var text = getSemantic(element).name; renderLaneLabel(parentGfx, text, element); } else { // Collapsed pool draw text inline var text2 = getSemantic(element).name; renderLabel(parentGfx, text2, { box: element, align: 'center-middle', style: { fill: getStrokeColor(element) } }); } var participantMultiplicity = !!(getSemantic(element).participantMultiplicity); if (participantMultiplicity) { renderer('ParticipantMultiplicityMarker')(parentGfx, element); } return lane; }, 'bpmn:Lane': function(parentGfx, element, attrs) { var rect = drawRect(parentGfx, element.width, element.height, 0, assign({ fill: getFillColor(element), stroke: getStrokeColor(element) }, attrs)); var semantic = getSemantic(element); if (semantic.$type === 'bpmn:Lane') { var text = semantic.name; renderLaneLabel(parentGfx, text, element); } return rect; }, 'bpmn:InclusiveGateway': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var diamond = drawDiamond(parentGfx, element.width, element.height, attrs); /* circle path */ drawCircle(parentGfx, element.width, element.height, element.height * 0.24, { strokeWidth: 2.5, fill: getFillColor(element), stroke: getStrokeColor(element) }); return diamond; }, 'bpmn:ExclusiveGateway': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var diamond = drawDiamond(parentGfx, element.width, element.height, attrs); var pathData = pathMap.getScaledPath('GATEWAY_EXCLUSIVE', { xScaleFactor: 0.4, yScaleFactor: 0.4, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.32, my: 0.3 } }); if ((getDi(element).isMarkerVisible)) { drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getStrokeColor(element), stroke: getStrokeColor(element) }); } return diamond; }, 'bpmn:ComplexGateway': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var diamond = drawDiamond(parentGfx, element.width, element.height, attrs); var pathData = pathMap.getScaledPath('GATEWAY_COMPLEX', { xScaleFactor: 0.5, yScaleFactor:0.5, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.46, my: 0.26 } }); /* complex path */ drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getStrokeColor(element), stroke: getStrokeColor(element) }); return diamond; }, 'bpmn:ParallelGateway': function(parentGfx, element) { var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var diamond = drawDiamond(parentGfx, element.width, element.height, attrs); var pathData = pathMap.getScaledPath('GATEWAY_PARALLEL', { xScaleFactor: 0.6, yScaleFactor:0.6, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.46, my: 0.2 } }); /* parallel path */ drawPath(parentGfx, pathData, { strokeWidth: 1, fill: getStrokeColor(element), stroke: getStrokeColor(element) }); return diamond; }, 'bpmn:EventBasedGateway': function(parentGfx, element) { var semantic = getSemantic(element); var attrs = { fill: getFillColor(element), stroke: getStrokeColor(element) }; var diamond = drawDiamond(parentGfx, element.width, element.height, attrs); /* outer circle path */ drawCircle(parentGfx, element.width, element.height, element.height * 0.20, { strokeWidth: 1, fill: 'none', stroke: getStrokeColor(element) }); var type = semantic.eventGatewayType; var instantiate = !!semantic.instantiate; function drawEvent() { var pathData = pathMap.getScaledPath('GATEWAY_EVENT_BASED', { xScaleFactor: 0.18, yScaleFactor: 0.18, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.36, my: 0.44 } }); var attrs = { strokeWidth: 2, fill: getFillColor(element, 'none'), stroke: getStrokeColor(element) }; /* event path */ drawPath(parentGfx, pathData, attrs); } if (type === 'Parallel') { var pathData = pathMap.getScaledPath('GATEWAY_PARALLEL', { xScaleFactor: 0.4, yScaleFactor:0.4, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.474, my: 0.296 } }); var parallelPath = drawPath(parentGfx, pathData); svgAttr(parallelPath, { strokeWidth: 1, fill: 'none' }); } else if (type === 'Exclusive') { if (!instantiate) { var innerCircle = drawCircle(parentGfx, element.width, element.height, element.height * 0.26); svgAttr(innerCircle, { strokeWidth: 1, fill: 'none', stroke: getStrokeColor(element) }); } drawEvent(); } return diamond; }, 'bpmn:Gateway': function(parentGfx, element) { return drawDiamond(parentGfx, element.width, element.height); }, 'bpmn:SequenceFlow': function(parentGfx, element) { var pathData = createPathFromConnection(element); var fill = getFillColor(element), stroke = getStrokeColor(element); var attrs = { strokeLinejoin: 'round', markerEnd: marker('sequenceflow-end', fill, stroke), stroke: getStrokeColor(element) }; var path = drawPath(parentGfx, pathData, attrs); var sequenceFlow = getSemantic(element); var source = element.source.businessObject; // conditional flow marker if (sequenceFlow.conditionExpression && source.$instanceOf('bpmn:Activity')) { svgAttr(path, { markerStart: marker('conditional-flow-marker', fill, stroke) }); } // default marker if (source.default && (source.$instanceOf('bpmn:Gateway') || source.$instanceOf('bpmn:Activity')) && source.default === sequenceFlow) { svgAttr(path, { markerStart: marker('conditional-default-flow-marker', fill, stroke) }); } return path; }, 'bpmn:Association': function(parentGfx, element, attrs) { var semantic = getSemantic(element); var fill = getFillColor(element), stroke = getStrokeColor(element); attrs = assign({ strokeDasharray: '0.5, 5', strokeLinecap: 'round', strokeLinejoin: 'round', stroke: getStrokeColor(element) }, attrs || {}); if (semantic.associationDirection === 'One' || semantic.associationDirection === 'Both') { attrs.markerEnd = marker('association-end', fill, stroke); } if (semantic.associationDirection === 'Both') { attrs.markerStart = marker('association-start', fill, stroke); } return drawLine(parentGfx, element.waypoints, attrs); }, 'bpmn:DataInputAssociation': function(parentGfx, element) { var fill = getFillColor(element), stroke = getStrokeColor(element); return renderer('bpmn:Association')(parentGfx, element, { markerEnd: marker('association-end', fill, stroke) }); }, 'bpmn:DataOutputAssociation': function(parentGfx, element) { var fill = getFillColor(element), stroke = getStrokeColor(element); return renderer('bpmn:Association')(parentGfx, element, { markerEnd: marker('association-end', fill, stroke) }); }, 'bpmn:MessageFlow': function(parentGfx, element) { var semantic = getSemantic(element), di = getDi(element); var fill = getFillColor(element), stroke = getStrokeColor(element); var pathData = createPathFromConnection(element); var attrs = { markerEnd: marker('messageflow-end', fill, stroke), markerStart: marker('messageflow-start', fill, stroke), strokeDasharray: '10, 12', strokeLinecap: 'round', strokeLinejoin: 'round', strokeWidth: '1.5px', stroke: getStrokeColor(element) }; var path = drawPath(parentGfx, pathData, attrs); if (semantic.messageRef) { var midPoint = path.getPointAtLength(path.getTotalLength() / 2); var markerPathData = pathMap.getScaledPath('MESSAGE_FLOW_MARKER', { abspos: { x: midPoint.x, y: midPoint.y } }); var messageAttrs = { strokeWidth: 1 }; if (di.messageVisibleKind === 'initiating') { messageAttrs.fill = 'white'; messageAttrs.stroke = 'black'; } else { messageAttrs.fill = '#888'; messageAttrs.stroke = 'white'; } drawPath(parentGfx, markerPathData, messageAttrs); } return path; }, 'bpmn:DataObject': function(parentGfx, element) { var pathData = pathMap.getScaledPath('DATA_OBJECT_PATH', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.474, my: 0.296 } }); var elementObject = drawPath(parentGfx, pathData, { fill: getFillColor(element), stroke: getStrokeColor(element) }); var semantic = getSemantic(element); if (isCollection(semantic)) { renderDataItemCollection(parentGfx, element); } return elementObject; }, 'bpmn:DataObjectReference': as('bpmn:DataObject'), 'bpmn:DataInput': function(parentGfx, element) { var arrowPathData = pathMap.getRawPath('DATA_ARROW'); // page var elementObject = renderer('bpmn:DataObject')(parentGfx, element); /* input arrow path */ drawPath(parentGfx, arrowPathData, { strokeWidth: 1 }); return elementObject; }, 'bpmn:DataOutput': function(parentGfx, element) { var arrowPathData = pathMap.getRawPath('DATA_ARROW'); // page var elementObject = renderer('bpmn:DataObject')(parentGfx, element); /* output arrow path */ drawPath(parentGfx, arrowPathData, { strokeWidth: 1, fill: 'black' }); return elementObject; }, 'bpmn:DataStoreReference': function(parentGfx, element) { var DATA_STORE_PATH = pathMap.getScaledPath('DATA_STORE', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: 0, my: 0.133 } }); var elementStore = drawPath(parentGfx, DATA_STORE_PATH, { strokeWidth: 2, fill: getFillColor(element), stroke: getStrokeColor(element) }); return elementStore; }, 'bpmn:BoundaryEvent': function(parentGfx, element) { var semantic = getSemantic(element), cancel = semantic.cancelActivity; var attrs = { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }; if (!cancel) { attrs.strokeDasharray = '6'; attrs.strokeLinecap = 'round'; } var outer = renderer('bpmn:Event')(parentGfx, element, attrs); /* inner path */ drawCircle(parentGfx, element.width, element.height, INNER_OUTER_DIST, assign(attrs, { fill: 'none' })); renderEventContent(element, parentGfx); return outer; }, 'bpmn:Group': function(parentGfx, element) { return drawRect(parentGfx, element.width, element.height, TASK_BORDER_RADIUS, { strokeWidth: 1, strokeDasharray: '8,3,1,3', fill: 'none', pointerEvents: 'none' }); }, 'label': function(parentGfx, element) { return renderExternalLabel(parentGfx, element); }, 'bpmn:TextAnnotation': function(parentGfx, element) { var style = { 'fill': 'none', 'stroke': 'none' }; var textElement = drawRect(parentGfx, element.width, element.height, 0, 0, style); var textPathData = pathMap.getScaledPath('TEXT_ANNOTATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.0, my: 0.0 } }); drawPath(parentGfx, textPathData, { stroke: getStrokeColor(element) }); var text = getSemantic(element).text || ''; renderLabel(parentGfx, text, { box: element, align: 'left-top', padding: 5 }); return textElement; }, 'ParticipantMultiplicityMarker': function(parentGfx, element) { var markerPath = pathMap.getScaledPath('MARKER_PARALLEL', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2) / element.width), my: (element.height - 15) / element.height } }); drawMarker('participant-multiplicity', parentGfx, markerPath); }, 'SubProcessMarker': function(parentGfx, element) { var markerRect = drawRect(parentGfx, 14, 14, 0, { strokeWidth: 1, fill: getFillColor(element), stroke: getStrokeColor(element) }); // Process marker is placed in the middle of the box // therefore fixed values can be used here translate(markerRect, element.width / 2 - 7.5, element.height - 20); var markerPath = pathMap.getScaledPath('MARKER_SUB_PROCESS', { xScaleFactor: 1.5, yScaleFactor: 1.5, containerWidth: element.width, containerHeight: element.height, position: { mx: (element.width / 2 - 7.5) / element.width, my: (element.height - 20) / element.height } }); drawMarker('sub-process', parentGfx, markerPath, { fill: getFillColor(element), stroke: getStrokeColor(element) }); }, 'ParallelMarker': function(parentGfx, element, position) { var markerPath = pathMap.getScaledPath('MARKER_PARALLEL', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2 + position.parallel) / element.width), my: (element.height - 20) / element.height } }); drawMarker('parallel', parentGfx, markerPath); }, 'SequentialMarker': function(parentGfx, element, position) { var markerPath = pathMap.getScaledPath('MARKER_SEQUENTIAL', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2 + position.seq) / element.width), my: (element.height - 19) / element.height } }); drawMarker('sequential', parentGfx, markerPath); }, 'CompensationMarker': function(parentGfx, element, position) { var markerMath = pathMap.getScaledPath('MARKER_COMPENSATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2 + position.compensation) / element.width), my: (element.height - 13) / element.height } }); drawMarker('compensation', parentGfx, markerMath, { strokeWidth: 1 }); }, 'LoopMarker': function(parentGfx, element, position) { var markerPath = pathMap.getScaledPath('MARKER_LOOP', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2 + position.loop) / element.width), my: (element.height - 7) / element.height } }); drawMarker('loop', parentGfx, markerPath, { strokeWidth: 1, fill: 'none', strokeLinecap: 'round', strokeMiterlimit: 0.5 }); }, 'AdhocMarker': function(parentGfx, element, position) { var markerPath = pathMap.getScaledPath('MARKER_ADHOC', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: ((element.width / 2 + position.adhoc) / element.width), my: (element.height - 15) / element.height } }); drawMarker('adhoc', parentGfx, markerPath, { strokeWidth: 1, fill: 'black' }); } }; function attachTaskMarkers(parentGfx, element, taskMarkers) { var obj = getSemantic(element); var subprocess = taskMarkers && taskMarkers.indexOf('SubProcessMarker') !== -1; var position; if (subprocess) { position = { seq: -21, parallel: -22, compensation: -42, loop: -18, adhoc: 10 }; } else { position = { seq: -3, parallel: -6, compensation: -27, loop: 0, adhoc: 10 }; } forEach(taskMarkers, function(marker) { renderer(marker)(parentGfx, element, position); }); if (obj.isForCompensation) { renderer('CompensationMarker')(parentGfx, element, position); } if (obj.$type === 'bpmn:AdHocSubProcess') { renderer('AdhocMarker')(parentGfx, element, position); } var loopCharacteristics = obj.loopCharacteristics, isSequential = loopCharacteristics && loopCharacteristics.isSequential; if (loopCharacteristics) { if (isSequential === undefined) { renderer('LoopMarker')(parentGfx, element, position); } if (isSequential === false) { renderer('ParallelMarker')(parentGfx, element, position); } if (isSequential === true) { renderer('SequentialMarker')(parentGfx, element, position); } } } function renderDataItemCollection(parentGfx, element) { var yPosition = (element.height - 16) / element.height; var pathData = pathMap.getScaledPath('DATA_OBJECT_COLLECTION_PATH', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.451, my: yPosition } }); /* collection path */ drawPath(parentGfx, pathData, { strokeWidth: 2 }); } // extension API, use at your own risk this._drawPath = drawPath; } inherits(BpmnRenderer, BaseRenderer); BpmnRenderer.$inject = [ 'eventBus', 'styles', 'pathMap', 'canvas' ]; module.exports = BpmnRenderer; BpmnRenderer.prototype.canRender = function(element) { return is(element, 'bpmn:BaseElement'); }; BpmnRenderer.prototype.drawShape = function(parentGfx, element) { var type = element.type; var h = this.handlers[type]; /* jshint -W040 */ return h(parentGfx, element); }; BpmnRenderer.prototype.drawConnection = function(parentGfx, element) { var type = element.type; var h = this.handlers[type]; /* jshint -W040 */ return h(parentGfx, element); }; BpmnRenderer.prototype.getShapePath = function(element) { if (is(element, 'bpmn:Event')) { return getCirclePath(element); } if (is(element, 'bpmn:Activity')) { return getRoundRectPath(element, TASK_BORDER_RADIUS); } if (is(element, 'bpmn:Gateway')) { return getDiamondPath(element); } return getRectPath(element); }; ///////// helper functions ///////////////////////////// /** * Checks if eventDefinition of the given element matches with semantic type. * * @return {boolean} true if element is of the given semantic type */ function isTypedEvent(event, eventDefinitionType, filter) { function matches(definition, filter) { return every(filter, function(val, key) { // we want a == conversion here, to be able to catch // undefined == false and friends /* jshint -W116 */ return definition[key] == val; }); } return some(event.eventDefinitions, function(definition) { return definition.$type === eventDefinitionType && matches(event, filter); }); } function isThrowEvent(event) { return (event.$type === 'bpmn:IntermediateThrowEvent') || (event.$type === 'bpmn:EndEvent'); } function isCollection(element) { var dataObject = element.dataObjectRef; return element.isCollection || (dataObject && dataObject.isCollection); } function getDi(element) { return element.businessObject.di; } function getSemantic(element) { return element.businessObject; } /////// cropping path customizations ///////////////////////// function getCirclePath(shape) { var cx = shape.x + shape.width / 2, cy = shape.y + shape.height / 2, radius = shape.width / 2; var circlePath = [ ['M', cx, cy], ['m', 0, -radius], ['a', radius, radius, 0, 1, 1, 0, 2 * radius], ['a', radius, radius, 0, 1, 1, 0, -2 * radius], ['z'] ]; return componentsToPath(circlePath); } function getRoundRectPath(shape, borderRadius) { var x = shape.x, y = shape.y, width = shape.width, height = shape.height; var roundRectPath = [ ['M', x + borderRadius, y], ['l', width - borderRadius * 2, 0], ['a', borderRadius, borderRadius, 0, 0, 1, borderRadius, borderRadius], ['l', 0, height - borderRadius * 2], ['a', borderRadius, borderRadius, 0, 0, 1, -borderRadius, borderRadius], ['l', borderRadius * 2 - width, 0], ['a', borderRadius, borderRadius, 0, 0, 1, -borderRadius, -borderRadius], ['l', 0, borderRadius * 2 - height], ['a', borderRadius, borderRadius, 0, 0, 1, borderRadius, -borderRadius], ['z'] ]; return componentsToPath(roundRectPath); } function getDiamondPath(shape) { var width = shape.width, height = shape.height, x = shape.x, y = shape.y, halfWidth = width / 2, halfHeight = height / 2; var diamondPath = [ ['M', x + halfWidth, y], ['l', halfWidth, halfHeight], ['l', -halfWidth, halfHeight], ['l', -halfWidth, -halfHeight], ['z'] ]; return componentsToPath(diamondPath); } function getRectPath(shape) { var x = shape.x, y = shape.y, width = shape.width, height = shape.height; var rectPath = [ ['M', x, y], ['l', width, 0], ['l', 0, height], ['l', -width, 0], ['z'] ]; return componentsToPath(rectPath); } function getFillColor(element, defaultColor) { var bo = getBusinessObject(element); return bo.di.get('fill') || defaultColor || 'white'; } function getStrokeColor(element, defaultColor) { var bo = getBusinessObject(element); return bo.di.get('stroke') || defaultColor || 'black'; } },{"128":128,"278":278,"279":279,"280":280,"288":288,"289":289,"300":300,"303":303,"309":309,"426":426,"431":431,"452":452,"472":472,"474":474,"475":475,"478":478,"93":93,"95":95}],6:[function(_dereq_,module,exports){ 'use strict'; /** * Map containing SVG paths needed by BpmnRenderer. */ function PathMap() { /** * Contains a map of path elements * *

Path definition

* A parameterized path is defined like this: *
   * 'GATEWAY_PARALLEL': {
   *   d: 'm {mx},{my} {e.x0},0 0,{e.x1} {e.x1},0 0,{e.y0} -{e.x1},0 0,{e.y1} ' +
          '-{e.x0},0 0,-{e.y1} -{e.x1},0 0,-{e.y0} {e.x1},0 z',
   *   height: 17.5,
   *   width:  17.5,
   *   heightElements: [2.5, 7.5],
   *   widthElements: [2.5, 7.5]
   * }
   * 
*

It's important to specify a correct height and width for the path as the scaling * is based on the ratio between the specified height and width in this object and the * height and width that is set as scale target (Note x,y coordinates will be scaled with * individual ratios).

*

The 'heightElements' and 'widthElements' array must contain the values that will be scaled. * The scaling is based on the computed ratios. * Coordinates on the y axis should be in the heightElement's array, they will be scaled using * the computed ratio coefficient. * In the parameterized path the scaled values can be accessed through the 'e' object in {} brackets. *

    *
  • The values for the y axis can be accessed in the path string using {e.y0}, {e.y1}, ....
  • *
  • The values for the x axis can be accessed in the path string using {e.x0}, {e.x1}, ....
  • *
* The numbers x0, x1 respectively y0, y1, ... map to the corresponding array index. *

*/ this.pathMap = { 'EVENT_MESSAGE': { d: 'm {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}', height: 36, width: 36, heightElements: [6, 14], widthElements: [10.5, 21] }, 'EVENT_SIGNAL': { d: 'M {mx},{my} l {e.x0},{e.y0} l -{e.x1},0 Z', height: 36, width: 36, heightElements: [18], widthElements: [10, 20] }, 'EVENT_ESCALATION': { d: 'M {mx},{my} l {e.x0},{e.y0} l -{e.x0},-{e.y1} l -{e.x0},{e.y1} Z', height: 36, width: 36, heightElements: [20, 7], widthElements: [8] }, 'EVENT_CONDITIONAL': { d: 'M {e.x0},{e.y0} l {e.x1},0 l 0,{e.y2} l -{e.x1},0 Z ' + 'M {e.x2},{e.y3} l {e.x0},0 ' + 'M {e.x2},{e.y4} l {e.x0},0 ' + 'M {e.x2},{e.y5} l {e.x0},0 ' + 'M {e.x2},{e.y6} l {e.x0},0 ' + 'M {e.x2},{e.y7} l {e.x0},0 ' + 'M {e.x2},{e.y8} l {e.x0},0 ', height: 36, width: 36, heightElements: [8.5, 14.5, 18, 11.5, 14.5, 17.5, 20.5, 23.5, 26.5], widthElements: [10.5, 14.5, 12.5] }, 'EVENT_LINK': { d: 'm {mx},{my} 0,{e.y0} -{e.x1},0 0,{e.y1} {e.x1},0 0,{e.y0} {e.x0},-{e.y2} -{e.x0},-{e.y2} z', height: 36, width: 36, heightElements: [4.4375, 6.75, 7.8125], widthElements: [9.84375, 13.5] }, 'EVENT_ERROR': { d: 'm {mx},{my} {e.x0},-{e.y0} {e.x1},-{e.y1} {e.x2},{e.y2} {e.x3},-{e.y3} -{e.x4},{e.y4} -{e.x5},-{e.y5} z', height: 36, width: 36, heightElements: [0.023, 8.737, 8.151, 16.564, 10.591, 8.714], widthElements: [0.085, 6.672, 6.97, 4.273, 5.337, 6.636] }, 'EVENT_CANCEL_45': { d: 'm {mx},{my} -{e.x1},0 0,{e.x0} {e.x1},0 0,{e.y1} {e.x0},0 ' + '0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z', height: 36, width: 36, heightElements: [4.75, 8.5], widthElements: [4.75, 8.5] }, 'EVENT_COMPENSATION': { d: 'm {mx},{my} {e.x0},-{e.y0} 0,{e.y1} z m {e.x1},-{e.y2} {e.x2},-{e.y3} 0,{e.y1} -{e.x2},-{e.y3} z', height: 36, width: 36, heightElements: [6.5, 13, 0.4, 6.1], widthElements: [9, 9.3, 8.7] }, 'EVENT_TIMER_WH': { d: 'M {mx},{my} l {e.x0},-{e.y0} m -{e.x0},{e.y0} l {e.x1},{e.y1} ', height: 36, width: 36, heightElements: [10, 2], widthElements: [3, 7] }, 'EVENT_TIMER_LINE': { d: 'M {mx},{my} ' + 'm {e.x0},{e.y0} l -{e.x1},{e.y1} ', height: 36, width: 36, heightElements: [10, 3], widthElements: [0, 0] }, 'EVENT_MULTIPLE': { d:'m {mx},{my} {e.x1},-{e.y0} {e.x1},{e.y0} -{e.x0},{e.y1} -{e.x2},0 z', height: 36, width: 36, heightElements: [6.28099, 12.56199], widthElements: [3.1405, 9.42149, 12.56198] }, 'EVENT_PARALLEL_MULTIPLE': { d:'m {mx},{my} {e.x0},0 0,{e.y1} {e.x1},0 0,{e.y0} -{e.x1},0 0,{e.y1} ' + '-{e.x0},0 0,-{e.y1} -{e.x1},0 0,-{e.y0} {e.x1},0 z', height: 36, width: 36, heightElements: [2.56228, 7.68683], widthElements: [2.56228, 7.68683] }, 'GATEWAY_EXCLUSIVE': { d:'m {mx},{my} {e.x0},{e.y0} {e.x1},{e.y0} {e.x2},0 {e.x4},{e.y2} ' + '{e.x4},{e.y1} {e.x2},0 {e.x1},{e.y3} {e.x0},{e.y3} ' + '{e.x3},0 {e.x5},{e.y1} {e.x5},{e.y2} {e.x3},0 z', height: 17.5, width: 17.5, heightElements: [8.5, 6.5312, -6.5312, -8.5], widthElements: [6.5, -6.5, 3, -3, 5, -5] }, 'GATEWAY_PARALLEL': { d:'m {mx},{my} 0,{e.y1} -{e.x1},0 0,{e.y0} {e.x1},0 0,{e.y1} {e.x0},0 ' + '0,-{e.y1} {e.x1},0 0,-{e.y0} -{e.x1},0 0,-{e.y1} -{e.x0},0 z', height: 30, width: 30, heightElements: [5, 12.5], widthElements: [5, 12.5] }, 'GATEWAY_EVENT_BASED': { d:'m {mx},{my} {e.x0},{e.y0} {e.x0},{e.y1} {e.x1},{e.y2} {e.x2},0 z', height: 11, width: 11, heightElements: [-6, 6, 12, -12], widthElements: [9, -3, -12] }, 'GATEWAY_COMPLEX': { d:'m {mx},{my} 0,{e.y0} -{e.x0},-{e.y1} -{e.x1},{e.y2} {e.x0},{e.y1} -{e.x2},0 0,{e.y3} ' + '{e.x2},0 -{e.x0},{e.y1} l {e.x1},{e.y2} {e.x0},-{e.y1} 0,{e.y0} {e.x3},0 0,-{e.y0} {e.x0},{e.y1} ' + '{e.x1},-{e.y2} -{e.x0},-{e.y1} {e.x2},0 0,-{e.y3} -{e.x2},0 {e.x0},-{e.y1} -{e.x1},-{e.y2} ' + '-{e.x0},{e.y1} 0,-{e.y0} -{e.x3},0 z', height: 17.125, width: 17.125, heightElements: [4.875, 3.4375, 2.125, 3], widthElements: [3.4375, 2.125, 4.875, 3] }, 'DATA_OBJECT_PATH': { d:'m 0,0 {e.x1},0 {e.x0},{e.y0} 0,{e.y1} -{e.x2},0 0,-{e.y2} {e.x1},0 0,{e.y0} {e.x0},0', height: 61, width: 51, heightElements: [10, 50, 60], widthElements: [10, 40, 50, 60] }, 'DATA_OBJECT_COLLECTION_PATH': { d:'m {mx}, {my} ' + 'm 0 15 l 0 -15 ' + 'm 4 15 l 0 -15 ' + 'm 4 15 l 0 -15 ', height: 61, width: 51, heightElements: [12], widthElements: [1, 6, 12, 15] }, 'DATA_ARROW': { d:'m 5,9 9,0 0,-3 5,5 -5,5 0,-3 -9,0 z', height: 61, width: 51, heightElements: [], widthElements: [] }, 'DATA_STORE': { d:'m {mx},{my} ' + 'l 0,{e.y2} ' + 'c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 ' + 'l 0,-{e.y2} ' + 'c -{e.x0},-{e.y1} -{e.x1},-{e.y1} -{e.x2},0' + 'c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0 ' + 'm -{e.x2},{e.y0}' + 'c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0' + 'm -{e.x2},{e.y0}' + 'c {e.x0},{e.y1} {e.x1},{e.y1} {e.x2},0', height: 61, width: 61, heightElements: [7, 10, 45], widthElements: [2, 58, 60] }, 'TEXT_ANNOTATION': { d: 'm {mx}, {my} m 10,0 l -10,0 l 0,{e.y0} l 10,0', height: 30, width: 10, heightElements: [30], widthElements: [10] }, 'MARKER_SUB_PROCESS': { d: 'm{mx},{my} m 7,2 l 0,10 m -5,-5 l 10,0', height: 10, width: 10, heightElements: [], widthElements: [] }, 'MARKER_PARALLEL': { d: 'm{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10', height: 10, width: 10, heightElements: [], widthElements: [] }, 'MARKER_SEQUENTIAL': { d: 'm{mx},{my} m 0,3 l 10,0 m -10,3 l 10,0 m -10,3 l 10,0', height: 10, width: 10, heightElements: [], widthElements: [] }, 'MARKER_COMPENSATION': { d: 'm {mx},{my} 7,-5 0,10 z m 7.1,-0.3 6.9,-4.7 0,10 -6.9,-4.7 z', height: 10, width: 21, heightElements: [], widthElements: [] }, 'MARKER_LOOP': { d: 'm {mx},{my} c 3.526979,0 6.386161,-2.829858 6.386161,-6.320661 0,-3.490806 -2.859182,-6.320661 ' + '-6.386161,-6.320661 -3.526978,0 -6.38616,2.829855 -6.38616,6.320661 0,1.745402 ' + '0.714797,3.325567 1.870463,4.469381 0.577834,0.571908 1.265885,1.034728 2.029916,1.35457 ' + 'l -0.718163,-3.909793 m 0.718163,3.909793 -3.885211,0.802902', height: 13.9, width: 13.7, heightElements: [], widthElements: [] }, 'MARKER_ADHOC': { d: 'm {mx},{my} m 0.84461,2.64411 c 1.05533,-1.23780996 2.64337,-2.07882 4.29653,-1.97997996 2.05163,0.0805 ' + '3.85579,1.15803 5.76082,1.79107 1.06385,0.34139996 2.24454,0.1438 3.18759,-0.43767 0.61743,-0.33642 ' + '1.2775,-0.64078 1.7542,-1.17511 0,0.56023 0,1.12046 0,1.6807 -0.98706,0.96237996 -2.29792,1.62393996 ' + '-3.6918,1.66181996 -1.24459,0.0927 -2.46671,-0.2491 -3.59505,-0.74812 -1.35789,-0.55965 ' + '-2.75133,-1.33436996 -4.27027,-1.18121996 -1.37741,0.14601 -2.41842,1.13685996 -3.44288,1.96782996 z', height: 4, width: 15, heightElements: [], widthElements: [] }, 'TASK_TYPE_SEND': { d: 'm {mx},{my} l 0,{e.y1} l {e.x1},0 l 0,-{e.y1} z l {e.x0},{e.y0} l {e.x0},-{e.y0}', height: 14, width: 21, heightElements: [6, 14], widthElements: [10.5, 21] }, 'TASK_TYPE_SCRIPT': { d: 'm {mx},{my} c 9.966553,-6.27276 -8.000926,-7.91932 2.968968,-14.938 l -8.802728,0 ' + 'c -10.969894,7.01868 6.997585,8.66524 -2.968967,14.938 z ' + 'm -7,-12 l 5,0 ' + 'm -4.5,3 l 4.5,0 ' + 'm -3,3 l 5,0' + 'm -4,3 l 5,0', height: 15, width: 12.6, heightElements: [6, 14], widthElements: [10.5, 21] }, 'TASK_TYPE_USER_1': { d: 'm {mx},{my} c 0.909,-0.845 1.594,-2.049 1.594,-3.385 0,-2.554 -1.805,-4.62199999 ' + '-4.357,-4.62199999 -2.55199998,0 -4.28799998,2.06799999 -4.28799998,4.62199999 0,1.348 ' + '0.974,2.562 1.89599998,3.405 -0.52899998,0.187 -5.669,2.097 -5.794,4.7560005 v 6.718 ' + 'h 17 v -6.718 c 0,-2.2980005 -5.5279996,-4.5950005 -6.0509996,-4.7760005 z' + 'm -8,6 l 0,5.5 m 11,0 l 0,-5' }, 'TASK_TYPE_USER_2': { d: 'm {mx},{my} m 2.162,1.009 c 0,2.4470005 -2.158,4.4310005 -4.821,4.4310005 ' + '-2.66499998,0 -4.822,-1.981 -4.822,-4.4310005 ' }, 'TASK_TYPE_USER_3': { d: 'm {mx},{my} m -6.9,-3.80 c 0,0 2.25099998,-2.358 4.27399998,-1.177 2.024,1.181 4.221,1.537 ' + '4.124,0.965 -0.098,-0.57 -0.117,-3.79099999 -4.191,-4.13599999 -3.57499998,0.001 ' + '-4.20799998,3.36699999 -4.20699998,4.34799999 z' }, 'TASK_TYPE_MANUAL': { d: 'm {mx},{my} c 0.234,-0.01 5.604,0.008 8.029,0.004 0.808,0 1.271,-0.172 1.417,-0.752 0.227,-0.898 ' + '-0.334,-1.314 -1.338,-1.316 -2.467,-0.01 -7.886,-0.004 -8.108,-0.004 -0.014,-0.079 0.016,-0.533 0,-0.61 ' + '0.195,-0.042 8.507,0.006 9.616,0.002 0.877,-0.007 1.35,-0.438 1.353,-1.208 0.003,-0.768 -0.479,-1.09 ' + '-1.35,-1.091 -2.968,-0.002 -9.619,-0.013 -9.619,-0.013 v -0.591 c 0,0 5.052,-0.016 7.225,-0.016 ' + '0.888,-0.002 1.354,-0.416 1.351,-1.193 -0.006,-0.761 -0.492,-1.196 -1.361,-1.196 -3.473,-0.005 ' + '-10.86,-0.003 -11.0829995,-0.003 -0.022,-0.047 -0.045,-0.094 -0.069,-0.139 0.3939995,-0.319 ' + '2.0409995,-1.626 2.4149995,-2.017 0.469,-0.4870005 0.519,-1.1650005 0.162,-1.6040005 -0.414,-0.511 ' + '-0.973,-0.5 -1.48,-0.236 -1.4609995,0.764 -6.5999995,3.6430005 -7.7329995,4.2710005 -0.9,0.499 ' + '-1.516,1.253 -1.882,2.19 -0.37000002,0.95 -0.17,2.01 -0.166,2.979 0.004,0.718 -0.27300002,1.345 ' + '-0.055,2.063 0.629,2.087 2.425,3.312 4.859,3.318 4.6179995,0.014 9.2379995,-0.139 13.8569995,-0.158 ' + '0.755,-0.004 1.171,-0.301 1.182,-1.033 0.012,-0.754 -0.423,-0.969 -1.183,-0.973 -1.778,-0.01 ' + '-5.824,-0.004 -6.04,-0.004 10e-4,-0.084 0.003,-0.586 10e-4,-0.67 z' }, 'TASK_TYPE_INSTANTIATING_SEND': { d: 'm {mx},{my} l 0,8.4 l 12.6,0 l 0,-8.4 z l 6.3,3.6 l 6.3,-3.6' }, 'TASK_TYPE_SERVICE': { d: 'm {mx},{my} v -1.71335 c 0.352326,-0.0705 0.703932,-0.17838 1.047628,-0.32133 ' + '0.344416,-0.14465 0.665822,-0.32133 0.966377,-0.52145 l 1.19431,1.18005 1.567487,-1.57688 ' + '-1.195028,-1.18014 c 0.403376,-0.61394 0.683079,-1.29908 0.825447,-2.01824 l 1.622133,-0.01 ' + 'v -2.2196 l -1.636514,0.01 c -0.07333,-0.35153 -0.178319,-0.70024 -0.323564,-1.04372 ' + '-0.145244,-0.34406 -0.321407,-0.6644 -0.522735,-0.96217 l 1.131035,-1.13631 -1.583305,-1.56293 ' + '-1.129598,1.13589 c -0.614052,-0.40108 -1.302883,-0.68093 -2.022633,-0.82247 l 0.0093,-1.61852 ' + 'h -2.241173 l 0.0042,1.63124 c -0.353763,0.0736 -0.705369,0.17977 -1.049785,0.32371 -0.344415,0.14437 ' + '-0.665102,0.32092 -0.9635006,0.52046 l -1.1698628,-1.15823 -1.5667691,1.5792 1.1684265,1.15669 ' + 'c -0.4026573,0.61283 -0.68308,1.29797 -0.8247287,2.01713 l -1.6588041,0.003 v 2.22174 ' + 'l 1.6724648,-0.006 c 0.073327,0.35077 0.1797598,0.70243 0.3242851,1.04472 0.1452428,0.34448 ' + '0.3214064,0.6644 0.5227339,0.96066 l -1.1993431,1.19723 1.5840256,1.56011 1.1964668,-1.19348 ' + 'c 0.6140517,0.40346 1.3028827,0.68232 2.0233517,0.82331 l 7.19e-4,1.69892 h 2.226848 z ' + 'm 0.221462,-3.9957 c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 ' + '0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 ' + '0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z' }, 'TASK_TYPE_SERVICE_FILL': { d: 'm {mx},{my} c -1.788948,0.7502 -3.8576,-0.0928 -4.6097055,-1.87438 -0.7521065,-1.78321 ' + '0.090598,-3.84627 1.8802645,-4.59604 1.78823,-0.74936 3.856881,0.0929 4.608987,1.87437 ' + '0.752106,1.78165 -0.0906,3.84612 -1.879546,4.59605 z' }, 'TASK_TYPE_BUSINESS_RULE_HEADER': { d: 'm {mx},{my} 0,4 20,0 0,-4 z' }, 'TASK_TYPE_BUSINESS_RULE_MAIN': { d: 'm {mx},{my} 0,12 20,0 0,-12 z' + 'm 0,8 l 20,0 ' + 'm -13,-4 l 0,8' }, 'MESSAGE_FLOW_MARKER': { d: 'm {mx},{my} m -10.5 ,-7 l 0,14 l 21,0 l 0,-14 z l 10.5,6 l 10.5,-6' } }; this.getRawPath = function getRawPath(pathId) { return this.pathMap[pathId].d; }; /** * Scales the path to the given height and width. *

Use case

*

Use case is to scale the content of elements (event, gateways) based * on the element bounding box's size. *

*

Why not transform

*

Scaling a path with transform() will also scale the stroke and IE does not support * the option 'non-scaling-stroke' to prevent this. * Also there are use cases where only some parts of a path should be * scaled.

* * @param {String} pathId The ID of the path. * @param {Object} param

* Example param object scales the path to 60% size of the container (data.width, data.height). *

   *   {
   *     xScaleFactor: 0.6,
   *     yScaleFactor:0.6,
   *     containerWidth: data.width,
   *     containerHeight: data.height,
   *     position: {
   *       mx: 0.46,
   *       my: 0.2,
   *     }
   *   }
   *   
*
    *
  • targetpathwidth = xScaleFactor * containerWidth
  • *
  • targetpathheight = yScaleFactor * containerHeight
  • *
  • Position is used to set the starting coordinate of the path. M is computed: *
      *
    • position.x * containerWidth
    • *
    • position.y * containerHeight
    • *
    * Center of the container
     position: {
       *       mx: 0.5,
       *       my: 0.5,
       *     }
    * Upper left corner of the container *
     position: {
       *       mx: 0.0,
       *       my: 0.0,
       *     }
    *
  • *
*

* */ this.getScaledPath = function getScaledPath(pathId, param) { var rawPath = this.pathMap[pathId]; // positioning // compute the start point of the path var mx, my; if (param.abspos) { mx = param.abspos.x; my = param.abspos.y; } else { mx = param.containerWidth * param.position.mx; my = param.containerHeight * param.position.my; } var coordinates = {}; //map for the scaled coordinates if (param.position) { // path var heightRatio = (param.containerHeight / rawPath.height) * param.yScaleFactor; var widthRatio = (param.containerWidth / rawPath.width) * param.xScaleFactor; //Apply height ratio for (var heightIndex = 0; heightIndex < rawPath.heightElements.length; heightIndex++) { coordinates['y' + heightIndex] = rawPath.heightElements[heightIndex] * heightRatio; } //Apply width ratio for (var widthIndex = 0; widthIndex < rawPath.widthElements.length; widthIndex++) { coordinates['x' + widthIndex] = rawPath.widthElements[widthIndex] * widthRatio; } } //Apply value to raw path var path = format( rawPath.d, { mx: mx, my: my, e: coordinates } ); return path; }; } module.exports = PathMap; ////////// helpers ////////// // copied from https://github.com/adobe-webplatform/Snap.svg/blob/master/src/svg.js var tokenRegex = /\{([^\}]+)\}/g, objNotationRegex = /(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g; // matches .xxxxx or ["xxxxx"] to run over object properties function replacer(all, key, obj) { var res = obj; key.replace(objNotationRegex, function(all, name, quote, quotedName, isFunc) { name = name || quotedName; if (res) { if (name in res) { res = res[name]; } typeof res == 'function' && isFunc && (res = res()); } }); res = (res == null || res == obj ? all : res) + ''; return res; } function format(str, obj) { return String(str).replace(tokenRegex, function(all, key) { return replacer(all, key, obj); }); } },{}],7:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'bpmnRenderer' ], bpmnRenderer: [ 'type', _dereq_(5) ], pathMap: [ 'type', _dereq_(6) ] }; },{"5":5,"6":6}],8:[function(_dereq_,module,exports){ var AutoResize = _dereq_(136); var inherits = _dereq_(289); var is = _dereq_(95).is; /** * Sub class of the AutoResize module which implements a BPMN * specific resize function. */ function BpmnAutoResize(eventBus, elementRegistry, modeling, rules) { AutoResize.call(this, eventBus, elementRegistry, modeling, rules); } BpmnAutoResize.$inject = [ 'eventBus', 'elementRegistry', 'modeling', 'rules' ]; inherits(BpmnAutoResize, AutoResize); module.exports = BpmnAutoResize; /** * Resize shapes and lanes * * @param {djs.model.Shape} target * @param {Object} newBounds */ BpmnAutoResize.prototype.resize = function(target, newBounds) { if (is(target, 'bpmn:Participant')) { this._modeling.resizeLane(target, newBounds); } else { this._modeling.resizeShape(target, newBounds); } }; },{"136":136,"289":289,"95":95}],9:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; var inherits = _dereq_(289); var forEach = _dereq_(303); var AutoResizeProvider = _dereq_(137); /** * This module is a provider for automatically resizing parent BPMN elements */ function BpmnAutoResizeProvider(eventBus, modeling) { AutoResizeProvider.call(this, eventBus); this._modeling = modeling; } inherits(BpmnAutoResizeProvider, AutoResizeProvider); BpmnAutoResizeProvider.$inject = [ 'eventBus', 'modeling' ]; module.exports = BpmnAutoResizeProvider; /** * Check if the given target can be expanded * * @param {djs.model.Shape} target * * @return {boolean} */ BpmnAutoResizeProvider.prototype.canResize = function(elements, target) { if (!is(target, 'bpmn:Participant') && !is(target, 'bpmn:Lane') && !(is(target, 'bpmn:SubProcess'))) { return false; } var canResize = true; forEach(elements, function(element) { if (is(element, 'bpmn:Lane') || element.labelTarget) { canResize = false; return; } }); return canResize; }; },{"137":137,"289":289,"303":303,"95":95}],10:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'bpmnAutoResize', 'bpmnAutoResizeProvider' ], bpmnAutoResize: [ 'type', _dereq_(8) ], bpmnAutoResizeProvider: [ 'type', _dereq_(9) ] }; },{"8":8,"9":9}],11:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303), isArray = _dereq_(422), is = _dereq_(95).is, isExpanded = _dereq_(93).isExpanded, isAny = _dereq_(68).isAny, getChildLanes = _dereq_(67).getChildLanes, isEventSubProcess = _dereq_(93).isEventSubProcess, hasPrimaryModifier = _dereq_(274).hasPrimaryModifier; /** * A provider for BPMN 2.0 elements context pad */ function ContextPadProvider(eventBus, contextPad, modeling, elementFactory, connect, create, popupMenu, canvas, rules, translate) { contextPad.registerProvider(this); this._contextPad = contextPad; this._modeling = modeling; this._elementFactory = elementFactory; this._connect = connect; this._create = create; this._popupMenu = popupMenu; this._canvas = canvas; this._rules = rules; this._translate = translate; eventBus.on('create.end', 250, function(event) { var shape = event.context.shape; if (!hasPrimaryModifier(event)) { return; } var entries = contextPad.getEntries(shape); if (entries.replace) { entries.replace.action.click(event, shape); } }); } ContextPadProvider.$inject = [ 'eventBus', 'contextPad', 'modeling', 'elementFactory', 'connect', 'create', 'popupMenu', 'canvas', 'rules', 'translate' ]; module.exports = ContextPadProvider; ContextPadProvider.prototype.getContextPadEntries = function(element) { var contextPad = this._contextPad, modeling = this._modeling, elementFactory = this._elementFactory, connect = this._connect, create = this._create, popupMenu = this._popupMenu, canvas = this._canvas, rules = this._rules, translate = this._translate; var actions = {}; if (element.type === 'label') { return actions; } var businessObject = element.businessObject; function startConnect(event, element, autoActivate) { connect.start(event, element, autoActivate); } function removeElement(e) { modeling.removeElements([ element ]); } function getReplaceMenuPosition(element) { var Y_OFFSET = 5; var diagramContainer = canvas.getContainer(), pad = contextPad.getPad(element).html; var diagramRect = diagramContainer.getBoundingClientRect(), padRect = pad.getBoundingClientRect(); var top = padRect.top - diagramRect.top; var left = padRect.left - diagramRect.left; var pos = { x: left, y: top + padRect.height + Y_OFFSET }; return pos; } /** * Create an append action * * @param {String} type * @param {String} className * @param {String} [title] * @param {Object} [options] * * @return {Object} descriptor */ function appendAction(type, className, title, options) { if (typeof title !== 'string') { options = title; title = translate('Append {type}', { type: type.replace(/^bpmn\:/, '') }); } function appendListener(event, element) { var shape = elementFactory.createShape(assign({ type: type }, options)); create.start(event, shape, element); } return { group: 'model', className: className, title: title, action: { dragstart: appendListener, click: appendListener } }; } function splitLaneHandler(count) { return function(event, element) { // actual split modeling.splitLane(element, count); // refresh context pad after split to // get rid of split icons contextPad.open(element, true); }; } if (isAny(businessObject, [ 'bpmn:Lane', 'bpmn:Participant' ]) && isExpanded(businessObject)) { var childLanes = getChildLanes(element); assign(actions, { 'lane-insert-above': { group: 'lane-insert-above', className: 'bpmn-icon-lane-insert-above', title: translate('Add Lane above'), action: { click: function(event, element) { modeling.addLane(element, 'top'); } } } }); if (childLanes.length < 2) { if (element.height >= 120) { assign(actions, { 'lane-divide-two': { group: 'lane-divide', className: 'bpmn-icon-lane-divide-two', title: translate('Divide into two Lanes'), action: { click: splitLaneHandler(2) } } }); } if (element.height >= 180) { assign(actions, { 'lane-divide-three': { group: 'lane-divide', className: 'bpmn-icon-lane-divide-three', title: translate('Divide into three Lanes'), action: { click: splitLaneHandler(3) } } }); } } assign(actions, { 'lane-insert-below': { group: 'lane-insert-below', className: 'bpmn-icon-lane-insert-below', title: translate('Add Lane below'), action: { click: function(event, element) { modeling.addLane(element, 'bottom'); } } } }); } if (is(businessObject, 'bpmn:FlowNode')) { if (is(businessObject, 'bpmn:EventBasedGateway')) { assign(actions, { 'append.receive-task': appendAction('bpmn:ReceiveTask', 'bpmn-icon-receive-task'), 'append.message-intermediate-event': appendAction('bpmn:IntermediateCatchEvent', 'bpmn-icon-intermediate-event-catch-message', { eventDefinitionType: 'bpmn:MessageEventDefinition' }), 'append.timer-intermediate-event': appendAction('bpmn:IntermediateCatchEvent', 'bpmn-icon-intermediate-event-catch-timer', { eventDefinitionType: 'bpmn:TimerEventDefinition' }), 'append.condtion-intermediate-event': appendAction('bpmn:IntermediateCatchEvent', 'bpmn-icon-intermediate-event-catch-condition', { eventDefinitionType: 'bpmn:ConditionalEventDefinition' }), 'append.signal-intermediate-event': appendAction('bpmn:IntermediateCatchEvent', 'bpmn-icon-intermediate-event-catch-signal', { eventDefinitionType: 'bpmn:SignalEventDefinition' }) }); } else if (isEventType(businessObject, 'bpmn:BoundaryEvent', 'bpmn:CompensateEventDefinition')) { assign(actions, { 'append.compensation-activity': appendAction('bpmn:Task', 'bpmn-icon-task', translate('Append compensation activity'), { isForCompensation: true }) }); } else if (!is(businessObject, 'bpmn:EndEvent') && !businessObject.isForCompensation && !isEventType(businessObject, 'bpmn:IntermediateThrowEvent', 'bpmn:LinkEventDefinition') && !isEventSubProcess(businessObject)) { assign(actions, { 'append.end-event': appendAction('bpmn:EndEvent', 'bpmn-icon-end-event-none'), 'append.gateway': appendAction('bpmn:ExclusiveGateway', 'bpmn-icon-gateway-xor'), 'append.append-task': appendAction('bpmn:Task', 'bpmn-icon-task'), 'append.intermediate-event': appendAction('bpmn:IntermediateThrowEvent', 'bpmn-icon-intermediate-event-none') }); } } var replaceMenu; if (popupMenu._providers['bpmn-replace']) { replaceMenu = popupMenu.create('bpmn-replace', element); } if (replaceMenu && !replaceMenu.isEmpty()) { // Replace menu entry assign(actions, { 'replace': { group: 'edit', className: 'bpmn-icon-screw-wrench', title: translate('Change type'), action: { click: function(event, element) { replaceMenu.open(assign(getReplaceMenuPosition(element), { cursor: { x: event.x, y: event.y } }), element); } } } }); } if (isAny(businessObject, [ 'bpmn:FlowNode', 'bpmn:InteractionNode', 'bpmn:DataObjectReference', 'bpmn:DataStoreReference' ]) ) { assign(actions, { 'append.text-annotation': appendAction('bpmn:TextAnnotation', 'bpmn-icon-text-annotation'), 'connect': { group: 'connect', className: 'bpmn-icon-connection-multi', title: translate('Connect using ' + (businessObject.isForCompensation ? '' : 'Sequence/MessageFlow or ') + 'Association'), action: { click: startConnect, dragstart: startConnect } } }); } if (isAny(businessObject, [ 'bpmn:DataObjectReference', 'bpmn:DataStoreReference' ])) { assign(actions, { 'connect': { group: 'connect', className: 'bpmn-icon-connection-multi', title: translate('Connect using DataInputAssociation'), action: { click: startConnect, dragstart: startConnect } } }); } // delete element entry, only show if allowed by rules var deleteAllowed = rules.allowed('elements.delete', { elements: [ element ] }); if (isArray(deleteAllowed)) { // was the element returned as a deletion candidate? deleteAllowed = deleteAllowed[0] === element; } if (deleteAllowed) { assign(actions, { 'delete': { group: 'edit', className: 'bpmn-icon-trash', title: translate('Remove'), action: { click: removeElement, dragstart: removeElement } } }); } return actions; }; function isEventType(eventBo, type, definition) { var isType = eventBo.$instanceOf(type); var isDefinition = false; var definitions = eventBo.eventDefinitions || []; forEach(definitions, function(def) { if (def.$type === definition) { isDefinition = true; } }); return isType && isDefinition; } },{"274":274,"303":303,"422":422,"431":431,"67":67,"68":68,"93":93,"95":95}],12:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(114), _dereq_(153), _dereq_(233), _dereq_(151), _dereq_(157), _dereq_(74) ], __init__: [ 'contextPadProvider' ], contextPadProvider: [ 'type', _dereq_(11) ] }; },{"11":11,"114":114,"151":151,"153":153,"157":157,"233":233,"74":74}],13:[function(_dereq_,module,exports){ 'use strict'; var ModelUtil = _dereq_(95), getBusinessObject = ModelUtil.getBusinessObject, is = ModelUtil.is; var ModelCloneHelper = _dereq_(97); var ModelCloneUtils = _dereq_(98), getProperties = ModelCloneUtils.getProperties; var IGNORED_PROPERTIES = ModelCloneUtils.IGNORED_PROPERTIES; var filter = _dereq_(301), forEach = _dereq_(303); function setProperties(descriptor, data, properties) { forEach(properties, function(property) { if (data[property] !== undefined) { descriptor[property] = data[property]; } }); } function removeProperties(element, properties) { forEach(properties, function(prop) { if (element[prop]) { delete element[prop]; } }); } function BpmnCopyPaste( bpmnFactory, eventBus, copyPaste, clipboard, canvas, bpmnRules) { var helper = new ModelCloneHelper(eventBus); copyPaste.registerDescriptor(function(element, descriptor) { var businessObject = descriptor.oldBusinessObject = getBusinessObject(element); var colors = {}; descriptor.type = element.type; setProperties(descriptor, businessObject.di, [ 'isExpanded' ]); setProperties(colors, businessObject.di, [ 'fill', 'stroke' ]); descriptor.colors = colors; if (element.type === 'label') { return descriptor; } setProperties(descriptor, businessObject, [ 'type', 'processRef', 'triggeredByEvent' ]); if (businessObject.default) { descriptor.default = businessObject.default.id; } return descriptor; }); eventBus.on('element.paste', function(context) { var descriptor = context.descriptor, createdElements = context.createdElements, parent = descriptor.parent, rootElement = canvas.getRootElement(), oldBusinessObject = descriptor.oldBusinessObject, newBusinessObject, source, target, canConnect; newBusinessObject = bpmnFactory.create(oldBusinessObject.$type); var properties = getProperties(oldBusinessObject.$descriptor); properties = filter(properties, function(property) { return IGNORED_PROPERTIES.indexOf(property.replace(/bpmn:/, '')) === -1; }); descriptor.businessObject = helper.clone(oldBusinessObject, newBusinessObject, properties); if (descriptor.type === 'label') { return; } if (is(parent, 'bpmn:Process')) { descriptor.parent = is(rootElement, 'bpmn:Collaboration') ? rootElement : parent; } if (descriptor.type === 'bpmn:DataOutputAssociation' || descriptor.type === 'bpmn:DataInputAssociation' || descriptor.type === 'bpmn:MessageFlow') { descriptor.parent = rootElement; } if (is(parent, 'bpmn:Lane')) { descriptor.parent = parent.parent; } // make sure that the correct type of connection is created if (descriptor.waypoints) { source = createdElements[descriptor.source]; target = createdElements[descriptor.target]; if (source && target) { source = source.element; target = target.element; } canConnect = bpmnRules.canConnect(source, target); if (canConnect) { descriptor.type = canConnect.type; } } // remove the id or else we cannot paste multiple times delete newBusinessObject.id; // assign an ID bpmnFactory._ensureId(newBusinessObject); if (descriptor.type === 'bpmn:Participant' && descriptor.processRef) { descriptor.processRef = newBusinessObject.processRef = bpmnFactory.create('bpmn:Process'); } setProperties(newBusinessObject, descriptor, [ 'isExpanded', 'triggeredByEvent' ]); removeProperties(descriptor, [ 'triggeredByEvent' ]); }); } BpmnCopyPaste.$inject = [ 'bpmnFactory', 'eventBus', 'copyPaste', 'clipboard', 'canvas', 'bpmnRules' ]; module.exports = BpmnCopyPaste; },{"301":301,"303":303,"95":95,"97":97,"98":98}],14:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(155) ], __init__: [ 'bpmnCopyPaste' ], bpmnCopyPaste: [ 'type', _dereq_(13) ] }; },{"13":13,"155":155}],15:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301); var isAny = _dereq_(68).isAny; /** * Registers element exclude filters for elements that currently do * not support distribution. */ function BpmnDistributeElements(distributeElements) { distributeElements.registerFilter(function(elements) { return filter(elements, function(element) { var cannotDistribute = isAny(element, [ 'bpmn:Association', 'bpmn:BoundaryEvent', 'bpmn:DataInputAssociation', 'bpmn:DataOutputAssociation', 'bpmn:Lane', 'bpmn:MessageFlow', 'bpmn:Participant', 'bpmn:SequenceFlow', 'bpmn:TextAnnotation' ]); return !(element.labelTarget || cannotDistribute); }); }); } BpmnDistributeElements.$inject = [ 'distributeElements' ]; module.exports = BpmnDistributeElements; },{"301":301,"68":68}],16:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(159) ], __init__: [ 'bpmnDistributeElements' ], bpmnDistributeElements: [ 'type', _dereq_(15) ] }; },{"15":15,"159":159}],17:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var EditorActions = _dereq_(163); var filter = _dereq_(301); var is = _dereq_(95).is; var getBBox = _dereq_(266).getBBox; function BpmnEditorActions( injector, canvas, elementRegistry, selection, spaceTool, lassoTool, handTool, globalConnect, distributeElements, alignElements, directEditing, searchPad, modeling) { injector.invoke(EditorActions, this); this.register({ selectElements: function() { // select all elements except for the invisible // root element var rootElement = canvas.getRootElement(); var elements = elementRegistry.filter(function(element) { return element !== rootElement; }); selection.select(elements); return elements; }, spaceTool: function() { spaceTool.toggle(); }, lassoTool: function() { lassoTool.toggle(); }, handTool: function() { handTool.toggle(); }, globalConnectTool: function() { globalConnect.toggle(); }, distributeElements: function(opts) { var currentSelection = selection.get(), type = opts.type; if (currentSelection.length) { distributeElements.trigger(currentSelection, type); } }, alignElements: function(opts) { var currentSelection = selection.get(), aligneableElements = [], type = opts.type; if (currentSelection.length) { aligneableElements = filter(currentSelection, function(element) { return !is(element, 'bpmn:Lane'); }); alignElements.trigger(aligneableElements, type); } }, setColor: function(opts) { var currentSelection = selection.get(); if (currentSelection.length) { modeling.setColor(currentSelection, opts); } }, directEditing: function() { var currentSelection = selection.get(); if (currentSelection.length) { directEditing.activate(currentSelection[0]); } }, find: function() { searchPad.toggle(); }, moveToOrigin: function() { var rootElement = canvas.getRootElement(), boundingBox, elements; if (is(rootElement, 'bpmn:Collaboration')) { elements = elementRegistry.filter(function(element) { return is(element.parent, 'bpmn:Collaboration'); }); } else { elements = elementRegistry.filter(function(element) { return element !== rootElement && !is(element.parent, 'bpmn:SubProcess'); }); } boundingBox = getBBox(elements); modeling.moveElements(elements, { x: -boundingBox.x, y: -boundingBox.y }, rootElement); } }); } inherits(BpmnEditorActions, EditorActions); BpmnEditorActions.$inject = [ 'injector', 'canvas', 'elementRegistry', 'selection', 'spaceTool', 'lassoTool', 'handTool', 'globalConnect', 'distributeElements', 'alignElements', 'directEditing', 'searchPad', 'modeling' ]; module.exports = BpmnEditorActions; },{"163":163,"266":266,"289":289,"301":301,"95":95}],18:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(133), _dereq_(164), _dereq_(168), _dereq_(176), _dereq_(240), _dereq_(20), _dereq_(14), _dereq_(16), _dereq_(84), _dereq_(66) ], editorActions: [ 'type', _dereq_(17) ] }; },{"133":133,"14":14,"16":16,"164":164,"168":168,"17":17,"176":176,"20":20,"240":240,"66":66,"84":84}],19:[function(_dereq_,module,exports){ 'use strict'; var isAny = _dereq_(68).isAny; /** * Extention of GlobalConnect tool that implements BPMN specific rules about * connection start elements. */ function BpmnGlobalConnect(globalConnect) { globalConnect.registerProvider(this); } BpmnGlobalConnect.$inject = [ 'globalConnect' ]; module.exports = BpmnGlobalConnect; /** * Checks if given element can be used for starting connection. * * @param {Element} source * @return {Boolean} */ BpmnGlobalConnect.prototype.canStartConnect = function(source) { if (nonExistantOrLabel(source)) { return null; } var businessObject = source.businessObject; return isAny(businessObject, [ 'bpmn:FlowNode', 'bpmn:InteractionNode', 'bpmn:DataObjectReference', 'bpmn:DataStoreReference' ]); }; function nonExistantOrLabel(element) { return !element || isLabel(element); } function isLabel(element) { return element.labelTarget; } },{"68":68}],20:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(166) ], __init__: [ 'bpmnGlobalConnect' ], bpmnGlobalConnect: [ 'type', _dereq_(19) ] }; },{"166":166,"19":19}],21:[function(_dereq_,module,exports){ 'use strict'; /** * BPMN 2.0 specific key bindings. * * @param {Keyboard} keyboard * @param {EditorActions} editorActions */ function BpmnKeyBindings(keyboard, editorActions) { keyboard.addListener(function(key, modifiers) { // ctrl + a -> select all elements if (key === 65 && keyboard.isCmd(modifiers)) { editorActions.trigger('selectElements'); return true; } // ctrl + f -> search labels if (key === 70 && keyboard.isCmd(modifiers)) { editorActions.trigger('find'); return true; } if (keyboard.hasModifier(modifiers)) { return; } // s -> activate space tool if (key === 83) { editorActions.trigger('spaceTool'); return true; } // l -> activate lasso tool if (key === 76) { editorActions.trigger('lassoTool'); return true; } // h -> activate hand tool if (key === 72) { editorActions.trigger('handTool'); return true; } // c -> activate global connect tool if (key === 67) { editorActions.trigger('globalConnectTool'); return true; } // e -> activate direct editing if (key === 69) { editorActions.trigger('directEditing'); return true; } }); } BpmnKeyBindings.$inject = [ 'keyboard', 'editorActions' ]; module.exports = BpmnKeyBindings; },{}],22:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(172) ], __init__: [ 'bpmnKeyBindings' ], bpmnKeyBindings: [ 'type', _dereq_(21) ] }; },{"172":172,"21":21}],23:[function(_dereq_,module,exports){ var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var getBusinessObject = _dereq_(95).getBusinessObject, is = _dereq_(95).is; var translate = _dereq_(279).translate; var MARKER_HIDDEN = 'djs-element-hidden', MARKER_LABEL_HIDDEN = 'djs-label-hidden'; function getStrokeColor(element, defaultColor) { var bo = getBusinessObject(element); return bo.di.get('stroke') || defaultColor || 'black'; } function LabelEditingPreview(eventBus, canvas, elementRegistry, pathMap) { var self = this; var defaultLayer = canvas.getDefaultLayer(); var element, absoluteElementBBox, gfx; eventBus.on('directEditing.activate', function(context) { var activeProvider = context.active; element = activeProvider.element.label || activeProvider.element; // text annotation if (is(element, 'bpmn:TextAnnotation')) { absoluteElementBBox = canvas.getAbsoluteBBox(element); gfx = svgCreate('g'); var textPathData = pathMap.getScaledPath('TEXT_ANNOTATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: element.height, position: { mx: 0.0, my: 0.0 } }); var path = self.path = svgCreate('path'); svgAttr(path, { d: textPathData, strokeWidth: 2, stroke: getStrokeColor(element) }); svgAppend(gfx, path); svgAppend(defaultLayer, gfx); translate(gfx, element.x, element.y); } if (is(element, 'bpmn:TextAnnotation') || element.labelTarget) { canvas.addMarker(element, MARKER_HIDDEN); } else if (is(element, 'bpmn:Task') || is(element, 'bpmn:CallActivity') || is(element, 'bpmn:SubProcess') || is(element, 'bpmn:Participant')) { canvas.addMarker(element, MARKER_LABEL_HIDDEN); } }); eventBus.on('directEditing.resize', function(context) { // text annotation if (is(element, 'bpmn:TextAnnotation')) { var height = context.height, dy = context.dy; var newElementHeight = Math.max(element.height / absoluteElementBBox.height * (height + dy), 0); var textPathData = pathMap.getScaledPath('TEXT_ANNOTATION', { xScaleFactor: 1, yScaleFactor: 1, containerWidth: element.width, containerHeight: newElementHeight, position: { mx: 0.0, my: 0.0 } }); svgAttr(self.path, { d: textPathData }); } }); eventBus.on([ 'directEditing.complete', 'directEditing.cancel' ], function(context) { var activeProvider = context.active; if (activeProvider) { canvas.removeMarker(activeProvider.element.label || activeProvider.element, MARKER_HIDDEN); canvas.removeMarker(element, MARKER_LABEL_HIDDEN); } element = undefined; absoluteElementBBox = undefined; if (gfx) { svgRemove(gfx); gfx = undefined; } }); } LabelEditingPreview.$inject = [ 'eventBus', 'canvas', 'elementRegistry', 'pathMap' ]; module.exports = LabelEditingPreview; },{"279":279,"472":472,"474":474,"478":478,"481":481,"95":95}],24:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var UpdateLabelHandler = _dereq_(26); var LabelUtil = _dereq_(25); var is = _dereq_(95).is, isExpanded = _dereq_(93).isExpanded; var SMALL_FONT_SIZE = 11, SMALL_LINE_HEIGHT = 13, MEDIUM_FONT_SIZE = 12, MEDIUM_LINE_HEIGHT = 14; function LabelEditingProvider(eventBus, canvas, directEditing, commandStack, resizeHandles) { this._canvas = canvas; this._commandStack = commandStack; directEditing.registerProvider(this); commandStack.registerHandler('element.updateLabel', UpdateLabelHandler); // listen to dblclick on non-root elements eventBus.on('element.dblclick', function(event) { directEditing.activate(event.element); resizeHandles.removeResizers(); }); // complete on followup canvas operation eventBus.on([ 'element.mousedown', 'drag.init', 'canvas.viewbox.changing' ], function(event) { directEditing.complete(); }); // cancel on command stack changes eventBus.on([ 'commandStack.changed' ], function(e) { directEditing.cancel(); }); if ('ontouchstart' in document.documentElement) { // we deactivate automatic label editing on mobile devices // as it breaks the user interaction workflow // TODO(nre): we should temporarily focus the edited element here // and release the focused viewport after the direct edit operation is finished } else { eventBus.on('create.end', 500, function(event) { var element = event.shape, canExecute = event.context.canExecute; if (!canExecute) { return; } if (is(element, 'bpmn:Task') || is(element, 'bpmn:TextAnnotation') || (is(element, 'bpmn:SubProcess') && !isExpanded(element))) { directEditing.activate(element); resizeHandles.removeResizers(); } }); } } LabelEditingProvider.$inject = [ 'eventBus', 'canvas', 'directEditing', 'commandStack', 'resizeHandles' ]; module.exports = LabelEditingProvider; /** * Activate direct editing for activities and text annotations. * * @param {djs.model.Base} element * * @return {Object} an object with properties bounds (position and size), text and options */ LabelEditingProvider.prototype.activate = function(element) { // text var text = LabelUtil.getLabel(element); if (text === undefined) { return; } var context = { text: text }; // bounds var bounds = this.getEditingBBox(element); assign(context, bounds); // options var target = element.label || element; var options = {}; // tasks if (is(element, 'bpmn:Task') || is(element, 'bpmn:Participant') || is(element, 'bpmn:Lane') || (is(element, 'bpmn:CallActivity') && !isExpanded(element)) || (is(element, 'bpmn:SubProcess') && !isExpanded(element))) { assign(options, { centerVertically: true }); } // external labels if (target.labelTarget) { assign(options, { autoResize: true }); } // text annotations if (is(element, 'bpmn:TextAnnotation')) { assign(options, { resizable: true, autoResize: true }); } assign(context, { options: options }); return context; }; /** * Get the editing bounding box based on the element's size and position * * @param {djs.model.Base} element * * @return {Object} an object containing information about position and size (fixed or minimum and/or maximum) */ LabelEditingProvider.prototype.getEditingBBox = function(element) { var canvas = this._canvas; var target = element.label || element; var bbox = canvas.getAbsoluteBBox(target); var mid = { x: bbox.x + bbox.width / 2, y: bbox.y + bbox.height / 2 }; // default position var bounds = { x: bbox.x, y: bbox.y }; var zoom = canvas.zoom(); // take zoom into account var smallFontSize = SMALL_FONT_SIZE * zoom, smallLineHeight = SMALL_LINE_HEIGHT * zoom, mediumFontSize = MEDIUM_FONT_SIZE * zoom, mediumLineHeight = MEDIUM_LINE_HEIGHT * zoom; var style = {}; // adjust for expanded pools AND lanes if ((is(element, 'bpmn:Participant') && isExpanded(element)) || is(element, 'bpmn:Lane')) { assign(bounds, { width: bbox.height, height: 30 * zoom, x: bbox.x - bbox.height / 2 + (15 * zoom), y: mid.y - (30 * zoom) / 2 }); assign(style, { fontSize: mediumFontSize + 'px', lineHeight: mediumLineHeight + 'px', paddingTop: (7 * zoom) + 'px', paddingBottom: (7 * zoom) + 'px', paddingLeft: (5 * zoom) + 'px', paddingRight: (5 * zoom) + 'px', transform: 'rotate(-90deg)' }); } // internal labels for tasks and collapsed call activities, sub processes and participants if ( is(element, 'bpmn:Task') || (is(element, 'bpmn:CallActivity') && !isExpanded(element)) || (is(element, 'bpmn:SubProcess') && !isExpanded(element)) || (is(element, 'bpmn:Participant') && !isExpanded(element)) ) { assign(bounds, { width: bbox.width, height: bbox.height }); assign(style, { fontSize: mediumFontSize + 'px', lineHeight: mediumLineHeight + 'px', paddingTop: (7 * zoom) + 'px', paddingBottom: (7 * zoom) + 'px', paddingLeft: (5 * zoom) + 'px', paddingRight: (5 * zoom) + 'px' }); } // internal labels for expanded sub processes if (is(element, 'bpmn:SubProcess') && isExpanded(element)) { assign(bounds, { width: bbox.width, x: bbox.x }); assign(style, { fontSize: mediumFontSize + 'px', lineHeight: mediumLineHeight + 'px', paddingTop: (7 * zoom) + 'px', paddingBottom: (7 * zoom) + 'px', paddingLeft: (5 * zoom) + 'px', paddingRight: (5 * zoom) + 'px' }); } // external labels for events, data elements, gateways and connections if (target.labelTarget) { var width = 90 * zoom, paddingTop = 7 * zoom, paddingBottom = 4 * zoom; assign(bounds, { width: width, height: bbox.height + paddingTop + paddingBottom, x: mid.x - width / 2, y: bbox.y - paddingTop }); assign(style, { fontSize: smallFontSize + 'px', lineHeight: smallLineHeight + 'px', paddingTop: paddingTop + 'px', paddingBottom: paddingBottom + 'px' }); } // text annotations if (is(element, 'bpmn:TextAnnotation')) { assign(bounds, { width: bbox.width, height: bbox.height, minWidth: 30 * zoom, minHeight: 10 * zoom }); assign(style, { textAlign: 'left', paddingTop: (7 * zoom) + 'px', paddingBottom: (7 * zoom) + 'px', paddingLeft: (5 * zoom) + 'px', paddingRight: (5 * zoom) + 'px', fontSize: mediumFontSize + 'px', lineHeight: mediumLineHeight + 'px' }); } return { bounds: bounds, style: style }; }; LabelEditingProvider.prototype.update = function(element, newLabel, activeContextText, bounds) { var absoluteElementBBox = this._canvas.getAbsoluteBBox(element); this._commandStack.execute('element.updateLabel', { element: element, newLabel: newLabel, bounds: { x: element.x, y: element.y, width: element.width / absoluteElementBBox.width * bounds.width, height: element.height / absoluteElementBBox.height * bounds.height } }); }; },{"25":25,"26":26,"431":431,"93":93,"95":95}],25:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; function getLabelAttr(semantic) { if (is(semantic, 'bpmn:FlowElement') || is(semantic, 'bpmn:Participant') || is(semantic, 'bpmn:Lane') || is(semantic, 'bpmn:SequenceFlow') || is(semantic, 'bpmn:MessageFlow')) { return 'name'; } if (is(semantic, 'bpmn:TextAnnotation')) { return 'text'; } } module.exports.getLabel = function(element) { var semantic = element.businessObject, attr = getLabelAttr(semantic); if (attr) { return semantic[attr] || ''; } }; module.exports.setLabel = function(element, text, isExternal) { var semantic = element.businessObject, attr = getLabelAttr(semantic); if (attr) { semantic[attr] = text; } // show external label if not empty if (isExternal) { element.hidden = !text; } return element; }; },{"95":95}],26:[function(_dereq_,module,exports){ 'use strict'; var LabelUtil = _dereq_(25); var TextUtil = _dereq_(280); var hasExternalLabel = _dereq_(94).hasExternalLabel; var getBusinessObject = _dereq_(95).getBusinessObject, is = _dereq_(95).is; var NULL_DIMENSIONS = { width: 0, height: 0 }; /** * A handler that updates the text of a BPMN element. */ function UpdateLabelHandler(modeling) { var textUtil = new TextUtil(); /** * Set the label and return the changed elements. * * Element parameter can be label itself or connection (i.e. sequence flow). * * @param {djs.model.Base} element * @param {String} text */ function setText(element, text) { // external label if present var label = element.label || element; var labelTarget = element.labelTarget || element; LabelUtil.setLabel(label, text, labelTarget !== label); return [ label, labelTarget ]; } function execute(ctx) { ctx.oldLabel = LabelUtil.getLabel(ctx.element); return setText(ctx.element, ctx.newLabel); } function revert(ctx) { return setText(ctx.element, ctx.oldLabel); } function postExecute(ctx) { var element = ctx.element, label = element.label || element, bounds = ctx.bounds; // ignore internal labels for elements except text annotations if (!hasExternalLabel(element) && !is(element, 'bpmn:TextAnnotation')) { return; } var bo = getBusinessObject(label); var text = bo.name || bo.text; if (!text) { return; } // get layouted text bounds and resize external // external label accordingly var newBounds = is(element, 'bpmn:TextAnnotation') ? bounds : getLayoutedBounds(label, text, textUtil); modeling.resizeShape(label, newBounds, NULL_DIMENSIONS); } // API this.execute = execute; this.revert = revert; this.postExecute = postExecute; } UpdateLabelHandler.$inject = [ 'modeling' ]; module.exports = UpdateLabelHandler; // TODO(nikku): repeating code (search for ) var EXTERNAL_LABEL_STYLE = { fontFamily: 'Arial, sans-serif', fontSize: '11px' }; function getLayoutedBounds(bounds, text, textUtil) { var layoutedLabelDimensions = textUtil.getDimensions(text, { box: { width: 90, height: 30, x: bounds.width / 2 + bounds.x, y: bounds.height / 2 + bounds.y }, style: EXTERNAL_LABEL_STYLE }); // resize label shape to fit label text return { x: Math.round(bounds.x + bounds.width / 2 - layoutedLabelDimensions.width / 2), y: Math.round(bounds.y), width: Math.ceil(layoutedLabelDimensions.width), height: Math.ceil(layoutedLabelDimensions.height) }; } },{"25":25,"280":280,"94":94,"95":95}],27:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(121), _dereq_(147), _dereq_(224), _dereq_(114) ], __init__: [ 'labelEditingProvider', 'labelEditingPreview' ], labelEditingProvider: [ 'type', _dereq_(24) ], labelEditingPreview: [ 'type', _dereq_(23) ] }; },{"114":114,"121":121,"147":147,"224":224,"23":23,"24":24}],28:[function(_dereq_,module,exports){ 'use strict'; var map = _dereq_(305), assign = _dereq_(431), pick = _dereq_(438); function BpmnFactory(moddle) { this._model = moddle; } BpmnFactory.$inject = [ 'moddle' ]; BpmnFactory.prototype._needsId = function(element) { return element.$instanceOf('bpmn:RootElement') || element.$instanceOf('bpmn:FlowElement') || element.$instanceOf('bpmn:MessageFlow') || element.$instanceOf('bpmn:DataAssociation') || element.$instanceOf('bpmn:Artifact') || element.$instanceOf('bpmn:Participant') || element.$instanceOf('bpmn:Lane') || element.$instanceOf('bpmn:Process') || element.$instanceOf('bpmn:Collaboration') || element.$instanceOf('bpmndi:BPMNShape') || element.$instanceOf('bpmndi:BPMNEdge') || element.$instanceOf('bpmndi:BPMNDiagram') || element.$instanceOf('bpmndi:BPMNPlane') || element.$instanceOf('bpmn:Property'); }; BpmnFactory.prototype._ensureId = function(element) { // generate semantic ids for elements // bpmn:SequenceFlow -> SequenceFlow_ID var prefix = (element.$type || '').replace(/^[^:]*:/g, '') + '_'; if (!element.id && this._needsId(element)) { element.id = this._model.ids.nextPrefixed(prefix, element); } }; BpmnFactory.prototype.create = function(type, attrs) { var element = this._model.create(type, attrs || {}); this._ensureId(element); return element; }; BpmnFactory.prototype.createDiLabel = function() { return this.create('bpmndi:BPMNLabel', { bounds: this.createDiBounds() }); }; BpmnFactory.prototype.createDiShape = function(semantic, bounds, attrs) { return this.create('bpmndi:BPMNShape', assign({ bpmnElement: semantic, bounds: this.createDiBounds(bounds) }, attrs)); }; BpmnFactory.prototype.createDiBounds = function(bounds) { return this.create('dc:Bounds', bounds); }; BpmnFactory.prototype.createDiWaypoints = function(waypoints) { return map(waypoints, function(pos) { return this.createDiWaypoint(pos); }, this); }; BpmnFactory.prototype.createDiWaypoint = function(point) { return this.create('dc:Point', pick(point, [ 'x', 'y' ])); }; BpmnFactory.prototype.createDiEdge = function(semantic, waypoints, attrs) { return this.create('bpmndi:BPMNEdge', assign({ bpmnElement: semantic }, attrs)); }; BpmnFactory.prototype.createDiPlane = function(semantic) { return this.create('bpmndi:BPMNPlane', { bpmnElement: semantic }); }; module.exports = BpmnFactory; },{"305":305,"431":431,"438":438}],29:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var assign = _dereq_(431); var BaseLayouter = _dereq_(250), ManhattanLayout = _dereq_(253); var LayoutUtil = _dereq_(252); var isExpanded = _dereq_(93).isExpanded; var getMid = LayoutUtil.getMid, getOrientation = LayoutUtil.getOrientation; var is = _dereq_(95).is; function BpmnLayouter() {} inherits(BpmnLayouter, BaseLayouter); module.exports = BpmnLayouter; BpmnLayouter.prototype.layoutConnection = function(connection, hints) { hints = hints || {}; var source = connection.source, target = connection.target, waypoints = connection.waypoints, start = hints.connectionStart, end = hints.connectionEnd; var manhattanOptions, updatedWaypoints; if (!start) { start = getConnectionDocking(waypoints && waypoints[0], source); } if (!end) { end = getConnectionDocking(waypoints && waypoints[waypoints.length - 1], target); } // TODO(nikku): support vertical modeling // and invert preferredLayouts accordingly if (is(connection, 'bpmn:Association') || is(connection, 'bpmn:DataAssociation')) { if (waypoints && !isCompensationAssociation(connection)) { return [].concat([ start ], waypoints.slice(1, -1), [ end ]); } } // manhattan layout sequence / message flows if (is(connection, 'bpmn:MessageFlow')) { manhattanOptions = { preferredLayouts: [ 'v:v' ] }; if (is(target, 'bpmn:Participant')) { manhattanOptions = { preferredLayouts: [ 'straight', 'v:v' ] }; } if (isExpandedSubProcess(target)) { manhattanOptions = { preferredLayouts: [ 'straight', 'v:v' ] }; } if (isExpandedSubProcess(source) && is(target, 'bpmn:FlowNode')) { manhattanOptions = { preferredLayouts: [ 'straight', 'v:v' ], preserveDocking: isExpandedSubProcess(target) ? 'source' : 'target' }; } if (is(source, 'bpmn:Participant') && is(target, 'bpmn:FlowNode')) { manhattanOptions = { preferredLayouts: [ 'straight', 'v:v' ], preserveDocking: 'target' }; } if (is(target, 'bpmn:Event')) { manhattanOptions = { preferredLayouts: [ 'v:v' ] }; } } else // layout all connection between flow elements h:h, // // except for // // (1) outgoing of BoundaryEvents -> layout h:v or v:h based on attach orientation // (2) incoming / outgoing of Gateway -> v:h (outgoing), h:v (incoming) // if (is(connection, 'bpmn:SequenceFlow') || isCompensationAssociation(connection)) { // make sure boundary event connections do // not look ugly =:> if (is(source, 'bpmn:BoundaryEvent')) { var orientation = getAttachOrientation(source); if (/left|right/.test(orientation)) { manhattanOptions = { preferredLayouts: [ 'h:v' ] }; } else if (/top|bottom/.test(orientation)) { manhattanOptions = { preferredLayouts: [ 'v:h' ] }; } } else if (is(source, 'bpmn:Gateway')) { manhattanOptions = { preferredLayouts: [ 'v:h' ] }; } else if (is(target, 'bpmn:Gateway')) { manhattanOptions = { preferredLayouts: [ 'h:v' ] }; } // apply horizontal love <3 else { manhattanOptions = { preferredLayouts: [ 'h:h' ] }; } } if (manhattanOptions) { manhattanOptions = assign(manhattanOptions, hints); updatedWaypoints = ManhattanLayout.repairConnection( source, target, start, end, waypoints, manhattanOptions); } return updatedWaypoints || [ start, end ]; }; function getAttachOrientation(attachedElement) { var hostElement = attachedElement.host, padding = -10; return getOrientation(getMid(attachedElement), hostElement, padding); } function getConnectionDocking(point, shape) { return point ? (point.original || point) : getMid(shape); } function isCompensationAssociation(connection) { var source = connection.source, target = connection.target; return is(target, 'bpmn:Activity') && is(source, 'bpmn:BoundaryEvent') && target.businessObject.isForCompensation; } function isExpandedSubProcess(element) { return is(element, 'bpmn:SubProcess') && isExpanded(element); } },{"250":250,"252":252,"253":253,"289":289,"431":431,"93":93,"95":95}],30:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303), inherits = _dereq_(289); var Collections = _dereq_(263), Model = _dereq_(254); var getBusinessObject = _dereq_(95).getBusinessObject, is = _dereq_(95).is; var CommandInterceptor = _dereq_(119); /** * A handler responsible for updating the underlying BPMN 2.0 XML + DI * once changes on the diagram happen */ function BpmnUpdater(eventBus, bpmnFactory, connectionDocking, translate) { CommandInterceptor.call(this, eventBus); this._bpmnFactory = bpmnFactory; this._translate = translate; var self = this; ////// connection cropping ///////////////////////// // crop connection ends during create/update function cropConnection(e) { var context = e.context, connection; if (!context.cropped) { connection = context.connection; connection.waypoints = connectionDocking.getCroppedWaypoints(connection); context.cropped = true; } } this.executed([ 'connection.layout', 'connection.create', 'connection.reconnectEnd', 'connection.reconnectStart' ], cropConnection); this.reverted([ 'connection.layout' ], function(e) { delete e.context.cropped; }); ////// BPMN + DI update ///////////////////////// // update parent function updateParent(e) { var context = e.context; self.updateParent(context.shape || context.connection, context.oldParent); } function reverseUpdateParent(e) { var context = e.context; var element = context.shape || context.connection, // oldParent is the (old) new parent, because we are undoing oldParent = context.parent || context.newParent; self.updateParent(element, oldParent); } this.executed([ 'shape.move', 'shape.create', 'shape.delete', 'connection.create', 'connection.move', 'connection.delete' ], ifBpmn(updateParent)); this.reverted([ 'shape.move', 'shape.create', 'shape.delete', 'connection.create', 'connection.move', 'connection.delete' ], ifBpmn(reverseUpdateParent)); /* * ## Updating Parent * * When morphing a Process into a Collaboration or vice-versa, * make sure that both the *semantic* and *di* parent of each element * is updated. * */ function updateRoot(event) { var context = event.context, oldRoot = context.oldRoot, children = oldRoot.children; forEach(children, function(child) { if (is(child, 'bpmn:BaseElement')) { self.updateParent(child); } }); } this.executed([ 'canvas.updateRoot' ], updateRoot); this.reverted([ 'canvas.updateRoot' ], updateRoot); // update bounds function updateBounds(e) { var shape = e.context.shape; if (!is(shape, 'bpmn:BaseElement')) { return; } self.updateBounds(shape); } this.executed([ 'shape.move', 'shape.create', 'shape.resize' ], ifBpmn(function(event) { // exclude labels because they're handled separately during shape.changed if (event.context.shape.type === 'label') { return; } updateBounds(event); })); this.reverted([ 'shape.move', 'shape.create', 'shape.resize' ], ifBpmn(function(event) { // exclude labels because they're handled separately during shape.changed if (event.context.shape.type === 'label') { return; } updateBounds(event); })); // Handle labels separately. This is necessary, because the label bounds have to be updated // every time its shape changes, not only on move, create and resize. eventBus.on('shape.changed', function(event) { if (event.element.type === 'label') { updateBounds({ context: { shape: event.element } }); } }); // attach / detach connection function updateConnection(e) { self.updateConnection(e.context); } this.executed([ 'connection.create', 'connection.move', 'connection.delete', 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(updateConnection)); this.reverted([ 'connection.create', 'connection.move', 'connection.delete', 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(updateConnection)); // update waypoints function updateConnectionWaypoints(e) { self.updateConnectionWaypoints(e.context.connection); } this.executed([ 'connection.layout', 'connection.move', 'connection.updateWaypoints', 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(updateConnectionWaypoints)); this.reverted([ 'connection.layout', 'connection.move', 'connection.updateWaypoints', 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(updateConnectionWaypoints)); // update Default & Conditional flows this.executed([ 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(function(e) { var context = e.context, connection = context.connection, businessObject = getBusinessObject(connection), oldSource = getBusinessObject(context.oldSource), oldTarget = getBusinessObject(context.oldTarget), newSource = getBusinessObject(connection.source), newTarget = getBusinessObject(connection.target); if (oldSource === newSource || oldTarget === newTarget) { return; } // on reconnectStart -> default flow if (oldSource && oldSource.default === businessObject) { context.default = oldSource.default; oldSource.default = undefined; } // on reconnectEnd -> default flow if ((businessObject.sourceRef && businessObject.sourceRef.default) && !(is(newTarget, 'bpmn:Activity') || is(newTarget, 'bpmn:EndEvent') || is(newTarget, 'bpmn:Gateway') || is(newTarget, 'bpmn:IntermediateThrowEvent')) ) { context.default = businessObject.sourceRef.default; businessObject.sourceRef.default = undefined; } // on reconnectStart -> conditional flow if (oldSource && (businessObject.conditionExpression) && !(is(newSource, 'bpmn:Activity') || is(newSource, 'bpmn:Gateway')) ) { context.conditionExpression = businessObject.conditionExpression; businessObject.conditionExpression = undefined; } // on reconnectEnd -> conditional flow if (oldTarget && (businessObject.conditionExpression) && !(is(newTarget, 'bpmn:Activity') || is(newTarget, 'bpmn:EndEvent') || is(newTarget, 'bpmn:Gateway') || is(newTarget, 'bpmn:IntermediateThrowEvent')) ) { context.conditionExpression = businessObject.conditionExpression; businessObject.conditionExpression = undefined; } })); this.reverted([ 'connection.reconnectEnd', 'connection.reconnectStart' ], ifBpmn(function(e) { var context = e.context, connection = context.connection, businessObject = getBusinessObject(connection), newSource = getBusinessObject(connection.source); // default flow if (context.default) { if (is(newSource, 'bpmn:ExclusiveGateway') || is(newSource, 'bpmn:InclusiveGateway') || is(newSource, 'bpmn:Activity')) { newSource.default = context.default; } } // conditional flow if (context.conditionExpression && is(newSource, 'bpmn:Activity')) { businessObject.conditionExpression = context.conditionExpression; } })); // update attachments function updateAttachment(e) { self.updateAttachment(e.context); } this.executed([ 'element.updateAttachment' ], ifBpmn(updateAttachment)); this.reverted([ 'element.updateAttachment' ], ifBpmn(updateAttachment)); } inherits(BpmnUpdater, CommandInterceptor); module.exports = BpmnUpdater; BpmnUpdater.$inject = [ 'eventBus', 'bpmnFactory', 'connectionDocking', 'translate' ]; /////// implementation ////////////////////////////////// BpmnUpdater.prototype.updateAttachment = function(context) { var shape = context.shape, businessObject = shape.businessObject, host = shape.host; businessObject.attachedToRef = host && host.businessObject; }; BpmnUpdater.prototype.updateParent = function(element, oldParent) { // do not update BPMN 2.0 label parent if (element instanceof Model.Label) { return; } var parentShape = element.parent; var businessObject = element.businessObject, parentBusinessObject = parentShape && parentShape.businessObject, parentDi = parentBusinessObject && parentBusinessObject.di; if (is(element, 'bpmn:FlowNode')) { this.updateFlowNodeRefs(businessObject, parentBusinessObject, oldParent && oldParent.businessObject); } if (is(element, 'bpmn:DataOutputAssociation')) { if (element.source) { parentBusinessObject = element.source.businessObject; } else { parentBusinessObject = null; } } if (is(element, 'bpmn:DataInputAssociation')) { if (element.target) { parentBusinessObject = element.target.businessObject; } else { parentBusinessObject = null; } } this.updateSemanticParent(businessObject, parentBusinessObject); if (is(element, 'bpmn:DataObjectReference') && businessObject.dataObjectRef) { this.updateSemanticParent(businessObject.dataObjectRef, parentBusinessObject); } this.updateDiParent(businessObject.di, parentDi); }; BpmnUpdater.prototype.updateBounds = function(shape) { var di = shape.businessObject.di; var bounds = (shape instanceof Model.Label) ? this._getLabel(di).bounds : di.bounds; assign(bounds, { x: shape.x, y: shape.y, width: shape.width, height: shape.height }); }; BpmnUpdater.prototype.updateFlowNodeRefs = function(businessObject, newContainment, oldContainment) { if (oldContainment === newContainment) { return; } var oldRefs, newRefs; if (is (oldContainment, 'bpmn:Lane')) { oldRefs = oldContainment.get('flowNodeRef'); Collections.remove(oldRefs, businessObject); } if (is(newContainment, 'bpmn:Lane')) { newRefs = newContainment.get('flowNodeRef'); Collections.add(newRefs, businessObject); } }; // update existing sourceElement and targetElement di information BpmnUpdater.prototype.updateDiConnection = function(di, newSource, newTarget) { if (di.sourceElement && di.sourceElement.bpmnElement !== newSource) { di.sourceElement = newSource && newSource.di; } if (di.targetElement && di.targetElement.bpmnElement !== newTarget) { di.targetElement = newTarget && newTarget.di; } }; BpmnUpdater.prototype.updateDiParent = function(di, parentDi) { if (parentDi && !is(parentDi, 'bpmndi:BPMNPlane')) { parentDi = parentDi.$parent; } if (di.$parent === parentDi) { return; } var planeElements = (parentDi || di.$parent).get('planeElement'); if (parentDi) { planeElements.push(di); di.$parent = parentDi; } else { Collections.remove(planeElements, di); di.$parent = null; } }; function getDefinitions(element) { while (element && !is(element, 'bpmn:Definitions')) { element = element.$parent; } return element; } BpmnUpdater.prototype.getLaneSet = function(container) { var laneSet, laneSets; // bpmn:Lane if (is(container, 'bpmn:Lane')) { laneSet = container.childLaneSet; if (!laneSet) { laneSet = this._bpmnFactory.create('bpmn:LaneSet'); container.childLaneSet = laneSet; laneSet.$parent = container; } return laneSet; } // bpmn:Participant if (is(container, 'bpmn:Participant')) { container = container.processRef; } // bpmn:FlowElementsContainer laneSets = container.get('laneSets'); laneSet = laneSets[0]; if (!laneSet) { laneSet = this._bpmnFactory.create('bpmn:LaneSet'); laneSet.$parent = container; laneSets.push(laneSet); } return laneSet; }; BpmnUpdater.prototype.updateSemanticParent = function(businessObject, newParent, visualParent) { var containment, translate = this._translate; if (businessObject.$parent === newParent) { return; } if (is(businessObject, 'bpmn:Lane')) { if (newParent) { newParent = this.getLaneSet(newParent); } containment = 'lanes'; } else if (is(businessObject, 'bpmn:FlowElement')) { if (newParent) { if (is(newParent, 'bpmn:Participant')) { newParent = newParent.processRef; } else if (is(newParent, 'bpmn:Lane')) { do { // unwrap Lane -> LaneSet -> (Lane | FlowElementsContainer) newParent = newParent.$parent.$parent; } while (is(newParent, 'bpmn:Lane')); } } containment = 'flowElements'; } else if (is(businessObject, 'bpmn:Artifact')) { while (newParent && !is(newParent, 'bpmn:Process') && !is(newParent, 'bpmn:SubProcess') && !is(newParent, 'bpmn:Collaboration')) { if (is(newParent, 'bpmn:Participant')) { newParent = newParent.processRef; break; } else { newParent = newParent.$parent; } } containment = 'artifacts'; } else if (is(businessObject, 'bpmn:MessageFlow')) { containment = 'messageFlows'; } else if (is(businessObject, 'bpmn:Participant')) { containment = 'participants'; // make sure the participants process is properly attached / detached // from the XML document var process = businessObject.processRef, definitions; if (process) { definitions = getDefinitions(businessObject.$parent || newParent); if (businessObject.$parent) { Collections.remove(definitions.get('rootElements'), process); process.$parent = null; } if (newParent) { Collections.add(definitions.get('rootElements'), process); process.$parent = definitions; } } } else if (is(businessObject, 'bpmn:DataOutputAssociation')) { containment = 'dataOutputAssociations'; } else if (is(businessObject, 'bpmn:DataInputAssociation')) { containment = 'dataInputAssociations'; } if (!containment) { throw new Error(translate( 'no parent for {element} in {parent}', { element: businessObject.id, parent: newParent.id } )); } var children; if (businessObject.$parent) { // remove from old parent children = businessObject.$parent.get(containment); Collections.remove(children, businessObject); } if (!newParent) { businessObject.$parent = null; } else { // add to new parent children = newParent.get(containment); children.push(businessObject); businessObject.$parent = newParent; } if (visualParent) { var diChildren = visualParent.get(containment); Collections.remove(children, businessObject); if (newParent) { if (!diChildren) { diChildren = []; newParent.set(containment, diChildren); } diChildren.push(businessObject); } } }; BpmnUpdater.prototype.updateConnectionWaypoints = function(connection) { connection.businessObject.di.set('waypoint', this._bpmnFactory.createDiWaypoints(connection.waypoints)); }; BpmnUpdater.prototype.updateConnection = function(context) { var connection = context.connection, businessObject = getBusinessObject(connection), newSource = getBusinessObject(connection.source), newTarget = getBusinessObject(connection.target), visualParent; if (!is(businessObject, 'bpmn:DataAssociation')) { var inverseSet = is(businessObject, 'bpmn:SequenceFlow'); if (businessObject.sourceRef !== newSource) { if (inverseSet) { Collections.remove(businessObject.sourceRef && businessObject.sourceRef.get('outgoing'), businessObject); if (newSource && newSource.get('outgoing')) { newSource.get('outgoing').push(businessObject); } } businessObject.sourceRef = newSource; } if (businessObject.targetRef !== newTarget) { if (inverseSet) { Collections.remove(businessObject.targetRef && businessObject.targetRef.get('incoming'), businessObject); if (newTarget && newTarget.get('incoming')) { newTarget.get('incoming').push(businessObject); } } businessObject.targetRef = newTarget; } } else if (is(businessObject, 'bpmn:DataInputAssociation')) { // handle obnoxious isMany sourceRef businessObject.get('sourceRef')[0] = newSource; visualParent = context.parent || context.newParent || newTarget; this.updateSemanticParent(businessObject, newTarget, parent.businessObject); } else if (is(businessObject, 'bpmn:DataOutputAssociation')) { visualParent = context.parent || context.newParent || newSource; this.updateSemanticParent(businessObject, newSource, visualParent); // targetRef = new target businessObject.targetRef = newTarget; } this.updateConnectionWaypoints(connection); this.updateDiConnection(businessObject.di, newSource, newTarget); }; /////// helpers ///////////////////////////////////////// BpmnUpdater.prototype._getLabel = function(di) { if (!di.label) { di.label = this._bpmnFactory.createDiLabel(); } return di.label; }; /** * Make sure the event listener is only called * if the touched element is a BPMN element. * * @param {Function} fn * @return {Function} guarded function */ function ifBpmn(fn) { return function(event) { var context = event.context, element = context.shape || context.connection; if (is(element, 'bpmn:BaseElement')) { fn(event); } }; } },{"119":119,"254":254,"263":263,"289":289,"303":303,"431":431,"95":95}],31:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303), inherits = _dereq_(289); var is = _dereq_(95).is; var isExpanded = _dereq_(93).isExpanded; var BaseElementFactory = _dereq_(123), LabelUtil = _dereq_(94); /** * A bpmn-aware factory for diagram-js shapes */ function ElementFactory(bpmnFactory, moddle, translate) { BaseElementFactory.call(this); this._bpmnFactory = bpmnFactory; this._moddle = moddle; this._translate = translate; } inherits(ElementFactory, BaseElementFactory); ElementFactory.$inject = [ 'bpmnFactory', 'moddle', 'translate' ]; module.exports = ElementFactory; ElementFactory.prototype.baseCreate = BaseElementFactory.prototype.create; ElementFactory.prototype.create = function(elementType, attrs) { // no special magic for labels, // we assume their businessObjects have already been created // and wired via attrs if (elementType === 'label') { return this.baseCreate(elementType, assign({ type: 'label' }, LabelUtil.DEFAULT_LABEL_SIZE, attrs)); } return this.createBpmnElement(elementType, attrs); }; ElementFactory.prototype.createBpmnElement = function(elementType, attrs) { var size, translate = this._translate; attrs = attrs || {}; var businessObject = attrs.businessObject; if (!businessObject) { if (!attrs.type) { throw new Error(translate('no shape type specified')); } businessObject = this._bpmnFactory.create(attrs.type); } if (!businessObject.di) { if (elementType === 'root') { businessObject.di = this._bpmnFactory.createDiPlane(businessObject, [], { id: businessObject.id + '_di' }); } else if (elementType === 'connection') { businessObject.di = this._bpmnFactory.createDiEdge(businessObject, [], { id: businessObject.id + '_di' }); } else { businessObject.di = this._bpmnFactory.createDiShape(businessObject, {}, { id: businessObject.id + '_di' }); } } if (attrs.colors) { assign(businessObject.di, attrs.colors); delete attrs.colors; } applyAttributes(businessObject, attrs, [ 'processRef', 'isInterrupting', 'associationDirection', 'isForCompensation' ]); if (attrs.isExpanded) { applyAttribute(businessObject.di, attrs, 'isExpanded'); } if (is(businessObject, 'bpmn:ExclusiveGateway')) { businessObject.di.isMarkerVisible = true; } var eventDefinitions, newEventDefinition; if (attrs.eventDefinitionType) { eventDefinitions = businessObject.get('eventDefinitions') || []; newEventDefinition = this._moddle.create(attrs.eventDefinitionType); eventDefinitions.push(newEventDefinition); newEventDefinition.$parent = businessObject; businessObject.eventDefinitions = eventDefinitions; delete attrs.eventDefinitionType; } size = this._getDefaultSize(businessObject); attrs = assign({ businessObject: businessObject, id: businessObject.id }, size, attrs); return this.baseCreate(elementType, attrs); }; ElementFactory.prototype._getDefaultSize = function(semantic) { if (is(semantic, 'bpmn:SubProcess')) { if (isExpanded(semantic)) { return { width: 350, height: 200 }; } else { return { width: 100, height: 80 }; } } if (is(semantic, 'bpmn:Task')) { return { width: 100, height: 80 }; } if (is(semantic, 'bpmn:Gateway')) { return { width: 50, height: 50 }; } if (is(semantic, 'bpmn:Event')) { return { width: 36, height: 36 }; } if (is(semantic, 'bpmn:Participant')) { if (!isExpanded(semantic)) { return { width: 400, height: 100 }; } else { return { width: 600, height: 250 }; } } if (is(semantic, 'bpmn:Lane')) { return { width: 400, height: 100 }; } if (is(semantic, 'bpmn:DataObjectReference')) { return { width: 36, height: 50 }; } if (is(semantic, 'bpmn:DataStoreReference')) { return { width: 50, height: 50 }; } if (is(semantic, 'bpmn:TextAnnotation')) { return { width: 100, height: 30 }; } return { width: 100, height: 80 }; }; ElementFactory.prototype.createParticipantShape = function(collapsed) { var attrs = { type: 'bpmn:Participant' }; if (!collapsed) { attrs.processRef = this._bpmnFactory.create('bpmn:Process'); } return this.createShape(attrs); }; //////////// helpers //////////////////////////////////// /** * Apply attributes from a map to the given element, * remove attribute from the map on application. * * @param {Base} element * @param {Object} attrs (in/out map of attributes) * @param {Array} attributeNames name of attributes to apply */ function applyAttributes(element, attrs, attributeNames) { forEach(attributeNames, function(property) { if (attrs[property] !== undefined) { applyAttribute(element, attrs, property); } }); } /** * Apply named property to element and drain it from the attrs * collection. * * @param {Base} element * @param {Object} attrs (in/out map of attributes) * @param {String} attributeName to apply */ function applyAttribute(element, attrs, attributeName) { element[attributeName] = attrs[attributeName]; delete attrs[attributeName]; } },{"123":123,"289":289,"303":303,"431":431,"93":93,"94":94,"95":95}],32:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var BaseModeling = _dereq_(177); var UpdatePropertiesHandler = _dereq_(65), UpdateCanvasRootHandler = _dereq_(63), AddLaneHandler = _dereq_(58), SplitLaneHandler = _dereq_(62), ResizeLaneHandler = _dereq_(60), UpdateFlowNodeRefsHandler = _dereq_(64), IdClaimHandler = _dereq_(59), SetColorHandler = _dereq_(61); /** * BPMN 2.0 modeling features activator * * @param {EventBus} eventBus * @param {ElementFactory} elementFactory * @param {CommandStack} commandStack * @param {BpmnRules} bpmnRules */ function Modeling(eventBus, elementFactory, commandStack, bpmnRules) { BaseModeling.call(this, eventBus, elementFactory, commandStack); this._bpmnRules = bpmnRules; } inherits(Modeling, BaseModeling); Modeling.$inject = [ 'eventBus', 'elementFactory', 'commandStack', 'bpmnRules' ]; module.exports = Modeling; Modeling.prototype.getHandlers = function() { var handlers = BaseModeling.prototype.getHandlers.call(this); handlers['element.updateProperties'] = UpdatePropertiesHandler; handlers['canvas.updateRoot'] = UpdateCanvasRootHandler; handlers['lane.add'] = AddLaneHandler; handlers['lane.resize'] = ResizeLaneHandler; handlers['lane.split'] = SplitLaneHandler; handlers['lane.updateRefs'] = UpdateFlowNodeRefsHandler; handlers['id.updateClaim'] = IdClaimHandler; handlers['element.setColor'] = SetColorHandler; return handlers; }; Modeling.prototype.updateLabel = function(element, newLabel) { this._commandStack.execute('element.updateLabel', { element: element, newLabel: newLabel }); }; Modeling.prototype.connect = function(source, target, attrs, hints) { var bpmnRules = this._bpmnRules; if (!attrs) { attrs = bpmnRules.canConnect(source, target); } if (!attrs) { return; } return this.createConnection(source, target, attrs, source.parent, hints); }; Modeling.prototype.updateProperties = function(element, properties) { this._commandStack.execute('element.updateProperties', { element: element, properties: properties }); }; Modeling.prototype.resizeLane = function(laneShape, newBounds, balanced) { this._commandStack.execute('lane.resize', { shape: laneShape, newBounds: newBounds, balanced: balanced }); }; Modeling.prototype.addLane = function(targetLaneShape, location) { var context = { shape: targetLaneShape, location: location }; this._commandStack.execute('lane.add', context); return context.newLane; }; Modeling.prototype.splitLane = function(targetLane, count) { this._commandStack.execute('lane.split', { shape: targetLane, count: count }); }; /** * Transform the current diagram into a collaboration. * * @return {djs.model.Root} the new root element */ Modeling.prototype.makeCollaboration = function() { var collaborationElement = this._create('root', { type: 'bpmn:Collaboration' }); var context = { newRoot: collaborationElement }; this._commandStack.execute('canvas.updateRoot', context); return collaborationElement; }; Modeling.prototype.updateLaneRefs = function(flowNodeShapes, laneShapes) { this._commandStack.execute('lane.updateRefs', { flowNodeShapes: flowNodeShapes, laneShapes: laneShapes }); }; /** * Transform the current diagram into a process. * * @return {djs.model.Root} the new root element */ Modeling.prototype.makeProcess = function() { var processElement = this._create('root', { type: 'bpmn:Process' }); var context = { newRoot: processElement }; this._commandStack.execute('canvas.updateRoot', context); }; Modeling.prototype.claimId = function(id, moddleElement) { this._commandStack.execute('id.updateClaim', { id: id, element: moddleElement, claiming: true }); }; Modeling.prototype.unclaimId = function(id, moddleElement) { this._commandStack.execute('id.updateClaim', { id: id, element: moddleElement }); }; Modeling.prototype.setColor = function(elements, colors) { if (!elements.length) { elements = [ elements ]; } this._commandStack.execute('element.setColor', { elements: elements, colors: colors }); }; },{"177":177,"289":289,"58":58,"59":59,"60":60,"61":61,"62":62,"63":63,"64":64,"65":65}],33:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var is = _dereq_(95).is; var CommandInterceptor = _dereq_(119); function AppendBehavior(eventBus, elementFactory, bpmnRules) { CommandInterceptor.call(this, eventBus); // assign correct shape position unless already set this.preExecute('shape.append', function(context) { var source = context.source, shape = context.shape; if (!context.position) { if (is(shape, 'bpmn:TextAnnotation')) { context.position = { x: source.x + source.width / 2 + 75, y: source.y - (50) - shape.height / 2 }; } else { context.position = { x: source.x + source.width + 80 + shape.width / 2, y: source.y + source.height / 2 }; } } }, true); } AppendBehavior.$inject = [ 'eventBus', 'elementFactory', 'bpmnRules' ]; inherits(AppendBehavior, CommandInterceptor); module.exports = AppendBehavior; },{"119":119,"289":289,"95":95}],34:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var forEach = _dereq_(303); var is = _dereq_(95).is; var CommandInterceptor = _dereq_(119); function CopyPasteBehavior(eventBus, modeling, canvas) { CommandInterceptor.call(this, eventBus); this.preExecute('elements.paste', 1500, function(context) { var topParent = context.topParent; // always grab the latest root if (!topParent.parent) { context.topParent = canvas.getRootElement(); } if (is(topParent, 'bpmn:Lane')) { do { // unwrap Lane -> LaneSet -> (Lane | FlowElementsContainer) topParent = context.topParent = topParent.parent; } while (is(topParent, 'bpmn:Lane') || !is(topParent, 'bpmn:Participant')); } }, true); this.postExecute('elements.paste', function(context) { var tree = context.tree, createdElements = tree.createdElements; forEach(createdElements, function(data) { var element = data.element, businessObject = element.businessObject, descriptor = data.descriptor, defaultFlow; if ((is(businessObject, 'bpmn:ExclusiveGateway') || is(businessObject, 'bpmn:InclusiveGateway') || is(businessObject, 'bpmn:Activity')) && descriptor.default) { defaultFlow = createdElements[descriptor.default]; // if the default flow wasn't created, means that it wasn't copied if (defaultFlow) { defaultFlow = defaultFlow.element; } else { defaultFlow = undefined; } delete element.default; modeling.updateProperties(element, { default: defaultFlow }); } }); }, true); } CopyPasteBehavior.$inject = [ 'eventBus', 'modeling', 'canvas' ]; inherits(CopyPasteBehavior, CommandInterceptor); module.exports = CopyPasteBehavior; },{"119":119,"289":289,"303":303,"95":95}],35:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; /** * BPMN specific create boundary event behavior */ function CreateBoundaryEventBehavior(eventBus, modeling, elementFactory, bpmnFactory) { CommandInterceptor.call(this, eventBus); /** * replace intermediate event with boundary event when * attaching it to a shape */ this.preExecute('shape.create', function(context) { var shape = context.shape, host = context.host, businessObject, boundaryEvent; var attrs = { cancelActivity: true }; if (host && is(shape, 'bpmn:IntermediateThrowEvent')) { attrs.attachedToRef = host.businessObject; businessObject = bpmnFactory.create('bpmn:BoundaryEvent', attrs); boundaryEvent = { type: 'bpmn:BoundaryEvent', businessObject: businessObject }; context.shape = elementFactory.createShape(boundaryEvent); } }, true); } CreateBoundaryEventBehavior.$inject = [ 'eventBus', 'modeling', 'elementFactory', 'bpmnFactory' ]; inherits(CreateBoundaryEventBehavior, CommandInterceptor); module.exports = CreateBoundaryEventBehavior; },{"119":119,"289":289,"95":95}],36:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; /** * BPMN specific create data object behavior */ function CreateDataObjectBehavior(eventBus, bpmnFactory, moddle) { CommandInterceptor.call(this, eventBus); this.preExecute('shape.create', function(event) { var context = event.context, shape = context.shape; if (is(shape, 'bpmn:DataObjectReference') && shape.type !== 'label') { // create a DataObject every time a DataObjectReference is created var dataObject = bpmnFactory.create('bpmn:DataObject'); // set the reference to the DataObject shape.businessObject.dataObjectRef = dataObject; } }); } CreateDataObjectBehavior.$inject = [ 'eventBus', 'bpmnFactory', 'moddle' ]; inherits(CreateDataObjectBehavior, CommandInterceptor); module.exports = CreateDataObjectBehavior; },{"119":119,"289":289,"95":95}],37:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; /** * BPMN specific create participant behavior */ function CreateParticipantBehavior(eventBus, modeling, elementFactory, bpmnFactory, canvas) { CommandInterceptor.call(this, eventBus); /** * morph process into collaboration before adding * participant onto collaboration */ this.preExecute('shape.create', function(context) { var parent = context.parent, shape = context.shape, position = context.position; var rootElement = canvas.getRootElement(); if (is(parent, 'bpmn:Process') && is(shape, 'bpmn:Participant') && !is(rootElement, 'bpmn:Collaboration')) { // this is going to detach the process root // and set the returned collaboration element // as the new root element var collaborationElement = modeling.makeCollaboration(); // monkey patch the create context // so that the participant is being dropped // onto the new collaboration root instead context.position = position; context.parent = collaborationElement; context.processRoot = parent; } }, true); this.execute('shape.create', function(context) { var processRoot = context.processRoot, shape = context.shape; if (processRoot) { context.oldProcessRef = shape.businessObject.processRef; // assign the participant processRef shape.businessObject.processRef = processRoot.businessObject; } }, true); this.revert('shape.create', function(context) { var processRoot = context.processRoot, shape = context.shape; if (processRoot) { // assign the participant processRef shape.businessObject.processRef = context.oldProcessRef; } }, true); this.postExecute('shape.create', function(context) { var processRoot = context.processRoot, shape = context.shape; if (processRoot) { // process root is already detached at this point var processChildren = processRoot.children.slice(); modeling.moveElements(processChildren, { x: 0, y: 0 }, shape); } }, true); } CreateParticipantBehavior.$inject = [ 'eventBus', 'modeling', 'elementFactory', 'bpmnFactory', 'canvas' ]; inherits(CreateParticipantBehavior, CommandInterceptor); module.exports = CreateParticipantBehavior; },{"119":119,"289":289,"95":95}],38:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var Collections = _dereq_(263); var find = _dereq_(302); var is = _dereq_(95).is; var TARGET_REF_PLACEHOLDER_NAME = '__targetRef_placeholder'; /** * This behavior makes sure we always set a fake * DataInputAssociation#targetRef as demanded by the BPMN 2.0 * XSD schema. * * The reference is set to a bpmn:Property{ name: '__targetRef_placeholder' } * which is created on the fly and cleaned up afterwards if not needed * anymore. * * @param {EventBus} eventBus * @param {BpmnFactory} bpmnFactory */ function DataInputAssociationBehavior(eventBus, bpmnFactory) { CommandInterceptor.call(this, eventBus); this.executed([ 'connection.create', 'connection.delete', 'connection.move', 'connection.reconnectEnd' ], ifDataInputAssociation(fixTargetRef)); this.reverted([ 'connection.create', 'connection.delete', 'connection.move', 'connection.reconnectEnd' ], ifDataInputAssociation(fixTargetRef)); function usesTargetRef(element, targetRef, removedConnection) { var inputAssociations = element.get('dataInputAssociations'); return find(inputAssociations, function(association) { return association !== removedConnection && association.targetRef === targetRef; }); } function getTargetRef(element, create) { var properties = element.get('properties'); var targetRefProp = find(properties, function(p) { return p.name === TARGET_REF_PLACEHOLDER_NAME; }); if (!targetRefProp && create) { targetRefProp = bpmnFactory.create('bpmn:Property', { name: TARGET_REF_PLACEHOLDER_NAME }); Collections.add(properties, targetRefProp); } return targetRefProp; } function cleanupTargetRef(element, connection) { var targetRefProp = getTargetRef(element); if (!targetRefProp) { return; } if (!usesTargetRef(element, targetRefProp, connection)) { Collections.remove(element.get('properties'), targetRefProp); } } /** * Make sure targetRef is set to a valid property or * `null` if the connection is detached. * * @param {Event} event */ function fixTargetRef(event) { var context = event.context, connection = context.connection, connectionBo = connection.businessObject, target = connection.target, targetBo = target && target.businessObject, newTarget = context.newTarget, newTargetBo = newTarget && newTarget.businessObject, oldTarget = context.oldTarget || context.target, oldTargetBo = oldTarget && oldTarget.businessObject; var dataAssociation = connection.businessObject, targetRefProp; if (oldTargetBo && oldTargetBo !== targetBo) { cleanupTargetRef(oldTargetBo, connectionBo); } if (newTargetBo && newTargetBo !== targetBo) { cleanupTargetRef(newTargetBo, connectionBo); } if (targetBo) { targetRefProp = getTargetRef(targetBo, true); dataAssociation.targetRef = targetRefProp; } else { dataAssociation.targetRef = null; } } } DataInputAssociationBehavior.$inject = [ 'eventBus', 'bpmnFactory' ]; inherits(DataInputAssociationBehavior, CommandInterceptor); module.exports = DataInputAssociationBehavior; /** * Only call the given function when the event * touches a bpmn:DataInputAssociation. * * @param {Function} fn * @return {Function} */ function ifDataInputAssociation(fn) { return function(event) { var context = event.context, connection = context.connection; if (is(connection, 'bpmn:DataInputAssociation')) { return fn(event); } }; } },{"119":119,"263":263,"289":289,"302":302,"95":95}],39:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; var getChildLanes = _dereq_(67).getChildLanes; var eachElement = _dereq_(266).eachElement; var LOW_PRIORITY = 500; /** * BPMN specific delete lane behavior */ function DeleteLaneBehavior(eventBus, modeling, spaceTool) { CommandInterceptor.call(this, eventBus); function compensateLaneDelete(shape, oldParent) { var siblings = getChildLanes(oldParent); var topAffected = []; var bottomAffected = []; eachElement(siblings, function(element) { if (element.y > shape.y) { bottomAffected.push(element); } else { topAffected.push(element); } return element.children; }); if (!siblings.length) { return; } var offset; if (bottomAffected.length && topAffected.length) { offset = shape.height / 2; } else { offset = shape.height; } var topAdjustments, bottomAdjustments; if (topAffected.length) { topAdjustments = spaceTool.calculateAdjustments( topAffected, 'y', offset, shape.y - 10); spaceTool.makeSpace( topAdjustments.movingShapes, topAdjustments.resizingShapes, { x: 0, y: offset }, 's'); } if (bottomAffected.length) { bottomAdjustments = spaceTool.calculateAdjustments( bottomAffected, 'y', -offset, shape.y + shape.height + 10); spaceTool.makeSpace( bottomAdjustments.movingShapes, bottomAdjustments.resizingShapes, { x: 0, y: -offset }, 'n'); } } /** * Adjust sizes of other lanes after lane deletion */ this.postExecuted('shape.delete', LOW_PRIORITY, function(event) { var context = event.context, hints = context.hints, shape = context.shape, oldParent = context.oldParent; // only compensate lane deletes if (!is(shape, 'bpmn:Lane')) { return; } // compensate root deletes only if (hints && hints.nested) { return; } compensateLaneDelete(shape, oldParent); }); } DeleteLaneBehavior.$inject = [ 'eventBus', 'modeling', 'spaceTool' ]; inherits(DeleteLaneBehavior, CommandInterceptor); module.exports = DeleteLaneBehavior; },{"119":119,"266":266,"289":289,"67":67,"95":95}],40:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var assign = _dereq_(431), find = _dereq_(302); var CommandInterceptor = _dereq_(119); var getApproxIntersection = _dereq_(272).getApproxIntersection; function isPointInsideBBox(bbox, point) { var x = point.x, y = point.y; return x >= bbox.x && x <= bbox.x + bbox.width && y >= bbox.y && y <= bbox.y + bbox.height; } function copy(obj) { return assign({}, obj); } function getMid(bounds) { return { x: Math.round(bounds.x + bounds.width / 2), y: Math.round(bounds.y + bounds.height / 2) }; } function DropOnFlow(eventBus, bpmnRules, modeling) { CommandInterceptor.call(this, eventBus); /** * Reconnect start / end of a connection after * dropping an element on a flow. */ function insertShape(shape, targetFlow, position) { var waypoints = targetFlow.waypoints, waypointsBefore, waypointsAfter, dockingPoint, source, target, reconnected; var intersection = getApproxIntersection(waypoints, position); if (intersection) { waypointsBefore = waypoints.slice(0, intersection.index); waypointsAfter = waypoints.slice(intersection.index + (intersection.bendpoint ? 1 : 0)); dockingPoint = intersection.bendpoint ? waypoints[intersection.index] : position; // if last waypointBefore is inside shape's bounds, ignore docking point if (!isPointInsideBBox(shape, waypointsBefore[waypointsBefore.length-1])) { waypointsBefore.push(copy(dockingPoint)); } // if first waypointAfter is inside shape's bounds, ignore docking point if (!isPointInsideBBox(shape, waypointsAfter[0])) { waypointsAfter.unshift(copy(dockingPoint)); } } source = targetFlow.source; target = targetFlow.target; if (bpmnRules.canConnect(source, shape, targetFlow)) { // reconnect source -> inserted shape modeling.reconnectEnd(targetFlow, shape, waypointsBefore || position); reconnected = true; } if (bpmnRules.canConnect(shape, target, targetFlow)) { if (!reconnected) { // reconnect inserted shape -> end modeling.reconnectStart(targetFlow, shape, waypointsAfter || position); } else { modeling.connect(shape, target, { type: targetFlow.type, waypoints: waypointsAfter }); } } } this.preExecute('elements.move', function(context) { var newParent = context.newParent, shapes = context.shapes, delta = context.delta, shape = shapes[0]; if (!shape || !newParent) { return; } // if the new parent is a connection, // change it to the new parent's parent if (newParent && newParent.waypoints) { context.newParent = newParent = newParent.parent; } var shapeMid = getMid(shape); var newShapeMid = { x: shapeMid.x + delta.x, y: shapeMid.y + delta.y }; // find a connection which intersects with the // element's mid point var connection = find(newParent.children, function(element) { var canInsert = bpmnRules.canInsert(shapes, element); return canInsert && getApproxIntersection(element.waypoints, newShapeMid); }); if (connection) { context.targetFlow = connection; context.position = newShapeMid; } }, true); this.postExecuted('elements.move', function(context) { var shapes = context.shapes, targetFlow = context.targetFlow, position = context.position; if (targetFlow) { insertShape(shapes[0], targetFlow, position); } }, true); this.preExecute('shape.create', function(context) { var parent = context.parent, shape = context.shape; if (bpmnRules.canInsert(shape, parent)) { context.targetFlow = parent; context.parent = parent.parent; } }, true); this.postExecute('shape.create', function(context) { var shape = context.shape, targetFlow = context.targetFlow, position = context.position; if (targetFlow) { insertShape(shape, targetFlow, position); } }, true); } inherits(DropOnFlow, CommandInterceptor); DropOnFlow.$inject = [ 'eventBus', 'bpmnRules', 'modeling' ]; module.exports = DropOnFlow; },{"119":119,"272":272,"289":289,"302":302,"431":431}],41:[function(_dereq_,module,exports){ 'use strict'; var getMid = _dereq_(252).getMid; var lineIntersect = _dereq_(57); /** * Fix broken dockings after DI imports. * * @param {EventBus} eventBus */ function ImportDockingFix(eventBus) { function adjustDocking(startPoint, nextPoint, elementMid) { var elementTop = { x: elementMid.x, y: elementMid.y - 50 }; var elementLeft = { x: elementMid.x - 50, y: elementMid.y }; var verticalIntersect = lineIntersect(startPoint, nextPoint, elementMid, elementTop), horizontalIntersect = lineIntersect(startPoint, nextPoint, elementMid, elementLeft); // original is horizontal or vertical center cross intersection var centerIntersect; if (verticalIntersect && horizontalIntersect) { if (getDistance(verticalIntersect, elementMid) > getDistance(horizontalIntersect, elementMid)) { centerIntersect = horizontalIntersect; } else { centerIntersect = verticalIntersect; } } else { centerIntersect = verticalIntersect || horizontalIntersect; } startPoint.original = centerIntersect; } function fixDockings(connection) { var waypoints = connection.waypoints; adjustDocking( waypoints[0], waypoints[1], getMid(connection.source) ); adjustDocking( waypoints[waypoints.length - 1], waypoints[waypoints.length - 2], getMid(connection.target) ); } eventBus.on('bpmnElement.added', function(e) { var element = e.element; if (element.waypoints) { fixDockings(element); } }); } ImportDockingFix.$inject = [ 'eventBus' ]; module.exports = ImportDockingFix; /////// helpers ////////////////////////////////// function getDistance(p1, p2) { return Math.sqrt(Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2)); } },{"252":252,"57":57}],42:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), inherits = _dereq_(289); var LabelUtil = _dereq_(94), LabelLayoutUtil = _dereq_(55), ModelUtil = _dereq_(95), is = ModelUtil.is, getBusinessObject = ModelUtil.getBusinessObject; var hasExternalLabel = LabelUtil.hasExternalLabel, getExternalLabelMid = LabelUtil.getExternalLabelMid, getLabelAdjustment = LabelLayoutUtil.getLabelAdjustment; var CommandInterceptor = _dereq_(119); var TextUtil = _dereq_(280); var DEFAULT_LABEL_DIMENSIONS = { width: 90, height: 20 }; /** * A component that makes sure that external labels are added * together with respective elements and properly updated (DI wise) * during move. * * @param {EventBus} eventBus * @param {Modeling} modeling * @param {BpmnFactory} bpmnFactory */ function LabelSupport(eventBus, modeling, bpmnFactory) { CommandInterceptor.call(this, eventBus); var textUtil = new TextUtil(); ///// create external labels on shape creation this.postExecute([ 'shape.create', 'connection.create' ], function(e) { var context = e.context; var element = context.shape || context.connection, businessObject = element.businessObject; if (!hasExternalLabel(businessObject)) { return; } var labelCenter = getExternalLabelMid(element); // we don't care about x and y var labelDimensions = getLayoutedBounds( DEFAULT_LABEL_DIMENSIONS, businessObject.name || '', textUtil ); modeling.createLabel(element, labelCenter, { id: businessObject.id + '_label', hidden: !businessObject.name, businessObject: businessObject, width: labelDimensions.width, height: labelDimensions.height }); }); ///// update di information on label creation this.executed([ 'label.create' ], function(event) { var element = event.context.shape, businessObject, di; // we want to trigger on real labels only if (!element.labelTarget) { return; } // we want to trigger on BPMN elements only if (!is(element.labelTarget || element, 'bpmn:BaseElement')) { return; } businessObject = element.businessObject, di = businessObject.di; if (!di.label) { di.label = bpmnFactory.create('bpmndi:BPMNLabel', { bounds: bpmnFactory.create('dc:Bounds') }); } assign(di.label.bounds, { x: element.x, y: element.y, width: element.width, height: element.height }); }); ///// update label position on connection change function getHiddenLabelAdjustment(event) { var context = event.context, connection = context.connection, label = connection.label; var labelPosition = getExternalLabelMid(connection); return { x: labelPosition.x - label.x - label.width / 2, y: labelPosition.y - label.y - label.height / 2 }; } function getVisibleLabelAdjustment(event) { var command = event.command, context = event.context, connection = context.connection, label = connection.label, hints = assign({}, context.hints), newWaypoints = context.newWaypoints || connection.waypoints, oldWaypoints = context.oldWaypoints; if (typeof hints.startChanged === 'undefined') { hints.startChanged = (command === 'connection.reconnectStart'); } if (typeof hints.endChanged === 'undefined') { hints.endChanged = (command === 'connection.reconnectEnd'); } return getLabelAdjustment(label, newWaypoints, oldWaypoints, hints); } this.postExecute([ 'connection.layout', 'connection.reconnectEnd', 'connection.reconnectStart', 'connection.updateWaypoints' ], function(event) { var label = event.context.connection.label, labelAdjustment; if (!label) { return; } if (label.hidden) { labelAdjustment = getHiddenLabelAdjustment(event); } else { labelAdjustment = getVisibleLabelAdjustment(event); } modeling.moveShape(label, labelAdjustment); }); ////// keep label position on shape replace this.postExecute([ 'shape.replace' ], function(event) { var context = event.context, newShape = context.newShape, oldShape = context.oldShape; var businessObject = getBusinessObject(newShape); if (businessObject && hasExternalLabel(businessObject)) { newShape.label.x = oldShape.label.x; newShape.label.y = oldShape.label.y; } }); } inherits(LabelSupport, CommandInterceptor); LabelSupport.$inject = [ 'eventBus', 'modeling', 'bpmnFactory' ]; module.exports = LabelSupport; // TODO(nikku): repeating code (search for ) var EXTERNAL_LABEL_STYLE = { fontFamily: 'Arial, sans-serif', fontSize: '11px' }; function getLayoutedBounds(bounds, text, textUtil) { var layoutedLabelDimensions = textUtil.getDimensions(text, { box: { width: 90, height: 30, x: bounds.width / 2 + bounds.x, y: bounds.height / 2 + bounds.y }, style: EXTERNAL_LABEL_STYLE }); // resize label shape to fit label text return { x: Math.round(bounds.x + bounds.width / 2 - layoutedLabelDimensions.width / 2), y: Math.round(bounds.y), width: Math.ceil(layoutedLabelDimensions.width), height: Math.ceil(layoutedLabelDimensions.height) }; } },{"119":119,"280":280,"289":289,"431":431,"55":55,"94":94,"95":95}],43:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; var COLLAB_ERR_MSG = 'flow elements must be children of pools/participants', PROCESS_ERR_MSG = 'participants cannot be pasted onto a non-empty process diagram'; function ModelingFeedback(eventBus, tooltips, translate) { function showError(position, message, timeout) { tooltips.add({ position: { x: position.x + 5, y: position.y + 5 }, type: 'error', timeout: timeout || 2000, html: '
' + message + '
' }); } eventBus.on([ 'shape.move.rejected', 'create.rejected' ], function(event) { var context = event.context, shape = context.shape, target = context.target; if (is(target, 'bpmn:Collaboration') && is(shape, 'bpmn:FlowNode')) { showError(event, translate(COLLAB_ERR_MSG)); } }); eventBus.on([ 'elements.paste.rejected' ], function(event) { var context = event.context, position = context.position, target = context.target; if (is(target, 'bpmn:Collaboration')) { showError(position, translate(COLLAB_ERR_MSG)); } if (is(target, 'bpmn:Process')) { showError(position, translate(PROCESS_ERR_MSG), 3000); } }); } ModelingFeedback.$inject = [ 'eventBus', 'tooltips', 'translate' ]; module.exports = ModelingFeedback; },{"95":95}],44:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var lineIntersect = _dereq_(57); function RemoveElementBehavior(eventBus, bpmnRules, modeling) { CommandInterceptor.call(this, eventBus); /** * Combine sequence flows when deleting an element * if there is one incoming and one outgoing * sequence flow */ this.preExecute('shape.delete', function(e) { var shape = e.context.shape; if (shape.incoming.length == 1 && shape.outgoing.length == 1) { var inConnection = shape.incoming[0], outConnection = shape.outgoing[0]; if (bpmnRules.canConnect(inConnection.source, outConnection.target, inConnection)) { // compute new, combined waypoints var newWaypoints = getNewWaypoints(inConnection.waypoints, outConnection.waypoints); modeling.reconnectEnd(inConnection, outConnection.target, newWaypoints); } } }); } inherits(RemoveElementBehavior, CommandInterceptor); RemoveElementBehavior.$inject = [ 'eventBus', 'bpmnRules', 'modeling' ]; module.exports = RemoveElementBehavior; ///////// helpers ////////////////////////////// function getDocking(point) { return point.original || point; } function getNewWaypoints(inWaypoints, outWaypoints) { var intersection = lineIntersect( getDocking(inWaypoints[inWaypoints.length - 2]), getDocking(inWaypoints[inWaypoints.length - 1]), getDocking(outWaypoints[1]), getDocking(outWaypoints[0])); if (intersection) { return [].concat( inWaypoints.slice(0, inWaypoints.length - 1), [ intersection ], outWaypoints.slice(1)); } else { return [ getDocking(inWaypoints[0]), getDocking(outWaypoints[outWaypoints.length - 1]) ]; } } },{"119":119,"289":289,"57":57}],45:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; /** * BPMN specific remove behavior */ function RemoveParticipantBehavior(eventBus, modeling) { CommandInterceptor.call(this, eventBus); /** * morph collaboration diagram into process diagram * after the last participant has been removed */ this.preExecute('shape.delete', function(context) { var shape = context.shape, parent = shape.parent; // activate the behavior if the shape to be removed // is a participant if (is(shape, 'bpmn:Participant')) { context.collaborationRoot = parent; } }, true); this.postExecute('shape.delete', function(context) { var collaborationRoot = context.collaborationRoot; if (collaborationRoot && !collaborationRoot.businessObject.participants.length) { // replace empty collaboration with process diagram modeling.makeProcess(); } }, true); } RemoveParticipantBehavior.$inject = [ 'eventBus', 'modeling' ]; inherits(RemoveParticipantBehavior, CommandInterceptor); module.exports = RemoveParticipantBehavior; },{"119":119,"289":289,"95":95}],46:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), find = _dereq_(302), inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; function ReplaceConnectionBehavior(eventBus, modeling, bpmnRules) { CommandInterceptor.call(this, eventBus); function fixConnection(connection) { var source = connection.source, target = connection.target, parent = connection.parent; // do not do anything if connection // is already deleted (may happen due to other // behaviors plugged-in before) if (!parent) { return; } var replacementType, remove; /** * Check if incoming or outgoing connections * can stay or could be substituted with an * appropriate replacement. * * This holds true for SequenceFlow <> MessageFlow. */ if (is(connection, 'bpmn:SequenceFlow')) { if (!bpmnRules.canConnectSequenceFlow(source, target)) { remove = true; } if (bpmnRules.canConnectMessageFlow(source, target)) { replacementType = 'bpmn:MessageFlow'; } } // transform message flows into sequence flows, if possible if (is(connection, 'bpmn:MessageFlow')) { if (!bpmnRules.canConnectMessageFlow(source, target)) { remove = true; } if (bpmnRules.canConnectSequenceFlow(source, target)) { replacementType = 'bpmn:SequenceFlow'; } } if (is(connection, 'bpmn:Association') && !bpmnRules.canConnectAssociation(source, target)) { remove = true; } // remove invalid connection, // unless it has been removed already if (remove) { modeling.removeConnection(connection); } // replace SequenceFlow <> MessageFlow if (replacementType) { modeling.connect(source, target, { type: replacementType, waypoints: connection.waypoints.slice() }); } } this.postExecuted('elements.move', function(context) { var closure = context.closure, allConnections = closure.allConnections; forEach(allConnections, fixConnection); }, true); this.postExecuted([ 'connection.reconnectStart', 'connection.reconnectEnd' ], function(event) { var connection = event.context.connection; fixConnection(connection); }); this.postExecuted('element.updateProperties', function(event) { var context = event.context, properties = context.properties, element = context.element, businessObject = element.businessObject, connection; // remove condition expression when morphing to default flow if (properties.default) { connection = find(element.outgoing, { id: element.businessObject.default.id }); if (connection) { modeling.updateProperties(connection, { conditionExpression: undefined }); } } // remove default property from source when morphing to conditional flow if (properties.conditionExpression && businessObject.sourceRef.default === businessObject) { modeling.updateProperties(element.source, { default: undefined }); } }); } inherits(ReplaceConnectionBehavior, CommandInterceptor); ReplaceConnectionBehavior.$inject = [ 'eventBus', 'modeling', 'bpmnRules' ]; module.exports = ReplaceConnectionBehavior; },{"119":119,"289":289,"302":302,"303":303,"95":95}],47:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var forEach = _dereq_(303); var isEventSubProcess = _dereq_(93).isEventSubProcess; var is = _dereq_(95).is; /** * Defines the behaviour of what happens to the elements inside a container * that morphs into another BPMN element */ function ReplaceElementBehaviour(eventBus, bpmnReplace, bpmnRules, elementRegistry, selection, modeling) { CommandInterceptor.call(this, eventBus); this._bpmnReplace = bpmnReplace; this._elementRegistry = elementRegistry; this._selection = selection; this._modeling = modeling; this.postExecuted([ 'elements.move' ], 500, function(event) { var context = event.context, target = context.newParent, newHost = context.newHost, elements = []; forEach(context.closure.topLevel, function(topLevelElements) { if (isEventSubProcess(topLevelElements)) { elements = elements.concat(topLevelElements.children); } else { elements = elements.concat(topLevelElements); } }); // Change target to host when the moving element is a `bpmn:BoundaryEvent` if (elements.length === 1 && newHost) { target = newHost; } var canReplace = bpmnRules.canReplace(elements, target); if (canReplace) { this.replaceElements(elements, canReplace.replacements, newHost); } }, this); // update attachments if the host is replaced this.postExecute([ 'shape.replace' ], 1500, function(e) { var context = e.context, oldShape = context.oldShape, newShape = context.newShape, attachers = oldShape.attachers, canReplace; if (attachers && attachers.length) { canReplace = bpmnRules.canReplace(attachers, newShape); this.replaceElements(attachers, canReplace.replacements); } }, this); this.postExecuted( [ 'shape.replace' ], 1500, function(e) { var context = e.context, oldShape = context.oldShape, newShape = context.newShape; modeling.unclaimId(oldShape.businessObject.id, oldShape.businessObject); modeling.updateProperties(newShape, { id: oldShape.id }); }); } inherits(ReplaceElementBehaviour, CommandInterceptor); ReplaceElementBehaviour.prototype.replaceElements = function(elements, newElements, newHost) { var elementRegistry = this._elementRegistry, bpmnReplace = this._bpmnReplace, selection = this._selection, modeling = this._modeling; forEach(newElements, function(replacement) { var newElement = { type: replacement.newElementType }; var oldElement = elementRegistry.get(replacement.oldElementId); if (newHost && is(oldElement, 'bpmn:BoundaryEvent')) { modeling.updateAttachment(oldElement, null); } var idx = elements.indexOf(oldElement); elements[idx] = bpmnReplace.replaceElement(oldElement, newElement, { select: false }); if (newHost && is(elements[idx], 'bpmn:BoundaryEvent')) { modeling.updateAttachment(elements[idx], newHost); } }); if (newElements) { selection.select(elements); } }; ReplaceElementBehaviour.$inject = [ 'eventBus', 'bpmnReplace', 'bpmnRules', 'elementRegistry', 'selection', 'modeling' ]; module.exports = ReplaceElementBehaviour; },{"119":119,"289":289,"303":303,"93":93,"95":95}],48:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; var roundBounds = _dereq_(252).roundBounds; var hasPrimaryModifier = _dereq_(274).hasPrimaryModifier; var SLIGHTLY_HIGHER_PRIORITY = 1001; /** * Invoke {@link Modeling#resizeLane} instead of * {@link Modeling#resizeShape} when resizing a Lane * or Participant shape. */ function ResizeLaneBehavior(eventBus, modeling) { eventBus.on('resize.start', SLIGHTLY_HIGHER_PRIORITY + 500, function(event) { var context = event.context, shape = context.shape; if (is(shape, 'bpmn:Lane') || is(shape, 'bpmn:Participant')) { // should we resize the opposite lane(s) in // order to compensate for the resize operation? context.balanced = !hasPrimaryModifier(event); } }); /** * Intercept resize end and call resize lane function instead. */ eventBus.on('resize.end', SLIGHTLY_HIGHER_PRIORITY, function(event) { var context = event.context, shape = context.shape, canExecute = context.canExecute, newBounds = context.newBounds; if (is(shape, 'bpmn:Lane') || is(shape, 'bpmn:Participant')) { if (canExecute) { // ensure we have actual pixel values for new bounds // (important when zoom level was > 1 during move) newBounds = roundBounds(newBounds); // perform the actual resize modeling.resizeLane(shape, newBounds, context.balanced); } // stop propagation return false; } }); } ResizeLaneBehavior.$inject = [ 'eventBus', 'modeling' ]; module.exports = ResizeLaneBehavior; },{"252":252,"274":274,"95":95}],49:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119), getBusinessObject = _dereq_(95).getBusinessObject, is = _dereq_(95).is, computeChildrenBBox = _dereq_(223).computeChildrenBBox; var LOW_PRIORITY = 500; function ToggleElementCollapseBehaviour(eventBus, elementFactory, modeling, resize) { CommandInterceptor.call(this, eventBus); function hideEmptyLables(children) { if (children.length) { children.forEach(function(child) { if (child.type === 'label' && !child.businessObject.name) { child.hidden = true; } }); } } function expandedBounds(shape, defaultSize) { var children = shape.children, newBounds = defaultSize, visibleElements, visibleBBox; visibleElements = filterVisible(children).concat([ shape ]); visibleBBox = computeChildrenBBox(visibleElements); if (visibleBBox) { // center to visibleBBox with max(defaultSize, childrenBounds) newBounds.width = Math.max(visibleBBox.width, newBounds.width); newBounds.height = Math.max(visibleBBox.height, newBounds.height); newBounds.x = visibleBBox.x + (visibleBBox.width - newBounds.width) / 2; newBounds.y = visibleBBox.y + (visibleBBox.height - newBounds.height) / 2; } else { // center to collapsed shape with defaultSize newBounds.x = shape.x + (shape.width - newBounds.width) / 2; newBounds.y = shape.y + (shape.height - newBounds.height) / 2; } return newBounds; } function collapsedBounds(shape, defaultSize) { return { x: shape.x + (shape.width - defaultSize.width) / 2, y: shape.y + (shape.height - defaultSize.height) / 2, width: defaultSize.width, height: defaultSize.height }; } this.executed([ 'shape.toggleCollapse' ], LOW_PRIORITY, function(e) { var context = e.context, shape = context.shape; if (!is(shape, 'bpmn:SubProcess')) { return; } if (!shape.collapsed) { // all children got made visible through djs, hide empty labels hideEmptyLables(shape.children); // remove collapsed marker getBusinessObject(shape).di.isExpanded = true; } else { // place collapsed marker getBusinessObject(shape).di.isExpanded = false; } }); this.reverted([ 'shape.toggleCollapse' ], LOW_PRIORITY, function(e) { var context = e.context; var shape = context.shape; // revert removing/placing collapsed marker if (!shape.collapsed) { getBusinessObject(shape).di.isExpanded = true; } else { getBusinessObject(shape).di.isExpanded = false; } }); this.postExecuted([ 'shape.toggleCollapse' ], LOW_PRIORITY, function(e) { var shape = e.context.shape, defaultSize = elementFactory._getDefaultSize(shape), newBounds; if (shape.collapsed) { // resize to default size of collapsed shapes newBounds = collapsedBounds(shape, defaultSize); } else { // resize to bounds of max(visible children, defaultSize) newBounds = expandedBounds(shape, defaultSize); } modeling.resizeShape(shape, newBounds); }); } inherits(ToggleElementCollapseBehaviour, CommandInterceptor); ToggleElementCollapseBehaviour.$inject = [ 'eventBus', 'elementFactory', 'modeling' ]; module.exports = ToggleElementCollapseBehaviour; /////// helpers /////////////////////////// function filterVisible(elements) { return elements.filter(function(e) { return !e.hidden; }); } },{"119":119,"223":223,"289":289,"95":95}],50:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); function UnclaimIdBehavior(eventBus, modeling) { CommandInterceptor.call(this, eventBus); this.preExecute('elements.delete', function(event) { var context = event.context, elements = context.elements; forEach(elements, function(element) { modeling.unclaimId(element.businessObject.id, element.businessObject); }); }); } inherits(UnclaimIdBehavior, CommandInterceptor); UnclaimIdBehavior.$inject = [ 'eventBus', 'modeling' ]; module.exports = UnclaimIdBehavior; },{"119":119,"289":289,"303":303}],51:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is, getBusinessObject = _dereq_(95).getBusinessObject; /** * A behavior that unsets the Default property of * sequence flow source on element delete, if the * removed element is the Gateway or Task's default flow. * * @param {EventBus} eventBus * @param {Modeling} modeling */ function DeleteSequenceFlowBehavior(eventBus, modeling) { CommandInterceptor.call(this, eventBus); this.preExecute('connection.delete', function(event) { var context = event.context, connection = context.connection, source = connection.source; if (isDefaultFlow(connection, source)) { modeling.updateProperties(source, { 'default': null }); } }); } inherits(DeleteSequenceFlowBehavior, CommandInterceptor); DeleteSequenceFlowBehavior.$inject = [ 'eventBus', 'modeling' ]; module.exports = DeleteSequenceFlowBehavior; /////// helpers /////////////////////////// function isDefaultFlow(connection, source) { if (!is(connection, 'bpmn:SequenceFlow')) { return false; } var sourceBo = getBusinessObject(source), sequenceFlow = getBusinessObject(connection); return sourceBo.get('default') === sequenceFlow; } },{"119":119,"289":289,"95":95}],52:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); var is = _dereq_(95).is; var LOW_PRIORITY = 500, HIGH_PRIORITY = 5000; /** * BPMN specific delete lane behavior */ function UpdateFlowNodeRefsBehavior(eventBus, modeling, translate) { CommandInterceptor.call(this, eventBus); /** * Ok, this is it: * * We have to update the Lane#flowNodeRefs _and_ * FlowNode#lanes with every FlowNode move/resize and * Lane move/resize. * * We want to group that stuff to recompute containments * as efficient as possible. * * Yea! */ // the update context var context; function initContext() { context = context || new UpdateContext(); context.enter(); return context; } function getContext() { if (!context) { throw new Error(translate('out of bounds release')); } return context; } function releaseContext() { if (!context) { throw new Error(translate('out of bounds release')); } var triggerUpdate = context.leave(); if (triggerUpdate) { modeling.updateLaneRefs(context.flowNodes, context.lanes); context = null; } return triggerUpdate; } var laneRefUpdateEvents = [ 'spaceTool', 'lane.add', 'lane.resize', 'lane.split', 'elements.move', 'elements.delete', 'shape.create', 'shape.delete', 'shape.move', 'shape.resize' ]; // listen to a lot of stuff to group lane updates this.preExecute(laneRefUpdateEvents, HIGH_PRIORITY, function(event) { initContext(); }); this.postExecuted(laneRefUpdateEvents, LOW_PRIORITY, function(event) { releaseContext(); }); // Mark flow nodes + lanes that need an update this.preExecute([ 'shape.create', 'shape.move', 'shape.delete', 'shape.resize' ], function(event) { var context = event.context, shape = context.shape; var updateContext = getContext(); // no need to update labels if (shape.labelTarget) { return; } if (is(shape, 'bpmn:Lane')) { updateContext.addLane(shape); } if (is(shape, 'bpmn:FlowNode')) { updateContext.addFlowNode(shape); } }); } UpdateFlowNodeRefsBehavior.$inject = [ 'eventBus', 'modeling' , 'translate']; inherits(UpdateFlowNodeRefsBehavior, CommandInterceptor); module.exports = UpdateFlowNodeRefsBehavior; function UpdateContext() { this.flowNodes = []; this.lanes = []; this.counter = 0; this.addLane = function(lane) { this.lanes.push(lane); }; this.addFlowNode = function(flowNode) { this.flowNodes.push(flowNode); }; this.enter = function() { this.counter++; }; this.leave = function() { this.counter--; return !this.counter; }; } },{"119":119,"289":289,"95":95}],53:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'appendBehavior', 'copyPasteBehavior', 'createBoundaryEventBehavior', 'createDataObjectBehavior', 'dropOnFlowBehavior', 'createParticipantBehavior', 'dataInputAssociationBehavior', 'deleteLaneBehavior', 'importDockingFix', 'labelBehavior', 'modelingFeedback', 'removeParticipantBehavior', 'replaceConnectionBehavior', 'replaceElementBehaviour', 'resizeLaneBehavior', 'unsetDefaultFlowBehavior', 'updateFlowNodeRefsBehavior', 'removeElementBehavior', 'unclaimIdBehavior', 'toggleElementCollapseBehaviour' ], appendBehavior: [ 'type', _dereq_(33) ], copyPasteBehavior: [ 'type', _dereq_(34) ], createBoundaryEventBehavior: [ 'type', _dereq_(35) ], createDataObjectBehavior: [ 'type', _dereq_(36) ], dropOnFlowBehavior: [ 'type', _dereq_(40) ], createParticipantBehavior: [ 'type', _dereq_(37) ], dataInputAssociationBehavior: [ 'type', _dereq_(38) ], deleteLaneBehavior: [ 'type', _dereq_(39) ], importDockingFix: [ 'type', _dereq_(41) ], labelBehavior: [ 'type', _dereq_(42) ], modelingFeedback: [ 'type', _dereq_(43) ], removeParticipantBehavior: [ 'type', _dereq_(45) ], replaceConnectionBehavior: [ 'type', _dereq_(46) ], replaceElementBehaviour: [ 'type', _dereq_(47) ], resizeLaneBehavior: [ 'type', _dereq_(48) ], unsetDefaultFlowBehavior: [ 'type', _dereq_(51) ], updateFlowNodeRefsBehavior: [ 'type', _dereq_(52) ], removeElementBehavior: [ 'type', _dereq_(44) ], unclaimIdBehavior: [ 'type', _dereq_(50) ], toggleElementCollapseBehaviour : [ 'type', _dereq_(49) ] }; },{"33":33,"34":34,"35":35,"36":36,"37":37,"38":38,"39":39,"40":40,"41":41,"42":42,"43":43,"44":44,"45":45,"46":46,"47":47,"48":48,"49":49,"50":50,"51":51,"52":52}],54:[function(_dereq_,module,exports){ 'use strict'; /** * Returns the length of a vector * * @param {Vector} * @return {Float} */ function vectorLength(v) { return Math.sqrt( Math.pow(v.x, 2) + Math.pow(v.y, 2) ); } module.exports.vectorLength = vectorLength; /** * Calculates the angle between a line a the yAxis * * @param {Array} * @return {Float} */ function getAngle(line) { // return value is between 0, 180 and -180, -0 // @janstuemmel: maybe replace return a/b with b/a return Math.atan( (line[1].y - line[0].y) / (line[1].x - line[0].x) ); } module.exports.getAngle = getAngle; /** * Rotates a vector by a given angle * * @param {Vector} * @param {Float} Angle in radians * @return {Vector} */ function rotateVector(vector, angle) { return (!angle) ? vector : { x: Math.cos(angle) * vector.x - Math.sin(angle) * vector.y, y: Math.sin(angle) * vector.x + Math.cos(angle) * vector.y }; } module.exports.rotateVector = rotateVector; /** * Solves a 2D equation system * a + r*b = c, where a,b,c are 2D vectors * * @param {Vector} * @param {Vector} * @param {Vector} * @return {Float} */ function solveLambaSystem(a, b, c) { // the 2d system var system = [ { n: a[0] - c[0], lambda: b[0] }, { n: a[1] - c[1], lambda: b[1] } ]; // solve var n = system[0].n * b[0] + system[1].n * b[1], l = system[0].lambda * b[0] + system[1].lambda * b[1]; return -n/l; } /** * Position of perpendicular foot * * @param {Point} * @param [ {Point}, {Point} ] line defined throug two points * @return {Point} the perpendicular foot position */ function perpendicularFoot(point, line) { var a = line[0], b = line[1]; // relative position of b from a var bd = { x: b.x - a.x, y: b.y - a.y }; // solve equation system to the parametrized vectors param real value var r = solveLambaSystem( [ a.x, a.y ], [ bd.x, bd.y ], [ point.x, point.y ] ); return { x: a.x + r*bd.x, y: a.y + r*bd.y }; } module.exports.perpendicularFoot = perpendicularFoot; /** * Calculates the distance between a point and a line * * @param {Point} * @param [ {Point}, {Point} ] line defined throug two points * @return {Float} distance */ function getDistancePointLine(point, line) { var pfPoint = perpendicularFoot(point, line); // distance vector var connectionVector = { x: pfPoint.x - point.x, y: pfPoint.y - point.y }; return vectorLength(connectionVector); } module.exports.getDistancePointLine = getDistancePointLine; /** * Calculates the distance between two points * * @param {Point} * @param {Point} * @return {Float} distance */ function getDistancePointPoint(point1, point2) { return vectorLength({ x: point1.x - point2.x, y: point1.y - point2.y }); } module.exports.getDistancePointPoint = getDistancePointPoint; },{}],55:[function(_dereq_,module,exports){ 'use strict'; var GeometricUtil = _dereq_(54); var getDistancePointPoint = _dereq_(54).getDistancePointPoint; var getAttachment = _dereq_(56).getAttachment; function findNewLabelLineStartIndex(oldWaypoints, newWaypoints, attachment, hints) { var index = attachment.segmentIndex; var offset = newWaypoints.length - oldWaypoints.length; // segmentMove happend if (hints.segmentMove) { var oldSegmentStartIndex = hints.segmentMove.segmentStartIndex, newSegmentStartIndex = hints.segmentMove.newSegmentStartIndex; // if label was on moved segment return new segment index if (index === oldSegmentStartIndex) { return newSegmentStartIndex; } // label is after new segment index if (index >= newSegmentStartIndex) { return (index+offset < newSegmentStartIndex) ? newSegmentStartIndex : index+offset; } // if label is before new segment index return index; } // bendpointMove happend if (hints.bendpointMove) { var insert = hints.bendpointMove.insert, bendpointIndex = hints.bendpointMove.bendpointIndex, newIndex; // waypoints length didnt change if (offset === 0) { return index; } // label behind new/removed bendpoint if (index >= bendpointIndex) { newIndex = insert ? index + 1 : index - 1; } // label before new/removed bendpoint if (index < bendpointIndex) { newIndex = index; // decide label should take right or left segment if (insert && attachment.type !== 'bendpoint' && bendpointIndex-1 === index) { var rel = relativePositionMidWaypoint(newWaypoints, bendpointIndex); if (rel < attachment.relativeLocation) { newIndex++; } } } return newIndex; } // start/end changed if (offset === 0) { return index; } if (hints.connectionStart) { return (index === 0) ? 0 : null; } if (hints.connectionEnd) { return (index === oldWaypoints.length - 2) ? newWaypoints.length - 2 : null; } // if nothing fits, return null return null; } module.exports.findNewLabelLineStartIndex = findNewLabelLineStartIndex; /** * Calculate the required adjustment (move delta) for the given label * after the connection waypoints got updated. * * @param {djs.model.Label} label * @param {Array} newWaypoints * @param {Array} oldWaypoints * @param {Object} hints * * @return {Point} delta */ function getLabelAdjustment(label, newWaypoints, oldWaypoints, hints) { var x = 0, y = 0; var labelPosition = getLabelMid(label); // get closest attachment var attachment = getAttachment(labelPosition, oldWaypoints), oldLabelLineIndex = attachment.segmentIndex, newLabelLineIndex = findNewLabelLineStartIndex(oldWaypoints, newWaypoints, attachment, hints); if (newLabelLineIndex === null) { return { x: x, y: y }; } // should never happen // TODO(@janstuemmel): throw an error here when connectionSegmentMove is refactored if (newLabelLineIndex < 0 || newLabelLineIndex > newWaypoints.length - 2) { return { x: x, y: y }; } var oldLabelLine = getLine(oldWaypoints, oldLabelLineIndex), newLabelLine = getLine(newWaypoints, newLabelLineIndex), oldFoot = attachment.position; var relativeFootPosition = getRelativeFootPosition(oldLabelLine, oldFoot), angleDelta = getAngleDelta(oldLabelLine, newLabelLine); // special rule if label on bendpoint if (attachment.type === 'bendpoint') { var offset = newWaypoints.length - oldWaypoints.length, oldBendpointIndex = attachment.bendpointIndex, oldBendpoint = oldWaypoints[oldBendpointIndex]; // bendpoint position hasnt changed, return same position if (newWaypoints.indexOf(oldBendpoint) !== -1) { return { x: x, y: y }; } // new bendpoint and old bendpoint have same index, then just return the offset if (offset === 0) { var newBendpoint = newWaypoints[oldBendpointIndex]; return { x: newBendpoint.x - attachment.position.x, y: newBendpoint.y - attachment.position.y }; } // if bendpoints get removed if (offset < 0 && oldBendpointIndex !== 0 && oldBendpointIndex < oldWaypoints.length - 1) { relativeFootPosition = relativePositionMidWaypoint(oldWaypoints, oldBendpointIndex); } } var newFoot = { x: (newLabelLine[1].x - newLabelLine[0].x) * relativeFootPosition + newLabelLine[0].x, y: (newLabelLine[1].y - newLabelLine[0].y) * relativeFootPosition + newLabelLine[0].y }; // the rotated vector to label var newLabelVector = GeometricUtil.rotateVector({ x: labelPosition.x - oldFoot.x, y: labelPosition.y - oldFoot.y }, angleDelta); // the new relative position x = newFoot.x + newLabelVector.x - labelPosition.x; y = newFoot.y + newLabelVector.y - labelPosition.y; return { x: x, y: y }; } module.exports.getLabelAdjustment = getLabelAdjustment; //// HELPERS /////// function relativePositionMidWaypoint(waypoints, idx) { var distanceSegment1 = getDistancePointPoint(waypoints[idx-1], waypoints[idx]), distanceSegment2 = getDistancePointPoint(waypoints[idx], waypoints[idx+1]); var relativePosition = distanceSegment1 / ( distanceSegment1 + distanceSegment2 ); return relativePosition; } function getLabelMid(label) { return { x: label.x + label.width / 2, y: label.y + label.height / 2 }; } function getAngleDelta(l1, l2) { var a1 = GeometricUtil.getAngle(l1), a2 = GeometricUtil.getAngle(l2); return a2 - a1; } function getLine(waypoints, idx) { return [ waypoints[idx], waypoints[idx+1] ]; } function getRelativeFootPosition(line, foot) { var length = getDistancePointPoint(line[0], line[1]), lengthToFoot = getDistancePointPoint(line[0], foot); return length === 0 ? 0 : lengthToFoot / length; } },{"54":54,"56":56}],56:[function(_dereq_,module,exports){ 'use strict'; var sqrt = Math.sqrt, min = Math.min, max = Math.max, abs = Math.abs; /** * Calculate the square (power to two) of a number. * * @param {Number} n * * @return {Number} */ function sq(n) { return Math.pow(n, 2); } /** * Get distance between two points. * * @param {Point} p1 * @param {Point} p2 * * @return {Number} */ function getDistance(p1, p2) { return sqrt(sq(p1.x - p2.x) + sq(p1.y - p2.y)); } /** * Return the attachment of the given point on the specified line. * * The attachment is either a bendpoint (attached to the given point) * or segment (attached to a location on a line segment) attachment: * * ```javascript * var pointAttachment = { * type: 'bendpoint', * bendpointIndex: 3, * position: { x: 10, y: 10 } // the attach point on the line * }; * * var segmentAttachment = { * type: 'segment', * segmentIndex: 2, * relativeLocation: 0.31, // attach point location between 0 (at start) and 1 (at end) * position: { x: 10, y: 10 } // the attach point on the line * }; * ``` * * @param {Point} point * @param {Array} line * * @return {Object} attachment */ function getAttachment(point, line) { var idx = 0, segmentStart, segmentEnd, segmentStartDistance, segmentEndDistance, attachmentPosition, minDistance, intersections, attachment, attachmentDistance, closestAttachmentDistance, closestAttachment; for (idx = 0; idx < line.length - 1; idx++) { segmentStart = line[idx]; segmentEnd = line[idx + 1]; if (pointsEqual(segmentStart, segmentEnd)) { intersections = [ segmentStart ]; } else { segmentStartDistance = getDistance(point, segmentStart); segmentEndDistance = getDistance(point, segmentEnd); minDistance = min(segmentStartDistance, segmentEndDistance); intersections = getCircleSegmentIntersections(segmentStart, segmentEnd, point, minDistance); } if (intersections.length < 1) { throw new Error('expected between [1, 2] circle -> line intersections'); } // one intersection -> bendpoint attachment if (intersections.length === 1) { attachment = { type: 'bendpoint', position: intersections[0], segmentIndex: idx, bendpointIndex: pointsEqual(segmentStart, intersections[0]) ? idx : idx + 1 }; } // two intersections -> segment attachment if (intersections.length === 2) { attachmentPosition = mid(intersections[0], intersections[1]); attachment = { type: 'segment', position: attachmentPosition, segmentIndex: idx, relativeLocation: getDistance(segmentStart, attachmentPosition) / getDistance(segmentStart, segmentEnd) }; } attachmentDistance = getDistance(attachment.position, point); if (!closestAttachment || closestAttachmentDistance > attachmentDistance) { closestAttachment = attachment; closestAttachmentDistance = attachmentDistance; } } return closestAttachment; } module.exports.getAttachment = getAttachment; /** * Gets the intersection between a circle and a line segment. * * @param {Point} s1 segment start * @param {Point} s2 segment end * @param {Point} cc circle center * @param {Number} cr circle radius * * @return {Array} intersections */ function getCircleSegmentIntersections(s1, s2, cc, cr) { var baX = s2.x - s1.x; var baY = s2.y - s1.y; var caX = cc.x - s1.x; var caY = cc.y - s1.y; var a = baX * baX + baY * baY; var bBy2 = baX * caX + baY * caY; var c = caX * caX + caY * caY - cr * cr; var pBy2 = bBy2 / a; var q = c / a; var disc = pBy2 * pBy2 - q; // check against negative value to work around // negative, very close to zero results (-4e-15) // being produced in some environments if (disc < 0 && disc > -0.000001) { disc = 0; } if (disc < 0) { return []; } // if disc == 0 ... dealt with later var tmpSqrt = sqrt(disc); var abScalingFactor1 = -pBy2 + tmpSqrt; var abScalingFactor2 = -pBy2 - tmpSqrt; var i1 = { x: s1.x - baX * abScalingFactor1, y: s1.y - baY * abScalingFactor1 }; if (disc === 0) { // abScalingFactor1 == abScalingFactor2 return [ i1 ]; } var i2 = { x: s1.x - baX * abScalingFactor2, y: s1.y - baY * abScalingFactor2 }; // return only points on line segment return [ i1, i2 ].filter(function(p) { return isPointInSegment(p, s1, s2); }); } function isPointInSegment(p, segmentStart, segmentEnd) { return ( fenced(p.x, segmentStart.x, segmentEnd.x) && fenced(p.y, segmentStart.y, segmentEnd.y) ); } function fenced(n, rangeStart, rangeEnd) { // use matching threshold to work around // precisison errors in intersection computation return ( n >= min(rangeStart, rangeEnd) - EQUAL_THRESHOLD && n <= max(rangeStart, rangeEnd) + EQUAL_THRESHOLD ); } /** * Calculate mid of two points. * * @param {Point} p1 * @param {Point} p2 * * @return {Point} */ function mid(p1, p2) { return { x: (p1.x + p2.x) / 2, y: (p1.y + p2.y) / 2 }; } var EQUAL_THRESHOLD = 0.1; function pointsEqual(p1, p2) { return ( abs(p1.x - p2.x) <= EQUAL_THRESHOLD && abs(p1.y - p2.y) <= EQUAL_THRESHOLD ); } },{}],57:[function(_dereq_,module,exports){ 'use strict'; /** * Returns the intersection between two line segments a and b. * * @param {Point} l1s * @param {Point} l1e * @param {Point} l2s * @param {Point} l2e * * @return {Point} */ module.exports = function lineIntersect(l1s, l1e, l2s, l2e) { // if the lines intersect, the result contains the x and y of the // intersection (treating the lines as infinite) and booleans for // whether line segment 1 or line segment 2 contain the point var denominator, a, b, c, numerator; denominator = ((l2e.y - l2s.y) * (l1e.x - l1s.x)) - ((l2e.x - l2s.x) * (l1e.y - l1s.y)); if (denominator == 0) { return null; } a = l1s.y - l2s.y; b = l1s.x - l2s.x; numerator = ((l2e.x - l2s.x) * a) - ((l2e.y - l2s.y) * b); c = numerator / denominator; // if we cast these lines infinitely in // both directions, they intersect here return { x: Math.round(l1s.x + (c * (l1e.x - l1s.x))), y: Math.round(l1s.y + (c * (l1e.y - l1s.y))) }; }; },{}],58:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301); var Elements = _dereq_(266); var getLanesRoot = _dereq_(67).getLanesRoot, getChildLanes = _dereq_(67).getChildLanes, LANE_INDENTATION = _dereq_(67).LANE_INDENTATION; /** * A handler that allows us to add a new lane * above or below an existing one. * * @param {Modeling} modeling */ function AddLaneHandler(modeling, spaceTool) { this._modeling = modeling; this._spaceTool = spaceTool; } AddLaneHandler.$inject = [ 'modeling', 'spaceTool' ]; module.exports = AddLaneHandler; AddLaneHandler.prototype.preExecute = function(context) { var spaceTool = this._spaceTool, modeling = this._modeling; var shape = context.shape, location = context.location; var lanesRoot = getLanesRoot(shape); var isRoot = lanesRoot === shape, laneParent = isRoot ? shape : shape.parent; var existingChildLanes = getChildLanes(laneParent); // (0) add a lane if we currently got none and are adding to root if (!existingChildLanes.length) { modeling.createShape({ type: 'bpmn:Lane' }, { x: shape.x + LANE_INDENTATION, y: shape.y, width: shape.width - LANE_INDENTATION, height: shape.height }, laneParent); } // (1) collect affected elements to create necessary space var allAffected = []; Elements.eachElement(lanesRoot, function(element) { allAffected.push(element); if (element === shape) { return []; } return filter(element.children, function(c) { return c !== shape; }); }); var offset = location === 'top' ? -120 : 120, lanePosition = location === 'top' ? shape.y : shape.y + shape.height, spacePos = lanePosition + (location === 'top' ? 10 : -10), direction = location === 'top' ? 'n' : 's'; var adjustments = spaceTool.calculateAdjustments(allAffected, 'y', offset, spacePos); spaceTool.makeSpace(adjustments.movingShapes, adjustments.resizingShapes, { x: 0, y: offset }, direction); // (2) create new lane at open space context.newLane = modeling.createShape({ type: 'bpmn:Lane' }, { x: shape.x + (isRoot ? LANE_INDENTATION : 0), y: lanePosition - (location === 'top' ? 120 : 0), width: shape.width - (isRoot ? LANE_INDENTATION : 0), height: 120 }, laneParent); }; },{"266":266,"301":301,"67":67}],59:[function(_dereq_,module,exports){ 'use strict'; function IdClaimHandler(moddle) { this._moddle = moddle; } IdClaimHandler.$inject = [ 'moddle' ]; module.exports = IdClaimHandler; IdClaimHandler.prototype.execute = function(context) { var ids = this._moddle.ids, id = context.id, element = context.element, claiming = context.claiming; if (claiming) { ids.claim(id, element); } else { ids.unclaim(id); } }; /** * Command revert implementation. */ IdClaimHandler.prototype.revert = function(context) { var ids = this._moddle.ids, id = context.id, element = context.element, claiming = context.claiming; if (claiming) { ids.unclaim(id); } else { ids.claim(id, element); } }; },{}],60:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; var getLanesRoot = _dereq_(67).getLanesRoot, computeLanesResize = _dereq_(67).computeLanesResize; var eachElement = _dereq_(266).eachElement; var asTRBL = _dereq_(252).asTRBL, substractTRBL = _dereq_(223).substractTRBL; /** * A handler that resizes a lane. * * @param {Modeling} modeling */ function ResizeLaneHandler(modeling, spaceTool) { this._modeling = modeling; this._spaceTool = spaceTool; } ResizeLaneHandler.$inject = [ 'modeling', 'spaceTool' ]; module.exports = ResizeLaneHandler; ResizeLaneHandler.prototype.preExecute = function(context) { var shape = context.shape, newBounds = context.newBounds, balanced = context.balanced; if (balanced !== false) { this.resizeBalanced(shape, newBounds); } else { this.resizeSpace(shape, newBounds); } }; /** * Resize balanced, adjusting next / previous lane sizes. * * @param {djs.model.Shape} shape * @param {Bounds} newBounds */ ResizeLaneHandler.prototype.resizeBalanced = function(shape, newBounds) { var modeling = this._modeling; var resizeNeeded = computeLanesResize(shape, newBounds); // resize the lane modeling.resizeShape(shape, newBounds); // resize other lanes as needed resizeNeeded.forEach(function(r) { modeling.resizeShape(r.shape, r.newBounds); }); }; /** * Resize, making actual space and moving below / above elements. * * @param {djs.model.Shape} shape * @param {Bounds} newBounds */ ResizeLaneHandler.prototype.resizeSpace = function(shape, newBounds) { var spaceTool = this._spaceTool; var shapeTrbl = asTRBL(shape), newTrbl = asTRBL(newBounds); var trblDiff = substractTRBL(newTrbl, shapeTrbl); var lanesRoot = getLanesRoot(shape); var allAffected = [], allLanes = []; eachElement(lanesRoot, function(element) { allAffected.push(element); if (is(element, 'bpmn:Lane') || is(element, 'bpmn:Participant')) { allLanes.push(element); } return element.children; }); var change, spacePos, direction, offset, adjustments; if (trblDiff.bottom || trblDiff.top) { change = trblDiff.bottom || trblDiff.top; spacePos = shape.y + (trblDiff.bottom ? shape.height : 0) + (trblDiff.bottom ? -10 : 10); direction = trblDiff.bottom ? 's' : 'n'; offset = trblDiff.top > 0 || trblDiff.bottom < 0 ? -change : change; adjustments = spaceTool.calculateAdjustments(allAffected, 'y', offset, spacePos); spaceTool.makeSpace(adjustments.movingShapes, adjustments.resizingShapes, { x: 0, y: change }, direction); } if (trblDiff.left || trblDiff.right) { change = trblDiff.right || trblDiff.left; spacePos = shape.x + (trblDiff.right ? shape.width : 0) + (trblDiff.right ? -10 : 100); direction = trblDiff.right ? 'e' : 'w'; offset = trblDiff.left > 0 || trblDiff.right < 0 ? -change : change; adjustments = spaceTool.calculateAdjustments(allLanes, 'x', offset, spacePos); spaceTool.makeSpace(adjustments.movingShapes, adjustments.resizingShapes, { x: change, y: 0 }, direction); } }; },{"223":223,"252":252,"266":266,"67":67,"95":95}],61:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303); function SetColorHandler(commandStack) { this._commandStack = commandStack; } SetColorHandler.$inject = [ 'commandStack' ]; module.exports = SetColorHandler; SetColorHandler.prototype.postExecute = function(context) { var elements = context.elements, colors = context.colors || { fill: undefined, stroke: undefined }; var that = this; var di = {}; if ('fill' in colors) { assign(di, { fill: colors.fill }); } if ('stroke' in colors) { assign(di, { stroke: colors.stroke }); } forEach(elements, function(element) { that._commandStack.execute('element.updateProperties', { element: element, properties: { di: di } }); }); }; SetColorHandler.prototype.execute = function(context) {}; SetColorHandler.prototype.revert = function(context) {}; },{"303":303,"431":431}],62:[function(_dereq_,module,exports){ 'use strict'; var getChildLanes = _dereq_(67).getChildLanes; var LANE_INDENTATION = _dereq_(67).LANE_INDENTATION; /** * A handler that splits a lane into a number of sub-lanes, * creating new sub lanes, if neccessary. * * @param {Modeling} modeling */ function SplitLaneHandler(modeling, translate) { this._modeling = modeling; this._translate = translate; } SplitLaneHandler.$inject = [ 'modeling', 'translate']; module.exports = SplitLaneHandler; SplitLaneHandler.prototype.preExecute = function(context) { var modeling = this._modeling, translate = this._translate; var shape = context.shape, newLanesCount = context.count; var childLanes = getChildLanes(shape), existingLanesCount = childLanes.length; if (existingLanesCount > newLanesCount) { throw new Error(translate('more than {count} child lanes', { count: newLanesCount })); } var newLanesHeight = Math.round(shape.height / newLanesCount); // Iterate from top to bottom in child lane order, // resizing existing lanes and creating new ones // so that they split the parent proportionally. // // Due to rounding related errors, the bottom lane // needs to take up all the remaining space. var laneY, laneHeight, laneBounds, newLaneAttrs, idx; for (idx = 0; idx < newLanesCount; idx++) { laneY = shape.y + idx * newLanesHeight; // if bottom lane if (idx === newLanesCount - 1) { laneHeight = shape.height - (newLanesHeight * idx); } else { laneHeight = newLanesHeight; } laneBounds = { x: shape.x + LANE_INDENTATION, y: laneY, width: shape.width - LANE_INDENTATION, height: laneHeight }; if (idx < existingLanesCount) { // resize existing lane modeling.resizeShape(childLanes[idx], laneBounds); } else { // create a new lane at position newLaneAttrs = { type: 'bpmn:Lane' }; modeling.createShape(newLaneAttrs, laneBounds, shape); } } }; },{"67":67}],63:[function(_dereq_,module,exports){ 'use strict'; var Collections = _dereq_(263); function UpdateCanvasRootHandler(canvas, modeling) { this._canvas = canvas; this._modeling = modeling; } UpdateCanvasRootHandler.$inject = [ 'canvas', 'modeling' ]; module.exports = UpdateCanvasRootHandler; UpdateCanvasRootHandler.prototype.execute = function(context) { var canvas = this._canvas; var newRoot = context.newRoot, newRootBusinessObject = newRoot.businessObject, oldRoot = canvas.getRootElement(), oldRootBusinessObject = oldRoot.businessObject, bpmnDefinitions = oldRootBusinessObject.$parent, diPlane = oldRootBusinessObject.di; // (1) replace process old <> new root canvas.setRootElement(newRoot, true); // (2) update root elements Collections.add(bpmnDefinitions.rootElements, newRootBusinessObject); newRootBusinessObject.$parent = bpmnDefinitions; Collections.remove(bpmnDefinitions.rootElements, oldRootBusinessObject); oldRootBusinessObject.$parent = null; // (3) wire di oldRootBusinessObject.di = null; diPlane.bpmnElement = newRootBusinessObject; newRootBusinessObject.di = diPlane; context.oldRoot = oldRoot; // TODO(nikku): return changed elements? // return [ newRoot, oldRoot ]; }; UpdateCanvasRootHandler.prototype.revert = function(context) { var canvas = this._canvas; var newRoot = context.newRoot, newRootBusinessObject = newRoot.businessObject, oldRoot = context.oldRoot, oldRootBusinessObject = oldRoot.businessObject, bpmnDefinitions = newRootBusinessObject.$parent, diPlane = newRootBusinessObject.di; // (1) replace process old <> new root canvas.setRootElement(oldRoot, true); // (2) update root elements Collections.remove(bpmnDefinitions.rootElements, newRootBusinessObject); newRootBusinessObject.$parent = null; Collections.add(bpmnDefinitions.rootElements, oldRootBusinessObject); oldRootBusinessObject.$parent = bpmnDefinitions; // (3) wire di newRootBusinessObject.di = null; diPlane.bpmnElement = oldRootBusinessObject; oldRootBusinessObject.di = diPlane; // TODO(nikku): return changed elements? // return [ newRoot, oldRoot ]; }; },{"263":263}],64:[function(_dereq_,module,exports){ 'use strict'; var collectLanes = _dereq_(67).collectLanes; var getLanesRoot = _dereq_(67).getLanesRoot; var is = _dereq_(95).is; var Collections = _dereq_(263); var asTRBL = _dereq_(252).asTRBL; var FLOW_NODE_REFS_ATTR = 'flowNodeRef', LANES_ATTR = 'lanes'; /** * A handler that updates lane refs on changed elements */ function UpdateFlowNodeRefsHandler(elementRegistry) { this._elementRegistry = elementRegistry; } UpdateFlowNodeRefsHandler.$inject = [ 'elementRegistry' ]; module.exports = UpdateFlowNodeRefsHandler; UpdateFlowNodeRefsHandler.prototype.computeUpdates = function(flowNodeShapes, laneShapes) { var handledNodes = {}; var updates = []; var participantCache = {}; var allFlowNodeShapes = []; function isInLaneShape(element, laneShape) { var laneTrbl = asTRBL(laneShape); var elementMid = { x: element.x + element.width / 2, y: element.y + element.height / 2 }; return elementMid.x > laneTrbl.left && elementMid.x < laneTrbl.right && elementMid.y > laneTrbl.top && elementMid.y < laneTrbl.bottom; } function addFlowNodeShape(flowNodeShape) { if (!handledNodes[flowNodeShape.id]) { allFlowNodeShapes.push(flowNodeShape); handledNodes[flowNodeShape.id] = flowNodeShape; } } function getAllLaneShapes(flowNodeShape) { var root = getLanesRoot(flowNodeShape); if (!participantCache[root.id]) { participantCache[root.id] = collectLanes(root); } return participantCache[root.id]; } function getNewLanes(flowNodeShape) { if (!flowNodeShape.parent) { return []; } var allLaneShapes = getAllLaneShapes(flowNodeShape); return allLaneShapes.filter(function(l) { return isInLaneShape(flowNodeShape, l); }).map(function(shape) { return shape.businessObject; }); } laneShapes.forEach(function(laneShape) { var root = getLanesRoot(laneShape); if (!root || handledNodes[root.id]) { return; } var children = root.children.filter(function(c) { return is(c, 'bpmn:FlowNode'); }); children.forEach(addFlowNodeShape); handledNodes[root.id] = root; }); flowNodeShapes.forEach(addFlowNodeShape); allFlowNodeShapes.forEach(function(flowNodeShape) { var flowNode = flowNodeShape.businessObject; var lanes = flowNode.get(LANES_ATTR), remove = lanes.slice(), add = getNewLanes(flowNodeShape); updates.push({ flowNode: flowNode, remove: remove, add: add }); }); laneShapes.forEach(function(laneShape) { var lane = laneShape.businessObject; // lane got removed XX-) if (!laneShape.parent) { lane.get(FLOW_NODE_REFS_ATTR).forEach(function(flowNode) { updates.push({ flowNode: flowNode, remove: [ lane ], add: [] }); }); } }); return updates; }; UpdateFlowNodeRefsHandler.prototype.execute = function(context) { var updates = context.updates; if (!updates) { updates = context.updates = this.computeUpdates(context.flowNodeShapes, context.laneShapes); } updates.forEach(function(update) { var flowNode = update.flowNode, lanes = flowNode.get(LANES_ATTR); // unwire old update.remove.forEach(function(oldLane) { Collections.remove(lanes, oldLane); Collections.remove(oldLane.get(FLOW_NODE_REFS_ATTR), flowNode); }); // wire new update.add.forEach(function(newLane) { Collections.add(lanes, newLane); Collections.add(newLane.get(FLOW_NODE_REFS_ATTR), flowNode); }); }); // TODO(nikku): return changed elements // return [ ... ]; }; UpdateFlowNodeRefsHandler.prototype.revert = function(context) { var updates = context.updates; updates.forEach(function(update) { var flowNode = update.flowNode, lanes = flowNode.get(LANES_ATTR); // unwire new update.add.forEach(function(newLane) { Collections.remove(lanes, newLane); Collections.remove(newLane.get(FLOW_NODE_REFS_ATTR), flowNode); }); // wire old update.remove.forEach(function(oldLane) { Collections.add(lanes, oldLane); Collections.add(oldLane.get(FLOW_NODE_REFS_ATTR), flowNode); }); }); // TODO(nikku): return changed elements // return [ ... ]; }; },{"252":252,"263":263,"67":67,"95":95}],65:[function(_dereq_,module,exports){ 'use strict'; var reduce = _dereq_(439), keys = _dereq_(433), forEach = _dereq_(303), assign = _dereq_(431); var getBusinessObject = _dereq_(95).getBusinessObject; var TextUtil = _dereq_(280); var DEFAULT_FLOW = 'default', NAME = 'name', ID = 'id', DI = 'di'; var NULL_DIMENSIONS = { width: 0, height: 0 }; /** * A handler that implements a BPMN 2.0 property update. * * This should be used to set simple properties on elements with * an underlying BPMN business object. * * Use respective diagram-js provided handlers if you would * like to perform automated modeling. */ function UpdatePropertiesHandler(elementRegistry, moddle, translate, modeling) { this._elementRegistry = elementRegistry; this._moddle = moddle; this._translate = translate; this._modeling = modeling; this._textUtil = new TextUtil(); } UpdatePropertiesHandler.$inject = [ 'elementRegistry', 'moddle', 'translate', 'modeling' ]; module.exports = UpdatePropertiesHandler; ////// api ///////////////////////////////////////////// /** * Updates a BPMN element with a list of new properties * * @param {Object} context * @param {djs.model.Base} context.element the element to update * @param {Object} context.properties a list of properties to set on the element's * businessObject (the BPMN model element) * * @return {Array} the updated element */ UpdatePropertiesHandler.prototype.execute = function(context) { var element = context.element, changed = [ element ], translate = this._translate; if (!element) { throw new Error(translate('element required')); } var elementRegistry = this._elementRegistry, ids = this._moddle.ids; var businessObject = element.businessObject, properties = unwrapBusinessObjects(context.properties), oldProperties = context.oldProperties || getProperties(businessObject, properties); if (isIdChange(properties, businessObject)) { ids.unclaim(businessObject[ID]); elementRegistry.updateId(element, properties[ID]); ids.claim(properties[ID], businessObject); } // correctly indicate visual changes on default flow updates if (DEFAULT_FLOW in properties) { if (properties[DEFAULT_FLOW]) { changed.push(elementRegistry.get(properties[DEFAULT_FLOW].id)); } if (businessObject[DEFAULT_FLOW]) { changed.push(elementRegistry.get(businessObject[DEFAULT_FLOW].id)); } } if (NAME in properties && element.label) { changed.push(element.label); // show the label element.label.hidden = !properties[NAME]; } if (DI in properties && businessObject.di) { setDiProperties(businessObject.di, properties.di); } // update properties setProperties(businessObject, properties); // store old values context.oldProperties = oldProperties; context.changed = changed; // indicate changed on objects affected by the update return changed; }; UpdatePropertiesHandler.prototype.postExecute = function(context) { var element = context.element, label = element.label; var text = label && getBusinessObject(label).name; if (!text) { return; } // get layouted text bounds and resize external // external label accordingly var newLabelBounds = getLayoutedBounds(label, text, this._textUtil); this._modeling.resizeShape(label, newLabelBounds, NULL_DIMENSIONS); }; /** * Reverts the update on a BPMN elements properties. * * @param {Object} context * * @return {djs.model.Base} the updated element */ UpdatePropertiesHandler.prototype.revert = function(context) { var element = context.element, properties = context.properties, oldProperties = context.oldProperties, businessObject = element.businessObject, elementRegistry = this._elementRegistry, ids = this._moddle.ids; if (DI in oldProperties && businessObject.di) { setDiProperties(businessObject.di, oldProperties.di); } // update properties setProperties(businessObject, oldProperties); if (isIdChange(properties, businessObject)) { ids.unclaim(properties[ID]); elementRegistry.updateId(element, oldProperties[ID]); ids.claim(oldProperties[ID], businessObject); } return context.changed; }; function isIdChange(properties, businessObject) { return ID in properties && properties[ID] !== businessObject[ID]; } function getProperties(businessObject, properties) { var propertyNames = keys(properties); return reduce(propertyNames, function(result, key) { // handle DI seperately if (key !== DI) { result[key] = businessObject.get(key); } else { result[key] = getDiProperties(businessObject.di, keys(properties.di)); } return result; }, {}); } function getDiProperties(di, propertyNames) { return reduce(propertyNames, function(result, key) { result[key] = di.get(key); return result; }, {}); } function setProperties(businessObject, properties) { forEach(properties, function(value, key) { businessObject.set(key, value); }); } function setDiProperties(di, properties) { forEach(properties, function(value, key) { di.set(key, value); }); } var referencePropertyNames = [ 'default' ]; /** * Make sure we unwrap the actual business object * behind diagram element that may have been * passed as arguments. * * @param {Object} properties * * @return {Object} unwrappedProps */ function unwrapBusinessObjects(properties) { var unwrappedProps = assign({}, properties); referencePropertyNames.forEach(function(name) { if (name in properties) { unwrappedProps[name] = getBusinessObject(unwrappedProps[name]); } }); return unwrappedProps; } // TODO(nikku): repeating code (search for ) var EXTERNAL_LABEL_STYLE = { fontFamily: 'Arial, sans-serif', fontSize: '11px' }; function getLayoutedBounds(bounds, text, textUtil) { var layoutedLabelDimensions = textUtil.getDimensions(text, { box: { width: 90, height: 30, x: bounds.width / 2 + bounds.x, y: bounds.height / 2 + bounds.y }, style: EXTERNAL_LABEL_STYLE }); // resize label shape to fit label text return { x: Math.round(bounds.x + bounds.width / 2 - layoutedLabelDimensions.width / 2), y: Math.round(bounds.y), width: Math.ceil(layoutedLabelDimensions.width), height: Math.ceil(layoutedLabelDimensions.height) }; } },{"280":280,"303":303,"431":431,"433":433,"439":439,"95":95}],66:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'modeling', 'bpmnUpdater' ], __depends__: [ _dereq_(53), _dereq_(27), _dereq_(82), _dereq_(70), _dereq_(80), _dereq_(121), _dereq_(244), _dereq_(174), _dereq_(135), _dereq_(233), _dereq_(147), _dereq_(240) ], bpmnFactory: [ 'type', _dereq_(28) ], bpmnUpdater: [ 'type', _dereq_(30) ], elementFactory: [ 'type', _dereq_(31) ], modeling: [ 'type', _dereq_(32) ], layouter: [ 'type', _dereq_(29) ], connectionDocking: [ 'type', _dereq_(251) ] }; },{"121":121,"135":135,"147":147,"174":174,"233":233,"240":240,"244":244,"251":251,"27":27,"28":28,"29":29,"30":30,"31":31,"32":32,"53":53,"70":70,"80":80,"82":82}],67:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is; var getParent = _dereq_(68).getParent; var asTRBL = _dereq_(252).asTRBL, substractTRBL = _dereq_(223).substractTRBL, resizeTRBL = _dereq_(223).resizeTRBL; var abs = Math.abs; function getTRBLResize(oldBounds, newBounds) { return substractTRBL(asTRBL(newBounds), asTRBL(oldBounds)); } var LANE_PARENTS = [ 'bpmn:Participant', 'bpmn:Process', 'bpmn:SubProcess' ]; var LANE_INDENTATION = 30; module.exports.LANE_INDENTATION = LANE_INDENTATION; /** * Collect all lane shapes in the given paren * * @param {djs.model.Shape} shape * @param {Array} [collectedShapes] * * @return {Array} */ function collectLanes(shape, collectedShapes) { collectedShapes = collectedShapes || []; shape.children.filter(function(s) { if (is(s, 'bpmn:Lane')) { collectLanes(s, collectedShapes); collectedShapes.push(s); } }); return collectedShapes; } module.exports.collectLanes = collectLanes; /** * Return the lane children of the given element. * * @param {djs.model.Shape} shape * * @return {Array} */ function getChildLanes(shape) { return shape.children.filter(function(c) { return is(c, 'bpmn:Lane'); }); } module.exports.getChildLanes = getChildLanes; /** * Return the root element containing the given lane shape * * @param {djs.model.Shape} shape * * @return {djs.model.Shape} */ function getLanesRoot(shape) { return getParent(shape, LANE_PARENTS) || shape; } module.exports.getLanesRoot = getLanesRoot; /** * Compute the required resize operations for lanes * adjacent to the given shape, assuming it will be * resized to the given new bounds. * * @param {djs.model.Shape} shape * @param {Bounds} newBounds * * @return {Array} */ function computeLanesResize(shape, newBounds) { var rootElement = getLanesRoot(shape); var initialShapes = is(rootElement, 'bpmn:Process') ? [] : [ rootElement ]; var allLanes = collectLanes(rootElement, initialShapes), shapeTrbl = asTRBL(shape), shapeNewTrbl = asTRBL(newBounds), trblResize = getTRBLResize(shape, newBounds), resizeNeeded = []; allLanes.forEach(function(other) { if (other === shape) { return; } var topResize = 0, rightResize = trblResize.right, bottomResize = 0, leftResize = trblResize.left; var otherTrbl = asTRBL(other); if (trblResize.top) { if (abs(otherTrbl.bottom - shapeTrbl.top) < 10) { bottomResize = shapeNewTrbl.top - otherTrbl.bottom; } if (abs(otherTrbl.top - shapeTrbl.top) < 5) { topResize = shapeNewTrbl.top - otherTrbl.top; } } if (trblResize.bottom) { if (abs(otherTrbl.top - shapeTrbl.bottom) < 10) { topResize = shapeNewTrbl.bottom - otherTrbl.top; } if (abs(otherTrbl.bottom - shapeTrbl.bottom) < 5) { bottomResize = shapeNewTrbl.bottom - otherTrbl.bottom; } } if (topResize || rightResize || bottomResize || leftResize) { resizeNeeded.push({ shape: other, newBounds: resizeTRBL(other, { top: topResize, right: rightResize, bottom: bottomResize, left: leftResize }) }); } }); return resizeNeeded; } module.exports.computeLanesResize = computeLanesResize; },{"223":223,"252":252,"68":68,"95":95}],68:[function(_dereq_,module,exports){ 'use strict'; var any = _dereq_(299); var is = _dereq_(95).is; /** * Return true if element has any of the given types. * * @param {djs.model.Base} element * @param {Array} types * * @return {Boolean} */ function isAny(element, types) { return any(types, function(t) { return is(element, t); }); } module.exports.isAny = isAny; /** * Return the parent of the element with any of the given types. * * @param {djs.model.Base} element * @param {String|Array} anyType * * @return {djs.model.Base} */ function getParent(element, anyType) { if (typeof anyType === 'string') { anyType = [ anyType ]; } while ((element = element.parent)) { if (isAny(element, anyType)) { return element; } } return null; } module.exports.getParent = getParent; },{"299":299,"95":95}],69:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var OrderingProvider = _dereq_(207); var isAny = _dereq_(68).isAny; var findIndex = _dereq_(290); var find = _dereq_(302); /** * a simple ordering provider that makes sure: * * (1) elements are ordered by a {level} property * (2) elements with {alwaysOnTop} are always added to the root */ function BpmnOrderingProvider(eventBus, translate) { OrderingProvider.call(this, eventBus); var orders = [ { type: 'bpmn:SubProcess', order: { level: 6 } }, { type: 'bpmn:SequenceFlow', order: { level: 5, containers: [ 'bpmn:Participant', 'bpmn:FlowElementsContainer' ] } }, // handle DataAssociation(s) like message flows and render them always on top { type: 'bpmn:DataAssociation', order: { level: 9, containers: [ 'bpmn:Collaboration', 'bpmn:Process' ] } }, { type: 'bpmn:MessageFlow', order: { level: 9, containers: [ 'bpmn:Collaboration' ] } }, { type: 'bpmn:Association', order: { level: 6, containers: [ 'bpmn:Participant', 'bpmn:FlowElementsContainer', 'bpmn:Collaboration' ] } }, { type: 'bpmn:BoundaryEvent', order: { level: 8 } }, { type: 'bpmn:Participant', order: { level: -2 } }, { type: 'bpmn:Lane', order: { level: -1 } } ]; function computeOrder(element) { if (element.labelTarget) { return { level: 10 }; } var entry = find(orders, function(o) { return isAny(element, [ o.type ]); }); return entry && entry.order || { level: 1 }; } function getOrder(element) { var order = element.order; if (!order) { element.order = order = computeOrder(element); } return order; } function findActualParent(element, newParent, containers) { var actualParent = newParent; while (actualParent) { if (isAny(actualParent, containers)) { break; } actualParent = actualParent.parent; } if (!actualParent) { throw new Error(translate('no parent for {element} in {parent}', { element: element.id, parent: newParent.id })); } return actualParent; } this.getOrdering = function(element, newParent) { var elementOrder = getOrder(element); if (elementOrder.containers) { newParent = findActualParent(element, newParent, elementOrder.containers); } var currentIndex = newParent.children.indexOf(element); var insertIndex = findIndex(newParent.children, function(child) { // do not compare with labels, they are created // in the wrong order (right after elements) during import and // mess up the positioning. if (!element.labelTarget && child.labelTarget) { return false; } return elementOrder.level < getOrder(child).level; }); // if the element is already in the child list at // a smaller index, we need to adjust the inser index. // this takes into account that the element is being removed // before being re-inserted if (insertIndex !== -1) { if (currentIndex !== -1 && currentIndex < insertIndex) { insertIndex -= 1; } } return { index: insertIndex, parent: newParent }; }; } BpmnOrderingProvider.$inject = [ 'eventBus', 'translate' ]; inherits(BpmnOrderingProvider, OrderingProvider); module.exports = BpmnOrderingProvider; },{"207":207,"289":289,"290":290,"302":302,"68":68}],70:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'bpmnOrderingProvider' ], __depends__: [ _dereq_(248) ], bpmnOrderingProvider: [ 'type', _dereq_(69) ] }; },{"248":248,"69":69}],71:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); /** * A palette provider for BPMN 2.0 elements. */ function PaletteProvider(palette, create, elementFactory, spaceTool, lassoTool, handTool, globalConnect, translate) { this._palette = palette; this._create = create; this._elementFactory = elementFactory; this._spaceTool = spaceTool; this._lassoTool = lassoTool; this._handTool = handTool; this._globalConnect = globalConnect; this._translate = translate; palette.registerProvider(this); } module.exports = PaletteProvider; PaletteProvider.$inject = [ 'palette', 'create', 'elementFactory', 'spaceTool', 'lassoTool', 'handTool', 'globalConnect', 'translate' ]; PaletteProvider.prototype.getPaletteEntries = function(element) { var actions = {}, create = this._create, elementFactory = this._elementFactory, spaceTool = this._spaceTool, lassoTool = this._lassoTool, handTool = this._handTool, globalConnect = this._globalConnect, translate = this._translate; function createAction(type, group, className, title, options) { function createListener(event) { var shape = elementFactory.createShape(assign({ type: type }, options)); if (options) { shape.businessObject.di.isExpanded = options.isExpanded; } create.start(event, shape); } var shortType = type.replace(/^bpmn\:/, ''); return { group: group, className: className, title: title || translate('Create {type}', { type: shortType }), action: { dragstart: createListener, click: createListener } }; } function createParticipant(event, collapsed) { create.start(event, elementFactory.createParticipantShape(collapsed)); } assign(actions, { 'hand-tool': { group: 'tools', className: 'bpmn-icon-hand-tool', title: translate('Activate the hand tool'), action: { click: function(event) { handTool.activateHand(event); } } }, 'lasso-tool': { group: 'tools', className: 'bpmn-icon-lasso-tool', title: translate('Activate the lasso tool'), action: { click: function(event) { lassoTool.activateSelection(event); } } }, 'space-tool': { group: 'tools', className: 'bpmn-icon-space-tool', title: translate('Activate the create/remove space tool'), action: { click: function(event) { spaceTool.activateSelection(event); } } }, 'global-connect-tool': { group: 'tools', className: 'bpmn-icon-connection-multi', title: translate('Activate the global connect tool'), action: { click: function(event) { globalConnect.toggle(event); } } }, 'tool-separator': { group: 'tools', separator: true }, 'create.start-event': createAction( 'bpmn:StartEvent', 'event', 'bpmn-icon-start-event-none' ), 'create.intermediate-event': createAction('bpmn:IntermediateThrowEvent', 'event', 'bpmn-icon-intermediate-event-none', translate('Create IntermediateThrowEvent/BoundaryEvent') ), 'create.end-event': createAction( 'bpmn:EndEvent', 'event', 'bpmn-icon-end-event-none' ), 'create.exclusive-gateway': createAction( 'bpmn:ExclusiveGateway', 'gateway', 'bpmn-icon-gateway-xor' ), 'create.task': createAction( 'bpmn:Task', 'activity', 'bpmn-icon-task' ), 'create.data-object': createAction( 'bpmn:DataObjectReference', 'data-object', 'bpmn-icon-data-object' ), 'create.data-store': createAction( 'bpmn:DataStoreReference', 'data-store', 'bpmn-icon-data-store' ), 'create.subprocess-expanded': createAction( 'bpmn:SubProcess', 'activity', 'bpmn-icon-subprocess-expanded', translate('Create expanded SubProcess'), { isExpanded: true } ), 'create.participant-expanded': { group: 'collaboration', className: 'bpmn-icon-participant', title: translate('Create Pool/Participant'), action: { dragstart: createParticipant, click: createParticipant } } }); return actions; }; },{"431":431}],72:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(213), _dereq_(157), _dereq_(240), _dereq_(176), _dereq_(168), _dereq_(248), _dereq_(20) ], __init__: [ 'paletteProvider' ], paletteProvider: [ 'type', _dereq_(71) ] }; },{"157":157,"168":168,"176":176,"20":20,"213":213,"240":240,"248":248,"71":71}],73:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is, isEventSubProcess = _dereq_(93).isEventSubProcess, getBusinessObject = _dereq_(95).getBusinessObject, isExpanded = _dereq_(93).isExpanded, isDifferentType = _dereq_(75).isDifferentType; var forEach = _dereq_(303), filter = _dereq_(301), reject = _dereq_(307); var replaceOptions = _dereq_(79); /** * This module is an element agnostic replace menu provider for the popup menu. */ function ReplaceMenuProvider(popupMenu, modeling, moddle, bpmnReplace, rules, translate) { this._popupMenu = popupMenu; this._modeling = modeling; this._moddle = moddle; this._bpmnReplace = bpmnReplace; this._rules = rules; this._translate = translate; this.register(); } ReplaceMenuProvider.$inject = [ 'popupMenu', 'modeling', 'moddle', 'bpmnReplace', 'rules', 'translate' ]; /** * Register replace menu provider in the popup menu */ ReplaceMenuProvider.prototype.register = function() { this._popupMenu.registerProvider('bpmn-replace', this); }; /** * Get all entries from replaceOptions for the given element and apply filters * on them. Get for example only elements, which are different from the current one. * * @param {djs.model.Base} element * * @return {Array} a list of menu entry items */ ReplaceMenuProvider.prototype.getEntries = function(element) { var businessObject = element.businessObject; var rules = this._rules; var entries; if (!rules.allowed('shape.replace', { element: element })) { return []; } var differentType = isDifferentType(element); // start events outside event sub processes if (is(businessObject, 'bpmn:StartEvent') && !isEventSubProcess(businessObject.$parent)) { entries = filter(replaceOptions.START_EVENT, differentType); return this._createEntries(element, entries); } // expanded/collapsed pools if (is(businessObject, 'bpmn:Participant')) { entries = filter(replaceOptions.PARTICIPANT, function(entry) { return isExpanded(businessObject) !== entry.target.isExpanded; }); return this._createEntries(element, entries); } // start events inside event sub processes if (is(businessObject, 'bpmn:StartEvent') && isEventSubProcess(businessObject.$parent)) { entries = filter(replaceOptions.EVENT_SUB_PROCESS_START_EVENT, function(entry) { var target = entry.target; var isInterrupting = target.isInterrupting !== false; var isInterruptingEqual = getBusinessObject(element).isInterrupting === isInterrupting; // filters elements which types and event definition are equal but have have different interrupting types return differentType(entry) || !differentType(entry) && !isInterruptingEqual; }); return this._createEntries(element, entries); } // end events if (is(businessObject, 'bpmn:EndEvent')) { entries = filter(replaceOptions.END_EVENT, function(entry) { var target = entry.target; // hide cancel end events outside transactions if (target.eventDefinitionType == 'bpmn:CancelEventDefinition' && !is(businessObject.$parent, 'bpmn:Transaction')) { return false; } return differentType(entry); }); return this._createEntries(element, entries); } // boundary events if (is(businessObject, 'bpmn:BoundaryEvent')) { entries = filter(replaceOptions.BOUNDARY_EVENT, function(entry) { var target = entry.target; if (target.eventDefinition == 'bpmn:CancelEventDefinition' && !is(businessObject.attachedToRef, 'bpmn:Transaction')) { return false; } var cancelActivity = target.cancelActivity !== false; var isCancelActivityEqual = businessObject.cancelActivity == cancelActivity; return differentType(entry) || !differentType(entry) && !isCancelActivityEqual; }); return this._createEntries(element, entries); } // intermediate events if (is(businessObject, 'bpmn:IntermediateCatchEvent') || is(businessObject, 'bpmn:IntermediateThrowEvent')) { entries = filter(replaceOptions.INTERMEDIATE_EVENT, differentType); return this._createEntries(element, entries); } // gateways if (is(businessObject, 'bpmn:Gateway')) { entries = filter(replaceOptions.GATEWAY, differentType); return this._createEntries(element, entries); } // transactions if (is(businessObject, 'bpmn:Transaction')) { entries = filter(replaceOptions.TRANSACTION, differentType); return this._createEntries(element, entries); } // expanded event sub processes if (isEventSubProcess(businessObject) && isExpanded(businessObject)) { entries = filter(replaceOptions.EVENT_SUB_PROCESS, differentType); return this._createEntries(element, entries); } // expanded sub processes if (is(businessObject, 'bpmn:SubProcess') && isExpanded(businessObject)) { entries = filter(replaceOptions.SUBPROCESS_EXPANDED, differentType); return this._createEntries(element, entries); } // collapsed ad hoc sub processes if (is(businessObject, 'bpmn:AdHocSubProcess') && !isExpanded(businessObject)) { entries = filter(replaceOptions.TASK, function(entry) { var target = entry.target; var isTargetSubProcess = target.type === 'bpmn:SubProcess'; var isTargetExpanded = target.isExpanded === true; return isDifferentType(element, target) && ( !isTargetSubProcess || isTargetExpanded ); }); return this._createEntries(element, entries); } // sequence flows if (is(businessObject, 'bpmn:SequenceFlow')) { return this._createSequenceFlowEntries(element, replaceOptions.SEQUENCE_FLOW); } // flow nodes if (is(businessObject, 'bpmn:FlowNode')) { entries = filter(replaceOptions.TASK, differentType); // collapsed SubProcess can not be replaced with itself if (is(businessObject, 'bpmn:SubProcess') && !isExpanded(businessObject)) { entries = reject(entries, function(entry) { return entry.label === 'Sub Process (collapsed)'; }); } return this._createEntries(element, entries); } return []; }; /** * Get a list of header items for the given element. This includes buttons * for multi instance markers and for the ad hoc marker. * * @param {djs.model.Base} element * * @return {Array} a list of menu entry items */ ReplaceMenuProvider.prototype.getHeaderEntries = function(element) { var headerEntries = []; if (is(element, 'bpmn:Activity') && !isEventSubProcess(element)) { headerEntries = headerEntries.concat(this._getLoopEntries(element)); } if (is(element, 'bpmn:SubProcess') && !is(element, 'bpmn:Transaction') && !isEventSubProcess(element)) { headerEntries.push(this._getAdHocEntry(element)); } return headerEntries; }; /** * Creates an array of menu entry objects for a given element and filters the replaceOptions * according to a filter function. * * @param {djs.model.Base} element * @param {Object} replaceOptions * * @return {Array} a list of menu items */ ReplaceMenuProvider.prototype._createEntries = function(element, replaceOptions) { var menuEntries = []; var self = this; forEach(replaceOptions, function(definition) { var entry = self._createMenuEntry(definition, element); menuEntries.push(entry); }); return menuEntries; }; /** * Creates an array of menu entry objects for a given sequence flow. * * @param {djs.model.Base} element * @param {Object} replaceOptions * @return {Array} a list of menu items */ ReplaceMenuProvider.prototype._createSequenceFlowEntries = function(element, replaceOptions) { var businessObject = getBusinessObject(element); var menuEntries = []; var modeling = this._modeling, moddle = this._moddle; var self = this; forEach(replaceOptions, function(entry) { switch (entry.actionName) { case 'replace-with-default-flow': if (businessObject.sourceRef.default !== businessObject && (is(businessObject.sourceRef, 'bpmn:ExclusiveGateway') || is(businessObject.sourceRef, 'bpmn:InclusiveGateway') || is(businessObject.sourceRef, 'bpmn:ComplexGateway') || is(businessObject.sourceRef, 'bpmn:Activity'))) { menuEntries.push(self._createMenuEntry(entry, element, function() { modeling.updateProperties(element.source, { default: businessObject }); })); } break; case 'replace-with-conditional-flow': if (!businessObject.conditionExpression && is(businessObject.sourceRef, 'bpmn:Activity')) { menuEntries.push(self._createMenuEntry(entry, element, function() { var conditionExpression = moddle.create('bpmn:FormalExpression', { body: '' }); modeling.updateProperties(element, { conditionExpression: conditionExpression }); })); } break; default: // default flows if (is(businessObject.sourceRef, 'bpmn:Activity') && businessObject.conditionExpression) { return menuEntries.push(self._createMenuEntry(entry, element, function() { modeling.updateProperties(element, { conditionExpression: undefined }); })); } // conditional flows if ((is(businessObject.sourceRef, 'bpmn:ExclusiveGateway') || is(businessObject.sourceRef, 'bpmn:InclusiveGateway') || is(businessObject.sourceRef, 'bpmn:ComplexGateway') || is(businessObject.sourceRef, 'bpmn:Activity')) && businessObject.sourceRef.default === businessObject) { return menuEntries.push(self._createMenuEntry(entry, element, function() { modeling.updateProperties(element.source, { default: undefined }); })); } } }); return menuEntries; }; /** * Creates and returns a single menu entry item. * * @param {Object} definition a single replace options definition object * @param {djs.model.Base} element * @param {Function} [action] an action callback function which gets called when * the menu entry is being triggered. * * @return {Object} menu entry item */ ReplaceMenuProvider.prototype._createMenuEntry = function(definition, element, action) { var translate = this._translate; var replaceElement = this._bpmnReplace.replaceElement; var replaceAction = function() { return replaceElement(element, definition.target); }; action = action || replaceAction; var menuEntry = { label: translate(definition.label), className: definition.className, id: definition.actionName, action: action }; return menuEntry; }; /** * Get a list of menu items containing buttons for multi instance markers * * @param {djs.model.Base} element * * @return {Array} a list of menu items */ ReplaceMenuProvider.prototype._getLoopEntries = function(element) { var self = this; var translate = this._translate; function toggleLoopEntry(event, entry) { var loopCharacteristics; if (entry.active) { loopCharacteristics = undefined; } else { loopCharacteristics = self._moddle.create(entry.options.loopCharacteristics); if (entry.options.isSequential) { loopCharacteristics.isSequential = entry.options.isSequential; } } self._modeling.updateProperties(element, { loopCharacteristics: loopCharacteristics }); } var businessObject = getBusinessObject(element), loopCharacteristics = businessObject.loopCharacteristics; var isSequential, isLoop, isParallel; if (loopCharacteristics) { isSequential = loopCharacteristics.isSequential; isLoop = loopCharacteristics.isSequential === undefined; isParallel = loopCharacteristics.isSequential !== undefined && !loopCharacteristics.isSequential; } var loopEntries = [ { id: 'toggle-parallel-mi', className: 'bpmn-icon-parallel-mi-marker', title: translate('Parallel Multi Instance'), active: isParallel, action: toggleLoopEntry, options: { loopCharacteristics: 'bpmn:MultiInstanceLoopCharacteristics', isSequential: false } }, { id: 'toggle-sequential-mi', className: 'bpmn-icon-sequential-mi-marker', title: translate('Sequential Multi Instance'), active: isSequential, action: toggleLoopEntry, options: { loopCharacteristics: 'bpmn:MultiInstanceLoopCharacteristics', isSequential: true } }, { id: 'toggle-loop', className: 'bpmn-icon-loop-marker', title: translate('Loop'), active: isLoop, action: toggleLoopEntry, options: { loopCharacteristics: 'bpmn:StandardLoopCharacteristics' } } ]; return loopEntries; }; /** * Get the menu items containing a button for the ad hoc marker * * @param {djs.model.Base} element * * @return {Object} a menu item */ ReplaceMenuProvider.prototype._getAdHocEntry = function(element) { var translate = this._translate; var businessObject = getBusinessObject(element); var isAdHoc = is(businessObject, 'bpmn:AdHocSubProcess'); var replaceElement = this._bpmnReplace.replaceElement; var adHocEntry = { id: 'toggle-adhoc', className: 'bpmn-icon-ad-hoc-marker', title: translate('Ad-hoc'), active: isAdHoc, action: function(event, entry) { if (isAdHoc) { return replaceElement(element, { type: 'bpmn:SubProcess' }); } else { return replaceElement(element, { type: 'bpmn:AdHocSubProcess' }); } } }; return adHocEntry; }; module.exports = ReplaceMenuProvider; },{"301":301,"303":303,"307":307,"75":75,"79":79,"93":93,"95":95}],74:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(215), _dereq_(80) ], __init__: [ 'replaceMenuProvider' ], replaceMenuProvider: [ 'type', _dereq_(73) ] }; },{"215":215,"73":73,"80":80}],75:[function(_dereq_,module,exports){ 'use strict'; var getBusinessObject = _dereq_(95).getBusinessObject; var isExpanded = _dereq_(93).isExpanded; /** * Returns true, if an element is from a different type * than a target definition. Takes into account the type, * event definition type and triggeredByEvent property. * * @param {djs.model.Base} element * * @return {Boolean} */ function isDifferentType(element) { return function(entry) { var target = entry.target; var businessObject = getBusinessObject(element), eventDefinition = businessObject.eventDefinitions && businessObject.eventDefinitions[0]; var isTypeEqual = businessObject.$type === target.type; var isEventDefinitionEqual = ( (eventDefinition && eventDefinition.$type) === target.eventDefinitionType ); var isTriggeredByEventEqual = ( businessObject.triggeredByEvent === target.triggeredByEvent ); var isExpandedEqual = ( target.isExpanded === undefined || target.isExpanded === isExpanded(businessObject) ); return !isTypeEqual || !isEventDefinitionEqual || !isTriggeredByEventEqual || !isExpandedEqual; }; } module.exports.isDifferentType = isDifferentType; },{"93":93,"95":95}],76:[function(_dereq_,module,exports){ 'use strict'; var CommandInterceptor = _dereq_(119); var inherits = _dereq_(289); var assign = _dereq_(431), forEach = _dereq_(303); var domQuery = _dereq_(452); var svgAttr = _dereq_(474); var LOW_PRIORITY = 250; function BpmnReplacePreview(eventBus, elementRegistry, elementFactory, canvas, previewSupport) { CommandInterceptor.call(this, eventBus); /** * Replace the visuals of all elements in the context which can be replaced * * @param {Object} context */ function replaceVisual(context) { var replacements = context.canExecute.replacements; forEach(replacements, function(replacement) { var id = replacement.oldElementId; var newElement = { type: replacement.newElementType }; // if the visual of the element is already replaced if (context.visualReplacements[id]) { return; } var element = elementRegistry.get(id); assign(newElement, { x: element.x, y: element.y }); // create a temporary shape var tempShape = elementFactory.createShape(newElement); canvas.addShape(tempShape, element.parent); // select the original SVG element related to the element and hide it var gfx = domQuery('[data-element-id=' + element.id + ']', context.dragGroup); if (gfx) { svgAttr(gfx, { display: 'none' }); } // clone the gfx of the temporary shape and add it to the drag group var dragger = previewSupport.addDragger(tempShape, context.dragGroup); context.visualReplacements[id] = dragger; canvas.removeShape(tempShape); }); } /** * Restore the original visuals of the previously replaced elements * * @param {Object} context */ function restoreVisual(context) { var visualReplacements = context.visualReplacements; forEach(visualReplacements, function(dragger, id) { var originalGfx = domQuery('[data-element-id=' + id + ']', context.dragGroup); if (originalGfx) { svgAttr(originalGfx, { display: 'inline' }); } dragger.remove(); if (visualReplacements[id]) { delete visualReplacements[id]; } }); } eventBus.on('shape.move.move', LOW_PRIORITY, function(event) { var context = event.context, canExecute = context.canExecute; if (!context.visualReplacements) { context.visualReplacements = {}; } if (canExecute.replacements) { replaceVisual(context); } else { restoreVisual(context); } }); } BpmnReplacePreview.$inject = [ 'eventBus', 'elementRegistry', 'elementFactory', 'canvas', 'previewSupport' ]; inherits(BpmnReplacePreview, CommandInterceptor); module.exports = BpmnReplacePreview; },{"119":119,"289":289,"303":303,"431":431,"452":452,"474":474}],77:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(217) ], __init__: [ 'bpmnReplacePreview' ], bpmnReplacePreview: [ 'type', _dereq_(76) ] }; },{"217":217,"76":76}],78:[function(_dereq_,module,exports){ 'use strict'; var pick = _dereq_(438), assign = _dereq_(431), intersection = _dereq_(292), filter = _dereq_(301), has = _dereq_(432); var is = _dereq_(95).is, isExpanded = _dereq_(93).isExpanded, isEventSubProcess = _dereq_(93).isEventSubProcess, ModelCloneUtils = _dereq_(98), getProperties = ModelCloneUtils.getProperties; var IGNORED_PROPERTIES = ModelCloneUtils.IGNORED_PROPERTIES; var ModelCloneHelper = _dereq_(97); var CUSTOM_PROPERTIES = [ 'cancelActivity', 'instantiate', 'eventGatewayType', 'triggeredByEvent', 'isInterrupting' ]; function toggeling(element, target) { var oldCollapsed = has(element, 'collapsed') ? element.collapsed : !isExpanded(element); var targetCollapsed; if (has(target, 'collapsed') || has(target, 'isExpanded')) { // property is explicitly set so use it targetCollapsed = has(target, 'collapsed') ? target.collapsed : !target.isExpanded; } else { // keep old state targetCollapsed = oldCollapsed; } if (oldCollapsed !== targetCollapsed) { element.collapsed = oldCollapsed; return true; } return false; } /** * This module takes care of replacing BPMN elements */ function BpmnReplace(bpmnFactory, replace, selection, modeling, eventBus) { var helper = new ModelCloneHelper(eventBus); /** * Prepares a new business object for the replacement element * and triggers the replace operation. * * @param {djs.model.Base} element * @param {Object} target * @param {Object} [hints] * * @return {djs.model.Base} the newly created element */ function replaceElement(element, target, hints) { hints = hints || {}; var type = target.type, oldBusinessObject = element.businessObject; if (is(oldBusinessObject, 'bpmn:SubProcess')) { if (type === 'bpmn:SubProcess') { if (toggeling(element, target)) { // expanding or collapsing process modeling.toggleCollapse(element); return element; } } } var newBusinessObject = bpmnFactory.create(type); var newElement = { type: type, businessObject: newBusinessObject }; var elementProps = getProperties(oldBusinessObject.$descriptor), newElementProps = getProperties(newBusinessObject.$descriptor, true), properties = intersection(elementProps, newElementProps); // initialize special properties defined in target definition assign(newBusinessObject, pick(target, CUSTOM_PROPERTIES)); properties = filter(properties, function(property) { var propName = property.replace(/bpmn:/, ''); // so the applied properties from 'target' don't get lost if (newBusinessObject[property] !== undefined) { return false; } // retain loop characteristics if the target element is not an event sub process if (propName === 'loopCharacteristics') { return !isEventSubProcess(newBusinessObject); } if ((propName === 'processRef' && target.isExpanded === false) || propName === 'triggeredByEvent' || propName === 'eventDefinitions') { return false; } return IGNORED_PROPERTIES.indexOf(propName) === -1; }); newBusinessObject = helper.clone(oldBusinessObject, newBusinessObject, properties); // initialize custom BPMN extensions if (target.eventDefinitionType) { newElement.eventDefinitionType = target.eventDefinitionType; } if (is(oldBusinessObject, 'bpmn:Activity')) { if (is(oldBusinessObject, 'bpmn:SubProcess')) { // no toggeling, so keep old state newElement.isExpanded = isExpanded(oldBusinessObject); } // else if property is explicitly set, use it else if (has(target, 'isExpanded')) { newElement.isExpanded = target.isExpanded; } // TODO: need also to respect min/max Size // copy size, from an expanded subprocess to an expanded alternative subprocess // except bpmn:Task, because Task is always expanded if ((isExpanded(oldBusinessObject) && !is(oldBusinessObject, 'bpmn:Task')) && newElement.isExpanded) { newElement.width = element.width; newElement.height = element.height; } } // transform collapsed/expanded pools if (is(oldBusinessObject, 'bpmn:Participant')) { // create expanded pool if (target.isExpanded === true) { newBusinessObject.processRef = bpmnFactory.create('bpmn:Process'); } else { // remove children when transforming to collapsed pool hints.moveChildren = false; } // apply same size newElement.width = element.width; newElement.height = element.height; } newBusinessObject.name = oldBusinessObject.name; // retain default flow's reference between inclusive <-> exclusive gateways and activities if ((is(oldBusinessObject, 'bpmn:ExclusiveGateway') || is(oldBusinessObject, 'bpmn:InclusiveGateway') || is(oldBusinessObject, 'bpmn:Activity')) && (is(newBusinessObject, 'bpmn:ExclusiveGateway') || is(newBusinessObject, 'bpmn:InclusiveGateway') || is(newBusinessObject, 'bpmn:Activity'))) { newBusinessObject.default = oldBusinessObject.default; } if ('fill' in oldBusinessObject.di || 'stroke' in oldBusinessObject.di) { assign(newElement, { colors: pick(oldBusinessObject.di, [ 'fill', 'stroke' ]) }); } newElement = replace.replaceElement(element, newElement, hints); if (hints.select !== false) { selection.select(newElement); } return newElement; } this.replaceElement = replaceElement; } BpmnReplace.$inject = [ 'bpmnFactory', 'replace', 'selection', 'modeling', 'eventBus' ]; module.exports = BpmnReplace; },{"292":292,"301":301,"431":431,"432":432,"438":438,"93":93,"95":95,"97":97,"98":98}],79:[function(_dereq_,module,exports){ 'use strict'; module.exports.START_EVENT = [ { label: 'Start Event', actionName: 'replace-with-none-start', className: 'bpmn-icon-start-event-none', target: { type: 'bpmn:StartEvent' } }, { label: 'Intermediate Throw Event', actionName: 'replace-with-none-intermediate-throwing', className: 'bpmn-icon-intermediate-event-none', target: { type: 'bpmn:IntermediateThrowEvent' } }, { label: 'End Event', actionName: 'replace-with-none-end', className: 'bpmn-icon-end-event-none', target: { type: 'bpmn:EndEvent' } }, { label: 'Message Start Event', actionName: 'replace-with-message-start', className: 'bpmn-icon-start-event-message', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Timer Start Event', actionName: 'replace-with-timer-start', className: 'bpmn-icon-start-event-timer', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:TimerEventDefinition' } }, { label: 'Conditional Start Event', actionName: 'replace-with-conditional-start', className: 'bpmn-icon-start-event-condition', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition' } }, { label: 'Signal Start Event', actionName: 'replace-with-signal-start', className: 'bpmn-icon-start-event-signal', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } } ]; module.exports.INTERMEDIATE_EVENT = [ { label: 'Start Event', actionName: 'replace-with-none-start', className: 'bpmn-icon-start-event-none', target: { type: 'bpmn:StartEvent' } }, { label: 'Intermediate Throw Event', actionName: 'replace-with-none-intermediate-throw', className: 'bpmn-icon-intermediate-event-none', target: { type: 'bpmn:IntermediateThrowEvent' } }, { label: 'End Event', actionName: 'replace-with-none-end', className: 'bpmn-icon-end-event-none', target: { type: 'bpmn:EndEvent' } }, { label: 'Message Intermediate Catch Event', actionName: 'replace-with-message-intermediate-catch', className: 'bpmn-icon-intermediate-event-catch-message', target: { type: 'bpmn:IntermediateCatchEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Message Intermediate Throw Event', actionName: 'replace-with-message-intermediate-throw', className: 'bpmn-icon-intermediate-event-throw-message', target: { type: 'bpmn:IntermediateThrowEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Timer Intermediate Catch Event', actionName: 'replace-with-timer-intermediate-catch', className: 'bpmn-icon-intermediate-event-catch-timer', target: { type: 'bpmn:IntermediateCatchEvent', eventDefinitionType: 'bpmn:TimerEventDefinition' } }, { label: 'Escalation Intermediate Throw Event', actionName: 'replace-with-escalation-intermediate-throw', className: 'bpmn-icon-intermediate-event-throw-escalation', target: { type: 'bpmn:IntermediateThrowEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition' } }, { label: 'Conditional Intermediate Catch Event', actionName: 'replace-with-conditional-intermediate-catch', className: 'bpmn-icon-intermediate-event-catch-condition', target: { type: 'bpmn:IntermediateCatchEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition' } }, { label: 'Link Intermediate Catch Event', actionName: 'replace-with-link-intermediate-catch', className: 'bpmn-icon-intermediate-event-catch-link', target: { type: 'bpmn:IntermediateCatchEvent', eventDefinitionType: 'bpmn:LinkEventDefinition' } }, { label: 'Link Intermediate Throw Event', actionName: 'replace-with-link-intermediate-throw', className: 'bpmn-icon-intermediate-event-throw-link', target: { type: 'bpmn:IntermediateThrowEvent', eventDefinitionType: 'bpmn:LinkEventDefinition' } }, { label: 'Compensation Intermediate Throw Event', actionName: 'replace-with-compensation-intermediate-throw', className: 'bpmn-icon-intermediate-event-throw-compensation', target: { type: 'bpmn:IntermediateThrowEvent', eventDefinitionType: 'bpmn:CompensateEventDefinition' } }, { label: 'Signal Intermediate Catch Event', actionName: 'replace-with-signal-intermediate-catch', className: 'bpmn-icon-intermediate-event-catch-signal', target: { type: 'bpmn:IntermediateCatchEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } }, { label: 'Signal Intermediate Throw Event', actionName: 'replace-with-signal-intermediate-throw', className: 'bpmn-icon-intermediate-event-throw-signal', target: { type: 'bpmn:IntermediateThrowEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } } ]; module.exports.END_EVENT = [ { label: 'Start Event', actionName: 'replace-with-none-start', className: 'bpmn-icon-start-event-none', target: { type: 'bpmn:StartEvent' } }, { label: 'Intermediate Throw Event', actionName: 'replace-with-none-intermediate-throw', className: 'bpmn-icon-intermediate-event-none', target: { type: 'bpmn:IntermediateThrowEvent' } }, { label: 'End Event', actionName: 'replace-with-none-end', className: 'bpmn-icon-end-event-none', target: { type: 'bpmn:EndEvent' } }, { label: 'Message End Event', actionName: 'replace-with-message-end', className: 'bpmn-icon-end-event-message', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Escalation End Event', actionName: 'replace-with-escalation-end', className: 'bpmn-icon-end-event-escalation', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition' } }, { label: 'Error End Event', actionName: 'replace-with-error-end', className: 'bpmn-icon-end-event-error', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:ErrorEventDefinition' } }, { label: 'Cancel End Event', actionName: 'replace-with-cancel-end', className: 'bpmn-icon-end-event-cancel', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:CancelEventDefinition' } }, { label: 'Compensation End Event', actionName: 'replace-with-compensation-end', className: 'bpmn-icon-end-event-compensation', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:CompensateEventDefinition' } }, { label: 'Signal End Event', actionName: 'replace-with-signal-end', className: 'bpmn-icon-end-event-signal', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } }, { label: 'Terminate End Event', actionName: 'replace-with-terminate-end', className: 'bpmn-icon-end-event-terminate', target: { type: 'bpmn:EndEvent', eventDefinitionType: 'bpmn:TerminateEventDefinition' } } ]; module.exports.GATEWAY = [ { label: 'Exclusive Gateway', actionName: 'replace-with-exclusive-gateway', className: 'bpmn-icon-gateway-xor', target: { type: 'bpmn:ExclusiveGateway' } }, { label: 'Parallel Gateway', actionName: 'replace-with-parallel-gateway', className: 'bpmn-icon-gateway-parallel', target: { type: 'bpmn:ParallelGateway' } }, { label: 'Inclusive Gateway', actionName: 'replace-with-inclusive-gateway', className: 'bpmn-icon-gateway-or', target: { type: 'bpmn:InclusiveGateway' } }, { label: 'Complex Gateway', actionName: 'replace-with-complex-gateway', className: 'bpmn-icon-gateway-complex', target: { type: 'bpmn:ComplexGateway' } }, { label: 'Event based Gateway', actionName: 'replace-with-event-based-gateway', className: 'bpmn-icon-gateway-eventbased', target: { type: 'bpmn:EventBasedGateway', instantiate: false, eventGatewayType: 'Exclusive' } } // Gateways deactivated until https://github.com/bpmn-io/bpmn-js/issues/194 // { // label: 'Event based instantiating Gateway', // actionName: 'replace-with-exclusive-event-based-gateway', // className: 'bpmn-icon-exclusive-event-based', // target: { // type: 'bpmn:EventBasedGateway' // }, // options: { // businessObject: { instantiate: true, eventGatewayType: 'Exclusive' } // } // }, // { // label: 'Parallel Event based instantiating Gateway', // actionName: 'replace-with-parallel-event-based-instantiate-gateway', // className: 'bpmn-icon-parallel-event-based-instantiate-gateway', // target: { // type: 'bpmn:EventBasedGateway' // }, // options: { // businessObject: { instantiate: true, eventGatewayType: 'Parallel' } // } // } ]; module.exports.SUBPROCESS_EXPANDED = [ { label: 'Transaction', actionName: 'replace-with-transaction', className: 'bpmn-icon-transaction', target: { type: 'bpmn:Transaction', isExpanded: true } }, { label: 'Event Sub Process', actionName: 'replace-with-event-subprocess', className: 'bpmn-icon-event-subprocess-expanded', target: { type: 'bpmn:SubProcess', triggeredByEvent: true, isExpanded: true } }, { label: 'Sub Process (collapsed)', actionName: 'replace-with-collapsed-subprocess', className: 'bpmn-icon-subprocess-collapsed', target: { type: 'bpmn:SubProcess', isExpanded: false } } ]; module.exports.TRANSACTION = [ { label: 'Sub Process', actionName: 'replace-with-subprocess', className: 'bpmn-icon-subprocess-expanded', target: { type: 'bpmn:SubProcess', isExpanded: true } }, { label: 'Event Sub Process', actionName: 'replace-with-event-subprocess', className: 'bpmn-icon-event-subprocess-expanded', target: { type: 'bpmn:SubProcess', triggeredByEvent: true, isExpanded: true } } ]; module.exports.EVENT_SUB_PROCESS = [ { label: 'Sub Process', actionName: 'replace-with-subprocess', className: 'bpmn-icon-subprocess-expanded', target: { type: 'bpmn:SubProcess', isExpanded: true } }, { label: 'Transaction', actionName: 'replace-with-transaction', className: 'bpmn-icon-transaction', target: { type: 'bpmn:Transaction', isExpanded: true } } ]; module.exports.TASK = [ { label: 'Task', actionName: 'replace-with-task', className: 'bpmn-icon-task', target: { type: 'bpmn:Task' } }, { label: 'Send Task', actionName: 'replace-with-send-task', className: 'bpmn-icon-send', target: { type: 'bpmn:SendTask' } }, { label: 'Receive Task', actionName: 'replace-with-receive-task', className: 'bpmn-icon-receive', target: { type: 'bpmn:ReceiveTask' } }, { label: 'User Task', actionName: 'replace-with-user-task', className: 'bpmn-icon-user', target: { type: 'bpmn:UserTask' } }, { label: 'Manual Task', actionName: 'replace-with-manual-task', className: 'bpmn-icon-manual', target: { type: 'bpmn:ManualTask' } }, { label: 'Business Rule Task', actionName: 'replace-with-rule-task', className: 'bpmn-icon-business-rule', target: { type: 'bpmn:BusinessRuleTask' } }, { label: 'Service Task', actionName: 'replace-with-service-task', className: 'bpmn-icon-service', target: { type: 'bpmn:ServiceTask' } }, { label: 'Script Task', actionName: 'replace-with-script-task', className: 'bpmn-icon-script', target: { type: 'bpmn:ScriptTask' } }, { label: 'Call Activity', actionName: 'replace-with-call-activity', className: 'bpmn-icon-call-activity', target: { type: 'bpmn:CallActivity' } }, { label: 'Sub Process (collapsed)', actionName: 'replace-with-collapsed-subprocess', className: 'bpmn-icon-subprocess-collapsed', target: { type: 'bpmn:SubProcess', isExpanded: false } }, { label: 'Sub Process (expanded)', actionName: 'replace-with-expanded-subprocess', className: 'bpmn-icon-subprocess-expanded', target: { type: 'bpmn:SubProcess', isExpanded: true } } ]; module.exports.BOUNDARY_EVENT = [ { label: 'Message Boundary Event', actionName: 'replace-with-message-boundary', className: 'bpmn-icon-intermediate-event-catch-message', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Timer Boundary Event', actionName: 'replace-with-timer-boundary', className: 'bpmn-icon-intermediate-event-catch-timer', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:TimerEventDefinition' } }, { label: 'Escalation Boundary Event', actionName: 'replace-with-escalation-boundary', className: 'bpmn-icon-intermediate-event-catch-escalation', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition' } }, { label: 'Conditional Boundary Event', actionName: 'replace-with-conditional-boundary', className: 'bpmn-icon-intermediate-event-catch-condition', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition' } }, { label: 'Error Boundary Event', actionName: 'replace-with-error-boundary', className: 'bpmn-icon-intermediate-event-catch-error', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:ErrorEventDefinition' } }, { label: 'Cancel Boundary Event', actionName: 'replace-with-cancel-boundary', className: 'bpmn-icon-intermediate-event-catch-cancel', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:CancelEventDefinition' } }, { label: 'Signal Boundary Event', actionName: 'replace-with-signal-boundary', className: 'bpmn-icon-intermediate-event-catch-signal', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } }, { label: 'Compensation Boundary Event', actionName: 'replace-with-compensation-boundary', className: 'bpmn-icon-intermediate-event-catch-compensation', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:CompensateEventDefinition' } }, { label: 'Message Boundary Event (non-interrupting)', actionName: 'replace-with-non-interrupting-message-boundary', className: 'bpmn-icon-intermediate-event-catch-non-interrupting-message', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:MessageEventDefinition', cancelActivity: false } }, { label: 'Timer Boundary Event (non-interrupting)', actionName: 'replace-with-non-interrupting-timer-boundary', className: 'bpmn-icon-intermediate-event-catch-non-interrupting-timer', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:TimerEventDefinition', cancelActivity: false } }, { label: 'Escalation Boundary Event (non-interrupting)', actionName: 'replace-with-non-interrupting-escalation-boundary', className: 'bpmn-icon-intermediate-event-catch-non-interrupting-escalation', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition', cancelActivity: false } }, { label: 'Conditional Boundary Event (non-interrupting)', actionName: 'replace-with-non-interrupting-conditional-boundary', className: 'bpmn-icon-intermediate-event-catch-non-interrupting-condition', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition', cancelActivity: false } }, { label: 'Signal Boundary Event (non-interrupting)', actionName: 'replace-with-non-interrupting-signal-boundary', className: 'bpmn-icon-intermediate-event-catch-non-interrupting-signal', target: { type: 'bpmn:BoundaryEvent', eventDefinitionType: 'bpmn:SignalEventDefinition', cancelActivity: false } } ]; module.exports.EVENT_SUB_PROCESS_START_EVENT = [ { label: 'Message Start Event', actionName: 'replace-with-message-start', className: 'bpmn-icon-start-event-message', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:MessageEventDefinition' } }, { label: 'Timer Start Event', actionName: 'replace-with-timer-start', className: 'bpmn-icon-start-event-timer', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:TimerEventDefinition' } }, { label: 'Conditional Start Event', actionName: 'replace-with-conditional-start', className: 'bpmn-icon-start-event-condition', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition' } }, { label: 'Signal Start Event', actionName: 'replace-with-signal-start', className: 'bpmn-icon-start-event-signal', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:SignalEventDefinition' } }, { label: 'Error Start Event', actionName: 'replace-with-error-start', className: 'bpmn-icon-start-event-error', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:ErrorEventDefinition' } }, { label: 'Escalation Start Event', actionName: 'replace-with-escalation-start', className: 'bpmn-icon-start-event-escalation', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition' } }, { label: 'Compensation Start Event', actionName: 'replace-with-compensation-start', className: 'bpmn-icon-start-event-compensation', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:CompensateEventDefinition' } }, { label: 'Message Start Event (non-interrupting)', actionName: 'replace-with-non-interrupting-message-start', className: 'bpmn-icon-start-event-non-interrupting-message', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:MessageEventDefinition', isInterrupting: false } }, { label: 'Timer Start Event (non-interrupting)', actionName: 'replace-with-non-interrupting-timer-start', className: 'bpmn-icon-start-event-non-interrupting-timer', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:TimerEventDefinition', isInterrupting: false } }, { label: 'Conditional Start Event (non-interrupting)', actionName: 'replace-with-non-interrupting-conditional-start', className: 'bpmn-icon-start-event-non-interrupting-condition', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:ConditionalEventDefinition', isInterrupting: false } }, { label: 'Signal Start Event (non-interrupting)', actionName: 'replace-with-non-interrupting-signal-start', className: 'bpmn-icon-start-event-non-interrupting-signal', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:SignalEventDefinition', isInterrupting: false } }, { label: 'Escalation Start Event (non-interrupting)', actionName: 'replace-with-non-interrupting-escalation-start', className: 'bpmn-icon-start-event-non-interrupting-escalation', target: { type: 'bpmn:StartEvent', eventDefinitionType: 'bpmn:EscalationEventDefinition', isInterrupting: false } } ]; module.exports.SEQUENCE_FLOW = [ { label: 'Sequence Flow', actionName: 'replace-with-sequence-flow', className: 'bpmn-icon-connection' }, { label: 'Default Flow', actionName: 'replace-with-default-flow', className: 'bpmn-icon-default-flow' }, { label: 'Conditional Flow', actionName: 'replace-with-conditional-flow', className: 'bpmn-icon-conditional-flow' } ]; module.exports.PARTICIPANT = [ { label: 'Expanded Pool', actionName: 'replace-with-expanded-pool', className: 'bpmn-icon-participant', target: { type: 'bpmn:Participant', isExpanded: true } }, { label: 'Collapsed Pool', actionName: 'replace-with-collapsed-pool', // TODO(@janstuemmel): maybe design new icon className: 'bpmn-icon-lane', target: { type: 'bpmn:Participant', isExpanded: false } } ]; },{}],80:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(219), _dereq_(233) ], bpmnReplace: [ 'type', _dereq_(78) ] }; },{"219":219,"233":233,"78":78}],81:[function(_dereq_,module,exports){ 'use strict'; var find = _dereq_(302), any = _dereq_(299), every = _dereq_(300), filter = _dereq_(301), forEach = _dereq_(303), inherits = _dereq_(289); var is = _dereq_(95).is, isAny = _dereq_(68).isAny, getBusinessObject = _dereq_(95).getBusinessObject, isExpanded = _dereq_(93).isExpanded, isEventSubProcess = _dereq_(93).isEventSubProcess, isInterrupting = _dereq_(93).isInterrupting, hasErrorEventDefinition = _dereq_(93).hasErrorEventDefinition, hasEscalationEventDefinition = _dereq_(93).hasEscalationEventDefinition, hasCompensateEventDefinition = _dereq_(93).hasCompensateEventDefinition; var RuleProvider = _dereq_(225); var isBoundaryAttachment = _dereq_(86).getBoundaryAttachment; /** * BPMN specific modeling rule */ function BpmnRules(eventBus) { RuleProvider.call(this, eventBus); } inherits(BpmnRules, RuleProvider); BpmnRules.$inject = [ 'eventBus' ]; module.exports = BpmnRules; BpmnRules.prototype.init = function() { this.addRule('connection.create', function(context) { var source = context.source, target = context.target; return canConnect(source, target); }); this.addRule('connection.reconnectStart', function(context) { var connection = context.connection, source = context.hover || context.source, target = connection.target; return canConnect(source, target, connection); }); this.addRule('connection.reconnectEnd', function(context) { var connection = context.connection, source = connection.source, target = context.hover || context.target; return canConnect(source, target, connection); }); this.addRule('connection.updateWaypoints', function(context) { // OK! but visually ignore return null; }); this.addRule('shape.resize', function(context) { var shape = context.shape, newBounds = context.newBounds; return canResize(shape, newBounds); }); this.addRule('elements.move', function(context) { var target = context.target, shapes = context.shapes, position = context.position; return canAttach(shapes, target, null, position) || canReplace(shapes, target, position) || canMove(shapes, target, position) || canInsert(shapes, target, position); }); this.addRule([ 'shape.create', 'shape.append' ], function(context) { var target = context.target, shape = context.shape, source = context.source, position = context.position; return canAttach([ shape ], target, source, position) || canCreate(shape, target, source, position); }); this.addRule('element.copy', function(context) { var collection = context.collection, element = context.element; return canCopy(collection, element); }); this.addRule('element.paste', function(context) { var parent = context.parent, element = context.element, position = context.position, source = context.source, target = context.target; if (source || target) { return canConnect(source, target); } return canAttach([ element ], parent, null, position) || canCreate(element, parent, null, position); }); this.addRule('elements.paste', function(context) { var tree = context.tree, target = context.target; return canPaste(tree, target); }); this.addRule([ 'elements.delete' ], function(context) { // do not allow deletion of labels return filter(context.elements, function(e) { return !isLabel(e); }); }); }; BpmnRules.prototype.canConnectMessageFlow = canConnectMessageFlow; BpmnRules.prototype.canConnectSequenceFlow = canConnectSequenceFlow; BpmnRules.prototype.canConnectDataAssociation = canConnectDataAssociation; BpmnRules.prototype.canConnectAssociation = canConnectAssociation; BpmnRules.prototype.canMove = canMove; BpmnRules.prototype.canAttach = canAttach; BpmnRules.prototype.canReplace = canReplace; BpmnRules.prototype.canDrop = canDrop; BpmnRules.prototype.canInsert = canInsert; BpmnRules.prototype.canCreate = canCreate; BpmnRules.prototype.canConnect = canConnect; BpmnRules.prototype.canResize = canResize; BpmnRules.prototype.canCopy = canCopy; /** * Utility functions for rule checking */ function nonExistantOrLabel(element) { return !element || isLabel(element); } function isSame(a, b) { return a === b; } function getOrganizationalParent(element) { var bo = getBusinessObject(element); while (bo && !is(bo, 'bpmn:Process')) { if (is(bo, 'bpmn:Participant')) { return bo.processRef || bo; } bo = bo.$parent; } return bo; } function isTextAnnotation(element) { return is(element, 'bpmn:TextAnnotation'); } function isCompensationBoundary(element) { return is(element, 'bpmn:BoundaryEvent') && hasEventDefinition(element, 'bpmn:CompensateEventDefinition'); } function isForCompensation(e) { return getBusinessObject(e).isForCompensation; } function isSameOrganization(a, b) { var parentA = getOrganizationalParent(a), parentB = getOrganizationalParent(b); return parentA === parentB; } function isMessageFlowSource(element) { return is(element, 'bpmn:InteractionNode') && !isForCompensation(element) && ( !is(element, 'bpmn:Event') || ( is(element, 'bpmn:ThrowEvent') && hasEventDefinitionOrNone(element, 'bpmn:MessageEventDefinition') ) ); } function isMessageFlowTarget(element) { return is(element, 'bpmn:InteractionNode') && !isForCompensation(element) && ( !is(element, 'bpmn:Event') || ( is(element, 'bpmn:CatchEvent') && hasEventDefinitionOrNone(element, 'bpmn:MessageEventDefinition') ) ); } function getScopeParent(element) { var bo = getBusinessObject(element); if (is(bo, 'bpmn:Participant')) { return null; } while (bo) { bo = bo.$parent; if (is(bo, 'bpmn:FlowElementsContainer')) { return bo; } } return bo; } function isSameScope(a, b) { var scopeParentA = getScopeParent(a), scopeParentB = getScopeParent(b); return scopeParentA && (scopeParentA === scopeParentB); } function hasEventDefinition(element, eventDefinition) { var bo = getBusinessObject(element); return !!find(bo.eventDefinitions || [], function(definition) { return is(definition, eventDefinition); }); } function hasEventDefinitionOrNone(element, eventDefinition) { var bo = getBusinessObject(element); return (bo.eventDefinitions || []).every(function(definition) { return is(definition, eventDefinition); }); } function isSequenceFlowSource(element) { return is(element, 'bpmn:FlowNode') && !is(element, 'bpmn:EndEvent') && !isEventSubProcess(element) && !(is(element, 'bpmn:IntermediateThrowEvent') && hasEventDefinition(element, 'bpmn:LinkEventDefinition') ) && !isCompensationBoundary(element) && !isForCompensation(element); } function isSequenceFlowTarget(element) { return is(element, 'bpmn:FlowNode') && !is(element, 'bpmn:StartEvent') && !is(element, 'bpmn:BoundaryEvent') && !isEventSubProcess(element) && !(is(element, 'bpmn:IntermediateCatchEvent') && hasEventDefinition(element, 'bpmn:LinkEventDefinition') ) && !isForCompensation(element); } function isEventBasedTarget(element) { return is(element, 'bpmn:ReceiveTask') || ( is(element, 'bpmn:IntermediateCatchEvent') && ( hasEventDefinition(element, 'bpmn:MessageEventDefinition') || hasEventDefinition(element, 'bpmn:TimerEventDefinition') || hasEventDefinition(element, 'bpmn:ConditionalEventDefinition') || hasEventDefinition(element, 'bpmn:SignalEventDefinition') ) ); } function isLabel(element) { return element.labelTarget; } function isConnection(element) { return element.waypoints; } function getParents(element) { var parents = []; while (element) { element = element.parent; if (element) { parents.push(element); } } return parents; } function isParent(possibleParent, element) { var allParents = getParents(element); return allParents.indexOf(possibleParent) !== -1; } function canConnect(source, target, connection) { if (nonExistantOrLabel(source) || nonExistantOrLabel(target)) { return null; } // See https://github.com/bpmn-io/bpmn-js/issues/178 // as a workround we disallow connections with same // target and source element. // This rule must be removed if a auto layout for this // connections is implemented. if (isSame(source, target)) { return false; } if (!is(connection, 'bpmn:DataAssociation')) { if (canConnectMessageFlow(source, target)) { return { type: 'bpmn:MessageFlow' }; } if (canConnectSequenceFlow(source, target)) { return { type: 'bpmn:SequenceFlow' }; } } var connectDataAssociation = canConnectDataAssociation(source, target); if (connectDataAssociation) { return connectDataAssociation; } if (isCompensationBoundary(source) && isForCompensation(target)) { return { type: 'bpmn:Association', associationDirection: 'One' }; } if (canConnectAssociation(source, target)) { return { type: 'bpmn:Association' }; } return false; } /** * Can an element be dropped into the target element * * @return {Boolean} */ function canDrop(element, target, position) { // can move labels everywhere if (isLabel(element) && !isConnection(target)) { return true; } // disallow to create elements on collapsed pools if (is(target, 'bpmn:Participant') && !isExpanded(target)) { return false; } // allow to create new participants on // on existing collaboration and process diagrams if (is(element, 'bpmn:Participant')) { return is(target, 'bpmn:Process') || is(target, 'bpmn:Collaboration'); } // allow creating lanes on participants and other lanes only if (is(element, 'bpmn:Lane')) { return is(target, 'bpmn:Participant') || is(target, 'bpmn:Lane'); } if (is(element, 'bpmn:BoundaryEvent')) { return false; } // drop flow elements onto flow element containers // and participants if (is(element, 'bpmn:FlowElement')) { if (is(target, 'bpmn:FlowElementsContainer')) { return isExpanded(target); } return isAny(target, [ 'bpmn:Participant', 'bpmn:Lane' ]); } // account for the fact that data associations are always // rendered and moved to top (Process or Collaboration level) // // artifacts may be placed wherever, too if (isAny(element, [ 'bpmn:Artifact', 'bpmn:DataAssociation' ])) { return isAny(target, [ 'bpmn:Collaboration', 'bpmn:Lane', 'bpmn:Participant', 'bpmn:Process', 'bpmn:SubProcess' ]); } if (is(element, 'bpmn:MessageFlow')) { return is(target, 'bpmn:Collaboration') || element.source.parent == target || element.target.parent == target; } return false; } function canPaste(tree, target) { var topLevel = tree[0], participants; if (is(target, 'bpmn:Collaboration')) { return every(topLevel, function(e) { return e.type === 'bpmn:Participant'; }); } if (is(target, 'bpmn:Process')) { participants = any(topLevel, function(e) { return e.type === 'bpmn:Participant'; }); return !(participants && target.children.length > 0); } // disallow to create elements on collapsed pools if (is(target, 'bpmn:Participant') && !isExpanded(target)) { return false; } if (is(target, 'bpmn:FlowElementsContainer')) { return isExpanded(target); } return isAny(target, [ 'bpmn:Collaboration', 'bpmn:Lane', 'bpmn:Participant', 'bpmn:Process', 'bpmn:SubProcess' ]); } function isBoundaryEvent(element) { return !isLabel(element) && is(element, 'bpmn:BoundaryEvent'); } function isLane(element) { return is(element, 'bpmn:Lane'); } /** * We treat IntermediateThrowEvents as boundary events during create, * this must be reflected in the rules. */ function isBoundaryCandidate(element) { return isBoundaryEvent(element) || (is(element, 'bpmn:IntermediateThrowEvent') && !element.parent); } function canAttach(elements, target, source, position) { if (!Array.isArray(elements)) { elements = [ elements ]; } // disallow appending as boundary event if (source) { return false; } // only (re-)attach one element at a time if (elements.length !== 1) { return false; } var element = elements[0]; // do not attach labels if (isLabel(element)) { return false; } // only handle boundary events if (!isBoundaryCandidate(element)) { return false; } // allow default move operation if (!target) { return true; } // disallow drop on event sub processes if (isEventSubProcess(target)) { return false; } // only allow drop on non compensation activities if (!is(target, 'bpmn:Activity') || isForCompensation(target)) { return false; } // only attach to subprocess border if (position && !isBoundaryAttachment(position, target)) { return false; } return 'attach'; } /** * Defines how to replace elements for a given target. * * Returns an array containing all elements which will be replaced. * * @example * * [{ id: 'IntermediateEvent_2', * type: 'bpmn:StartEvent' * }, * { id: 'IntermediateEvent_5', * type: 'bpmn:EndEvent' * }] * * @param {Array} elements * @param {Object} target * * @return {Object} an object containing all elements which have to be replaced */ function canReplace(elements, target, position) { if (!target) { return false; } var canExecute = { replacements: [] }; forEach(elements, function(element) { if (!isEventSubProcess(target)) { if (is(element, 'bpmn:StartEvent') && element.type !== 'label' && canDrop(element, target)) { // replace a non-interrupting start event by a blank interrupting start event // when the target is not an event sub process if (!isInterrupting(element)) { canExecute.replacements.push({ oldElementId: element.id, newElementType: 'bpmn:StartEvent' }); } // replace an error/escalation/compansate start event by a blank interrupting start event // when the target is not an event sub process if (hasErrorEventDefinition(element) || hasEscalationEventDefinition(element) || hasCompensateEventDefinition(element)) { canExecute.replacements.push({ oldElementId: element.id, newElementType: 'bpmn:StartEvent' }); } } } if (!is(target, 'bpmn:Transaction')) { if (hasEventDefinition(element, 'bpmn:CancelEventDefinition') && element.type !== 'label') { if (is(element, 'bpmn:EndEvent') && canDrop(element, target)) { canExecute.replacements.push({ oldElementId: element.id, newElementType: 'bpmn:EndEvent' }); } if (is(element, 'bpmn:BoundaryEvent') && canAttach(element, target, null, position)) { canExecute.replacements.push({ oldElementId: element.id, newElementType: 'bpmn:BoundaryEvent' }); } } } }); return canExecute.replacements.length ? canExecute : false; } function canMove(elements, target) { // do not move selection containing boundary events if (any(elements, isBoundaryEvent)) { return false; } // do not move selection containing lanes if (any(elements, isLane)) { return false; } // allow default move check to start move operation if (!target) { return true; } return elements.every(function(element) { return canDrop(element, target); }); } function canCreate(shape, target, source, position) { if (!target) { return false; } if (isLabel(target)) { return null; } if (isSame(source, target)) { return false; } // ensure we do not drop the element // into source if (source && isParent(source, target)) { return false; } return canDrop(shape, target, position) || canInsert(shape, target, position); } function canResize(shape, newBounds) { if (is(shape, 'bpmn:SubProcess')) { return (!!isExpanded(shape)) && ( !newBounds || (newBounds.width >= 100 && newBounds.height >= 80) ); } if (is(shape, 'bpmn:Lane')) { return !newBounds || (newBounds.width >= 130 && newBounds.height >= 60); } if (is(shape, 'bpmn:Participant')) { return !newBounds || (newBounds.width >= 250 && newBounds.height >= 50); } if (isTextAnnotation(shape)) { return true; } return false; } /** * Check, whether one side of the relationship * is a text annotation. */ function isOneTextAnnotation(source, target) { var sourceTextAnnotation = isTextAnnotation(source), targetTextAnnotation = isTextAnnotation(target); return ( (sourceTextAnnotation || targetTextAnnotation) && (sourceTextAnnotation !== targetTextAnnotation) ); } function canConnectAssociation(source, target) { // do not connect connections if (isConnection(source) || isConnection(target)) { return false; } // compensation boundary events are exception if (isCompensationBoundary(source) && isForCompensation(target)) { return true; } // don't connect parent <-> child if (isParent(target, source) || isParent(source, target)) { return false; } // allow connection of associations between and return isOneTextAnnotation(source, target); } function canConnectMessageFlow(source, target) { return isMessageFlowSource(source) && isMessageFlowTarget(target) && !isSameOrganization(source, target); } function canConnectSequenceFlow(source, target) { return isSequenceFlowSource(source) && isSequenceFlowTarget(target) && isSameScope(source, target) && !(is(source, 'bpmn:EventBasedGateway') && !isEventBasedTarget(target)); } function canConnectDataAssociation(source, target) { if (isAny(source, [ 'bpmn:DataObjectReference', 'bpmn:DataStoreReference' ]) && isAny(target, [ 'bpmn:Activity', 'bpmn:ThrowEvent' ])) { return { type: 'bpmn:DataInputAssociation' }; } if (isAny(target, [ 'bpmn:DataObjectReference', 'bpmn:DataStoreReference' ]) && isAny(source, [ 'bpmn:Activity', 'bpmn:CatchEvent' ])) { return { type: 'bpmn:DataOutputAssociation' }; } return false; } function canInsert(shape, flow, position) { if (Array.isArray(shape)) { if (shape.length !== 1) { return false; } shape = shape[0]; } // return true if we can drop on the // underlying flow parent // // at this point we are not really able to talk // about connection rules (yet) return ( isAny(flow, [ 'bpmn:SequenceFlow', 'bpmn:MessageFlow' ]) && !isLabel(flow) && is(shape, 'bpmn:FlowNode') && !is(shape, 'bpmn:BoundaryEvent') && canDrop(shape, flow.parent, position)); } function contains(collection, element) { return (collection && element) && collection.indexOf(element) !== -1; } function canCopy(collection, element) { if (is(element, 'bpmn:Lane') && !contains(collection, element.parent)) { return false; } if (is(element, 'bpmn:BoundaryEvent') && !contains(collection, element.host)) { return false; } return true; } },{"225":225,"289":289,"299":299,"300":300,"301":301,"302":302,"303":303,"68":68,"86":86,"93":93,"95":95}],82:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(227) ], __init__: [ 'bpmnRules' ], bpmnRules: [ 'type', _dereq_(81) ] }; },{"227":227,"81":81}],83:[function(_dereq_,module,exports){ 'use strict'; var map = _dereq_(305), filter = _dereq_(301), sortBy = _dereq_(310); var labelUtil = _dereq_(25); /** * Provides ability to search through BPMN elements */ function BpmnSearchProvider(elementRegistry, searchPad, canvas) { this._elementRegistry = elementRegistry; this._canvas = canvas; searchPad.registerProvider(this); } module.exports = BpmnSearchProvider; BpmnSearchProvider.$inject = [ 'elementRegistry', 'searchPad', 'canvas' ]; /** * Finds all elements that match given pattern * * : * { * primaryTokens: >, * secondaryTokens: >, * element: * } * * : * { * normal|matched: * } * * @param {String} pattern * @return {Array} */ BpmnSearchProvider.prototype.find = function(pattern) { var rootElement = this._canvas.getRootElement(); var elements = this._elementRegistry.filter(function(element) { if (element.labelTarget) { return false; } return true; }); // do not include root element elements = filter(elements, function(element) { return element !== rootElement; }); elements = map(elements, function(element) { return { primaryTokens: matchAndSplit(labelUtil.getLabel(element), pattern), secondaryTokens: matchAndSplit(element.id, pattern), element: element }; }); // exclude non-matched elements elements = filter(elements, function(element) { return hasMatched(element.primaryTokens) || hasMatched(element.secondaryTokens); }); elements = sortBy(elements, function(element) { return labelUtil.getLabel(element.element) + element.element.id; }); return elements; }; function hasMatched(tokens) { var matched = filter(tokens, function(t) { return !!t.matched; }); return matched.length > 0; } function matchAndSplit(text, pattern) { var tokens = [], originalText = text; if (!text) { return tokens; } text = text.toLowerCase(); pattern = pattern.toLowerCase(); var i = text.indexOf(pattern); if (i > -1) { if (i !== 0) { tokens.push({ normal: originalText.substr(0, i) }); } tokens.push({ matched: originalText.substr(i, pattern.length) }); if (pattern.length + i < text.length) { tokens.push({ normal: originalText.substr(pattern.length + i, text.length) }); } } else { tokens.push({ normal: originalText }); } return tokens; } },{"25":25,"301":301,"305":305,"310":310}],84:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(229) ], __init__: [ 'bpmnSearch'], bpmnSearch: [ 'type', _dereq_(83) ] }; },{"229":229,"83":83}],85:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var abs = Math.abs; var forEach = _dereq_(303), filter = _dereq_(301), assign = _dereq_(431); var getBoundingBox = _dereq_(266).getBBox; var is = _dereq_(95).is, isAny = _dereq_(68).isAny, isExpanded = _dereq_(93).isExpanded; var Snapping = _dereq_(236), SnapUtil = _dereq_(235); var asTRBL = _dereq_(252).asTRBL; var round = Math.round; var mid = SnapUtil.mid, topLeft = SnapUtil.topLeft, bottomRight = SnapUtil.bottomRight, isSnapped = SnapUtil.isSnapped, setSnapped = SnapUtil.setSnapped; var getBoundaryAttachment = _dereq_(86).getBoundaryAttachment, getParticipantSizeConstraints = _dereq_(86).getParticipantSizeConstraints, getLanesRoot = _dereq_(67).getLanesRoot; var HIGH_PRIORITY = 1500; /** * BPMN specific snapping functionality * * * snap on process elements if a pool is created inside a * process diagram * * @param {EventBus} eventBus * @param {Canvas} canvas */ function BpmnSnapping(eventBus, canvas, bpmnRules, elementRegistry) { // instantiate super Snapping.call(this, eventBus, canvas); /** * Drop participant on process <> process elements snapping */ eventBus.on('create.start', function(event) { var context = event.context, shape = context.shape, rootElement = canvas.getRootElement(); // snap participant around existing elements (if any) if (is(shape, 'bpmn:Participant') && is(rootElement, 'bpmn:Process')) { initParticipantSnapping(context, shape, rootElement.children); } }); eventBus.on([ 'create.move', 'create.end' ], HIGH_PRIORITY, function(event) { var context = event.context, shape = context.shape, participantSnapBox = context.participantSnapBox; if (!isSnapped(event) && participantSnapBox) { snapParticipant(participantSnapBox, shape, event); } }); eventBus.on('shape.move.start', function(event) { var context = event.context, shape = context.shape, rootElement = canvas.getRootElement(); // snap participant around existing elements (if any) if (is(shape, 'bpmn:Participant') && is(rootElement, 'bpmn:Process')) { initParticipantSnapping(context, shape, rootElement.children); } }); function canAttach(shape, target, position) { return bpmnRules.canAttach([ shape ], target, null, position) === 'attach'; } function canConnect(source, target) { return bpmnRules.canConnect(source, target); } /** * Snap boundary events to elements border */ eventBus.on([ 'create.move', 'create.end', 'shape.move.move', 'shape.move.end' ], HIGH_PRIORITY, function(event) { var context = event.context, target = context.target, shape = context.shape; if (target && !isSnapped(event) && canAttach(shape, target, event)) { snapBoundaryEvent(event, shape, target); } }); /** * Adjust parent for flowElements to the target participant * when droping onto lanes. */ eventBus.on([ 'shape.move.hover', 'shape.move.move', 'shape.move.end', 'create.hover', 'create.move', 'create.end' ], HIGH_PRIORITY, function(event) { var context = event.context, shape = context.shape, hover = event.hover; if (is(hover, 'bpmn:Lane') && !isAny(shape, [ 'bpmn:Lane', 'bpmn:Participant' ])) { event.hover = getLanesRoot(hover); event.hoverGfx = elementRegistry.getGraphics(event.hover); } }); /** * Snap sequence flows. */ eventBus.on([ 'connect.move', 'connect.hover', 'connect.end' ], HIGH_PRIORITY, function(event) { var context = event.context, source = context.source, target = context.target; var connection = canConnect(source, target) || {}; if (!context.initialSourcePosition) { context.initialSourcePosition = context.sourcePosition; } if (target && connection.type === 'bpmn:SequenceFlow') { // snap source context.sourcePosition = mid(source); // snap target assign(event, mid(target)); } else { // otherwise reset source snap context.sourcePosition = context.initialSourcePosition; } }); eventBus.on([ 'create.move', 'shape.move.move' ], function(event) { var context = event.context, shape = context.shape, target = context.target; var threshold = 30; if (is(shape, 'bpmn:Lane')) { if (isAny(target, [ 'bpmn:Lane', 'bpmn:Participant' ])) { var childLanes = filter(target.children, function(c) { return is(c, 'bpmn:Lane'); }); var y = event.y, targetTrbl; var insert = childLanes.reduce(function(insert, l) { var laneTrbl = asTRBL(l); if (abs(laneTrbl.top - y) < threshold) { insert = assign(insert || {}, { before: { element: l, y: laneTrbl.top } }); } else if (abs(laneTrbl.bottom - y) < threshold) { insert = assign(insert || {}, { after: { element: l, y: laneTrbl.bottom } }); } else if (laneTrbl.top < y && laneTrbl.bottom > y) { if (abs(laneTrbl.top - y) > abs(laneTrbl.bottom - y)) { insert = assign(insert || {}, { after: { element: l, y: laneTrbl.bottom } }); } else { insert = assign(insert || {}, { before: { element: l, y: laneTrbl.top } }); } } return insert; }, false); if (!insert) { targetTrbl = asTRBL(target); if (abs(targetTrbl.top - y) < threshold) { insert = { before: { element: target, y: targetTrbl.top } }; } else if (abs(targetTrbl.bottom - y) < threshold) { insert = { after: { element: target, y: targetTrbl.bottom } }; } else { insert = { into: { element: target, y: (targetTrbl.top + targetTrbl.bottom) / 2 } }; } } if (insert.before && insert.after) { console.log('insert between', insert.before.element.id, 'and', insert.after.element.id); setSnapped(event, 'x', insert.before.element.x + insert.before.element.width / 2); setSnapped(event, 'y', insert.before.y); } else if (insert.after) { console.log('insert after', insert.after.element.id); setSnapped(event, 'x', insert.after.element.x + insert.after.element.width / 2); setSnapped(event, 'y', insert.after.y); } else if (insert.before) { console.log('insert before', insert.before.element.id); setSnapped(event, 'x', insert.before.element.x + insert.before.element.width / 2); setSnapped(event, 'y', insert.before.y); } else if (insert.into) { console.log('insert into', insert.into.element.id); setSnapped(event, 'x', insert.into.element.x + insert.into.element.width / 2); setSnapped(event, 'y', insert.into.y); } } } }); eventBus.on('resize.start', HIGH_PRIORITY, function(event) { var context = event.context, shape = context.shape; if (is(shape, 'bpmn:SubProcess') && isExpanded(shape)) { context.minDimensions = { width: 140, height: 120 }; } if (is(shape, 'bpmn:Participant')) { context.minDimensions = { width: 300, height: 150 }; } if (is(shape, 'bpmn:Lane') || is(shape, 'bpmn:Participant')) { context.resizeConstraints = getParticipantSizeConstraints(shape, context.direction, context.balanced); } if (is(shape, 'bpmn:TextAnnotation')) { context.minDimensions = { width: 50, height: 30 }; } }); } inherits(BpmnSnapping, Snapping); BpmnSnapping.$inject = [ 'eventBus', 'canvas', 'bpmnRules', 'elementRegistry' ]; module.exports = BpmnSnapping; BpmnSnapping.prototype.initSnap = function(event) { var context = event.context, shape = event.shape, shapeMid, shapeBounds, shapeTopLeft, shapeBottomRight, snapContext; snapContext = Snapping.prototype.initSnap.call(this, event); if (is(shape, 'bpmn:Participant')) { // assign higher priority for outer snaps on participants snapContext.setSnapLocations([ 'top-left', 'bottom-right', 'mid' ]); } if (shape) { shapeMid = mid(shape, event); shapeBounds = { width: shape.width, height: shape.height, x: isNaN(shape.x) ? round(shapeMid.x - shape.width / 2) : shape.x, y: isNaN(shape.y) ? round(shapeMid.y - shape.height / 2) : shape.y }; shapeTopLeft = topLeft(shapeBounds); shapeBottomRight = bottomRight(shapeBounds); snapContext.setSnapOrigin('top-left', { x: shapeTopLeft.x - event.x, y: shapeTopLeft.y - event.y }); snapContext.setSnapOrigin('bottom-right', { x: shapeBottomRight.x - event.x, y: shapeBottomRight.y - event.y }); forEach(shape.outgoing, function(c) { var docking = c.waypoints[0]; docking = docking.original || docking; snapContext.setSnapOrigin(c.id + '-docking', { x: docking.x - event.x, y: docking.y - event.y }); }); forEach(shape.incoming, function(c) { var docking = c.waypoints[c.waypoints.length - 1]; docking = docking.original || docking; snapContext.setSnapOrigin(c.id + '-docking', { x: docking.x - event.x, y: docking.y - event.y }); }); } var source = context.source; if (source) { snapContext.addDefaultSnap('mid', mid(source)); } }; BpmnSnapping.prototype.addTargetSnaps = function(snapPoints, shape, target) { // use target parent as snap target if (is(shape, 'bpmn:BoundaryEvent') && shape.type !== 'label') { target = target.parent; } // add sequence flow parents as snap targets if (is(target, 'bpmn:SequenceFlow')) { this.addTargetSnaps(snapPoints, shape, target.parent); } var siblings = this.getSiblings(shape, target) || []; forEach(siblings, function(sibling) { // do not snap to lanes if (is(sibling, 'bpmn:Lane')) { return; } if (sibling.waypoints) { forEach(sibling.waypoints, function(waypoint, i) { var nextWaypoint = sibling.waypoints[i+1]; if (!nextWaypoint) { return; } if (nextWaypoint.x === waypoint.x || nextWaypoint.y === waypoint.y) { snapPoints.add('mid', waypoint); } }); return; } snapPoints.add('mid', mid(sibling)); if (is(sibling, 'bpmn:Participant')) { snapPoints.add('top-left', topLeft(sibling)); snapPoints.add('bottom-right', bottomRight(sibling)); } }); forEach(shape.incoming, function(c) { if (siblings.indexOf(c.source) === -1) { snapPoints.add('mid', mid(c.source)); } var docking = c.waypoints[0]; snapPoints.add(c.id + '-docking', docking.original || docking); }); forEach(shape.outgoing, function(c) { if (siblings.indexOf(c.target) === -1) { snapPoints.add('mid', mid(c.target)); } var docking = c.waypoints[c.waypoints.length - 1]; snapPoints.add(c.id + '-docking', docking.original || docking); }); }; /////// participant snapping ////////////////// function initParticipantSnapping(context, shape, elements) { if (!elements.length) { return; } var snapBox = getBoundingBox(elements.filter(function(e) { return !e.labelTarget && !e.waypoints; })); snapBox.x -= 50; snapBox.y -= 20; snapBox.width += 70; snapBox.height += 40; // adjust shape height to include bounding box shape.width = Math.max(shape.width, snapBox.width); shape.height = Math.max(shape.height, snapBox.height); context.participantSnapBox = snapBox; } function snapParticipant(snapBox, shape, event, offset) { offset = offset || 0; var shapeHalfWidth = shape.width / 2 - offset, shapeHalfHeight = shape.height / 2; var currentTopLeft = { x: event.x - shapeHalfWidth - offset, y: event.y - shapeHalfHeight }; var currentBottomRight = { x: event.x + shapeHalfWidth + offset, y: event.y + shapeHalfHeight }; var snapTopLeft = snapBox, snapBottomRight = bottomRight(snapBox); if (currentTopLeft.x >= snapTopLeft.x) { setSnapped(event, 'x', snapTopLeft.x + offset + shapeHalfWidth); } else if (currentBottomRight.x <= snapBottomRight.x) { setSnapped(event, 'x', snapBottomRight.x - offset - shapeHalfWidth); } if (currentTopLeft.y >= snapTopLeft.y) { setSnapped(event, 'y', snapTopLeft.y + shapeHalfHeight); } else if (currentBottomRight.y <= snapBottomRight.y) { setSnapped(event, 'y', snapBottomRight.y - shapeHalfHeight); } } /////// boundary event snapping ///////////////////////// function snapBoundaryEvent(event, shape, target) { var targetTRBL = asTRBL(target); var direction = getBoundaryAttachment(event, target); if (/top/.test(direction)) { setSnapped(event, 'y', targetTRBL.top); } else if (/bottom/.test(direction)) { setSnapped(event, 'y', targetTRBL.bottom); } if (/left/.test(direction)) { setSnapped(event, 'x', targetTRBL.left); } else if (/right/.test(direction)) { setSnapped(event, 'x', targetTRBL.right); } } },{"235":235,"236":236,"252":252,"266":266,"289":289,"301":301,"303":303,"431":431,"67":67,"68":68,"86":86,"93":93,"95":95}],86:[function(_dereq_,module,exports){ 'use strict'; var getOrientation = _dereq_(252).getOrientation; function getBoundaryAttachment(position, targetBounds) { var orientation = getOrientation(position, targetBounds, -15); if (orientation !== 'intersect') { return orientation; } else { return null; } } module.exports.getBoundaryAttachment = getBoundaryAttachment; // participant snapping box implementation ///////////////// var is = _dereq_(95).is; var asTRBL = _dereq_(252).asTRBL; var collectLanes = _dereq_(67).collectLanes, getLanesRoot = _dereq_(67).getLanesRoot; var abs = Math.abs, min = Math.min, max = Math.max; function addToTrbl(trbl, attr, value, choice) { var current = trbl[attr]; // make sure to set the value if it does not exist // or apply the correct value by comparing against // choice(value, currentValue) trbl[attr] = current === undefined ? value : choice(value, current); } function addMin(trbl, attr, value) { return addToTrbl(trbl, attr, value, min); } function addMax(trbl, attr, value) { return addToTrbl(trbl, attr, value, max); } var LANE_MIN_HEIGHT = 60, LANE_MIN_WIDTH = 300, LANE_RIGHT_PADDING = 20, LANE_LEFT_PADDING = 50, LANE_TOP_PADDING = 20, LANE_BOTTOM_PADDING = 20; function getParticipantSizeConstraints(laneShape, resizeDirection, balanced) { var lanesRoot = getLanesRoot(laneShape); var isFirst = true, isLast = true; ///// max top/bottom size for lanes var allLanes = collectLanes(lanesRoot, [ lanesRoot ]); var laneTrbl = asTRBL(laneShape); var maxTrbl = {}, minTrbl = {}; if (/e/.test(resizeDirection)) { minTrbl.right = laneTrbl.left + LANE_MIN_WIDTH; } else if (/w/.test(resizeDirection)) { minTrbl.left = laneTrbl.right - LANE_MIN_WIDTH; } allLanes.forEach(function(other) { var otherTrbl = asTRBL(other); if (/n/.test(resizeDirection)) { if (otherTrbl.top < (laneTrbl.top - 10)) { isFirst = false; } // max top size (based on next element) if (balanced && abs(laneTrbl.top - otherTrbl.bottom) < 10) { addMax(maxTrbl, 'top', otherTrbl.top + LANE_MIN_HEIGHT); } // min top size (based on self or nested element) if (abs(laneTrbl.top - otherTrbl.top) < 5) { addMin(minTrbl, 'top', otherTrbl.bottom - LANE_MIN_HEIGHT); } } if (/s/.test(resizeDirection)) { if (otherTrbl.bottom > (laneTrbl.bottom + 10)) { isLast = false; } // max bottom size (based on previous element) if (balanced && abs(laneTrbl.bottom - otherTrbl.top) < 10) { addMin(maxTrbl, 'bottom', otherTrbl.bottom - LANE_MIN_HEIGHT); } // min bottom size (based on self or nested element) if (abs(laneTrbl.bottom - otherTrbl.bottom) < 5) { addMax(minTrbl, 'bottom', otherTrbl.top + LANE_MIN_HEIGHT); } } }); ///// max top/bottom/left/right size based on flow nodes var flowElements = lanesRoot.children.filter(function(s) { return !s.hidden && !s.waypoints && (is(s, 'bpmn:FlowElement') || is(s, 'bpmn:Artifact')); }); flowElements.forEach(function(flowElement) { var flowElementTrbl = asTRBL(flowElement); if (isFirst && /n/.test(resizeDirection)) { addMin(minTrbl, 'top', flowElementTrbl.top - LANE_TOP_PADDING); } if (/e/.test(resizeDirection)) { addMax(minTrbl, 'right', flowElementTrbl.right + LANE_RIGHT_PADDING); } if (isLast && /s/.test(resizeDirection)) { addMax(minTrbl, 'bottom', flowElementTrbl.bottom + LANE_BOTTOM_PADDING); } if (/w/.test(resizeDirection)) { addMin(minTrbl, 'left', flowElementTrbl.left - LANE_LEFT_PADDING); } }); return { min: minTrbl, max: maxTrbl }; } module.exports.getParticipantSizeConstraints = getParticipantSizeConstraints; },{"252":252,"67":67,"95":95}],87:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'snapping' ], snapping: [ 'type', _dereq_(85) ] }; },{"85":85}],88:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), map = _dereq_(305); var LabelUtil = _dereq_(94); var TextUtil = _dereq_(280); var is = _dereq_(95).is; var hasExternalLabel = LabelUtil.hasExternalLabel, getExternalLabelBounds = LabelUtil.getExternalLabelBounds, isExpanded = _dereq_(93).isExpanded, elementToString = _dereq_(91).elementToString; function elementData(semantic, attrs) { return assign({ id: semantic.id, type: semantic.$type, businessObject: semantic }, attrs); } function collectWaypoints(waypoints) { return map(waypoints, function(p) { return { x: p.x, y: p.y }; }); } function notYetDrawn(translate, semantic, refSemantic, property) { return new Error(translate('element {element} referenced by {referenced}#{property} not yet drawn', { element: elementToString(refSemantic), referenced: elementToString(semantic), property: property })); } /** * An importer that adds bpmn elements to the canvas * * @param {EventBus} eventBus * @param {Canvas} canvas * @param {ElementFactory} elementFactory * @param {ElementRegistry} elementRegistry */ function BpmnImporter(eventBus, canvas, elementFactory, elementRegistry, translate) { this._eventBus = eventBus; this._canvas = canvas; this._elementFactory = elementFactory; this._elementRegistry = elementRegistry; this._translate = translate; this._textUtil = new TextUtil(); } BpmnImporter.$inject = [ 'eventBus', 'canvas', 'elementFactory', 'elementRegistry', 'translate' ]; module.exports = BpmnImporter; /** * Add bpmn element (semantic) to the canvas onto the * specified parent shape. */ BpmnImporter.prototype.add = function(semantic, parentElement) { var di = semantic.di, element, translate = this._translate, hidden; // ROOT ELEMENT // handle the special case that we deal with a // invisible root element (process or collaboration) if (is(di, 'bpmndi:BPMNPlane')) { // add a virtual element (not being drawn) element = this._elementFactory.createRoot(elementData(semantic)); this._canvas.setRootElement(element); } // SHAPE else if (is(di, 'bpmndi:BPMNShape')) { var collapsed = !isExpanded(semantic); hidden = parentElement && (parentElement.hidden || parentElement.collapsed); var bounds = semantic.di.bounds; element = this._elementFactory.createShape(elementData(semantic, { collapsed: collapsed, hidden: hidden, x: Math.round(bounds.x), y: Math.round(bounds.y), width: Math.round(bounds.width), height: Math.round(bounds.height) })); if (is(semantic, 'bpmn:BoundaryEvent')) { this._attachBoundary(semantic, element); } this._canvas.addShape(element, parentElement); } // CONNECTION else if (is(di, 'bpmndi:BPMNEdge')) { var source = this._getSource(semantic), target = this._getTarget(semantic); hidden = parentElement && (parentElement.hidden || parentElement.collapsed); element = this._elementFactory.createConnection(elementData(semantic, { hidden: hidden, source: source, target: target, waypoints: collectWaypoints(semantic.di.waypoint) })); if (is(semantic, 'bpmn:DataAssociation')) { // render always on top; this ensures DataAssociations // are rendered correctly across different "hacks" people // love to model such as cross participant / sub process // associations parentElement = null; } this._canvas.addConnection(element, parentElement); } else { throw new Error(translate('unknown di {di} for element {semantic}', { di: elementToString(di), semantic: elementToString(semantic) })); } // (optional) LABEL if (hasExternalLabel(semantic)) { this.addLabel(semantic, element); } this._eventBus.fire('bpmnElement.added', { element: element }); return element; }; /** * Attach the boundary element to the given host * * @param {ModdleElement} boundarySemantic * @param {djs.model.Base} boundaryElement */ BpmnImporter.prototype._attachBoundary = function(boundarySemantic, boundaryElement) { var translate = this._translate; var hostSemantic = boundarySemantic.attachedToRef; if (!hostSemantic) { throw new Error(translate('missing {semantic}#attachedToRef', { semantic: elementToString(boundarySemantic) })); } var host = this._elementRegistry.get(hostSemantic.id), attachers = host && host.attachers; if (!host) { throw notYetDrawn(translate, boundarySemantic, hostSemantic, 'attachedToRef'); } // wire element.host <> host.attachers boundaryElement.host = host; if (!attachers) { host.attachers = attachers = []; } if (attachers.indexOf(boundaryElement) === -1) { attachers.push(boundaryElement); } }; /** * add label for an element */ BpmnImporter.prototype.addLabel = function(semantic, element) { var bounds, text, label; bounds = getExternalLabelBounds(semantic, element); text = semantic.name; if (text) { // get corrected bounds from actual layouted text bounds = getLayoutedBounds(bounds, text, this._textUtil); } label = this._elementFactory.createLabel(elementData(semantic, { id: semantic.id + '_label', labelTarget: element, type: 'label', hidden: element.hidden || !semantic.name, x: Math.round(bounds.x), y: Math.round(bounds.y), width: Math.round(bounds.width), height: Math.round(bounds.height) })); return this._canvas.addShape(label, element.parent); }; /** * Return the drawn connection end based on the given side. * * @throws {Error} if the end is not yet drawn */ BpmnImporter.prototype._getEnd = function(semantic, side) { var element, refSemantic, type = semantic.$type, translate = this._translate; refSemantic = semantic[side + 'Ref']; // handle mysterious isMany DataAssociation#sourceRef if (side === 'source' && type === 'bpmn:DataInputAssociation') { refSemantic = refSemantic && refSemantic[0]; } // fix source / target for DataInputAssociation / DataOutputAssociation if (side === 'source' && type === 'bpmn:DataOutputAssociation' || side === 'target' && type === 'bpmn:DataInputAssociation') { refSemantic = semantic.$parent; } element = refSemantic && this._getElement(refSemantic); if (element) { return element; } if (refSemantic) { throw notYetDrawn(translate, semantic, refSemantic, side + 'Ref'); } else { throw new Error(translate('{semantic}#{side} Ref not specified', { semantic: elementToString(semantic), side: side })); } }; BpmnImporter.prototype._getSource = function(semantic) { return this._getEnd(semantic, 'source'); }; BpmnImporter.prototype._getTarget = function(semantic) { return this._getEnd(semantic, 'target'); }; BpmnImporter.prototype._getElement = function(semantic) { return this._elementRegistry.get(semantic.id); }; // TODO(nikku): repeating code (search for ) var EXTERNAL_LABEL_STYLE = { fontFamily: 'Arial, sans-serif', fontSize: '11px' }; function getLayoutedBounds(bounds, text, textUtil) { var layoutedLabelDimensions = textUtil.getDimensions(text, { box: { width: 90, height: 30, x: bounds.width / 2 + bounds.x, y: bounds.height / 2 + bounds.y }, style: EXTERNAL_LABEL_STYLE }); // resize label shape to fit label text return { x: Math.round(bounds.x + bounds.width / 2 - layoutedLabelDimensions.width / 2), y: Math.round(bounds.y), width: Math.ceil(layoutedLabelDimensions.width), height: Math.ceil(layoutedLabelDimensions.height) }; } },{"280":280,"305":305,"431":431,"91":91,"93":93,"94":94,"95":95}],89:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301), find = _dereq_(302), forEach = _dereq_(303); var Refs = _dereq_(466); var elementToString = _dereq_(91).elementToString; var diRefs = new Refs({ name: 'bpmnElement', enumerable: true }, { name: 'di' }); /** * Returns true if an element has the given meta-model type * * @param {ModdleElement} element * @param {String} type * * @return {Boolean} */ function is(element, type) { return element.$instanceOf(type); } /** * Find a suitable display candidate for definitions where the DI does not * correctly specify one. */ function findDisplayCandidate(definitions) { return find(definitions.rootElements, function(e) { return is(e, 'bpmn:Process') || is(e, 'bpmn:Collaboration'); }); } function BpmnTreeWalker(handler, translate) { // list of containers already walked var handledElements = {}; // list of elements to handle deferred to ensure // prerequisites are drawn var deferred = []; ///// Helpers ///////////////////////////////// function contextual(fn, ctx) { return function(e) { fn(e, ctx); }; } function handled(element) { handledElements[element.id] = element; } function isHandled(element) { return handledElements[element.id]; } function visit(element, ctx) { var gfx = element.gfx; // avoid multiple rendering of elements if (gfx) { throw new Error( translate('already rendered {element}', { element: elementToString(element) }) ); } // call handler return handler.element(element, ctx); } function visitRoot(element, diagram) { return handler.root(element, diagram); } function visitIfDi(element, ctx) { try { var gfx = element.di && visit(element, ctx); handled(element); return gfx; } catch (e) { logError(e.message, { element: element, error: e }); console.error(translate('failed to import {element}', { element: elementToString(element) })); console.error(e); } } function logError(message, context) { handler.error(message, context); } ////// DI handling //////////////////////////// function registerDi(di) { var bpmnElement = di.bpmnElement; if (bpmnElement) { if (bpmnElement.di) { logError( translate('multiple DI elements defined for {element}', { element: elementToString(bpmnElement) }), { element: bpmnElement } ); } else { diRefs.bind(bpmnElement, 'di'); bpmnElement.di = di; } } else { logError( translate('no bpmnElement referenced in {element}', { element: elementToString(di) }), { element: di } ); } } function handleDiagram(diagram) { handlePlane(diagram.plane); } function handlePlane(plane) { registerDi(plane); forEach(plane.planeElement, handlePlaneElement); } function handlePlaneElement(planeElement) { registerDi(planeElement); } ////// Semantic handling ////////////////////// /** * Handle definitions and return the rendered diagram (if any) * * @param {ModdleElement} definitions to walk and import * @param {ModdleElement} [diagram] specific diagram to import and display * * @throws {Error} if no diagram to display could be found */ function handleDefinitions(definitions, diagram) { // make sure we walk the correct bpmnElement var diagrams = definitions.diagrams; if (diagram && diagrams.indexOf(diagram) === -1) { throw new Error(translate('diagram not part of bpmn:Definitions')); } if (!diagram && diagrams && diagrams.length) { diagram = diagrams[0]; } // no diagram -> nothing to import if (!diagram) { throw new Error(translate('no diagram to display')); } // load DI from selected diagram only handleDiagram(diagram); var plane = diagram.plane; if (!plane) { throw new Error(translate( 'no plane for {element}', { element: elementToString(diagram) } )); } var rootElement = plane.bpmnElement; // ensure we default to a suitable display candidate (process or collaboration), // even if non is specified in DI if (!rootElement) { rootElement = findDisplayCandidate(definitions); if (!rootElement) { throw new Error(translate('no process or collaboration to display')); } else { logError( translate('correcting missing bpmnElement on {plane} to {rootElement}', { plane: elementToString(plane), rootElement: elementToString(rootElement) }) ); // correct DI on the fly plane.bpmnElement = rootElement; registerDi(plane); } } var ctx = visitRoot(rootElement, plane); if (is(rootElement, 'bpmn:Process')) { handleProcess(rootElement, ctx); } else if (is(rootElement, 'bpmn:Collaboration')) { handleCollaboration(rootElement, ctx); // force drawing of everything not yet drawn that is part of the target DI handleUnhandledProcesses(definitions.rootElements, ctx); } else { throw new Error( translate('unsupported bpmnElement for {plane}: {rootElement}', { plane: elementToString(plane), rootElement: elementToString(rootElement) }) ); } // handle all deferred elements handleDeferred(deferred); } function handleDeferred(deferred) { forEach(deferred, function(d) { d(); }); } function handleProcess(process, context) { handleFlowElementsContainer(process, context); handleIoSpecification(process.ioSpecification, context); handleArtifacts(process.artifacts, context); // log process handled handled(process); } function handleUnhandledProcesses(rootElements) { // walk through all processes that have not yet been drawn and draw them // if they contain lanes with DI information. // we do this to pass the free-floating lane test cases in the MIWG test suite var processes = filter(rootElements, function(e) { return !isHandled(e) && is(e, 'bpmn:Process') && e.laneSets; }); processes.forEach(contextual(handleProcess)); } function handleMessageFlow(messageFlow, context) { visitIfDi(messageFlow, context); } function handleMessageFlows(messageFlows, context) { forEach(messageFlows, contextual(handleMessageFlow, context)); } function handleDataAssociation(association, context) { visitIfDi(association, context); } function handleDataInput(dataInput, context) { visitIfDi(dataInput, context); } function handleDataOutput(dataOutput, context) { visitIfDi(dataOutput, context); } function handleArtifact(artifact, context) { // bpmn:TextAnnotation // bpmn:Group // bpmn:Association visitIfDi(artifact, context); } function handleArtifacts(artifacts, context) { forEach(artifacts, function(e) { if (is(e, 'bpmn:Association')) { deferred.push(function() { handleArtifact(e, context); }); } else { handleArtifact(e, context); } }); } function handleIoSpecification(ioSpecification, context) { if (!ioSpecification) { return; } forEach(ioSpecification.dataInputs, contextual(handleDataInput, context)); forEach(ioSpecification.dataOutputs, contextual(handleDataOutput, context)); } function handleSubProcess(subProcess, context) { handleFlowElementsContainer(subProcess, context); handleArtifacts(subProcess.artifacts, context); } function handleFlowNode(flowNode, context) { var childCtx = visitIfDi(flowNode, context); if (is(flowNode, 'bpmn:SubProcess')) { handleSubProcess(flowNode, childCtx || context); } if (is(flowNode, 'bpmn:Activity')) { handleIoSpecification(flowNode.ioSpecification, context); } // defer handling of associations // affected types: // // * bpmn:Activity // * bpmn:ThrowEvent // * bpmn:CatchEvent // deferred.push(function() { forEach(flowNode.dataInputAssociations, contextual(handleDataAssociation, context)); forEach(flowNode.dataOutputAssociations, contextual(handleDataAssociation, context)); }); } function handleSequenceFlow(sequenceFlow, context) { visitIfDi(sequenceFlow, context); } function handleDataElement(dataObject, context) { visitIfDi(dataObject, context); } function handleBoundaryEvent(dataObject, context) { visitIfDi(dataObject, context); } function handleLane(lane, context) { var newContext = visitIfDi(lane, context); if (lane.childLaneSet) { handleLaneSet(lane.childLaneSet, newContext || context); } wireFlowNodeRefs(lane); } function handleLaneSet(laneSet, context) { forEach(laneSet.lanes, contextual(handleLane, context)); } function handleLaneSets(laneSets, context) { forEach(laneSets, contextual(handleLaneSet, context)); } function handleFlowElementsContainer(container, context) { if (container.laneSets) { handleLaneSets(container.laneSets, context); } handleFlowElements(container.flowElements, context); } function handleFlowElements(flowElements, context) { forEach(flowElements, function(e) { if (is(e, 'bpmn:SequenceFlow')) { deferred.push(function() { handleSequenceFlow(e, context); }); } else if (is(e, 'bpmn:BoundaryEvent')) { deferred.unshift(function() { handleBoundaryEvent(e, context); }); } else if (is(e, 'bpmn:FlowNode')) { handleFlowNode(e, context); } else if (is(e, 'bpmn:DataObject')) { // SKIP (assume correct referencing via DataObjectReference) } else if (is(e, 'bpmn:DataStoreReference')) { handleDataElement(e, context); } else if (is(e, 'bpmn:DataObjectReference')) { handleDataElement(e, context); } else { logError( translate('unrecognized flowElement {element} in context {context}', { element: elementToString(e), context: (context ? elementToString(context.businessObject) : 'null') }), { element: e, context: context } ); } }); } function handleParticipant(participant, context) { var newCtx = visitIfDi(participant, context); var process = participant.processRef; if (process) { handleProcess(process, newCtx || context); } } function handleCollaboration(collaboration) { forEach(collaboration.participants, contextual(handleParticipant)); handleArtifacts(collaboration.artifacts); // handle message flows latest in the process deferred.push(function() { handleMessageFlows(collaboration.messageFlows); }); } function wireFlowNodeRefs(lane) { // wire the virtual flowNodeRefs <-> relationship forEach(lane.flowNodeRef, function(flowNode) { var lanes = flowNode.get('lanes'); if (lanes) { lanes.push(lane); } }); } ///// API //////////////////////////////// return { handleDefinitions: handleDefinitions }; } module.exports = BpmnTreeWalker; },{"301":301,"302":302,"303":303,"466":466,"91":91}],90:[function(_dereq_,module,exports){ 'use strict'; var BpmnTreeWalker = _dereq_(89); /** * Import the definitions into a diagram. * * Errors and warnings are reported through the specified callback. * * @param {Diagram} diagram * @param {ModdleElement} definitions * @param {Function} done the callback, invoked with (err, [ warning ]) once the import is done */ function importBpmnDiagram(diagram, definitions, done) { var importer = diagram.get('bpmnImporter'), eventBus = diagram.get('eventBus'), translate = diagram.get('translate'); var error, warnings = []; /** * Walk the diagram semantically, importing (=drawing) * all elements you encounter. * * @param {ModdleElement} definitions */ function render(definitions) { var visitor = { root: function(element) { return importer.add(element); }, element: function(element, parentShape) { return importer.add(element, parentShape); }, error: function(message, context) { warnings.push({ message: message, context: context }); } }; var walker = new BpmnTreeWalker(visitor, translate); // traverse BPMN 2.0 document model, // starting at definitions walker.handleDefinitions(definitions); } eventBus.fire('import.render.start', { definitions: definitions }); try { render(definitions); } catch (e) { error = e; } eventBus.fire('import.render.complete', { error: error, warnings: warnings }); done(error, warnings); } module.exports.importBpmnDiagram = importBpmnDiagram; },{"89":89}],91:[function(_dereq_,module,exports){ 'use strict'; module.exports.elementToString = function(e) { if (!e) { return ''; } return '<' + e.$type + (e.id ? ' id="' + e.id : '') + '" />'; }; },{}],92:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(248) ], bpmnImporter: [ 'type', _dereq_(88) ] }; },{"248":248,"88":88}],93:[function(_dereq_,module,exports){ 'use strict'; var is = _dereq_(95).is, getBusinessObject = _dereq_(95).getBusinessObject; var forEach = _dereq_(303); module.exports.isExpanded = function(element) { if (is(element, 'bpmn:CallActivity')) { return false; } if (is(element, 'bpmn:SubProcess')) { return !!getBusinessObject(element).di.isExpanded; } if (is(element, 'bpmn:Participant')) { return !!getBusinessObject(element).processRef; } return true; }; module.exports.isInterrupting = function(element) { return element && getBusinessObject(element).isInterrupting !== false; }; module.exports.isEventSubProcess = function(element) { return element && !!getBusinessObject(element).triggeredByEvent; }; function hasEventDefinition(element, eventType) { var bo = getBusinessObject(element), hasEventDefinition = false; if (bo.eventDefinitions) { forEach(bo.eventDefinitions, function(event) { if (is(event, eventType)) { hasEventDefinition = true; } }); } return hasEventDefinition; } module.exports.hasEventDefinition = hasEventDefinition; module.exports.hasErrorEventDefinition = function(element) { return hasEventDefinition(element, 'bpmn:ErrorEventDefinition'); }; module.exports.hasEscalationEventDefinition = function(element) { return hasEventDefinition(element, 'bpmn:EscalationEventDefinition'); }; module.exports.hasCompensateEventDefinition = function(element) { return hasEventDefinition(element, 'bpmn:CompensateEventDefinition'); }; },{"303":303,"95":95}],94:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var is = _dereq_(95).is; var DEFAULT_LABEL_SIZE = module.exports.DEFAULT_LABEL_SIZE = { width: 90, height: 20 }; var FLOW_LABEL_INDENT = module.exports.FLOW_LABEL_INDENT = 15; /** * Returns true if the given semantic has an external label * * @param {BpmnElement} semantic * @return {Boolean} true if has label */ module.exports.hasExternalLabel = function(semantic) { return is(semantic, 'bpmn:Event') || is(semantic, 'bpmn:Gateway') || is(semantic, 'bpmn:DataStoreReference') || is(semantic, 'bpmn:DataObjectReference') || is(semantic, 'bpmn:SequenceFlow') || is(semantic, 'bpmn:MessageFlow'); }; /** * Get the position for sequence flow labels * * @param {Array} waypoints * @return {Point} the label position */ function getFlowLabelPosition(waypoints) { // get the waypoints mid var mid = waypoints.length / 2 - 1; var first = waypoints[Math.floor(mid)]; var second = waypoints[Math.ceil(mid + 0.01)]; // get position var position = getWaypointsMid(waypoints); // calculate angle var angle = Math.atan( (second.y - first.y) / (second.x - first.x) ); var x = position.x, y = position.y; if ( Math.abs(angle) < Math.PI / 2 ) { y -= FLOW_LABEL_INDENT; } else { x += FLOW_LABEL_INDENT; } return { x: x, y: y }; } module.exports.getFlowLabelPosition = getFlowLabelPosition; /** * Get the middle of a number of waypoints * * @param {Array} waypoints * @return {Point} the mid point */ function getWaypointsMid(waypoints) { var mid = waypoints.length / 2 - 1; var first = waypoints[Math.floor(mid)]; var second = waypoints[Math.ceil(mid + 0.01)]; return { x: first.x + (second.x - first.x) / 2, y: first.y + (second.y - first.y) / 2 }; } module.exports.getWaypointsMid = getWaypointsMid; function getExternalLabelMid(element) { if (element.waypoints) { return getFlowLabelPosition(element.waypoints); } else { return { x: element.x + element.width / 2, y: element.y + element.height + DEFAULT_LABEL_SIZE.height / 2 }; } } module.exports.getExternalLabelMid = getExternalLabelMid; /** * Returns the bounds of an elements label, parsed from the elements DI or * generated from its bounds. * * @param {BpmnElement} semantic * @param {djs.model.Base} element */ module.exports.getExternalLabelBounds = function(semantic, element) { var mid, size, bounds, di = semantic.di, label = di.label; if (label && label.bounds) { bounds = label.bounds; size = { width: Math.max(DEFAULT_LABEL_SIZE.width, bounds.width), height: bounds.height }; mid = { x: bounds.x + bounds.width / 2, y: bounds.y + bounds.height / 2 }; } else { mid = getExternalLabelMid(element); size = DEFAULT_LABEL_SIZE; } return assign({ x: mid.x - size.width / 2, y: mid.y - size.height / 2 }, size); }; },{"431":431,"95":95}],95:[function(_dereq_,module,exports){ 'use strict'; /** * Is an element of the given BPMN type? * * @param {djs.model.Base|ModdleElement} element * @param {String} type * * @return {Boolean} */ function is(element, type) { var bo = getBusinessObject(element); return bo && (typeof bo.$instanceOf === 'function') && bo.$instanceOf(type); } module.exports.is = is; /** * Return the business object for a given element. * * @param {djs.model.Base|ModdleElement} element * * @return {ModdleElement} */ function getBusinessObject(element) { return (element && element.businessObject) || element; } module.exports.getBusinessObject = getBusinessObject; },{}],96:[function(_dereq_,module,exports){ /** * This file must not be changed or exchanged. * * @see http://bpmn.io/license for more information. */ 'use strict'; var domify = _dereq_(449); var domDelegate = _dereq_(448); /* jshint -W101 */ // inlined ../resources/bpmnjs.png var logoData = module.exports.BPMNIO_LOGO = 'iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAMAAADypuvZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRFiMte9PrwldFwfcZPqtqN0+zEyOe1XLgjvuKncsJAZ70y6fXh3vDT////UrQV////G2zN+AAAABB0Uk5T////////////////////AOAjXRkAAAHDSURBVHjavJZJkoUgDEBJmAX8979tM8u3E6x20VlYJfFFMoL4vBDxATxZcakIOJTWSmxvKWVIkJ8jHvlRv1F2LFrVISCZI+tCtQx+XfewgVTfyY3plPiQEAzI3zWy+kR6NBhFBYeBuscJLOUuA2WVLpCjVIaFzrNQZArxAZKUQm6gsj37L9Cb7dnIBUKxENaaMJQqMpDXvSL+ktxdGRm2IsKgJGGPg7atwUG5CcFUEuSv+CwQqizTrvDTNXdMU2bMiDWZd8d7QIySWVRsb2vBBioxOFt4OinPBapL+neAb5KL5IJ8szOza2/DYoipUCx+CjO0Bpsv0V6mktNZ+k8rlABlWG0FrOpKYVo8DT3dBeLEjUBAj7moDogVii7nSS9QzZnFcOVBp1g2PyBQ3Vr5aIapN91VJy33HTJLC1iX2FY6F8gRdaAeIEfVONgtFCzZTmoLEdOjBDfsIOA6128gw3eu1shAajdZNAORxuQDJN5A5PbEG6gNIu24QJD5iNyRMZIr6bsHbCtCU/OaOaSvgkUyDMdDa1BXGf5HJ1To+/Ym6mCKT02Y+/Sa126ZKyd3jxhzpc1r8zVL6YM1Qy/kR4ABAFJ6iQUnivhAAAAAAElFTkSuQmCC'; /* jshint +W101 */ function css(attrs) { return attrs.join(';'); } var LIGHTBOX_STYLES = css([ 'z-index: 1001', 'position: fixed', 'top: 0', 'left: 0', 'right: 0', 'bottom: 0' ]); var BACKDROP_STYLES = css([ 'width: 100%', 'height: 100%', 'background: rgba(0,0,0,0.2)' ]); var NOTICE_STYLES = css([ 'position: absolute', 'left: 50%', 'top: 40%', 'margin: 0 -130px', 'width: 260px', 'padding: 10px', 'background: white', 'border: solid 1px #AAA', 'border-radius: 3px', 'font-family: Helvetica, Arial, sans-serif', 'font-size: 14px', 'line-height: 1.2em' ]); var LIGHTBOX_MARKUP = '
' + '
' + '
' + '' + '' + '' + 'Web-based tooling for BPMN, DMN and CMMN diagrams ' + 'powered by bpmn.io.' + '
' + '
'; var lightbox; function open() { if (!lightbox) { lightbox = domify(LIGHTBOX_MARKUP); domDelegate.bind(lightbox, '.backdrop', 'click', function(event) { document.body.removeChild(lightbox); }); } document.body.appendChild(lightbox); } module.exports.open = open; },{"448":448,"449":449}],97:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), filter = _dereq_(301), any = _dereq_(299), sort = _dereq_(310), isArray = _dereq_(422); var IGNORED_PROPERTIES = _dereq_(98).IGNORED_PROPERTIES; function isAllowedIn(extProp, type) { var allowedIn = extProp.meta.allowedIn; // '*' is a wildcard, which means any element is allowed to use this property if (allowedIn.length === 1 && allowedIn[0] === '*') { return true; } return allowedIn.indexOf(type) !== -1; } function isType(element, types) { return any(types, function(type) { return typeof element === type; }); } /** * A bpmn properties cloning interface * */ function ModelCloneHelper(eventBus) { this._eventBus = eventBus; } module.exports = ModelCloneHelper; ModelCloneHelper.prototype.clone = function(refElement, newElement, properties) { // hasNestedProperty: property allows us to avoid ending up with empty (xml) tags // f.ex: if extensionElements.values is empty, don't set it var context = { newElement: newElement, hasNestedProperty: false }; // we want the extensionElements to be cloned last // so that they can check certain properties properties = sort(properties, function(prop) { return prop === 'bpmn:extensionElements'; }); forEach(properties, function(propName) { var refElementProp = refElement.get(propName), newElementProp = newElement.get(propName), propDescriptor = newElement.$model.getPropertyDescriptor(newElement, propName), newProperty, name; // we're not interested in cloning: // - same values from simple types // - cloning id's // - cloning reference elements if (newElementProp === refElementProp || (propDescriptor && (propDescriptor.isId || propDescriptor.isReference))) { return; } // if the property is of type 'boolean', 'string', 'number' or 'null', just set it if (isType(refElementProp, [ 'boolean', 'string', 'number' ]) || refElementProp === null) { newElement.set(propName, refElementProp); return; } if (isArray(refElementProp)) { forEach(refElementProp, function(extElement) { var newProp; context.refTopLevelProperty = extElement; newProp = this._deepClone(extElement, context); if (context.hasNestedProperty) { newProp.$parent = newElement; newElementProp.push(newProp); } context.hasNestedProperty = false; }, this); } else { name = propName.replace(/bpmn:/, ''); context.refTopLevelProperty = refElementProp; newProperty = this._deepClone(refElementProp, context); if (context.hasNestedProperty) { newElement[name] = newProperty; } context.hasNestedProperty = false; } }, this); return newElement; }; ModelCloneHelper.prototype._deepClone = function _deepClone(propertyElement, context) { var eventBus = this._eventBus; var newProp = propertyElement.$model.create(propertyElement.$type); var properties = filter(Object.keys(propertyElement), function(prop) { var descriptor = newProp.$model.getPropertyDescriptor(newProp, prop); if (descriptor && (descriptor.isId || descriptor.isReference)) { return false; } // we need to make sure we don't clone certain properties // which we cannot easily know if they hold references or not if (IGNORED_PROPERTIES.indexOf(prop) !== -1) { return false; } // make sure we don't copy the type return prop !== '$type'; }); if (!properties.length) { context.hasNestedProperty = true; } forEach(properties, function(propName) { // check if the propertyElement has this property defined if (propertyElement[propName] !== undefined && (propertyElement[propName].$type || isArray(propertyElement[propName]))) { if (isArray(propertyElement[propName])) { newProp[propName] = []; forEach(propertyElement[propName], function(property) { var extProp = propertyElement.$model.getTypeDescriptor(property.$type), newDeepProp; // we're not going to copy undefined types if (!extProp) { return; } var canClone = eventBus.fire('property.clone', { newElement: context.newElement, refTopLevelProperty: context.refTopLevelProperty, propertyDescriptor: extProp }); if (!canClone) { // if can clone is 'undefined' or 'false' // check for the meta information if it is allowed if (propertyElement.$type === 'bpmn:ExtensionElements' && extProp.meta && extProp.meta.allowedIn && !isAllowedIn(extProp, context.newElement.$type)) { return false; } } newDeepProp = this._deepClone(property, context); newDeepProp.$parent = newProp; if (!newProp[propName]) { newProp[propName] = []; } context.hasNestedProperty = true; newProp[propName].push(newDeepProp); }, this); } else if (propertyElement[propName].$type) { newProp[propName] = this._deepClone(propertyElement[propName], context); if (newProp[propName]) { context.hasNestedProperty = true; newProp[propName].$parent = newProp; } } } else { context.hasNestedProperty = true; // just assign directly if it's a value newProp[propName] = propertyElement[propName]; } }, this); return newProp; }; },{"299":299,"301":301,"303":303,"310":310,"422":422,"98":98}],98:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); /** * These are the properties that should be ignored when cloning elements. * * @type {Array} */ module.exports.IGNORED_PROPERTIES = [ 'lanes', 'incoming', 'outgoing', 'artifacts', 'default', 'flowElements' ]; function getProperties(descriptor, keepDefault) { var properties = []; forEach(descriptor.properties, function(property) { if (keepDefault && property.default) { return; } properties.push(property.ns.name); }); return properties; } module.exports.getProperties = getProperties; },{"303":303}],99:[function(_dereq_,module,exports){ module.exports = _dereq_(101); },{"101":101}],100:[function(_dereq_,module,exports){ 'use strict'; var isString = _dereq_(428), isFunction = _dereq_(423), assign = _dereq_(431); var Moddle = _dereq_(457), XmlReader = _dereq_(455), XmlWriter = _dereq_(456); /** * A sub class of {@link Moddle} with support for import and export of BPMN 2.0 xml files. * * @class BpmnModdle * @extends Moddle * * @param {Object|Array} packages to use for instantiating the model * @param {Object} [options] additional options to pass over */ function BpmnModdle(packages, options) { Moddle.call(this, packages, options); } BpmnModdle.prototype = Object.create(Moddle.prototype); module.exports = BpmnModdle; /** * Instantiates a BPMN model tree from a given xml string. * * @param {String} xmlStr * @param {String} [typeName='bpmn:Definitions'] name of the root element * @param {Object} [options] options to pass to the underlying reader * @param {Function} done callback that is invoked with (err, result, parseContext) * once the import completes */ BpmnModdle.prototype.fromXML = function(xmlStr, typeName, options, done) { if (!isString(typeName)) { done = options; options = typeName; typeName = 'bpmn:Definitions'; } if (isFunction(options)) { done = options; options = {}; } var reader = new XmlReader(assign({ model: this, lax: true }, options)); var rootHandler = reader.handler(typeName); reader.fromXML(xmlStr, rootHandler, done); }; /** * Serializes a BPMN 2.0 object tree to XML. * * @param {String} element the root element, typically an instance of `bpmn:Definitions` * @param {Object} [options] to pass to the underlying writer * @param {Function} done callback invoked with (err, xmlStr) once the import completes */ BpmnModdle.prototype.toXML = function(element, options, done) { if (isFunction(options)) { done = options; options = {}; } var writer = new XmlWriter(options); try { var result = writer.toXML(element); done(null, result); } catch (e) { done(e); } }; },{"423":423,"428":428,"431":431,"455":455,"456":456,"457":457}],101:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var BpmnModdle = _dereq_(100); var packages = { bpmn: _dereq_(103), bpmndi: _dereq_(104), dc: _dereq_(105), di: _dereq_(106), bioc: _dereq_(102) }; module.exports = function(additionalPackages, options) { return new BpmnModdle(assign({}, packages, additionalPackages), options); }; },{"100":100,"102":102,"103":103,"104":104,"105":105,"106":106,"431":431}],102:[function(_dereq_,module,exports){ module.exports={ "name": "bpmn.io colors for BPMN", "uri": "http://bpmn.io/schema/bpmn/biocolor/1.0", "prefix": "bioc", "types": [ { "name": "ColoredShape", "extends": [ "bpmndi:BPMNShape" ], "properties": [ { "name": "stroke", "isAttr": true, "type": "String" }, { "name": "fill", "isAttr": true, "type": "String" } ] }, { "name": "ColoredEdge", "extends": [ "bpmndi:BPMNEdge" ], "properties": [ { "name": "stroke", "isAttr": true, "type": "String" }, { "name": "fill", "isAttr": true, "type": "String" } ] } ], "enumerations": [], "associations": [] } },{}],103:[function(_dereq_,module,exports){ module.exports={ "name": "BPMN20", "uri": "http://www.omg.org/spec/BPMN/20100524/MODEL", "associations": [], "types": [ { "name": "Interface", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "operations", "type": "Operation", "isMany": true }, { "name": "implementationRef", "type": "String", "isAttr": true } ] }, { "name": "Operation", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "inMessageRef", "type": "Message", "isReference": true }, { "name": "outMessageRef", "type": "Message", "isReference": true }, { "name": "errorRef", "type": "Error", "isMany": true, "isReference": true }, { "name": "implementationRef", "type": "String", "isAttr": true } ] }, { "name": "EndPoint", "superClass": [ "RootElement" ] }, { "name": "Auditing", "superClass": [ "BaseElement" ] }, { "name": "GlobalTask", "superClass": [ "CallableElement" ], "properties": [ { "name": "resources", "type": "ResourceRole", "isMany": true } ] }, { "name": "Monitoring", "superClass": [ "BaseElement" ] }, { "name": "Performer", "superClass": [ "ResourceRole" ] }, { "name": "Process", "superClass": [ "FlowElementsContainer", "CallableElement" ], "properties": [ { "name": "processType", "type": "ProcessType", "isAttr": true }, { "name": "isClosed", "isAttr": true, "type": "Boolean" }, { "name": "auditing", "type": "Auditing" }, { "name": "monitoring", "type": "Monitoring" }, { "name": "properties", "type": "Property", "isMany": true }, { "name": "laneSets", "type": "LaneSet", "isMany": true, "replaces": "FlowElementsContainer#laneSets" }, { "name": "flowElements", "type": "FlowElement", "isMany": true, "replaces": "FlowElementsContainer#flowElements" }, { "name": "artifacts", "type": "Artifact", "isMany": true }, { "name": "resources", "type": "ResourceRole", "isMany": true }, { "name": "correlationSubscriptions", "type": "CorrelationSubscription", "isMany": true }, { "name": "supports", "type": "Process", "isMany": true, "isReference": true }, { "name": "definitionalCollaborationRef", "type": "Collaboration", "isAttr": true, "isReference": true }, { "name": "isExecutable", "isAttr": true, "type": "Boolean" } ] }, { "name": "LaneSet", "superClass": [ "BaseElement" ], "properties": [ { "name": "lanes", "type": "Lane", "isMany": true }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "Lane", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "partitionElementRef", "type": "BaseElement", "isAttr": true, "isReference": true }, { "name": "partitionElement", "type": "BaseElement" }, { "name": "flowNodeRef", "type": "FlowNode", "isMany": true, "isReference": true }, { "name": "childLaneSet", "type": "LaneSet", "xml": { "serialize": "xsi:type" } } ] }, { "name": "GlobalManualTask", "superClass": [ "GlobalTask" ] }, { "name": "ManualTask", "superClass": [ "Task" ] }, { "name": "UserTask", "superClass": [ "Task" ], "properties": [ { "name": "renderings", "type": "Rendering", "isMany": true }, { "name": "implementation", "isAttr": true, "type": "String" } ] }, { "name": "Rendering", "superClass": [ "BaseElement" ] }, { "name": "HumanPerformer", "superClass": [ "Performer" ] }, { "name": "PotentialOwner", "superClass": [ "HumanPerformer" ] }, { "name": "GlobalUserTask", "superClass": [ "GlobalTask" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" }, { "name": "renderings", "type": "Rendering", "isMany": true } ] }, { "name": "Gateway", "isAbstract": true, "superClass": [ "FlowNode" ], "properties": [ { "name": "gatewayDirection", "type": "GatewayDirection", "default": "Unspecified", "isAttr": true } ] }, { "name": "EventBasedGateway", "superClass": [ "Gateway" ], "properties": [ { "name": "instantiate", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "eventGatewayType", "type": "EventBasedGatewayType", "isAttr": true, "default": "Exclusive" } ] }, { "name": "ComplexGateway", "superClass": [ "Gateway" ], "properties": [ { "name": "activationCondition", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "default", "type": "SequenceFlow", "isAttr": true, "isReference": true } ] }, { "name": "ExclusiveGateway", "superClass": [ "Gateway" ], "properties": [ { "name": "default", "type": "SequenceFlow", "isAttr": true, "isReference": true } ] }, { "name": "InclusiveGateway", "superClass": [ "Gateway" ], "properties": [ { "name": "default", "type": "SequenceFlow", "isAttr": true, "isReference": true } ] }, { "name": "ParallelGateway", "superClass": [ "Gateway" ] }, { "name": "RootElement", "isAbstract": true, "superClass": [ "BaseElement" ] }, { "name": "Relationship", "superClass": [ "BaseElement" ], "properties": [ { "name": "type", "isAttr": true, "type": "String" }, { "name": "direction", "type": "RelationshipDirection", "isAttr": true }, { "name": "source", "isMany": true, "isReference": true, "type": "Element" }, { "name": "target", "isMany": true, "isReference": true, "type": "Element" } ] }, { "name": "BaseElement", "isAbstract": true, "properties": [ { "name": "id", "isAttr": true, "type": "String", "isId": true }, { "name": "documentation", "type": "Documentation", "isMany": true }, { "name": "extensionDefinitions", "type": "ExtensionDefinition", "isMany": true, "isReference": true }, { "name": "extensionElements", "type": "ExtensionElements" } ] }, { "name": "Extension", "properties": [ { "name": "mustUnderstand", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "definition", "type": "ExtensionDefinition", "isAttr": true, "isReference": true } ] }, { "name": "ExtensionDefinition", "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "extensionAttributeDefinitions", "type": "ExtensionAttributeDefinition", "isMany": true } ] }, { "name": "ExtensionAttributeDefinition", "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "type", "isAttr": true, "type": "String" }, { "name": "isReference", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "extensionDefinition", "type": "ExtensionDefinition", "isAttr": true, "isReference": true } ] }, { "name": "ExtensionElements", "properties": [ { "name": "valueRef", "isAttr": true, "isReference": true, "type": "Element" }, { "name": "values", "type": "Element", "isMany": true }, { "name": "extensionAttributeDefinition", "type": "ExtensionAttributeDefinition", "isAttr": true, "isReference": true } ] }, { "name": "Documentation", "superClass": [ "BaseElement" ], "properties": [ { "name": "text", "type": "String", "isBody": true }, { "name": "textFormat", "default": "text/plain", "isAttr": true, "type": "String" } ] }, { "name": "Event", "isAbstract": true, "superClass": [ "FlowNode", "InteractionNode" ], "properties": [ { "name": "properties", "type": "Property", "isMany": true } ] }, { "name": "IntermediateCatchEvent", "superClass": [ "CatchEvent" ] }, { "name": "IntermediateThrowEvent", "superClass": [ "ThrowEvent" ] }, { "name": "EndEvent", "superClass": [ "ThrowEvent" ] }, { "name": "StartEvent", "superClass": [ "CatchEvent" ], "properties": [ { "name": "isInterrupting", "default": true, "isAttr": true, "type": "Boolean" } ] }, { "name": "ThrowEvent", "isAbstract": true, "superClass": [ "Event" ], "properties": [ { "name": "dataInputs", "type": "DataInput", "isMany": true }, { "name": "dataInputAssociations", "type": "DataInputAssociation", "isMany": true }, { "name": "inputSet", "type": "InputSet" }, { "name": "eventDefinitions", "type": "EventDefinition", "isMany": true }, { "name": "eventDefinitionRef", "type": "EventDefinition", "isMany": true, "isReference": true } ] }, { "name": "CatchEvent", "isAbstract": true, "superClass": [ "Event" ], "properties": [ { "name": "parallelMultiple", "isAttr": true, "type": "Boolean", "default": false }, { "name": "dataOutputs", "type": "DataOutput", "isMany": true }, { "name": "dataOutputAssociations", "type": "DataOutputAssociation", "isMany": true }, { "name": "outputSet", "type": "OutputSet" }, { "name": "eventDefinitions", "type": "EventDefinition", "isMany": true }, { "name": "eventDefinitionRef", "type": "EventDefinition", "isMany": true, "isReference": true } ] }, { "name": "BoundaryEvent", "superClass": [ "CatchEvent" ], "properties": [ { "name": "cancelActivity", "default": true, "isAttr": true, "type": "Boolean" }, { "name": "attachedToRef", "type": "Activity", "isAttr": true, "isReference": true } ] }, { "name": "EventDefinition", "isAbstract": true, "superClass": [ "RootElement" ] }, { "name": "CancelEventDefinition", "superClass": [ "EventDefinition" ] }, { "name": "ErrorEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "errorRef", "type": "Error", "isAttr": true, "isReference": true } ] }, { "name": "TerminateEventDefinition", "superClass": [ "EventDefinition" ] }, { "name": "EscalationEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "escalationRef", "type": "Escalation", "isAttr": true, "isReference": true } ] }, { "name": "Escalation", "properties": [ { "name": "structureRef", "type": "ItemDefinition", "isAttr": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" }, { "name": "escalationCode", "isAttr": true, "type": "String" } ], "superClass": [ "RootElement" ] }, { "name": "CompensateEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "waitForCompletion", "isAttr": true, "type": "Boolean" }, { "name": "activityRef", "type": "Activity", "isAttr": true, "isReference": true } ] }, { "name": "TimerEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "timeDate", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "timeCycle", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "timeDuration", "type": "Expression", "xml": { "serialize": "xsi:type" } } ] }, { "name": "LinkEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "target", "type": "LinkEventDefinition", "isAttr": true, "isReference": true }, { "name": "source", "type": "LinkEventDefinition", "isMany": true, "isReference": true } ] }, { "name": "MessageEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "messageRef", "type": "Message", "isAttr": true, "isReference": true }, { "name": "operationRef", "type": "Operation", "isAttr": true, "isReference": true } ] }, { "name": "ConditionalEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "condition", "type": "Expression", "xml": { "serialize": "xsi:type" } } ] }, { "name": "SignalEventDefinition", "superClass": [ "EventDefinition" ], "properties": [ { "name": "signalRef", "type": "Signal", "isAttr": true, "isReference": true } ] }, { "name": "Signal", "superClass": [ "RootElement" ], "properties": [ { "name": "structureRef", "type": "ItemDefinition", "isAttr": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "ImplicitThrowEvent", "superClass": [ "ThrowEvent" ] }, { "name": "DataState", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "ItemAwareElement", "superClass": [ "BaseElement" ], "properties": [ { "name": "itemSubjectRef", "type": "ItemDefinition", "isAttr": true, "isReference": true }, { "name": "dataState", "type": "DataState" } ] }, { "name": "DataAssociation", "superClass": [ "BaseElement" ], "properties": [ { "name": "assignment", "type": "Assignment", "isMany": true }, { "name": "sourceRef", "type": "ItemAwareElement", "isMany": true, "isReference": true }, { "name": "targetRef", "type": "ItemAwareElement", "isReference": true }, { "name": "transformation", "type": "FormalExpression", "xml": { "serialize": "property" } } ] }, { "name": "DataInput", "superClass": [ "ItemAwareElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "isCollection", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "inputSetRef", "type": "InputSet", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "inputSetWithOptional", "type": "InputSet", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "inputSetWithWhileExecuting", "type": "InputSet", "isVirtual": true, "isMany": true, "isReference": true } ] }, { "name": "DataOutput", "superClass": [ "ItemAwareElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "isCollection", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "outputSetRef", "type": "OutputSet", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "outputSetWithOptional", "type": "OutputSet", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "outputSetWithWhileExecuting", "type": "OutputSet", "isVirtual": true, "isMany": true, "isReference": true } ] }, { "name": "InputSet", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "dataInputRefs", "type": "DataInput", "isMany": true, "isReference": true }, { "name": "optionalInputRefs", "type": "DataInput", "isMany": true, "isReference": true }, { "name": "whileExecutingInputRefs", "type": "DataInput", "isMany": true, "isReference": true }, { "name": "outputSetRefs", "type": "OutputSet", "isMany": true, "isReference": true } ] }, { "name": "OutputSet", "superClass": [ "BaseElement" ], "properties": [ { "name": "dataOutputRefs", "type": "DataOutput", "isMany": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" }, { "name": "inputSetRefs", "type": "InputSet", "isMany": true, "isReference": true }, { "name": "optionalOutputRefs", "type": "DataOutput", "isMany": true, "isReference": true }, { "name": "whileExecutingOutputRefs", "type": "DataOutput", "isMany": true, "isReference": true } ] }, { "name": "Property", "superClass": [ "ItemAwareElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "DataInputAssociation", "superClass": [ "DataAssociation" ] }, { "name": "DataOutputAssociation", "superClass": [ "DataAssociation" ] }, { "name": "InputOutputSpecification", "superClass": [ "BaseElement" ], "properties": [ { "name": "dataInputs", "type": "DataInput", "isMany": true }, { "name": "dataOutputs", "type": "DataOutput", "isMany": true }, { "name": "inputSets", "type": "InputSet", "isMany": true }, { "name": "outputSets", "type": "OutputSet", "isMany": true } ] }, { "name": "DataObject", "superClass": [ "FlowElement", "ItemAwareElement" ], "properties": [ { "name": "isCollection", "default": false, "isAttr": true, "type": "Boolean" } ] }, { "name": "InputOutputBinding", "properties": [ { "name": "inputDataRef", "type": "InputSet", "isAttr": true, "isReference": true }, { "name": "outputDataRef", "type": "OutputSet", "isAttr": true, "isReference": true }, { "name": "operationRef", "type": "Operation", "isAttr": true, "isReference": true } ] }, { "name": "Assignment", "superClass": [ "BaseElement" ], "properties": [ { "name": "from", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "to", "type": "Expression", "xml": { "serialize": "xsi:type" } } ] }, { "name": "DataStore", "superClass": [ "RootElement", "ItemAwareElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "capacity", "isAttr": true, "type": "Integer" }, { "name": "isUnlimited", "default": true, "isAttr": true, "type": "Boolean" } ] }, { "name": "DataStoreReference", "superClass": [ "ItemAwareElement", "FlowElement" ], "properties": [ { "name": "dataStoreRef", "type": "DataStore", "isAttr": true, "isReference": true } ] }, { "name": "DataObjectReference", "superClass": [ "ItemAwareElement", "FlowElement" ], "properties": [ { "name": "dataObjectRef", "type": "DataObject", "isAttr": true, "isReference": true } ] }, { "name": "ConversationLink", "superClass": [ "BaseElement" ], "properties": [ { "name": "sourceRef", "type": "InteractionNode", "isAttr": true, "isReference": true }, { "name": "targetRef", "type": "InteractionNode", "isAttr": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "ConversationAssociation", "superClass": [ "BaseElement" ], "properties": [ { "name": "innerConversationNodeRef", "type": "ConversationNode", "isAttr": true, "isReference": true }, { "name": "outerConversationNodeRef", "type": "ConversationNode", "isAttr": true, "isReference": true } ] }, { "name": "CallConversation", "superClass": [ "ConversationNode" ], "properties": [ { "name": "calledCollaborationRef", "type": "Collaboration", "isAttr": true, "isReference": true }, { "name": "participantAssociations", "type": "ParticipantAssociation", "isMany": true } ] }, { "name": "Conversation", "superClass": [ "ConversationNode" ] }, { "name": "SubConversation", "superClass": [ "ConversationNode" ], "properties": [ { "name": "conversationNodes", "type": "ConversationNode", "isMany": true } ] }, { "name": "ConversationNode", "isAbstract": true, "superClass": [ "InteractionNode", "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "participantRefs", "type": "Participant", "isMany": true, "isReference": true }, { "name": "messageFlowRefs", "type": "MessageFlow", "isMany": true, "isReference": true }, { "name": "correlationKeys", "type": "CorrelationKey", "isMany": true } ] }, { "name": "GlobalConversation", "superClass": [ "Collaboration" ] }, { "name": "PartnerEntity", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "participantRef", "type": "Participant", "isMany": true, "isReference": true } ] }, { "name": "PartnerRole", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "participantRef", "type": "Participant", "isMany": true, "isReference": true } ] }, { "name": "CorrelationProperty", "superClass": [ "RootElement" ], "properties": [ { "name": "correlationPropertyRetrievalExpression", "type": "CorrelationPropertyRetrievalExpression", "isMany": true }, { "name": "name", "isAttr": true, "type": "String" }, { "name": "type", "type": "ItemDefinition", "isAttr": true, "isReference": true } ] }, { "name": "Error", "superClass": [ "RootElement" ], "properties": [ { "name": "structureRef", "type": "ItemDefinition", "isAttr": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" }, { "name": "errorCode", "isAttr": true, "type": "String" } ] }, { "name": "CorrelationKey", "superClass": [ "BaseElement" ], "properties": [ { "name": "correlationPropertyRef", "type": "CorrelationProperty", "isMany": true, "isReference": true }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "Expression", "superClass": [ "BaseElement" ], "isAbstract": false, "properties": [ { "name": "body", "type": "String", "isBody": true } ] }, { "name": "FormalExpression", "superClass": [ "Expression" ], "properties": [ { "name": "language", "isAttr": true, "type": "String" }, { "name": "evaluatesToTypeRef", "type": "ItemDefinition", "isAttr": true, "isReference": true } ] }, { "name": "Message", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "itemRef", "type": "ItemDefinition", "isAttr": true, "isReference": true } ] }, { "name": "ItemDefinition", "superClass": [ "RootElement" ], "properties": [ { "name": "itemKind", "type": "ItemKind", "isAttr": true }, { "name": "structureRef", "type": "String", "isAttr": true }, { "name": "isCollection", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "import", "type": "Import", "isAttr": true, "isReference": true } ] }, { "name": "FlowElement", "isAbstract": true, "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "auditing", "type": "Auditing" }, { "name": "monitoring", "type": "Monitoring" }, { "name": "categoryValueRef", "type": "CategoryValue", "isMany": true, "isReference": true } ] }, { "name": "SequenceFlow", "superClass": [ "FlowElement" ], "properties": [ { "name": "isImmediate", "isAttr": true, "type": "Boolean" }, { "name": "conditionExpression", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "sourceRef", "type": "FlowNode", "isAttr": true, "isReference": true }, { "name": "targetRef", "type": "FlowNode", "isAttr": true, "isReference": true } ] }, { "name": "FlowElementsContainer", "isAbstract": true, "superClass": [ "BaseElement" ], "properties": [ { "name": "laneSets", "type": "LaneSet", "isMany": true }, { "name": "flowElements", "type": "FlowElement", "isMany": true } ] }, { "name": "CallableElement", "isAbstract": true, "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "ioSpecification", "type": "InputOutputSpecification", "xml": { "serialize": "property" } }, { "name": "supportedInterfaceRef", "type": "Interface", "isMany": true, "isReference": true }, { "name": "ioBinding", "type": "InputOutputBinding", "isMany": true, "xml": { "serialize": "property" } } ] }, { "name": "FlowNode", "isAbstract": true, "superClass": [ "FlowElement" ], "properties": [ { "name": "incoming", "type": "SequenceFlow", "isMany": true, "isReference": true }, { "name": "outgoing", "type": "SequenceFlow", "isMany": true, "isReference": true }, { "name": "lanes", "type": "Lane", "isVirtual": true, "isMany": true, "isReference": true } ] }, { "name": "CorrelationPropertyRetrievalExpression", "superClass": [ "BaseElement" ], "properties": [ { "name": "messagePath", "type": "FormalExpression" }, { "name": "messageRef", "type": "Message", "isAttr": true, "isReference": true } ] }, { "name": "CorrelationPropertyBinding", "superClass": [ "BaseElement" ], "properties": [ { "name": "dataPath", "type": "FormalExpression" }, { "name": "correlationPropertyRef", "type": "CorrelationProperty", "isAttr": true, "isReference": true } ] }, { "name": "Resource", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "resourceParameters", "type": "ResourceParameter", "isMany": true } ] }, { "name": "ResourceParameter", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "isRequired", "isAttr": true, "type": "Boolean" }, { "name": "type", "type": "ItemDefinition", "isAttr": true, "isReference": true } ] }, { "name": "CorrelationSubscription", "superClass": [ "BaseElement" ], "properties": [ { "name": "correlationKeyRef", "type": "CorrelationKey", "isAttr": true, "isReference": true }, { "name": "correlationPropertyBinding", "type": "CorrelationPropertyBinding", "isMany": true } ] }, { "name": "MessageFlow", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "sourceRef", "type": "InteractionNode", "isAttr": true, "isReference": true }, { "name": "targetRef", "type": "InteractionNode", "isAttr": true, "isReference": true }, { "name": "messageRef", "type": "Message", "isAttr": true, "isReference": true } ] }, { "name": "MessageFlowAssociation", "superClass": [ "BaseElement" ], "properties": [ { "name": "innerMessageFlowRef", "type": "MessageFlow", "isAttr": true, "isReference": true }, { "name": "outerMessageFlowRef", "type": "MessageFlow", "isAttr": true, "isReference": true } ] }, { "name": "InteractionNode", "isAbstract": true, "properties": [ { "name": "incomingConversationLinks", "type": "ConversationLink", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "outgoingConversationLinks", "type": "ConversationLink", "isVirtual": true, "isMany": true, "isReference": true } ] }, { "name": "Participant", "superClass": [ "InteractionNode", "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "interfaceRef", "type": "Interface", "isMany": true, "isReference": true }, { "name": "participantMultiplicity", "type": "ParticipantMultiplicity" }, { "name": "endPointRefs", "type": "EndPoint", "isMany": true, "isReference": true }, { "name": "processRef", "type": "Process", "isAttr": true, "isReference": true } ] }, { "name": "ParticipantAssociation", "superClass": [ "BaseElement" ], "properties": [ { "name": "innerParticipantRef", "type": "Participant", "isAttr": true, "isReference": true }, { "name": "outerParticipantRef", "type": "Participant", "isAttr": true, "isReference": true } ] }, { "name": "ParticipantMultiplicity", "properties": [ { "name": "minimum", "default": 0, "isAttr": true, "type": "Integer" }, { "name": "maximum", "default": 1, "isAttr": true, "type": "Integer" } ] }, { "name": "Collaboration", "superClass": [ "RootElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "isClosed", "isAttr": true, "type": "Boolean" }, { "name": "participants", "type": "Participant", "isMany": true }, { "name": "messageFlows", "type": "MessageFlow", "isMany": true }, { "name": "artifacts", "type": "Artifact", "isMany": true }, { "name": "conversations", "type": "ConversationNode", "isMany": true }, { "name": "conversationAssociations", "type": "ConversationAssociation" }, { "name": "participantAssociations", "type": "ParticipantAssociation", "isMany": true }, { "name": "messageFlowAssociations", "type": "MessageFlowAssociation", "isMany": true }, { "name": "correlationKeys", "type": "CorrelationKey", "isMany": true }, { "name": "choreographyRef", "type": "Choreography", "isMany": true, "isReference": true }, { "name": "conversationLinks", "type": "ConversationLink", "isMany": true } ] }, { "name": "ChoreographyActivity", "isAbstract": true, "superClass": [ "FlowNode" ], "properties": [ { "name": "participantRefs", "type": "Participant", "isMany": true, "isReference": true }, { "name": "initiatingParticipantRef", "type": "Participant", "isAttr": true, "isReference": true }, { "name": "correlationKeys", "type": "CorrelationKey", "isMany": true }, { "name": "loopType", "type": "ChoreographyLoopType", "default": "None", "isAttr": true } ] }, { "name": "CallChoreography", "superClass": [ "ChoreographyActivity" ], "properties": [ { "name": "calledChoreographyRef", "type": "Choreography", "isAttr": true, "isReference": true }, { "name": "participantAssociations", "type": "ParticipantAssociation", "isMany": true } ] }, { "name": "SubChoreography", "superClass": [ "ChoreographyActivity", "FlowElementsContainer" ], "properties": [ { "name": "artifacts", "type": "Artifact", "isMany": true } ] }, { "name": "ChoreographyTask", "superClass": [ "ChoreographyActivity" ], "properties": [ { "name": "messageFlowRef", "type": "MessageFlow", "isMany": true, "isReference": true } ] }, { "name": "Choreography", "superClass": [ "FlowElementsContainer", "Collaboration" ] }, { "name": "GlobalChoreographyTask", "superClass": [ "Choreography" ], "properties": [ { "name": "initiatingParticipantRef", "type": "Participant", "isAttr": true, "isReference": true } ] }, { "name": "TextAnnotation", "superClass": [ "Artifact" ], "properties": [ { "name": "text", "type": "String" }, { "name": "textFormat", "default": "text/plain", "isAttr": true, "type": "String" } ] }, { "name": "Group", "superClass": [ "Artifact" ], "properties": [ { "name": "categoryValueRef", "type": "CategoryValue", "isAttr": true, "isReference": true } ] }, { "name": "Association", "superClass": [ "Artifact" ], "properties": [ { "name": "associationDirection", "type": "AssociationDirection", "isAttr": true }, { "name": "sourceRef", "type": "BaseElement", "isAttr": true, "isReference": true }, { "name": "targetRef", "type": "BaseElement", "isAttr": true, "isReference": true } ] }, { "name": "Category", "superClass": [ "RootElement" ], "properties": [ { "name": "categoryValue", "type": "CategoryValue", "isMany": true }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "Artifact", "isAbstract": true, "superClass": [ "BaseElement" ] }, { "name": "CategoryValue", "superClass": [ "BaseElement" ], "properties": [ { "name": "categorizedFlowElements", "type": "FlowElement", "isVirtual": true, "isMany": true, "isReference": true }, { "name": "value", "isAttr": true, "type": "String" } ] }, { "name": "Activity", "isAbstract": true, "superClass": [ "FlowNode" ], "properties": [ { "name": "isForCompensation", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "default", "type": "SequenceFlow", "isAttr": true, "isReference": true }, { "name": "ioSpecification", "type": "InputOutputSpecification", "xml": { "serialize": "property" } }, { "name": "boundaryEventRefs", "type": "BoundaryEvent", "isMany": true, "isReference": true }, { "name": "properties", "type": "Property", "isMany": true }, { "name": "dataInputAssociations", "type": "DataInputAssociation", "isMany": true }, { "name": "dataOutputAssociations", "type": "DataOutputAssociation", "isMany": true }, { "name": "startQuantity", "default": 1, "isAttr": true, "type": "Integer" }, { "name": "resources", "type": "ResourceRole", "isMany": true }, { "name": "completionQuantity", "default": 1, "isAttr": true, "type": "Integer" }, { "name": "loopCharacteristics", "type": "LoopCharacteristics" } ] }, { "name": "ServiceTask", "superClass": [ "Task" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" }, { "name": "operationRef", "type": "Operation", "isAttr": true, "isReference": true } ] }, { "name": "SubProcess", "superClass": [ "Activity", "FlowElementsContainer", "InteractionNode" ], "properties": [ { "name": "triggeredByEvent", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "artifacts", "type": "Artifact", "isMany": true } ] }, { "name": "LoopCharacteristics", "isAbstract": true, "superClass": [ "BaseElement" ] }, { "name": "MultiInstanceLoopCharacteristics", "superClass": [ "LoopCharacteristics" ], "properties": [ { "name": "isSequential", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "behavior", "type": "MultiInstanceBehavior", "default": "All", "isAttr": true }, { "name": "loopCardinality", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "loopDataInputRef", "type": "ItemAwareElement", "isReference": true }, { "name": "loopDataOutputRef", "type": "ItemAwareElement", "isReference": true }, { "name": "inputDataItem", "type": "DataInput", "xml": { "serialize": "property" } }, { "name": "outputDataItem", "type": "DataOutput", "xml": { "serialize": "property" } }, { "name": "complexBehaviorDefinition", "type": "ComplexBehaviorDefinition", "isMany": true }, { "name": "completionCondition", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "oneBehaviorEventRef", "type": "EventDefinition", "isAttr": true, "isReference": true }, { "name": "noneBehaviorEventRef", "type": "EventDefinition", "isAttr": true, "isReference": true } ] }, { "name": "StandardLoopCharacteristics", "superClass": [ "LoopCharacteristics" ], "properties": [ { "name": "testBefore", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "loopCondition", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "loopMaximum", "type": "Expression", "xml": { "serialize": "xsi:type" } } ] }, { "name": "CallActivity", "superClass": [ "Activity" ], "properties": [ { "name": "calledElement", "type": "String", "isAttr": true } ] }, { "name": "Task", "superClass": [ "Activity", "InteractionNode" ] }, { "name": "SendTask", "superClass": [ "Task" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" }, { "name": "operationRef", "type": "Operation", "isAttr": true, "isReference": true }, { "name": "messageRef", "type": "Message", "isAttr": true, "isReference": true } ] }, { "name": "ReceiveTask", "superClass": [ "Task" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" }, { "name": "instantiate", "default": false, "isAttr": true, "type": "Boolean" }, { "name": "operationRef", "type": "Operation", "isAttr": true, "isReference": true }, { "name": "messageRef", "type": "Message", "isAttr": true, "isReference": true } ] }, { "name": "ScriptTask", "superClass": [ "Task" ], "properties": [ { "name": "scriptFormat", "isAttr": true, "type": "String" }, { "name": "script", "type": "String" } ] }, { "name": "BusinessRuleTask", "superClass": [ "Task" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" } ] }, { "name": "AdHocSubProcess", "superClass": [ "SubProcess" ], "properties": [ { "name": "completionCondition", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "ordering", "type": "AdHocOrdering", "isAttr": true }, { "name": "cancelRemainingInstances", "default": true, "isAttr": true, "type": "Boolean" } ] }, { "name": "Transaction", "superClass": [ "SubProcess" ], "properties": [ { "name": "protocol", "isAttr": true, "type": "String" }, { "name": "method", "isAttr": true, "type": "String" } ] }, { "name": "GlobalScriptTask", "superClass": [ "GlobalTask" ], "properties": [ { "name": "scriptLanguage", "isAttr": true, "type": "String" }, { "name": "script", "isAttr": true, "type": "String" } ] }, { "name": "GlobalBusinessRuleTask", "superClass": [ "GlobalTask" ], "properties": [ { "name": "implementation", "isAttr": true, "type": "String" } ] }, { "name": "ComplexBehaviorDefinition", "superClass": [ "BaseElement" ], "properties": [ { "name": "condition", "type": "FormalExpression" }, { "name": "event", "type": "ImplicitThrowEvent" } ] }, { "name": "ResourceRole", "superClass": [ "BaseElement" ], "properties": [ { "name": "resourceRef", "type": "Resource", "isReference": true }, { "name": "resourceParameterBindings", "type": "ResourceParameterBinding", "isMany": true }, { "name": "resourceAssignmentExpression", "type": "ResourceAssignmentExpression" }, { "name": "name", "isAttr": true, "type": "String" } ] }, { "name": "ResourceParameterBinding", "properties": [ { "name": "expression", "type": "Expression", "xml": { "serialize": "xsi:type" } }, { "name": "parameterRef", "type": "ResourceParameter", "isAttr": true, "isReference": true } ] }, { "name": "ResourceAssignmentExpression", "properties": [ { "name": "expression", "type": "Expression", "xml": { "serialize": "xsi:type" } } ], "superClass": [ "BaseElement" ] }, { "name": "Import", "properties": [ { "name": "importType", "isAttr": true, "type": "String" }, { "name": "location", "isAttr": true, "type": "String" }, { "name": "namespace", "isAttr": true, "type": "String" } ] }, { "name": "Definitions", "superClass": [ "BaseElement" ], "properties": [ { "name": "name", "isAttr": true, "type": "String" }, { "name": "targetNamespace", "isAttr": true, "type": "String" }, { "name": "expressionLanguage", "default": "http://www.w3.org/1999/XPath", "isAttr": true, "type": "String" }, { "name": "typeLanguage", "default": "http://www.w3.org/2001/XMLSchema", "isAttr": true, "type": "String" }, { "name": "imports", "type": "Import", "isMany": true }, { "name": "extensions", "type": "Extension", "isMany": true }, { "name": "rootElements", "type": "RootElement", "isMany": true }, { "name": "diagrams", "isMany": true, "type": "bpmndi:BPMNDiagram" }, { "name": "exporter", "isAttr": true, "type": "String" }, { "name": "relationships", "type": "Relationship", "isMany": true }, { "name": "exporterVersion", "isAttr": true, "type": "String" } ] } ], "enumerations": [ { "name": "ProcessType", "literalValues": [ { "name": "None" }, { "name": "Public" }, { "name": "Private" } ] }, { "name": "GatewayDirection", "literalValues": [ { "name": "Unspecified" }, { "name": "Converging" }, { "name": "Diverging" }, { "name": "Mixed" } ] }, { "name": "EventBasedGatewayType", "literalValues": [ { "name": "Parallel" }, { "name": "Exclusive" } ] }, { "name": "RelationshipDirection", "literalValues": [ { "name": "None" }, { "name": "Forward" }, { "name": "Backward" }, { "name": "Both" } ] }, { "name": "ItemKind", "literalValues": [ { "name": "Physical" }, { "name": "Information" } ] }, { "name": "ChoreographyLoopType", "literalValues": [ { "name": "None" }, { "name": "Standard" }, { "name": "MultiInstanceSequential" }, { "name": "MultiInstanceParallel" } ] }, { "name": "AssociationDirection", "literalValues": [ { "name": "None" }, { "name": "One" }, { "name": "Both" } ] }, { "name": "MultiInstanceBehavior", "literalValues": [ { "name": "None" }, { "name": "One" }, { "name": "All" }, { "name": "Complex" } ] }, { "name": "AdHocOrdering", "literalValues": [ { "name": "Parallel" }, { "name": "Sequential" } ] } ], "prefix": "bpmn", "xml": { "tagAlias": "lowerCase", "typePrefix": "t" } } },{}],104:[function(_dereq_,module,exports){ module.exports={ "name": "BPMNDI", "uri": "http://www.omg.org/spec/BPMN/20100524/DI", "types": [ { "name": "BPMNDiagram", "properties": [ { "name": "plane", "type": "BPMNPlane", "redefines": "di:Diagram#rootElement" }, { "name": "labelStyle", "type": "BPMNLabelStyle", "isMany": true } ], "superClass": [ "di:Diagram" ] }, { "name": "BPMNPlane", "properties": [ { "name": "bpmnElement", "isAttr": true, "isReference": true, "type": "bpmn:BaseElement", "redefines": "di:DiagramElement#modelElement" } ], "superClass": [ "di:Plane" ] }, { "name": "BPMNShape", "properties": [ { "name": "bpmnElement", "isAttr": true, "isReference": true, "type": "bpmn:BaseElement", "redefines": "di:DiagramElement#modelElement" }, { "name": "isHorizontal", "isAttr": true, "type": "Boolean" }, { "name": "isExpanded", "isAttr": true, "type": "Boolean" }, { "name": "isMarkerVisible", "isAttr": true, "type": "Boolean" }, { "name": "label", "type": "BPMNLabel" }, { "name": "isMessageVisible", "isAttr": true, "type": "Boolean" }, { "name": "participantBandKind", "type": "ParticipantBandKind", "isAttr": true }, { "name": "choreographyActivityShape", "type": "BPMNShape", "isAttr": true, "isReference": true } ], "superClass": [ "di:LabeledShape" ] }, { "name": "BPMNEdge", "properties": [ { "name": "label", "type": "BPMNLabel" }, { "name": "bpmnElement", "isAttr": true, "isReference": true, "type": "bpmn:BaseElement", "redefines": "di:DiagramElement#modelElement" }, { "name": "sourceElement", "isAttr": true, "isReference": true, "type": "di:DiagramElement", "redefines": "di:Edge#source" }, { "name": "targetElement", "isAttr": true, "isReference": true, "type": "di:DiagramElement", "redefines": "di:Edge#target" }, { "name": "messageVisibleKind", "type": "MessageVisibleKind", "isAttr": true, "default": "initiating" } ], "superClass": [ "di:LabeledEdge" ] }, { "name": "BPMNLabel", "properties": [ { "name": "labelStyle", "type": "BPMNLabelStyle", "isAttr": true, "isReference": true, "redefines": "di:DiagramElement#style" } ], "superClass": [ "di:Label" ] }, { "name": "BPMNLabelStyle", "properties": [ { "name": "font", "type": "dc:Font" } ], "superClass": [ "di:Style" ] } ], "enumerations": [ { "name": "ParticipantBandKind", "literalValues": [ { "name": "top_initiating" }, { "name": "middle_initiating" }, { "name": "bottom_initiating" }, { "name": "top_non_initiating" }, { "name": "middle_non_initiating" }, { "name": "bottom_non_initiating" } ] }, { "name": "MessageVisibleKind", "literalValues": [ { "name": "initiating" }, { "name": "non_initiating" } ] } ], "associations": [], "prefix": "bpmndi" } },{}],105:[function(_dereq_,module,exports){ module.exports={ "name": "DC", "uri": "http://www.omg.org/spec/DD/20100524/DC", "types": [ { "name": "Boolean" }, { "name": "Integer" }, { "name": "Real" }, { "name": "String" }, { "name": "Font", "properties": [ { "name": "name", "type": "String", "isAttr": true }, { "name": "size", "type": "Real", "isAttr": true }, { "name": "isBold", "type": "Boolean", "isAttr": true }, { "name": "isItalic", "type": "Boolean", "isAttr": true }, { "name": "isUnderline", "type": "Boolean", "isAttr": true }, { "name": "isStrikeThrough", "type": "Boolean", "isAttr": true } ] }, { "name": "Point", "properties": [ { "name": "x", "type": "Real", "default": "0", "isAttr": true }, { "name": "y", "type": "Real", "default": "0", "isAttr": true } ] }, { "name": "Bounds", "properties": [ { "name": "x", "type": "Real", "default": "0", "isAttr": true }, { "name": "y", "type": "Real", "default": "0", "isAttr": true }, { "name": "width", "type": "Real", "isAttr": true }, { "name": "height", "type": "Real", "isAttr": true } ] } ], "prefix": "dc", "associations": [] } },{}],106:[function(_dereq_,module,exports){ module.exports={ "name": "DI", "uri": "http://www.omg.org/spec/DD/20100524/DI", "types": [ { "name": "DiagramElement", "isAbstract": true, "properties": [ { "name": "id", "type": "String", "isAttr": true, "isId": true }, { "name": "extension", "type": "Extension" }, { "name": "owningDiagram", "type": "Diagram", "isReadOnly": true, "isVirtual": true, "isReference": true }, { "name": "owningElement", "type": "DiagramElement", "isReadOnly": true, "isVirtual": true, "isReference": true }, { "name": "modelElement", "isReadOnly": true, "isVirtual": true, "isReference": true, "type": "Element" }, { "name": "style", "type": "Style", "isReadOnly": true, "isVirtual": true, "isReference": true }, { "name": "ownedElement", "type": "DiagramElement", "isReadOnly": true, "isVirtual": true, "isMany": true } ] }, { "name": "Node", "isAbstract": true, "superClass": [ "DiagramElement" ] }, { "name": "Edge", "isAbstract": true, "superClass": [ "DiagramElement" ], "properties": [ { "name": "source", "type": "DiagramElement", "isReadOnly": true, "isVirtual": true, "isReference": true }, { "name": "target", "type": "DiagramElement", "isReadOnly": true, "isVirtual": true, "isReference": true }, { "name": "waypoint", "isUnique": false, "isMany": true, "type": "dc:Point", "xml": { "serialize": "xsi:type" } } ] }, { "name": "Diagram", "isAbstract": true, "properties": [ { "name": "id", "type": "String", "isAttr": true, "isId": true }, { "name": "rootElement", "type": "DiagramElement", "isReadOnly": true, "isVirtual": true }, { "name": "name", "isAttr": true, "type": "String" }, { "name": "documentation", "isAttr": true, "type": "String" }, { "name": "resolution", "isAttr": true, "type": "Real" }, { "name": "ownedStyle", "type": "Style", "isReadOnly": true, "isVirtual": true, "isMany": true } ] }, { "name": "Shape", "isAbstract": true, "superClass": [ "Node" ], "properties": [ { "name": "bounds", "type": "dc:Bounds" } ] }, { "name": "Plane", "isAbstract": true, "superClass": [ "Node" ], "properties": [ { "name": "planeElement", "type": "DiagramElement", "subsettedProperty": "DiagramElement-ownedElement", "isMany": true } ] }, { "name": "LabeledEdge", "isAbstract": true, "superClass": [ "Edge" ], "properties": [ { "name": "ownedLabel", "type": "Label", "isReadOnly": true, "subsettedProperty": "DiagramElement-ownedElement", "isVirtual": true, "isMany": true } ] }, { "name": "LabeledShape", "isAbstract": true, "superClass": [ "Shape" ], "properties": [ { "name": "ownedLabel", "type": "Label", "isReadOnly": true, "subsettedProperty": "DiagramElement-ownedElement", "isVirtual": true, "isMany": true } ] }, { "name": "Label", "isAbstract": true, "superClass": [ "Node" ], "properties": [ { "name": "bounds", "type": "dc:Bounds" } ] }, { "name": "Style", "isAbstract": true, "properties": [ { "name": "id", "type": "String", "isAttr": true, "isId": true } ] }, { "name": "Extension", "properties": [ { "name": "values", "type": "Element", "isMany": true } ] } ], "associations": [], "prefix": "di", "xml": { "tagAlias": "lowerCase" } } },{}],107:[function(_dereq_,module,exports){ /** * Module dependencies. */ try { var index = _dereq_(111); } catch (err) { var index = _dereq_(111); } /** * Whitespace regexp. */ var re = /\s+/; /** * toString reference. */ var toString = Object.prototype.toString; /** * Wrap `el` in a `ClassList`. * * @param {Element} el * @return {ClassList} * @api public */ module.exports = function(el){ return new ClassList(el); }; /** * Initialize a new ClassList for `el`. * * @param {Element} el * @api private */ function ClassList(el) { if (!el || !el.nodeType) { throw new Error('A DOM element reference is required'); } this.el = el; this.list = el.classList; } /** * Add class `name` if not already present. * * @param {String} name * @return {ClassList} * @api public */ ClassList.prototype.add = function(name){ // classList if (this.list) { this.list.add(name); return this; } // fallback var arr = this.array(); var i = index(arr, name); if (!~i) arr.push(name); this.el.className = arr.join(' '); return this; }; /** * Remove class `name` when present, or * pass a regular expression to remove * any which match. * * @param {String|RegExp} name * @return {ClassList} * @api public */ ClassList.prototype.remove = function(name){ if ('[object RegExp]' == toString.call(name)) { return this.removeMatching(name); } // classList if (this.list) { this.list.remove(name); return this; } // fallback var arr = this.array(); var i = index(arr, name); if (~i) arr.splice(i, 1); this.el.className = arr.join(' '); return this; }; /** * Remove all classes matching `re`. * * @param {RegExp} re * @return {ClassList} * @api private */ ClassList.prototype.removeMatching = function(re){ var arr = this.array(); for (var i = 0; i < arr.length; i++) { if (re.test(arr[i])) { this.remove(arr[i]); } } return this; }; /** * Toggle class `name`, can force state via `force`. * * For browsers that support classList, but do not support `force` yet, * the mistake will be detected and corrected. * * @param {String} name * @param {Boolean} force * @return {ClassList} * @api public */ ClassList.prototype.toggle = function(name, force){ // classList if (this.list) { if ("undefined" !== typeof force) { if (force !== this.list.toggle(name, force)) { this.list.toggle(name); // toggle again to correct } } else { this.list.toggle(name); } return this; } // fallback if ("undefined" !== typeof force) { if (!force) { this.remove(name); } else { this.add(name); } } else { if (this.has(name)) { this.remove(name); } else { this.add(name); } } return this; }; /** * Return an array of classes. * * @return {Array} * @api public */ ClassList.prototype.array = function(){ var className = this.el.getAttribute('class') || ''; var str = className.replace(/^\s+|\s+$/g, ''); var arr = str.split(re); if ('' === arr[0]) arr.shift(); return arr; }; /** * Check if class `name` is present. * * @param {String} name * @return {ClassList} * @api public */ ClassList.prototype.has = ClassList.prototype.contains = function(name){ return this.list ? this.list.contains(name) : !! ~index(this.array(), name); }; },{"111":111}],108:[function(_dereq_,module,exports){ var matches = _dereq_(112) module.exports = function (element, selector, checkYoSelf, root) { element = checkYoSelf ? {parentNode: element} : element root = root || document // Make sure `element !== document` and `element != null` // otherwise we get an illegal invocation while ((element = element.parentNode) && element !== document) { if (matches(element, selector)) return element // After `matches` on the edge case that // the selector matches the root // (when the root is not the document) if (element === root) return } } },{"112":112}],109:[function(_dereq_,module,exports){ /** * Module dependencies. */ try { var closest = _dereq_(108); } catch(err) { var closest = _dereq_(108); } try { var event = _dereq_(110); } catch(err) { var event = _dereq_(110); } /** * Delegate event `type` to `selector` * and invoke `fn(e)`. A callback function * is returned which may be passed to `.unbind()`. * * @param {Element} el * @param {String} selector * @param {String} type * @param {Function} fn * @param {Boolean} capture * @return {Function} * @api public */ exports.bind = function(el, selector, type, fn, capture){ return event.bind(el, type, function(e){ var target = e.target || e.srcElement; e.delegateTarget = closest(target, selector, true, el); if (e.delegateTarget) fn.call(el, e); }, capture); }; /** * Unbind event `type`'s callback `fn`. * * @param {Element} el * @param {String} type * @param {Function} fn * @param {Boolean} capture * @api public */ exports.unbind = function(el, type, fn, capture){ event.unbind(el, type, fn, capture); }; },{"108":108,"110":110}],110:[function(_dereq_,module,exports){ var bind = window.addEventListener ? 'addEventListener' : 'attachEvent', unbind = window.removeEventListener ? 'removeEventListener' : 'detachEvent', prefix = bind !== 'addEventListener' ? 'on' : ''; /** * Bind `el` event `type` to `fn`. * * @param {Element} el * @param {String} type * @param {Function} fn * @param {Boolean} capture * @return {Function} * @api public */ exports.bind = function(el, type, fn, capture){ el[bind](prefix + type, fn, capture || false); return fn; }; /** * Unbind `el` event `type`'s callback `fn`. * * @param {Element} el * @param {String} type * @param {Function} fn * @param {Boolean} capture * @return {Function} * @api public */ exports.unbind = function(el, type, fn, capture){ el[unbind](prefix + type, fn, capture || false); return fn; }; },{}],111:[function(_dereq_,module,exports){ module.exports = function(arr, obj){ if (arr.indexOf) return arr.indexOf(obj); for (var i = 0; i < arr.length; ++i) { if (arr[i] === obj) return i; } return -1; }; },{}],112:[function(_dereq_,module,exports){ /** * Module dependencies. */ try { var query = _dereq_(113); } catch (err) { var query = _dereq_(113); } /** * Element prototype. */ var proto = Element.prototype; /** * Vendor function. */ var vendor = proto.matches || proto.webkitMatchesSelector || proto.mozMatchesSelector || proto.msMatchesSelector || proto.oMatchesSelector; /** * Expose `match()`. */ module.exports = match; /** * Match `el` to `selector`. * * @param {Element} el * @param {String} selector * @return {Boolean} * @api public */ function match(el, selector) { if (!el || el.nodeType !== 1) return false; if (vendor) return vendor.call(el, selector); var nodes = query.all(selector, el.parentNode); for (var i = 0; i < nodes.length; ++i) { if (nodes[i] == el) return true; } return false; } },{"113":113}],113:[function(_dereq_,module,exports){ function one(selector, el) { return el.querySelector(selector); } exports = module.exports = function(selector, el){ el = el || document; return one(selector, el); }; exports.all = function(selector, el){ el = el || document; return el.querySelectorAll(selector); }; exports.engine = function(obj){ if (!obj.one) throw new Error('.one callback required'); if (!obj.all) throw new Error('.all callback required'); one = obj.one; exports.all = obj.all; return exports; }; },{}],114:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(170) ], __init__: [ 'directEditing' ], directEditing: [ 'type', _dereq_(115) ] }; },{"115":115,"170":170}],115:[function(_dereq_,module,exports){ 'use strict'; var bind = _dereq_(312), find = _dereq_(302); var TextBox = _dereq_(116); /** * A direct editing component that allows users * to edit an elements text directly in the diagram * * @param {EventBus} eventBus the event bus */ function DirectEditing(eventBus, canvas) { this._eventBus = eventBus; this._providers = []; this._textbox = new TextBox({ container: canvas.getContainer(), keyHandler: bind(this._handleKey, this), resizeHandler: bind(this._handleResize, this) }); } DirectEditing.$inject = [ 'eventBus', 'canvas' ]; /** * Register a direct editing provider * @param {Object} provider the provider, must expose an #activate(element) method that returns * an activation context ({ bounds: {x, y, width, height }, text }) if * direct editing is available for the given element. * Additionally the provider must expose a #update(element, value) method * to receive direct editing updates. */ DirectEditing.prototype.registerProvider = function(provider) { this._providers.push(provider); }; /** * Returns true if direct editing is currently active * * @return {Boolean} */ DirectEditing.prototype.isActive = function() { return !!this._active; }; /** * Cancel direct editing, if it is currently active */ DirectEditing.prototype.cancel = function() { if (!this._active) { return; } this._fire('cancel'); this.close(); }; DirectEditing.prototype._fire = function(event, context) { this._eventBus.fire('directEditing.' + event, context || { active: this._active }); }; DirectEditing.prototype.close = function() { this._textbox.destroy(); this._fire('deactivate'); this._active = null; this.resizable = undefined; }; DirectEditing.prototype.complete = function() { var active = this._active; if (!active) { return; } var text = this.getValue(); var bounds = this.$textbox.getBoundingClientRect(); if (text !== active.context.text || this.resizable) { active.provider.update(active.element, text, active.context.text, { x: bounds.top, y: bounds.left, width: bounds.width, height: bounds.height }); } this._fire('complete'); this.close(); }; DirectEditing.prototype.getValue = function() { return this._textbox.getValue(); }; DirectEditing.prototype._handleKey = function(e) { // stop bubble e.stopPropagation(); var key = e.keyCode || e.charCode; // ESC if (key === 27) { e.preventDefault(); return this.cancel(); } // Enter if (key === 13 && !e.shiftKey) { e.preventDefault(); return this.complete(); } }; DirectEditing.prototype._handleResize = function(event) { this._fire('resize', event); }; /** * Activate direct editing on the given element * * @param {Object} ElementDescriptor the descriptor for a shape or connection * @return {Boolean} true if the activation was possible */ DirectEditing.prototype.activate = function(element) { if (this.isActive()) { this.cancel(); } // the direct editing context var context; var provider = find(this._providers, function(p) { return (context = p.activate(element)) ? p : null; }); // check if activation took place if (context) { this.$textbox = this._textbox.create( context.bounds, context.style, context.text, context.options ); this._active = { element: element, context: context, provider: provider }; if (context.options && context.options.resizable) { this.resizable = true; } this._fire('activate'); } return !!context; }; module.exports = DirectEditing; },{"116":116,"302":302,"312":312}],116:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), bind = _dereq_(312), pick = _dereq_(438); var domAttr = _dereq_(444), domClasses = _dereq_(445), domEvent = _dereq_(450), domRemove = _dereq_(453); var min = Math.min, max = Math.max; function preventDefault(e) { e.preventDefault(); } function stopPropagation(e) { e.stopPropagation(); } function isTextNode(node) { return node.nodeType === Node.TEXT_NODE; } function toArray(nodeList) { return [].slice.call(nodeList); } /** * Initializes a container for a content editable div. * * Structure: * * container * parent * content * handle * * @param {object} options * @param {DOMElement} options.container The DOM element to append the contentContainer to * @param {Function} options.keyHandler Handler for key events * @param {Function} options.resizeHandler Handler for resize events */ function TextBox(options) { this.container = options.container; this.parent = document.createElement('div'); this.content = document.createElement('div'); this.parent.appendChild(this.content); domAttr(this.content, 'contentEditable', 'true'); this.keyHandler = options.keyHandler || function() {}; this.resizeHandler = options.resizeHandler || function() {}; this.autoResize = bind(this.autoResize, this); this.handlePaste = bind(this.handlePaste, this); } module.exports = TextBox; /** * Create a text box with the given position, size, style and text content * * @param {Object} bounds * @param {Number} bounds.x absolute x position * @param {Number} bounds.y absolute y position * @param {Number} [bounds.width] fixed width value * @param {Number} [bounds.height] fixed height value * @param {Number} [bounds.maxWidth] maximum width value * @param {Number} [bounds.maxHeight] maximum height value * @param {Number} [bounds.minWidth] minimum width value * @param {Number} [bounds.minHeight] minimum height value * @param {Object} [style] * @param {String} value text content * * @return {DOMElement} The created content DOM element */ TextBox.prototype.create = function(bounds, style, value, options) { var self = this; var parent = this.parent, content = this.content, container = this.container; options = this.options = options || {}; style = this.style = style || {}; var parentStyle = pick(style, [ 'width', 'height', 'maxWidth', 'maxHeight', 'minWidth', 'minHeight', 'left', 'top', 'backgroundColor', 'position', 'overflow', 'border', 'wordWrap', 'textAlign', 'outline', 'transform' ]); assign(parent.style, { width: bounds.width + 'px', height: bounds.height + 'px', maxWidth: bounds.maxWidth + 'px', maxHeight: bounds.maxHeight + 'px', minWidth: bounds.minWidth + 'px', minHeight: bounds.minHeight + 'px', left: bounds.x + 'px', top: bounds.y + 'px', backgroundColor: '#ffffff', position: 'absolute', overflow: 'visible', border: '1px solid #ccc', wordWrap: 'normal', textAlign: 'center', outline: 'none' }, parentStyle); var contentStyle = pick(style, [ 'fontSize', 'lineHeight', 'padding', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft' ]); assign(content.style, { boxSizing: 'border-box', width: '100%', outline: 'none' }, contentStyle); if (options.centerVertically) { assign(content.style, { position: 'absolute', top: '50%', transform: 'translate(0, -50%)' }, contentStyle); } content.innerText = value; domEvent.bind(content, 'keydown', this.keyHandler); domEvent.bind(content, 'mousedown', stopPropagation); domEvent.bind(content, 'paste', self.handlePaste); if (options.autoResize) { domEvent.bind(content, 'input', this.autoResize); } if (options.resizable) { this.resizable(style); } container.appendChild(parent); // set selection to end of text this.setSelection(content.lastChild, content.lastChild && content.lastChild.length); return parent; }; /** * Intercept paste events to remove formatting from pasted text. */ TextBox.prototype.handlePaste = function(e) { var self = this; var options = this.options, style = this.style; e.preventDefault(); var text; if (e.clipboardData) { // Chrome, Firefox, Safari text = e.clipboardData.getData('text/plain'); } else { // Internet Explorer text = window.clipboardData.getData('Text'); } // insertHTML command not supported by Internet Explorer var success = document.execCommand('insertHTML', false, text); if (!success) { // Internet Explorer var range = this.getSelection(), startContainer = range.startContainer, endContainer = range.endContainer, startOffset = range.startOffset, endOffset = range.endOffset, commonAncestorContainer = range.commonAncestorContainer; var childNodesArray = toArray(commonAncestorContainer.childNodes); var container, offset; if (isTextNode(commonAncestorContainer)) { var containerTextContent = startContainer.textContent; startContainer.textContent = containerTextContent.substring(0, startOffset) + text + containerTextContent.substring(endOffset); container = startContainer; offset = startOffset + text.length; } else if (startContainer === this.content && endContainer === this.content) { var textNode = document.createTextNode(text); this.content.insertBefore(textNode, childNodesArray[startOffset]); container = textNode; offset = textNode.textContent.length; } else { var startContainerChildIndex = childNodesArray.indexOf(startContainer), endContainerChildIndex = childNodesArray.indexOf(endContainer); childNodesArray.forEach(function(childNode, index) { if (index === startContainerChildIndex) { childNode.textContent = startContainer.textContent.substring(0, startOffset) + text + endContainer.textContent.substring(endOffset); } else if (index > startContainerChildIndex && index <= endContainerChildIndex) { domRemove(childNode); } }); container = startContainer; offset = startOffset + text.length; } if (container && offset !== undefined) { // is necessary in Internet Explorer setTimeout(function() { self.setSelection(container, offset); }); } } if (options.autoResize) { var hasResized = this.autoResize(style); if (hasResized) { this.resizeHandler(hasResized); } } }; /** * Automatically resize element vertically to fit its content. */ TextBox.prototype.autoResize = function() { var parent = this.parent, content = this.content; var fontSize = parseInt(this.style.fontSize) || 12; if (content.scrollHeight > parent.offsetHeight || content.scrollHeight < parent.offsetHeight - fontSize) { var bounds = parent.getBoundingClientRect(); var height = content.scrollHeight; parent.style.height = height + 'px'; this.resizeHandler({ width: bounds.width, height: bounds.height, dx: 0, dy: height - bounds.height }); } }; /** * Make an element resizable by adding a resize handle. */ TextBox.prototype.resizable = function() { var self = this; var parent = this.parent, resizeHandle = this.resizeHandle; var minWidth = parseInt(this.style.minWidth) || 0, minHeight = parseInt(this.style.minHeight) || 0, maxWidth = parseInt(this.style.maxWidth) || Infinity, maxHeight = parseInt(this.style.maxHeight) || Infinity; if (!resizeHandle) { resizeHandle = this.resizeHandle = document.createElement('div'); domClasses(resizeHandle).add('djs-direct-editing-resize-handle'); var startX, startY, startWidth, startHeight; var onMouseDown = function(e) { preventDefault(e); stopPropagation(e); startX = e.clientX; startY = e.clientY; var bounds = parent.getBoundingClientRect(); startWidth = bounds.width; startHeight = bounds.height; domEvent.bind(document, 'mousemove', onMouseMove); domEvent.bind(document, 'mouseup', onMouseUp); }; var onMouseMove = function(e) { preventDefault(e); stopPropagation(e); var newWidth = min(max(startWidth + e.clientX - startX, minWidth), maxWidth); var newHeight = min(max(startHeight + e.clientY - startY, minHeight), maxHeight); parent.style.width = newWidth + 'px'; parent.style.height = newHeight + 'px'; self.resizeHandler({ width: startWidth, height: startHeight, dx: e.clientX - startX, dy: e.clientY - startY }); }; var onMouseUp = function(e) { preventDefault(e); stopPropagation(e); domEvent.unbind(document,'mousemove', onMouseMove, false); domEvent.unbind(document, 'mouseup', onMouseUp, false); }; domEvent.bind(resizeHandle, 'mousedown', onMouseDown); } assign(resizeHandle.style, { position: 'absolute', bottom: '0px', right: '0px', cursor: 'nwse-resize', width: '0', height: '0', borderTop: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid transparent', borderRight: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid #ccc', borderBottom: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid #ccc', borderLeft: (parseInt(this.style.fontSize) / 4 || 3) + 'px solid transparent' }); parent.appendChild(resizeHandle); }; /** * Clear content and style of the textbox, unbind listeners and * reset CSS style. */ TextBox.prototype.destroy = function() { var parent = this.parent, content = this.content, resizeHandle = this.resizeHandle; // clear content content.innerText = ''; // clear styles parent.removeAttribute('style'); content.removeAttribute('style'); domEvent.unbind(content, 'keydown', this.keyHandler); domEvent.unbind(content, 'mousedown', stopPropagation); domEvent.unbind(content, 'input', this.autoResize); domEvent.unbind(content, 'paste', this.handlePaste); if (resizeHandle) { resizeHandle.removeAttribute('style'); domRemove(resizeHandle); } domRemove(parent); }; TextBox.prototype.getValue = function() { return this.content.innerText; }; TextBox.prototype.getSelection = function() { var selection = window.getSelection(), range = selection.getRangeAt(0); return range; }; TextBox.prototype.setSelection = function(container, offset) { var range = document.createRange(); if (container === null) { range.selectNodeContents(this.content); } else { range.setStart(container, offset); range.setEnd(container, offset); } var selection = window.getSelection(); selection.removeAllRanges(); selection.addRange(range); }; },{"312":312,"431":431,"438":438,"444":444,"445":445,"450":450,"453":453}],117:[function(_dereq_,module,exports){ module.exports = _dereq_(118); },{"118":118}],118:[function(_dereq_,module,exports){ 'use strict'; var di = _dereq_(282); /** * Bootstrap an injector from a list of modules, instantiating a number of default components * * @ignore * @param {Array} bootstrapModules * * @return {didi.Injector} a injector to use to access the components */ function bootstrap(bootstrapModules) { var modules = [], components = []; function hasModule(m) { return modules.indexOf(m) >= 0; } function addModule(m) { modules.push(m); } function visit(m) { if (hasModule(m)) { return; } (m.__depends__ || []).forEach(visit); if (hasModule(m)) { return; } addModule(m); (m.__init__ || []).forEach(function(c) { components.push(c); }); } bootstrapModules.forEach(visit); var injector = new di.Injector(modules); components.forEach(function(c) { try { // eagerly resolve component (fn or string) injector[typeof c === 'string' ? 'get' : 'invoke'](c); } catch (e) { console.error('Failed to instantiate component'); console.error(e.stack); throw e; } }); return injector; } /** * Creates an injector from passed options. * * @ignore * @param {Object} options * @return {didi.Injector} */ function createInjector(options) { options = options || {}; var configModule = { 'config': ['value', options] }; var coreModule = _dereq_(127); var modules = [ configModule, coreModule ].concat(options.modules || []); return bootstrap(modules); } /** * The main diagram-js entry point that bootstraps the diagram with the given * configuration. * * To register extensions with the diagram, pass them as Array to the constructor. * * @class djs.Diagram * @memberOf djs * @constructor * * @example * * Creating a plug-in that logs whenever a shape is added to the canvas. * * // plug-in implemenentation * function MyLoggingPlugin(eventBus) { * eventBus.on('shape.added', function(event) { * console.log('shape ', event.shape, ' was added to the diagram'); * }); * } * * // export as module * module.exports = { * __init__: [ 'myLoggingPlugin' ], * myLoggingPlugin: [ 'type', MyLoggingPlugin ] * }; * * * // instantiate the diagram with the new plug-in * * var diagram = new Diagram({ modules: [ require('path-to-my-logging-plugin') ] }); * * diagram.invoke([ 'canvas', function(canvas) { * // add shape to drawing canvas * canvas.addShape({ x: 10, y: 10 }); * }); * * // 'shape ... was added to the diagram' logged to console * * @param {Object} options * @param {Array} [options.modules] external modules to instantiate with the diagram * @param {didi.Injector} [injector] an (optional) injector to bootstrap the diagram with */ function Diagram(options, injector) { // create injector unless explicitly specified this.injector = injector = injector || createInjector(options); // API /** * Resolves a diagram service * * @method Diagram#get * * @param {String} name the name of the diagram service to be retrieved * @param {Boolean} [strict=true] if false, resolve missing services to null */ this.get = injector.get; /** * Executes a function into which diagram services are injected * * @method Diagram#invoke * * @param {Function|Object[]} fn the function to resolve * @param {Object} locals a number of locals to use to resolve certain dependencies */ this.invoke = injector.invoke; // init // indicate via event /** * An event indicating that all plug-ins are loaded. * * Use this event to fire other events to interested plug-ins * * @memberOf Diagram * * @event diagram.init * * @example * * eventBus.on('diagram.init', function() { * eventBus.fire('my-custom-event', { foo: 'BAR' }); * }); * * @type {Object} */ this.get('eventBus').fire('diagram.init'); } module.exports = Diagram; /** * Destroys the diagram * * @method Diagram#destroy */ Diagram.prototype.destroy = function() { this.get('eventBus').fire('diagram.destroy'); }; /** * Clear the diagram, removing all contents. */ Diagram.prototype.clear = function() { this.get('eventBus').fire('diagram.clear'); }; },{"127":127,"282":282}],119:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), isFunction = _dereq_(423), isArray = _dereq_(422), isNumber = _dereq_(425); var DEFAULT_PRIORITY = 1000; function isObject(element) { return typeof element === 'object'; } /** * A utility that can be used to plug-in into the command execution for * extension and/or validation. * * @param {EventBus} eventBus * * @example * * var inherits = require('inherits'); * * var CommandInterceptor = require('diagram-js/lib/command/CommandInterceptor'); * * function CommandLogger(eventBus) { * CommandInterceptor.call(this, eventBus); * * this.preExecute(function(event) { * console.log('command pre-execute', event); * }); * } * * inherits(CommandLogger, CommandInterceptor); * */ function CommandInterceptor(eventBus) { this._eventBus = eventBus; } CommandInterceptor.$inject = [ 'eventBus' ]; module.exports = CommandInterceptor; function unwrapEvent(fn, that) { return function(event) { return fn.call(that || null, event.context, event.command, event); }; } /** * Register an interceptor for a command execution * * @param {String|Array} [events] list of commands to register on * @param {String} [hook] command hook, i.e. preExecute, executed to listen on * @param {Number} [priority] the priority on which to hook into the execution * @param {Function} handlerFn interceptor to be invoked with (event) * @param {Boolean} unwrap if true, unwrap the event and pass (context, command, event) to the * listener instead * @param {Object} [that] Pass context (`this`) to the handler function */ CommandInterceptor.prototype.on = function(events, hook, priority, handlerFn, unwrap, that) { if (isFunction(hook) || isNumber(hook)) { that = unwrap; unwrap = handlerFn; handlerFn = priority; priority = hook; hook = null; } if (isFunction(priority)) { that = unwrap; unwrap = handlerFn; handlerFn = priority; priority = DEFAULT_PRIORITY; } if (isObject(unwrap)) { that = unwrap; unwrap = false; } if (!isFunction(handlerFn)) { throw new Error('handlerFn must be a function'); } if (!isArray(events)) { events = [ events ]; } var eventBus = this._eventBus; forEach(events, function(event) { // concat commandStack(.event)?(.hook)? var fullEvent = [ 'commandStack', event, hook ].filter(function(e) { return e; }).join('.'); eventBus.on(fullEvent, priority, unwrap ? unwrapEvent(handlerFn, that) : handlerFn, that); }); }; var hooks = [ 'canExecute', 'preExecute', 'preExecuted', 'execute', 'executed', 'postExecute', 'postExecuted', 'revert', 'reverted' ]; /* * Install hook shortcuts * * This will generate the CommandInterceptor#(preExecute|...|reverted) methods * which will in term forward to CommandInterceptor#on. */ forEach(hooks, function(hook) { /** * {canExecute|preExecute|preExecuted|execute|executed|postExecute|postExecuted|revert|reverted} * * A named hook for plugging into the command execution * * @param {String|Array} [events] list of commands to register on * @param {Number} [priority] the priority on which to hook into the execution * @param {Function} handlerFn interceptor to be invoked with (event) * @param {Boolean} [unwrap=false] if true, unwrap the event and pass (context, command, event) to the * listener instead * @param {Object} [that] Pass context (`this`) to the handler function */ CommandInterceptor.prototype[hook] = function(events, priority, handlerFn, unwrap, that) { if (isFunction(events) || isNumber(events)) { that = unwrap; unwrap = handlerFn; handlerFn = priority; priority = events; events = null; } this.on(events, hook, priority, handlerFn, unwrap, that); }; }); },{"303":303,"422":422,"423":423,"425":425}],120:[function(_dereq_,module,exports){ 'use strict'; var unique = _dereq_(296), isArray = _dereq_(422), assign = _dereq_(431); var InternalEvent = _dereq_(125).Event; /** * A service that offers un- and redoable execution of commands. * * The command stack is responsible for executing modeling actions * in a un- and redoable manner. To do this it delegates the actual * command execution to {@link CommandHandler}s. * * Command handlers provide {@link CommandHandler#execute(ctx)} and * {@link CommandHandler#revert(ctx)} methods to un- and redo a command * identified by a command context. * * * ## Life-Cycle events * * In the process the command stack fires a number of life-cycle events * that other components to participate in the command execution. * * * preExecute * * preExecuted * * execute * * executed * * postExecute * * postExecuted * * revert * * reverted * * A special event is used for validating, whether a command can be * performed prior to its execution. * * * canExecute * * Each of the events is fired as `commandStack.{eventName}` and * `commandStack.{commandName}.{eventName}`, respectively. This gives * components fine grained control on where to hook into. * * The event object fired transports `command`, the name of the * command and `context`, the command context. * * * ## Creating Command Handlers * * Command handlers should provide the {@link CommandHandler#execute(ctx)} * and {@link CommandHandler#revert(ctx)} methods to implement * redoing and undoing of a command. * * A command handler _must_ ensure undo is performed properly in order * not to break the undo chain. It must also return the shapes that * got changed during the `execute` and `revert` operations. * * Command handlers may execute other modeling operations (and thus * commands) in their `preExecute` and `postExecute` phases. The command * stack will properly group all commands together into a logical unit * that may be re- and undone atomically. * * Command handlers must not execute other commands from within their * core implementation (`execute`, `revert`). * * * ## Change Tracking * * During the execution of the CommandStack it will keep track of all * elements that have been touched during the command's execution. * * At the end of the CommandStack execution it will notify interested * components via an 'elements.changed' event with all the dirty * elements. * * The event can be picked up by components that are interested in the fact * that elements have been changed. One use case for this is updating * their graphical representation after moving / resizing or deletion. * * @see CommandHandler * * @param {EventBus} eventBus * @param {Injector} injector */ function CommandStack(eventBus, injector) { /** * A map of all registered command handlers. * * @type {Object} */ this._handlerMap = {}; /** * A stack containing all re/undoable actions on the diagram * * @type {Array} */ this._stack = []; /** * The current index on the stack * * @type {Number} */ this._stackIdx = -1; /** * Current active commandStack execution * * @type {Object} */ this._currentExecution = { actions: [], dirty: [] }; this._injector = injector; this._eventBus = eventBus; this._uid = 1; eventBus.on([ 'diagram.destroy', 'diagram.clear' ], this.clear, this); } CommandStack.$inject = [ 'eventBus', 'injector' ]; module.exports = CommandStack; /** * Execute a command * * @param {String} command the command to execute * @param {Object} context the environment to execute the command in */ CommandStack.prototype.execute = function(command, context) { if (!command) { throw new Error('command required'); } var action = { command: command, context: context }; this._pushAction(action); this._internalExecute(action); this._popAction(action); }; /** * Ask whether a given command can be executed. * * Implementors may hook into the mechanism on two ways: * * * in event listeners: * * Users may prevent the execution via an event listener. * It must prevent the default action for `commandStack.(.)canExecute` events. * * * in command handlers: * * If the method {@link CommandHandler#canExecute} is implemented in a handler * it will be called to figure out whether the execution is allowed. * * @param {String} command the command to execute * @param {Object} context the environment to execute the command in * * @return {Boolean} true if the command can be executed */ CommandStack.prototype.canExecute = function(command, context) { var action = { command: command, context: context }; var handler = this._getHandler(command); var result = this._fire(command, 'canExecute', action); // handler#canExecute will only be called if no listener // decided on a result already if (result === undefined) { if (!handler) { return false; } if (handler.canExecute) { result = handler.canExecute(context); } } return result; }; /** * Clear the command stack, erasing all undo / redo history */ CommandStack.prototype.clear = function() { this._stack.length = 0; this._stackIdx = -1; this._fire('changed'); }; /** * Undo last command(s) */ CommandStack.prototype.undo = function() { var action = this._getUndoAction(), next; if (action) { this._pushAction(action); while (action) { this._internalUndo(action); next = this._getUndoAction(); if (!next || next.id !== action.id) { break; } action = next; } this._popAction(); } }; /** * Redo last command(s) */ CommandStack.prototype.redo = function() { var action = this._getRedoAction(), next; if (action) { this._pushAction(action); while (action) { this._internalExecute(action, true); next = this._getRedoAction(); if (!next || next.id !== action.id) { break; } action = next; } this._popAction(); } }; /** * Register a handler instance with the command stack * * @param {String} command * @param {CommandHandler} handler */ CommandStack.prototype.register = function(command, handler) { this._setHandler(command, handler); }; /** * Register a handler type with the command stack * by instantiating it and injecting its dependencies. * * @param {String} command * @param {Function} a constructor for a {@link CommandHandler} */ CommandStack.prototype.registerHandler = function(command, handlerCls) { if (!command || !handlerCls) { throw new Error('command and handlerCls must be defined'); } var handler = this._injector.instantiate(handlerCls); this.register(command, handler); }; CommandStack.prototype.canUndo = function() { return !!this._getUndoAction(); }; CommandStack.prototype.canRedo = function() { return !!this._getRedoAction(); }; ////// stack access ////////////////////////////////////// CommandStack.prototype._getRedoAction = function() { return this._stack[this._stackIdx + 1]; }; CommandStack.prototype._getUndoAction = function() { return this._stack[this._stackIdx]; }; ////// internal functionality ///////////////////////////// CommandStack.prototype._internalUndo = function(action) { var self = this; var command = action.command, context = action.context; var handler = this._getHandler(command); // guard against illegal nested command stack invocations this._atomicDo(function() { self._fire(command, 'revert', action); if (handler.revert) { self._markDirty(handler.revert(context)); } self._revertedAction(action); self._fire(command, 'reverted', action); }); }; CommandStack.prototype._fire = function(command, qualifier, event) { if (arguments.length < 3) { event = qualifier; qualifier = null; } var names = qualifier ? [ command + '.' + qualifier, qualifier ] : [ command ], i, name, result; event = assign(new InternalEvent(), event); for (i = 0; (name = names[i]); i++) { result = this._eventBus.fire('commandStack.' + name, event); if (event.cancelBubble) { break; } } return result; }; CommandStack.prototype._createId = function() { return this._uid++; }; CommandStack.prototype._atomicDo = function(fn) { var execution = this._currentExecution; execution.atomic = true; try { fn(); } finally { execution.atomic = false; } }; CommandStack.prototype._internalExecute = function(action, redo) { var self = this; var command = action.command, context = action.context; var handler = this._getHandler(command); if (!handler) { throw new Error('no command handler registered for <' + command + '>'); } this._pushAction(action); if (!redo) { this._fire(command, 'preExecute', action); if (handler.preExecute) { handler.preExecute(context); } this._fire(command, 'preExecuted', action); } // guard against illegal nested command stack invocations this._atomicDo(function() { self._fire(command, 'execute', action); if (handler.execute) { // actual execute + mark return results as dirty self._markDirty(handler.execute(context)); } // log to stack self._executedAction(action, redo); self._fire(command, 'executed', action); }); if (!redo) { this._fire(command, 'postExecute', action); if (handler.postExecute) { handler.postExecute(context); } this._fire(command, 'postExecuted', action); } this._popAction(action); }; CommandStack.prototype._pushAction = function(action) { var execution = this._currentExecution, actions = execution.actions; var baseAction = actions[0]; if (execution.atomic) { throw new Error('illegal invocation in or phase (action: ' + action.command + ')'); } if (!action.id) { action.id = (baseAction && baseAction.id) || this._createId(); } actions.push(action); }; CommandStack.prototype._popAction = function() { var execution = this._currentExecution, actions = execution.actions, dirty = execution.dirty; actions.pop(); if (!actions.length) { this._eventBus.fire('elements.changed', { elements: unique(dirty) }); dirty.length = 0; this._fire('changed'); } }; CommandStack.prototype._markDirty = function(elements) { var execution = this._currentExecution; if (!elements) { return; } elements = isArray(elements) ? elements : [ elements ]; execution.dirty = execution.dirty.concat(elements); }; CommandStack.prototype._executedAction = function(action, redo) { var stackIdx = ++this._stackIdx; if (!redo) { this._stack.splice(stackIdx, this._stack.length, action); } }; CommandStack.prototype._revertedAction = function(action) { this._stackIdx--; }; CommandStack.prototype._getHandler = function(command) { return this._handlerMap[command]; }; CommandStack.prototype._setHandler = function(command, handler) { if (!command || !handler) { throw new Error('command and handler required'); } if (this._handlerMap[command]) { throw new Error('overriding handler for command <' + command + '>'); } this._handlerMap[command] = handler; }; },{"125":125,"296":296,"422":422,"431":431}],121:[function(_dereq_,module,exports){ module.exports = { commandStack: [ 'type', _dereq_(120) ] }; },{"120":120}],122:[function(_dereq_,module,exports){ 'use strict'; var isNumber = _dereq_(425), assign = _dereq_(431), forEach = _dereq_(303), every = _dereq_(300), debounce = _dereq_(313), reduce = _dereq_(306); var Collections = _dereq_(263), Elements = _dereq_(266); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478), svgTransform = _dereq_(482); var createMatrix = _dereq_(479).createMatrix; function round(number, resolution) { return Math.round(number * resolution) / resolution; } function ensurePx(number) { return isNumber(number) ? number + 'px' : number; } /** * Creates a HTML container element for a SVG element with * the given configuration * * @param {Object} options * @return {HTMLElement} the container element */ function createContainer(options) { options = assign({}, { width: '100%', height: '100%' }, options); var container = options.container || document.body; // create a
around the svg element with the respective size // this way we can always get the correct container size // (this is impossible for elements at the moment) var parent = document.createElement('div'); parent.setAttribute('class', 'djs-container'); assign(parent.style, { position: 'relative', overflow: 'hidden', width: ensurePx(options.width), height: ensurePx(options.height) }); container.appendChild(parent); return parent; } function createGroup(parent, cls, childIndex) { var group = svgCreate('g'); svgClasses(group).add(cls); var index = childIndex !== undefined ? childIndex : parent.childNodes.length - 1; parent.insertBefore(group, parent.childNodes[index]); return group; } var BASE_LAYER = 'base'; var REQUIRED_MODEL_ATTRS = { shape: [ 'x', 'y', 'width', 'height' ], connection: [ 'waypoints' ] }; /** * The main drawing canvas. * * @class * @constructor * * @emits Canvas#canvas.init * * @param {Object} config * @param {EventBus} eventBus * @param {GraphicsFactory} graphicsFactory * @param {ElementRegistry} elementRegistry */ function Canvas(config, eventBus, graphicsFactory, elementRegistry) { this._eventBus = eventBus; this._elementRegistry = elementRegistry; this._graphicsFactory = graphicsFactory; this._init(config || {}); } Canvas.$inject = [ 'config.canvas', 'eventBus', 'graphicsFactory', 'elementRegistry' ]; module.exports = Canvas; Canvas.prototype._init = function(config) { var eventBus = this._eventBus; // Creates a element that is wrapped into a
. // This way we are always able to correctly figure out the size of the svg element // by querying the parent node. // // (It is not possible to get the size of a svg element cross browser @ 2014-04-01) // //
// // ... // //
// html container var container = this._container = createContainer(config); var svg = this._svg = svgCreate('svg'); svgAttr(svg, { width: '100%', height: '100%' }); svgAppend(container, svg); var viewport = this._viewport = createGroup(svg, 'viewport'); this._layers = {}; // debounce canvas.viewbox.changed events // for smoother diagram interaction if (config.deferUpdate !== false) { this._viewboxChanged = debounce(this._viewboxChanged, 300); } eventBus.on('diagram.init', function() { /** * An event indicating that the canvas is ready to be drawn on. * * @memberOf Canvas * * @event canvas.init * * @type {Object} * @property {SVGElement} svg the created svg element * @property {SVGElement} viewport the direct parent of diagram elements and shapes */ eventBus.fire('canvas.init', { svg: svg, viewport: viewport }); // fire this in order for certain components to check // if they need to be adjusted due the canvas size this.resized(); }, this); eventBus.on('diagram.destroy', 500, this._destroy, this); eventBus.on('diagram.clear', 500, this._clear, this); }; Canvas.prototype._destroy = function(emit) { this._eventBus.fire('canvas.destroy', { svg: this._svg, viewport: this._viewport }); var parent = this._container.parentNode; if (parent) { parent.removeChild(this._container); } delete this._svg; delete this._container; delete this._layers; delete this._rootElement; delete this._viewport; }; Canvas.prototype._clear = function() { var self = this; var allElements = this._elementRegistry.getAll(); // remove all elements allElements.forEach(function(element) { var type = Elements.getType(element); if (type === 'root') { self.setRootElement(null, true); } else { self._removeElement(element, type); } }); // force recomputation of view box delete this._cachedViewbox; }; /** * Returns the default layer on which * all elements are drawn. * * @returns {SVGElement} */ Canvas.prototype.getDefaultLayer = function() { return this.getLayer(BASE_LAYER, 0); }; /** * Returns a layer that is used to draw elements * or annotations on it. * * Non-existing layers retrieved through this method * will be created. During creation, the optional index * may be used to create layers below or above existing layers. * A layer with a certain index is always created above all * existing layers with the same index. * * @param {String} name * @param {Number} index * * @returns {SVGElement} */ Canvas.prototype.getLayer = function(name, index) { if (!name) { throw new Error('must specify a name'); } var layer = this._layers[name]; if (!layer) { layer = this._layers[name] = this._createLayer(name, index); } // throw an error if layer creation / retrival is // requested on different index if (typeof index !== 'undefined' && layer.index !== index) { throw new Error('layer <' + name + '> already created at index <' + index + '>'); } return layer.group; }; /** * Creates a given layer and returns it. * * @param {String} name * @param {Number} [index=0] * * @return {Object} layer descriptor with { index, group: SVGGroup } */ Canvas.prototype._createLayer = function(name, index) { if (!index) { index = 0; } var childIndex = reduce(this._layers, function(childIndex, layer) { if (index >= layer.index) { childIndex++; } return childIndex; }, 0); return { group: createGroup(this._viewport, 'layer-' + name, childIndex), index: index }; }; /** * Returns the html element that encloses the * drawing canvas. * * @return {DOMNode} */ Canvas.prototype.getContainer = function() { return this._container; }; /////////////// markers /////////////////////////////////// Canvas.prototype._updateMarker = function(element, marker, add) { var container; if (!element.id) { element = this._elementRegistry.get(element); } // we need to access all container = this._elementRegistry._elements[element.id]; if (!container) { return; } forEach([ container.gfx, container.secondaryGfx ], function(gfx) { if (gfx) { // invoke either addClass or removeClass based on mode if (add) { svgClasses(gfx).add(marker); } else { svgClasses(gfx).remove(marker); } } }); /** * An event indicating that a marker has been updated for an element * * @event element.marker.update * @type {Object} * @property {djs.model.Element} element the shape * @property {Object} gfx the graphical representation of the shape * @property {String} marker * @property {Boolean} add true if the marker was added, false if it got removed */ this._eventBus.fire('element.marker.update', { element: element, gfx: container.gfx, marker: marker, add: !!add }); }; /** * Adds a marker to an element (basically a css class). * * Fires the element.marker.update event, making it possible to * integrate extension into the marker life-cycle, too. * * @example * canvas.addMarker('foo', 'some-marker'); * * var fooGfx = canvas.getGraphics('foo'); * * fooGfx; // ... * * @param {String|djs.model.Base} element * @param {String} marker */ Canvas.prototype.addMarker = function(element, marker) { this._updateMarker(element, marker, true); }; /** * Remove a marker from an element. * * Fires the element.marker.update event, making it possible to * integrate extension into the marker life-cycle, too. * * @param {String|djs.model.Base} element * @param {String} marker */ Canvas.prototype.removeMarker = function(element, marker) { this._updateMarker(element, marker, false); }; /** * Check the existence of a marker on element. * * @param {String|djs.model.Base} element * @param {String} marker */ Canvas.prototype.hasMarker = function(element, marker) { if (!element.id) { element = this._elementRegistry.get(element); } var gfx = this.getGraphics(element); return svgClasses(gfx).has(marker); }; /** * Toggles a marker on an element. * * Fires the element.marker.update event, making it possible to * integrate extension into the marker life-cycle, too. * * @param {String|djs.model.Base} element * @param {String} marker */ Canvas.prototype.toggleMarker = function(element, marker) { if (this.hasMarker(element, marker)) { this.removeMarker(element, marker); } else { this.addMarker(element, marker); } }; Canvas.prototype.getRootElement = function() { if (!this._rootElement) { this.setRootElement({ id: '__implicitroot', children: [] }); } return this._rootElement; }; //////////////// root element handling /////////////////////////// /** * Sets a given element as the new root element for the canvas * and returns the new root element. * * @param {Object|djs.model.Root} element * @param {Boolean} [override] whether to override the current root element, if any * * @return {Object|djs.model.Root} new root element */ Canvas.prototype.setRootElement = function(element, override) { if (element) { this._ensureValid('root', element); } var currentRoot = this._rootElement, elementRegistry = this._elementRegistry, eventBus = this._eventBus; if (currentRoot) { if (!override) { throw new Error('rootElement already set, need to specify override'); } // simulate element remove event sequence eventBus.fire('root.remove', { element: currentRoot }); eventBus.fire('root.removed', { element: currentRoot }); elementRegistry.remove(currentRoot); } if (element) { var gfx = this.getDefaultLayer(); // resemble element add event sequence eventBus.fire('root.add', { element: element }); elementRegistry.add(element, gfx, this._svg); eventBus.fire('root.added', { element: element, gfx: gfx }); } this._rootElement = element; return element; }; ///////////// add functionality /////////////////////////////// Canvas.prototype._ensureValid = function(type, element) { if (!element.id) { throw new Error('element must have an id'); } if (this._elementRegistry.get(element.id)) { throw new Error('element with id ' + element.id + ' already exists'); } var requiredAttrs = REQUIRED_MODEL_ATTRS[type]; var valid = every(requiredAttrs, function(attr) { return typeof element[attr] !== 'undefined'; }); if (!valid) { throw new Error( 'must supply { ' + requiredAttrs.join(', ') + ' } with ' + type); } }; Canvas.prototype._setParent = function(element, parent, parentIndex) { Collections.add(parent.children, element, parentIndex); element.parent = parent; }; /** * Adds an element to the canvas. * * This wires the parent <-> child relationship between the element and * a explicitly specified parent or an implicit root element. * * During add it emits the events * * * <{type}.add> (element, parent) * * <{type}.added> (element, gfx) * * Extensions may hook into these events to perform their magic. * * @param {String} type * @param {Object|djs.model.Base} element * @param {Object|djs.model.Base} [parent] * @param {Number} [parentIndex] * * @return {Object|djs.model.Base} the added element */ Canvas.prototype._addElement = function(type, element, parent, parentIndex) { parent = parent || this.getRootElement(); var eventBus = this._eventBus, graphicsFactory = this._graphicsFactory; this._ensureValid(type, element); eventBus.fire(type + '.add', { element: element, parent: parent }); this._setParent(element, parent, parentIndex); // create graphics var gfx = graphicsFactory.create(type, element); this._elementRegistry.add(element, gfx); // update its visual graphicsFactory.update(type, element, gfx); eventBus.fire(type + '.added', { element: element, gfx: gfx }); return element; }; /** * Adds a shape to the canvas * * @param {Object|djs.model.Shape} shape to add to the diagram * @param {djs.model.Base} [parent] * @param {Number} [parentIndex] * * @return {djs.model.Shape} the added shape */ Canvas.prototype.addShape = function(shape, parent, parentIndex) { return this._addElement('shape', shape, parent, parentIndex); }; /** * Adds a connection to the canvas * * @param {Object|djs.model.Connection} connection to add to the diagram * @param {djs.model.Base} [parent] * @param {Number} [parentIndex] * * @return {djs.model.Connection} the added connection */ Canvas.prototype.addConnection = function(connection, parent, parentIndex) { return this._addElement('connection', connection, parent, parentIndex); }; /** * Internal remove element */ Canvas.prototype._removeElement = function(element, type) { var elementRegistry = this._elementRegistry, graphicsFactory = this._graphicsFactory, eventBus = this._eventBus; element = elementRegistry.get(element.id || element); if (!element) { // element was removed already return; } eventBus.fire(type + '.remove', { element: element }); graphicsFactory.remove(element); // unset parent <-> child relationship Collections.remove(element.parent && element.parent.children, element); element.parent = null; eventBus.fire(type + '.removed', { element: element }); elementRegistry.remove(element); return element; }; /** * Removes a shape from the canvas * * @param {String|djs.model.Shape} shape or shape id to be removed * * @return {djs.model.Shape} the removed shape */ Canvas.prototype.removeShape = function(shape) { /** * An event indicating that a shape is about to be removed from the canvas. * * @memberOf Canvas * * @event shape.remove * @type {Object} * @property {djs.model.Shape} element the shape descriptor * @property {Object} gfx the graphical representation of the shape */ /** * An event indicating that a shape has been removed from the canvas. * * @memberOf Canvas * * @event shape.removed * @type {Object} * @property {djs.model.Shape} element the shape descriptor * @property {Object} gfx the graphical representation of the shape */ return this._removeElement(shape, 'shape'); }; /** * Removes a connection from the canvas * * @param {String|djs.model.Connection} connection or connection id to be removed * * @return {djs.model.Connection} the removed connection */ Canvas.prototype.removeConnection = function(connection) { /** * An event indicating that a connection is about to be removed from the canvas. * * @memberOf Canvas * * @event connection.remove * @type {Object} * @property {djs.model.Connection} element the connection descriptor * @property {Object} gfx the graphical representation of the connection */ /** * An event indicating that a connection has been removed from the canvas. * * @memberOf Canvas * * @event connection.removed * @type {Object} * @property {djs.model.Connection} element the connection descriptor * @property {Object} gfx the graphical representation of the connection */ return this._removeElement(connection, 'connection'); }; /** * Return the graphical object underlaying a certain diagram element * * @param {String|djs.model.Base} element descriptor of the element * @param {Boolean} [secondary=false] whether to return the secondary connected element * * @return {SVGElement} */ Canvas.prototype.getGraphics = function(element, secondary) { return this._elementRegistry.getGraphics(element, secondary); }; /** * Perform a viewbox update via a given change function. * * @param {Function} changeFn */ Canvas.prototype._changeViewbox = function(changeFn) { // notify others of the upcoming viewbox change this._eventBus.fire('canvas.viewbox.changing'); // perform actual change changeFn.apply(this); // reset the cached viewbox so that // a new get operation on viewbox or zoom // triggers a viewbox re-computation this._cachedViewbox = null; // notify others of the change; this step // may or may not be debounced this._viewboxChanged(); }; Canvas.prototype._viewboxChanged = function() { this._eventBus.fire('canvas.viewbox.changed', { viewbox: this.viewbox() }); }; /** * Gets or sets the view box of the canvas, i.e. the * area that is currently displayed. * * The getter may return a cached viewbox (if it is currently * changing). To force a recomputation, pass `false` as the first argument. * * @example * * canvas.viewbox({ x: 100, y: 100, width: 500, height: 500 }) * * // sets the visible area of the diagram to (100|100) -> (600|100) * // and and scales it according to the diagram width * * var viewbox = canvas.viewbox(); // pass `false` to force recomputing the box. * * console.log(viewbox); * // { * // inner: Dimensions, * // outer: Dimensions, * // scale, * // x, y, * // width, height * // } * * // if the current diagram is zoomed and scrolled, you may reset it to the * // default zoom via this method, too: * * var zoomedAndScrolledViewbox = canvas.viewbox(); * * canvas.viewbox({ * x: 0, * y: 0, * width: zoomedAndScrolledViewbox.outer.width, * height: zoomedAndScrolledViewbox.outer.height * }); * * @param {Object} [box] the new view box to set * @param {Number} box.x the top left X coordinate of the canvas visible in view box * @param {Number} box.y the top left Y coordinate of the canvas visible in view box * @param {Number} box.width the visible width * @param {Number} box.height * * @return {Object} the current view box */ Canvas.prototype.viewbox = function(box) { if (box === undefined && this._cachedViewbox) { return this._cachedViewbox; } var viewport = this._viewport, innerBox, outerBox = this.getSize(), matrix, scale, x, y; if (!box) { // compute the inner box based on the // diagrams default layer. This allows us to exclude // external components, such as overlays innerBox = this.getDefaultLayer().getBBox(); var transform = svgTransform(viewport); matrix = transform ? transform.matrix : createMatrix(); scale = round(matrix.a, 1000); x = round(-matrix.e || 0, 1000); y = round(-matrix.f || 0, 1000); box = this._cachedViewbox = { x: x ? x / scale : 0, y: y ? y / scale : 0, width: outerBox.width / scale, height: outerBox.height / scale, scale: scale, inner: { width: innerBox.width, height: innerBox.height, x: innerBox.x, y: innerBox.y }, outer: outerBox }; return box; } else { this._changeViewbox(function() { scale = Math.min(outerBox.width / box.width, outerBox.height / box.height); var matrix = this._svg.createSVGMatrix() .scale(scale) .translate(-box.x, -box.y); svgTransform(viewport, matrix); }); } return box; }; /** * Gets or sets the scroll of the canvas. * * @param {Object} [delta] the new scroll to apply. * * @param {Number} [delta.dx] * @param {Number} [delta.dy] */ Canvas.prototype.scroll = function(delta) { var node = this._viewport; var matrix = node.getCTM(); if (delta) { this._changeViewbox(function() { delta = assign({ dx: 0, dy: 0 }, delta || {}); matrix = this._svg.createSVGMatrix().translate(delta.dx, delta.dy).multiply(matrix); setCTM(node, matrix); }); } return { x: matrix.e, y: matrix.f }; }; /** * Gets or sets the current zoom of the canvas, optionally zooming * to the specified position. * * The getter may return a cached zoom level. Call it with `false` as * the first argument to force recomputation of the current level. * * @param {String|Number} [newScale] the new zoom level, either a number, i.e. 0.9, * or `fit-viewport` to adjust the size to fit the current viewport * @param {String|Point} [center] the reference point { x: .., y: ..} to zoom to, 'auto' to zoom into mid or null * * @return {Number} the current scale */ Canvas.prototype.zoom = function(newScale, center) { if (!newScale) { return this.viewbox(newScale).scale; } if (newScale === 'fit-viewport') { return this._fitViewport(center); } var outer, matrix; this._changeViewbox(function() { if (typeof center !== 'object') { outer = this.viewbox().outer; center = { x: outer.width / 2, y: outer.height / 2 }; } matrix = this._setZoom(newScale, center); }); return round(matrix.a, 1000); }; function setCTM(node, m) { var mstr = 'matrix(' + m.a + ',' + m.b + ',' + m.c + ',' + m.d + ',' + m.e + ',' + m.f + ')'; node.setAttribute('transform', mstr); } Canvas.prototype._fitViewport = function(center) { var vbox = this.viewbox(), outer = vbox.outer, inner = vbox.inner, newScale, newViewbox; // display the complete diagram without zooming in. // instead of relying on internal zoom, we perform a // hard reset on the canvas viewbox to realize this // // if diagram does not need to be zoomed in, we focus it around // the diagram origin instead if (inner.x >= 0 && inner.y >= 0 && inner.x + inner.width <= outer.width && inner.y + inner.height <= outer.height && !center) { newViewbox = { x: 0, y: 0, width: Math.max(inner.width + inner.x, outer.width), height: Math.max(inner.height + inner.y, outer.height) }; } else { newScale = Math.min(1, outer.width / inner.width, outer.height / inner.height); newViewbox = { x: inner.x + (center ? inner.width / 2 - outer.width / newScale / 2 : 0), y: inner.y + (center ? inner.height / 2 - outer.height / newScale / 2 : 0), width: outer.width / newScale, height: outer.height / newScale }; } this.viewbox(newViewbox); return this.viewbox(false).scale; }; Canvas.prototype._setZoom = function(scale, center) { var svg = this._svg, viewport = this._viewport; var matrix = svg.createSVGMatrix(); var point = svg.createSVGPoint(); var centerPoint, originalPoint, currentMatrix, scaleMatrix, newMatrix; currentMatrix = viewport.getCTM(); var currentScale = currentMatrix.a; if (center) { centerPoint = assign(point, center); // revert applied viewport transformations originalPoint = centerPoint.matrixTransform(currentMatrix.inverse()); // create scale matrix scaleMatrix = matrix .translate(originalPoint.x, originalPoint.y) .scale(1 / currentScale * scale) .translate(-originalPoint.x, -originalPoint.y); newMatrix = currentMatrix.multiply(scaleMatrix); } else { newMatrix = matrix.scale(scale); } setCTM(this._viewport, newMatrix); return newMatrix; }; /** * Returns the size of the canvas * * @return {Dimensions} */ Canvas.prototype.getSize = function() { return { width: this._container.clientWidth, height: this._container.clientHeight }; }; /** * Return the absolute bounding box for the given element * * The absolute bounding box may be used to display overlays in the * callers (browser) coordinate system rather than the zoomed in/out * canvas coordinates. * * @param {ElementDescriptor} element * @return {Bounds} the absolute bounding box */ Canvas.prototype.getAbsoluteBBox = function(element) { var vbox = this.viewbox(); var bbox; // connection // use svg bbox if (element.waypoints) { var gfx = this.getGraphics(element); bbox = gfx.getBBox(); } // shapes // use data else { bbox = element; } var x = bbox.x * vbox.scale - vbox.x * vbox.scale; var y = bbox.y * vbox.scale - vbox.y * vbox.scale; var width = bbox.width * vbox.scale; var height = bbox.height * vbox.scale; return { x: x, y: y, width: width, height: height }; }; /** * Fires an event in order other modules can react to the * canvas resizing */ Canvas.prototype.resized = function() { // force recomputation of view box delete this._cachedViewbox; this._eventBus.fire('canvas.resized'); }; },{"263":263,"266":266,"300":300,"303":303,"306":306,"313":313,"425":425,"431":431,"472":472,"474":474,"475":475,"478":478,"479":479,"482":482}],123:[function(_dereq_,module,exports){ 'use strict'; var Model = _dereq_(254); var assign = _dereq_(431); /** * A factory for diagram-js shapes */ function ElementFactory() { this._uid = 12; } module.exports = ElementFactory; ElementFactory.prototype.createRoot = function(attrs) { return this.create('root', attrs); }; ElementFactory.prototype.createLabel = function(attrs) { return this.create('label', attrs); }; ElementFactory.prototype.createShape = function(attrs) { return this.create('shape', attrs); }; ElementFactory.prototype.createConnection = function(attrs) { return this.create('connection', attrs); }; /** * Create a model element with the given type and * a number of pre-set attributes. * * @param {String} type * @param {Object} attrs * @return {djs.model.Base} the newly created model instance */ ElementFactory.prototype.create = function(type, attrs) { attrs = assign({}, attrs || {}); if (!attrs.id) { attrs.id = type + '_' + (this._uid++); } return Model.create(type, attrs); }; },{"254":254,"431":431}],124:[function(_dereq_,module,exports){ 'use strict'; var ELEMENT_ID = 'data-element-id'; var svgAttr = _dereq_(474); /** * @class * * A registry that keeps track of all shapes in the diagram. */ function ElementRegistry(eventBus) { this._elements = {}; this._eventBus = eventBus; } ElementRegistry.$inject = [ 'eventBus' ]; module.exports = ElementRegistry; /** * Register a pair of (element, gfx, (secondaryGfx)). * * @param {djs.model.Base} element * @param {SVGElement} gfx * @param {SVGElement} [secondaryGfx] optional other element to register, too */ ElementRegistry.prototype.add = function(element, gfx, secondaryGfx) { var id = element.id; this._validateId(id); // associate dom node with element svgAttr(gfx, ELEMENT_ID, id); if (secondaryGfx) { svgAttr(secondaryGfx, ELEMENT_ID, id); } this._elements[id] = { element: element, gfx: gfx, secondaryGfx: secondaryGfx }; }; /** * Removes an element from the registry. * * @param {djs.model.Base} element */ ElementRegistry.prototype.remove = function(element) { var elements = this._elements, id = element.id || element, container = id && elements[id]; if (container) { // unset element id on gfx svgAttr(container.gfx, ELEMENT_ID, ''); if (container.secondaryGfx) { svgAttr(container.secondaryGfx, ELEMENT_ID, ''); } delete elements[id]; } }; /** * Update the id of an element * * @param {djs.model.Base} element * @param {String} newId */ ElementRegistry.prototype.updateId = function(element, newId) { this._validateId(newId); if (typeof element === 'string') { element = this.get(element); } this._eventBus.fire('element.updateId', { element: element, newId: newId }); var gfx = this.getGraphics(element), secondaryGfx = this.getGraphics(element, true); this.remove(element); element.id = newId; this.add(element, gfx, secondaryGfx); }; /** * Return the model element for a given id or graphics. * * @example * * elementRegistry.get('SomeElementId_1'); * elementRegistry.get(gfx); * * * @param {String|SVGElement} filter for selecting the element * * @return {djs.model.Base} */ ElementRegistry.prototype.get = function(filter) { var id; if (typeof filter === 'string') { id = filter; } else { id = filter && svgAttr(filter, ELEMENT_ID); } var container = this._elements[id]; return container && container.element; }; /** * Return all elements that match a given filter function. * * @param {Function} fn * * @return {Array} */ ElementRegistry.prototype.filter = function(fn) { var filtered = []; this.forEach(function(element, gfx) { if (fn(element, gfx)) { filtered.push(element); } }); return filtered; }; /** * Return all rendered model elements. * * @return {Array} */ ElementRegistry.prototype.getAll = function() { return this.filter(function(e) { return e; }); }; /** * Iterate over all diagram elements. * * @param {Function} fn */ ElementRegistry.prototype.forEach = function(fn) { var map = this._elements; Object.keys(map).forEach(function(id) { var container = map[id], element = container.element, gfx = container.gfx; return fn(element, gfx); }); }; /** * Return the graphical representation of an element or its id. * * @example * elementRegistry.getGraphics('SomeElementId_1'); * elementRegistry.getGraphics(rootElement); // * * elementRegistry.getGraphics(rootElement, true); // * * * @param {String|djs.model.Base} filter * @param {Boolean} [secondary=false] whether to return the secondary connected element * * @return {SVGElement} */ ElementRegistry.prototype.getGraphics = function(filter, secondary) { var id = filter.id || filter; var container = this._elements[id]; return container && (secondary ? container.secondaryGfx : container.gfx); }; /** * Validate the suitability of the given id and signals a problem * with an exception. * * @param {String} id * * @throws {Error} if id is empty or already assigned */ ElementRegistry.prototype._validateId = function(id) { if (!id) { throw new Error('element must have an id'); } if (this._elements[id]) { throw new Error('element with id ' + id + ' already added'); } }; },{"474":474}],125:[function(_dereq_,module,exports){ 'use strict'; var isFunction = _dereq_(423), isArray = _dereq_(422), isNumber = _dereq_(425), bind = _dereq_(312), assign = _dereq_(431); var FN_REF = '__fn'; var DEFAULT_PRIORITY = 1000; var slice = Array.prototype.slice; /** * A general purpose event bus. * * This component is used to communicate across a diagram instance. * Other parts of a diagram can use it to listen to and broadcast events. * * * ## Registering for Events * * The event bus provides the {@link EventBus#on} and {@link EventBus#once} * methods to register for events. {@link EventBus#off} can be used to * remove event registrations. Listeners receive an instance of {@link Event} * as the first argument. It allows them to hook into the event execution. * * ```javascript * * // listen for event * eventBus.on('foo', function(event) { * * // access event type * event.type; // 'foo' * * // stop propagation to other listeners * event.stopPropagation(); * * // prevent event default * event.preventDefault(); * }); * * // listen for event with custom payload * eventBus.on('bar', function(event, payload) { * console.log(payload); * }); * * // listen for event returning value * eventBus.on('foobar', function(event) { * * // stop event propagation + prevent default * return false; * * // stop event propagation + return custom result * return { * complex: 'listening result' * }; * }); * * * // listen with custom priority (default=1000, higher is better) * eventBus.on('priorityfoo', 1500, function(event) { * console.log('invoked first!'); * }); * * * // listen for event and pass the context (`this`) * eventBus.on('foobar', function(event) { * this.foo(); * }, this); * ``` * * * ## Emitting Events * * Events can be emitted via the event bus using {@link EventBus#fire}. * * ```javascript * * // false indicates that the default action * // was prevented by listeners * if (eventBus.fire('foo') === false) { * console.log('default has been prevented!'); * }; * * * // custom args + return value listener * eventBus.on('sum', function(event, a, b) { * return a + b; * }); * * // you can pass custom arguments + retrieve result values. * var sum = eventBus.fire('sum', 1, 2); * console.log(sum); // 3 * ``` */ function EventBus() { this._listeners = {}; // cleanup on destroy on lowest priority to allow // message passing until the bitter end this.on('diagram.destroy', 1, this._destroy, this); } module.exports = EventBus; /** * Register an event listener for events with the given name. * * The callback will be invoked with `event, ...additionalArguments` * that have been passed to {@link EventBus#fire}. * * Returning false from a listener will prevent the events default action * (if any is specified). To stop an event from being processed further in * other listeners execute {@link Event#stopPropagation}. * * Returning anything but `undefined` from a listener will stop the listener propagation. * * @param {String|Array} events * @param {Number} [priority=1000] the priority in which this listener is called, larger is higher * @param {Function} callback * @param {Object} [that] Pass context (`this`) to the callback */ EventBus.prototype.on = function(events, priority, callback, that) { events = isArray(events) ? events : [ events ]; if (isFunction(priority)) { that = callback; callback = priority; priority = DEFAULT_PRIORITY; } if (!isNumber(priority)) { throw new Error('priority must be a number'); } var actualCallback = callback; if (that) { actualCallback = bind(callback, that); // make sure we remember and are able to remove // bound callbacks via {@link #off} using the original // callback actualCallback[FN_REF] = callback[FN_REF] || callback; } var self = this, listener = { priority: priority, callback: actualCallback }; events.forEach(function(e) { self._addListener(e, listener); }); }; /** * Register an event listener that is executed only once. * * @param {String} event the event name to register for * @param {Function} callback the callback to execute * @param {Object} [that] Pass context (`this`) to the callback */ EventBus.prototype.once = function(event, priority, callback, that) { var self = this; if (isFunction(priority)) { that = callback; callback = priority; priority = DEFAULT_PRIORITY; } if (!isNumber(priority)) { throw new Error('priority must be a number'); } function wrappedCallback() { self.off(event, wrappedCallback); return callback.apply(that, arguments); } // make sure we remember and are able to remove // bound callbacks via {@link #off} using the original // callback wrappedCallback[FN_REF] = callback; this.on(event, priority, wrappedCallback); }; /** * Removes event listeners by event and callback. * * If no callback is given, all listeners for a given event name are being removed. * * @param {String} event * @param {Function} [callback] */ EventBus.prototype.off = function(event, callback) { var listeners = this._getListeners(event), listener, listenerCallback, idx; if (callback) { // move through listeners from back to front // and remove matching listeners for (idx = listeners.length - 1; (listener = listeners[idx]); idx--) { listenerCallback = listener.callback; if (listenerCallback === callback || listenerCallback[FN_REF] === callback) { listeners.splice(idx, 1); } } } else { // clear listeners listeners.length = 0; } }; /** * Fires a named event. * * @example * * // fire event by name * events.fire('foo'); * * // fire event object with nested type * var event = { type: 'foo' }; * events.fire(event); * * // fire event with explicit type * var event = { x: 10, y: 20 }; * events.fire('element.moved', event); * * // pass additional arguments to the event * events.on('foo', function(event, bar) { * alert(bar); * }); * * events.fire({ type: 'foo' }, 'I am bar!'); * * @param {String} [name] the optional event name * @param {Object} [event] the event object * @param {...Object} additional arguments to be passed to the callback functions * * @return {Boolean} the events return value, if specified or false if the * default action was prevented by listeners */ EventBus.prototype.fire = function(type, data) { var event, listeners, returnValue, args; args = slice.call(arguments); if (typeof type === 'object') { event = type; type = event.type; } if (!type) { throw new Error('no event type specified'); } listeners = this._listeners[type]; if (!listeners) { return; } // we make sure we fire instances of our home made // events here. We wrap them only once, though if (data instanceof Event) { // we are fine, we alread have an event event = data; } else { event = new Event(); event.init(data); } // ensure we pass the event as the first parameter args[0] = event; // original event type (in case we delegate) var originalType = event.type; // update event type before delegation if (type !== originalType) { event.type = type; } try { returnValue = this._invokeListeners(event, args, listeners); } finally { // reset event type after delegation if (type !== originalType) { event.type = originalType; } } // set the return value to false if the event default // got prevented and no other return value exists if (returnValue === undefined && event.defaultPrevented) { returnValue = false; } return returnValue; }; EventBus.prototype.handleError = function(error) { return this.fire('error', { error: error }) === false; }; EventBus.prototype._destroy = function() { this._listeners = {}; }; EventBus.prototype._invokeListeners = function(event, args, listeners) { var idx, listener, returnValue; for (idx = 0; (listener = listeners[idx]); idx++) { // handle stopped propagation if (event.cancelBubble) { break; } returnValue = this._invokeListener(event, args, listener); } return returnValue; }; EventBus.prototype._invokeListener = function(event, args, listener) { var returnValue; try { // returning false prevents the default action returnValue = invokeFunction(listener.callback, args); // stop propagation on return value if (returnValue !== undefined) { event.returnValue = returnValue; event.stopPropagation(); } // prevent default on return false if (returnValue === false) { event.preventDefault(); } } catch (e) { if (!this.handleError(e)) { console.error('unhandled error in event listener'); console.error(e.stack); throw e; } } return returnValue; }; /* * Add new listener with a certain priority to the list * of listeners (for the given event). * * The semantics of listener registration / listener execution are * first register, first serve: New listeners will always be inserted * after existing listeners with the same priority. * * Example: Inserting two listeners with priority 1000 and 1300 * * * before: [ 1500, 1500, 1000, 1000 ] * * after: [ 1500, 1500, (new=1300), 1000, 1000, (new=1000) ] * * @param {String} event * @param {Object} listener { priority, callback } */ EventBus.prototype._addListener = function(event, newListener) { var listeners = this._getListeners(event), existingListener, idx; // ensure we order listeners by priority from // 0 (high) to n > 0 (low) for (idx = 0; (existingListener = listeners[idx]); idx++) { if (existingListener.priority < newListener.priority) { // prepend newListener at before existingListener listeners.splice(idx, 0, newListener); return; } } listeners.push(newListener); }; EventBus.prototype._getListeners = function(name) { var listeners = this._listeners[name]; if (!listeners) { this._listeners[name] = listeners = []; } return listeners; }; /** * A event that is emitted via the event bus. */ function Event() { } module.exports.Event = Event; Event.prototype.stopPropagation = function() { this.cancelBubble = true; }; Event.prototype.preventDefault = function() { this.defaultPrevented = true; }; Event.prototype.init = function(data) { assign(this, data || {}); }; /** * Invoke function. Be fast... * * @param {Function} fn * @param {Array} args * * @return {Any} */ function invokeFunction(fn, args) { return fn.apply(null, args); } },{"312":312,"422":422,"423":423,"425":425,"431":431}],126:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), reduce = _dereq_(306); var GraphicsUtil = _dereq_(269); var translate = _dereq_(279).translate; var domClear = _dereq_(446); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478), svgRemove = _dereq_(481); /** * A factory that creates graphical elements * * @param {EventBus} eventBus * @param {ElementRegistry} elementRegistry */ function GraphicsFactory(eventBus, elementRegistry) { this._eventBus = eventBus; this._elementRegistry = elementRegistry; } GraphicsFactory.$inject = [ 'eventBus' , 'elementRegistry' ]; module.exports = GraphicsFactory; GraphicsFactory.prototype._getChildren = function(element) { var gfx = this._elementRegistry.getGraphics(element); var childrenGfx; // root element if (!element.parent) { childrenGfx = gfx; } else { childrenGfx = GraphicsUtil.getChildren(gfx); if (!childrenGfx) { childrenGfx = svgCreate('g'); svgClasses(childrenGfx).add('djs-children'); svgAppend(gfx.parentNode, childrenGfx); } } return childrenGfx; }; /** * Clears the graphical representation of the element and returns the * cleared visual (the element). */ GraphicsFactory.prototype._clear = function(gfx) { var visual = GraphicsUtil.getVisual(gfx); domClear(visual); return visual; }; /** * Creates a gfx container for shapes and connections * * The layout is as follows: * * * * * * * * * * * * * * @param {Object} parent * @param {String} type the type of the element, i.e. shape | connection */ GraphicsFactory.prototype._createContainer = function(type, parentGfx) { var outerGfx = svgCreate('g'); svgClasses(outerGfx).add('djs-group'); svgAppend(parentGfx, outerGfx); var gfx = svgCreate('g'); svgClasses(gfx).add('djs-element'); svgClasses(gfx).add('djs-' + type); svgAppend(outerGfx, gfx); // create visual var visual = svgCreate('g'); svgClasses(visual).add('djs-visual'); svgAppend(gfx, visual); return gfx; }; GraphicsFactory.prototype.create = function(type, element) { var childrenGfx = this._getChildren(element.parent); return this._createContainer(type, childrenGfx); }; GraphicsFactory.prototype.updateContainments = function(elements) { var self = this, elementRegistry = this._elementRegistry, parents; parents = reduce(elements, function(map, e) { if (e.parent) { map[e.parent.id] = e.parent; } return map; }, {}); // update all parents of changed and reorganized their children // in the correct order (as indicated in our model) forEach(parents, function(parent) { var childGfx = self._getChildren(parent), children = parent.children; if (!children) { return; } forEach(children.slice().reverse(), function(c) { var gfx = elementRegistry.getGraphics(c); prependTo(gfx.parentNode, childGfx); }); }); }; GraphicsFactory.prototype.drawShape = function(visual, element) { var eventBus = this._eventBus; return eventBus.fire('render.shape', { gfx: visual, element: element }); }; GraphicsFactory.prototype.getShapePath = function(element) { var eventBus = this._eventBus; return eventBus.fire('render.getShapePath', element); }; GraphicsFactory.prototype.drawConnection = function(visual, element) { var eventBus = this._eventBus; return eventBus.fire('render.connection', { gfx: visual, element: element }); }; GraphicsFactory.prototype.getConnectionPath = function(waypoints) { var eventBus = this._eventBus; return eventBus.fire('render.getConnectionPath', waypoints); }; GraphicsFactory.prototype.update = function(type, element, gfx) { // Do not update root element if (!element.parent) { return; } var visual = this._clear(gfx); // redraw if (type === 'shape') { this.drawShape(visual, element); // update positioning translate(gfx, element.x, element.y); } else if (type === 'connection') { this.drawConnection(visual, element); } else { throw new Error('unknown type: ' + type); } if (element.hidden) { svgAttr(gfx, 'display', 'none'); } else { svgAttr(gfx, 'display', 'block'); } }; GraphicsFactory.prototype.remove = function(element) { var gfx = this._elementRegistry.getGraphics(element); // remove svgRemove(gfx.parentNode); }; ////////// helpers /////////// function prependTo(newNode, parentNode) { parentNode.insertBefore(newNode, parentNode.firstChild); } },{"269":269,"279":279,"303":303,"306":306,"446":446,"472":472,"474":474,"475":475,"478":478,"481":481}],127:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(131) ], __init__: [ 'canvas' ], canvas: [ 'type', _dereq_(122) ], elementRegistry: [ 'type', _dereq_(124) ], elementFactory: [ 'type', _dereq_(123) ], eventBus: [ 'type', _dereq_(125) ], graphicsFactory: [ 'type', _dereq_(126) ] }; },{"122":122,"123":123,"124":124,"125":125,"126":126,"131":131}],128:[function(_dereq_,module,exports){ 'use strict'; var DEFAULT_RENDER_PRIORITY = 1000; /** * The base implementation of shape and connection renderers. * * @param {EventBus} eventBus * @param {Number} [renderPriority=1000] */ function BaseRenderer(eventBus, renderPriority) { var self = this; renderPriority = renderPriority || DEFAULT_RENDER_PRIORITY; eventBus.on([ 'render.shape', 'render.connection' ], renderPriority, function(evt, context) { var type = evt.type, element = context.element, visuals = context.gfx; if (self.canRender(element)) { if (type === 'render.shape') { return self.drawShape(visuals, element); } else { return self.drawConnection(visuals, element); } } }); eventBus.on([ 'render.getShapePath', 'render.getConnectionPath'], renderPriority, function(evt, element) { if (self.canRender(element)) { if (evt.type === 'render.getShapePath') { return self.getShapePath(element); } else { return self.getConnectionPath(element); } } }); } /** * Should check whether *this* renderer can render * the element/connection. * * @param {element} element * * @returns {Boolean} */ BaseRenderer.prototype.canRender = function() {}; /** * Provides the shape's snap svg element to be drawn on the `canvas`. * * @param {djs.Graphics} visuals * @param {Shape} shape * * @returns {Snap.svg} [returns a Snap.svg paper element ] */ BaseRenderer.prototype.drawShape = function() {}; /** * Provides the shape's snap svg element to be drawn on the `canvas`. * * @param {djs.Graphics} visuals * @param {Connection} connection * * @returns {Snap.svg} [returns a Snap.svg paper element ] */ BaseRenderer.prototype.drawConnection = function() {}; /** * Gets the SVG path of a shape that represents it's visual bounds. * * @param {Shape} shape * * @return {string} svg path */ BaseRenderer.prototype.getShapePath = function() {}; /** * Gets the SVG path of a connection that represents it's visual bounds. * * @param {Connection} connection * * @return {string} svg path */ BaseRenderer.prototype.getConnectionPath = function() {}; module.exports = BaseRenderer; },{}],129:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var BaseRenderer = _dereq_(128); var renderUtil = _dereq_(278); var componentsToPath = renderUtil.componentsToPath, createLine = renderUtil.createLine; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478); // apply default renderer with lowest possible priority // so that it only kicks in if noone else could render var DEFAULT_RENDER_PRIORITY = 1; /** * The default renderer used for shapes and connections. * * @param {EventBus} eventBus * @param {Styles} styles */ function DefaultRenderer(eventBus, styles) { // BaseRenderer.call(this, eventBus, DEFAULT_RENDER_PRIORITY); this.CONNECTION_STYLE = styles.style([ 'no-fill' ], { strokeWidth: 5, stroke: 'fuchsia' }); this.SHAPE_STYLE = styles.style({ fill: 'white', stroke: 'fuchsia', strokeWidth: 2 }); } inherits(DefaultRenderer, BaseRenderer); DefaultRenderer.prototype.canRender = function() { return true; }; DefaultRenderer.prototype.drawShape = function drawShape(visuals, element) { var rect = svgCreate('rect'); svgAttr(rect, { x: 0, y: 0, width: element.width || 0, height: element.height || 0 }); svgAttr(rect, this.SHAPE_STYLE); svgAppend(visuals, rect); return rect; }; DefaultRenderer.prototype.drawConnection = function drawConnection(visuals, connection) { var line = createLine(connection.waypoints, this.CONNECTION_STYLE); svgAppend(visuals, line); return line; }; DefaultRenderer.prototype.getShapePath = function getShapePath(shape) { var x = shape.x, y = shape.y, width = shape.width, height = shape.height; var shapePath = [ ['M', x, y], ['l', width, 0], ['l', 0, height], ['l', -width, 0], ['z'] ]; return componentsToPath(shapePath); }; DefaultRenderer.prototype.getConnectionPath = function getConnectionPath(connection) { var waypoints = connection.waypoints; var idx, point, connectionPath = []; for (idx = 0; (point = waypoints[idx]); idx++) { // take invisible docking into account // when creating the path point = point.original || point; connectionPath.push([ idx === 0 ? 'M' : 'L', point.x, point.y ]); } return componentsToPath(connectionPath); }; DefaultRenderer.$inject = [ 'eventBus', 'styles' ]; module.exports = DefaultRenderer; },{"128":128,"278":278,"289":289,"472":472,"474":474,"478":478}],130:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), assign = _dereq_(431), reduce = _dereq_(306); /** * A component that manages shape styles */ function Styles() { var defaultTraits = { 'no-fill': { fill: 'none' }, 'no-border': { strokeOpacity: 0.0 }, 'no-events': { pointerEvents: 'none' } }; var self = this; /** * Builds a style definition from a className, a list of traits and an object of additional attributes. * * @param {String} className * @param {Array} traits * @param {Object} additionalAttrs * * @return {Object} the style defintion */ this.cls = function(className, traits, additionalAttrs) { var attrs = this.style(traits, additionalAttrs); return assign(attrs, { 'class': className }); }; /** * Builds a style definition from a list of traits and an object of additional attributes. * * @param {Array} traits * @param {Object} additionalAttrs * * @return {Object} the style defintion */ this.style = function(traits, additionalAttrs) { if (!isArray(traits) && !additionalAttrs) { additionalAttrs = traits; traits = []; } var attrs = reduce(traits, function(attrs, t) { return assign(attrs, defaultTraits[t] || {}); }, {}); return additionalAttrs ? assign(attrs, additionalAttrs) : attrs; }; this.computeStyle = function(custom, traits, defaultStyles) { if (!isArray(traits)) { defaultStyles = traits; traits = []; } return self.style(traits || [], assign({}, defaultStyles, custom || {})); }; } module.exports = Styles; },{"306":306,"422":422,"431":431}],131:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'defaultRenderer' ], defaultRenderer: [ 'type', _dereq_(129) ], styles: [ 'type', _dereq_(130) ] }; },{"129":129,"130":130}],132:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301), forEach = _dereq_(303), sortBy = _dereq_(310); function last(arr) { return arr && arr[arr.length - 1]; } function sortTopOrMiddle(element) { return element.y; } function sortLeftOrCenter(element) { return element.x; } /** * Sorting functions for different types of alignment * * @type {Object} * * @return {Function} */ var ALIGNMENT_SORTING = { left: sortLeftOrCenter, center: sortLeftOrCenter, right: function(element) { return element.x + element.width; }, top: sortTopOrMiddle, middle: sortTopOrMiddle, bottom: function(element) { return element.y + element.height; } }; function AlignElements(modeling) { this._modeling = modeling; } module.exports = AlignElements; AlignElements.$inject = [ 'modeling' ]; /** * Get the relevant "axis" and "dimension" related to the current type of alignment * * @param {String} type left|right|center|top|bottom|middle * * @return {Object} { axis, dimension } */ AlignElements.prototype._getOrientationDetails = function(type) { var vertical = [ 'top', 'bottom', 'middle' ], axis = 'x', dimension = 'width'; if (vertical.indexOf(type) !== -1) { axis = 'y'; dimension = 'height'; } return { axis: axis, dimension: dimension }; }; AlignElements.prototype._isType = function(type, types) { return types.indexOf(type) !== -1; }; /** * Get a point on the relevant axis where elements should align to * * @param {String} type left|right|center|top|bottom|middle * @param {Array} sortedElements * * @return {Object} */ AlignElements.prototype._alignmentPosition = function(type, sortedElements) { var orientation = this._getOrientationDetails(type), axis = orientation.axis, dimension = orientation.dimension, alignment = {}, centers = {}, hasSharedCenters = false, centeredElements, firstElement, lastElement; function getMiddleOrTop(first, last) { return Math.round((first[axis] + last[axis] + last[dimension]) / 2); } if (this._isType(type, [ 'left', 'top' ])) { alignment[type] = sortedElements[0][axis]; } else if (this._isType(type, [ 'right', 'bottom' ])) { lastElement = last(sortedElements); alignment[type] = lastElement[axis] + lastElement[dimension]; } else if (this._isType(type, [ 'center', 'middle' ])) { // check if there is a center shared by more than one shape // if not, just take the middle of the range forEach(sortedElements, function(element) { var center = element[axis] + Math.round(element[dimension] / 2); if (centers[center]) { centers[center].elements.push(element); } else { centers[center] = { elements: [ element ], center: center }; } }); centeredElements = sortBy(centers, function(center) { if (center.elements.length > 1) { hasSharedCenters = true; } return center.elements.length; }); if (hasSharedCenters) { alignment[type] = last(centeredElements).center; return alignment; } firstElement = sortedElements[0]; sortedElements = sortBy(sortedElements, function(element) { return element[axis] + element[dimension]; }); lastElement = last(sortedElements); alignment[type] = getMiddleOrTop(firstElement, lastElement); } return alignment; }; /** * Executes the alignment of a selection of elements * * @param {Array} elements [description] * @param {String} type left|right|center|top|bottom|middle */ AlignElements.prototype.trigger = function(elements, type) { var modeling = this._modeling; var filteredElements = filter(elements, function(element) { return !(element.waypoints || element.host || element.labelTarget); }); var sortFn = ALIGNMENT_SORTING[type]; var sortedElements = sortBy(filteredElements, sortFn); var alignment = this._alignmentPosition(type, sortedElements); modeling.alignElements(sortedElements, alignment); }; },{"301":301,"303":303,"310":310}],133:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'alignElements' ], alignElements: [ 'type', _dereq_(132) ] }; },{"132":132}],134:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), flatten = _dereq_(291), union = _dereq_(294), filter = _dereq_(301), groupBy = _dereq_(304), map = _dereq_(305); var saveClear = _dereq_(277).saveClear, Collections = _dereq_(263); var getNewAttachShapeDelta = _dereq_(261).getNewAttachShapeDelta; var inherits = _dereq_(289); var HIGH_PRIORITY = 1500; var CommandInterceptor = _dereq_(119); function AttachSupport(eventBus, modeling, movePreview, rules) { CommandInterceptor.call(this, eventBus); // remove all the attached elements from the shapes to be validated // add all the attached shapes to the overall list of moved shapes eventBus.on('shape.move.start', HIGH_PRIORITY, function(e) { var context = e.context, shapes = context.shapes, validatedShapes = context.validatedShapes; context.shapes = addAttached(shapes); context.validatedShapes = removeAttached(validatedShapes); }); // move all attachments after the other shapes are done moving this.postExecuted([ 'elements.move' ], function(event) { var context = event.context, delta = context.delta, newParent = context.newParent, closure = context.closure, enclosedElements = closure.enclosedElements, attachers = getAttachers(enclosedElements); // ensure we move all attachers with their hosts // if they have not been moved already forEach(attachers, function(attacher) { if (!enclosedElements[attacher.id]) { modeling.moveShape(attacher, delta, newParent); if (attacher.label) { modeling.moveShape(attacher.label, delta, newParent); } } }); }); // perform the attaching after shapes are done moving this.postExecuted([ 'elements.move' ], function(e) { var context = e.context, shapes = context.shapes, newHost = context.newHost, attachers; // we only support attachment / detachment of one element if (shapes.length > 1) { return; } if (newHost) { attachers = shapes; } else { attachers = filter(shapes, function(s) { return !!s.host; }); } forEach(attachers, function(attacher) { modeling.updateAttachment(attacher, newHost); }); }); // ensure invalid attachment connections are removed this.postExecuted([ 'elements.move' ], function(e) { var shapes = e.context.shapes; forEach(shapes, function(shape) { forEach(shape.attachers, function(attacher) { // remove invalid outgoing connections forEach(attacher.outgoing.slice(), function(connection) { var allowed = rules.allowed('connection.reconnectStart', { connection: connection, source: connection.source, target: connection.target }); if (!allowed) { modeling.removeConnection(connection); } }); // remove invalid incoming connections forEach(attacher.incoming.slice(), function(connection) { var allowed = rules.allowed('connection.reconnectEnd', { connection: connection, source: connection.source, target: connection.target }); if (!allowed) { modeling.removeConnection(connection); } }); }); }); }); this.postExecute([ 'shape.create' ], function(e) { var context = e.context, shape = context.shape, host = context.host; if (host) { modeling.updateAttachment(shape, host); } }); // update attachments if the host is replaced this.postExecute([ 'shape.replace' ], function(e) { var context = e.context, oldShape = context.oldShape, newShape = context.newShape; // move the attachers to the new host saveClear(oldShape.attachers, function(attacher) { var allowed = rules.allowed('elements.move', { target: newShape, shapes: [attacher] }); if (allowed === 'attach') { modeling.updateAttachment(attacher, newShape); } else { modeling.removeShape(attacher); } }); // move attachers if new host has different size if (newShape.attachers.length) { forEach(newShape.attachers, function(attacher) { var delta = getNewAttachShapeDelta(attacher, oldShape, newShape); modeling.moveShape(attacher, delta, attacher.parent); }); } }); // move shape on host resize this.postExecute([ 'shape.resize' ], function(event) { var context = event.context, shape = context.shape, oldBounds = context.oldBounds, newBounds = context.newBounds, attachers = shape.attachers; if (!attachers.length) { return; } forEach(attachers, function(attacher) { var delta = getNewAttachShapeDelta(attacher, oldBounds, newBounds); modeling.moveShape(attacher, delta, attacher.parent); if (attacher.label) { modeling.moveShape(attacher.label, delta, attacher.label.parent); } }); }); // remove attachments this.preExecute([ 'shape.delete' ], function(event) { var shape = event.context.shape; saveClear(shape.attachers, function(attacher) { modeling.removeShape(attacher); }); if (shape.host) { modeling.updateAttachment(shape, null); } }); // Prevent attachers and their labels from moving, when the space tool is performed. // Otherwise the attachers and their labels would be moved twice. eventBus.on('spaceTool.move', function(event) { var movingShapes = event.context.movingShapes; // Collect all attachers which would be moved using the space tool var movingAttachers = filter(movingShapes, function(shape) { return shape.host && shape.host.id; }); forEach(movingAttachers, function(shape) { // Remove all attachers and their labels from the movingShapes, because they // already will be moved along with the host. Collections.remove(movingShapes, shape); if (shape.label) { Collections.remove(movingShapes, shape.label); } }); }); } inherits(AttachSupport, CommandInterceptor); AttachSupport.$inject = [ 'eventBus', 'modeling', 'movePreview', 'rules' ]; module.exports = AttachSupport; /** * Return attachers of the given shapes * * @param {Array} shapes * @return {Array} */ function getAttachers(shapes) { return flatten(map(shapes, function(s) { return s.attachers || []; })); } /** * Return a combined list of elements and * attachers. * * @param {Array} elements * @return {Array} filtered */ function addAttached(elements) { var attachers = getAttachers(elements); return union(elements, attachers); } /** * Return a filtered list of elements that do not * contain attached elements with hosts being part * of the selection. * * @param {Array} elements * * @return {Array} filtered */ function removeAttached(elements) { var ids = groupBy(elements, 'id'); return filter(elements, function(element) { while (element) { // host in selection if (element.host && ids[element.host.id]) { return false; } element = element.parent; } return true; }); } },{"119":119,"261":261,"263":263,"277":277,"289":289,"291":291,"294":294,"301":301,"303":303,"304":304,"305":305}],135:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(206), _dereq_(174) ], __init__: [ 'attachSupport'], attachSupport: [ 'type', _dereq_(134) ] }; },{"134":134,"174":174,"206":206}],136:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var getBoundingBox = _dereq_(266).getBBox; var asTRBL = _dereq_(252).asTRBL, asBounds = _dereq_(252).asBounds; var assign = _dereq_(431), forEach = _dereq_(303), values = _dereq_(440), flatten = _dereq_(291), groupBy = _dereq_(304); var CommandInterceptor = _dereq_(119); /** * An auto resize component that takes care of expanding a parent element * if child elements are created or moved close the parents edge. * * @param {EventBus} eventBus * @param {ElementRegistry} elementRegistry * @param {Modeling} modeling * @param {Rules} rules */ function AutoResize(eventBus, elementRegistry, modeling, rules) { CommandInterceptor.call(this, eventBus); this._elementRegistry = elementRegistry; this._modeling = modeling; this._rules = rules; var self = this; this.postExecuted([ 'shape.create' ], function(event) { var context = event.context, hints = context.hints, shape = context.shape, parent = context.parent || context.newParent; if (hints && hints.root === false) { return; } self._expand([ shape ], parent); }); this.postExecuted([ 'elements.move' ], function(event) { var context = event.context, elements = flatten(values(context.closure.topLevel)), hints = context.hints; if (hints && hints.autoResize === false) { return; } var expandings = groupBy(elements, function(element) { return element.parent.id; }); forEach(expandings, function(elements, parentId) { self._expand(elements, parentId); }); }); } AutoResize.$inject = [ 'eventBus', 'elementRegistry', 'modeling', 'rules' ]; inherits(AutoResize, CommandInterceptor); module.exports = AutoResize; /** * Calculate the new bounds of the target shape, given * a number of elements have been moved or added into the parent. * * This method considers the current size, the added elements as well as * the provided padding for the new bounds. * * @param {Array} elements * @param {djs.model.Shape} target */ AutoResize.prototype._getOptimalBounds = function(elements, target) { var offset = this.getOffset(target), padding = this.getPadding(target); var elementsTrbl = asTRBL(getBoundingBox(elements)), targetTrbl = asTRBL(target); var newTrbl = {}; if (elementsTrbl.top - targetTrbl.top < padding.top) { newTrbl.top = elementsTrbl.top - offset.top; } if (elementsTrbl.left - targetTrbl.left < padding.left) { newTrbl.left = elementsTrbl.left - offset.left; } if (targetTrbl.right - elementsTrbl.right < padding.right) { newTrbl.right = elementsTrbl.right + offset.right; } if (targetTrbl.bottom - elementsTrbl.bottom < padding.bottom) { newTrbl.bottom = elementsTrbl.bottom + offset.bottom; } return asBounds(assign({}, targetTrbl, newTrbl)); }; /** * Expand the target shape respecting rules, offset and padding * * @param {Array} elements * @param {djs.model.Shape|String} target|targetId */ AutoResize.prototype._expand = function(elements, target) { if (typeof target === 'string') { target = this._elementRegistry.get(target); } var allowed = this._rules.allowed('element.autoResize', { elements: elements, target: target }); if (!allowed) { return; } // calculate the new bounds var newBounds = this._getOptimalBounds(elements, target); if (!boundsChanged(newBounds, target)) { return; } // resize the parent shape this.resize(target, newBounds); var parent = target.parent; // recursively expand parent elements if (parent) { this._expand([ target ], parent); } }; /** * Get the amount to expand the given shape in each direction. * * @param {djs.model.Shape} shape * * @return {Object} {top, bottom, left, right} */ AutoResize.prototype.getOffset = function(shape) { return { top: 60, bottom: 60, left: 100, right: 100 }; }; /** * Get the activation threshold for each side for which * resize triggers. * * @param {djs.model.Shape} shape * * @return {Object} {top, bottom, left, right} */ AutoResize.prototype.getPadding = function(shape) { return { top: 2, bottom: 2, left: 15, right: 15 }; }; /** * Perform the actual resize operation. * * @param {djs.model.Shape} target * @param {Object} newBounds */ AutoResize.prototype.resize = function(target, newBounds) { this._modeling.resizeShape(target, newBounds); }; function boundsChanged(newBounds, oldBounds) { return ( newBounds.x !== oldBounds.x || newBounds.y !== oldBounds.y || newBounds.width !== oldBounds.width || newBounds.height !== oldBounds.height ); } },{"119":119,"252":252,"266":266,"289":289,"291":291,"303":303,"304":304,"431":431,"440":440}],137:[function(_dereq_,module,exports){ var RuleProvider = _dereq_(225); var inherits = _dereq_(289); /** * This is a base rule provider for the element.autoResize rule. */ function AutoResizeProvider(eventBus) { RuleProvider.call(this, eventBus); var self = this; this.addRule('element.autoResize', function(context) { return self.canResize(context.elements, context.target); }); } AutoResizeProvider.$inject = [ 'eventBus' ]; inherits(AutoResizeProvider, RuleProvider); module.exports = AutoResizeProvider; /** * Needs to be implemented by sub classes to allow actual auto resize * * @param {Array} elements * @param {djs.model.Shape} target * * @return {Boolean} */ AutoResizeProvider.prototype.canResize = function(elements, target) { return false; }; },{"225":225,"289":289}],138:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var EventUtil = _dereq_(267); /** * Initiates canvas scrolling if current cursor point is close to a border. * Cancelled when current point moves back inside the scrolling borders * or cancelled manually. * * Default options : * scrollThresholdIn: [ 20, 20, 20, 20 ], * scrollThresholdOut: [ 0, 0, 0, 0 ], * scrollRepeatTimeout: 15, * scrollStep: 10 * * Threshold order: * [ left, top, right, bottom ] */ function AutoScroll(config, eventBus, canvas, mouseTracking) { this._canvas = canvas; this._mouseTracking = mouseTracking; this._opts = assign({ scrollThresholdIn: [ 20, 20, 20, 20 ], scrollThresholdOut: [ 0, 0, 0, 0 ], scrollRepeatTimeout: 15, scrollStep: 10 }, config); var self = this; eventBus.on('drag.move', function(e) { var point = self._toBorderPoint(e); self.startScroll(point); }); eventBus.on([ 'drag.cleanup' ], function() { self.stopScroll(); }); } AutoScroll.$inject = [ 'config.autoScroll', 'eventBus', 'canvas', 'mouseTracking']; module.exports = AutoScroll; /** * Starts scrolling loop. * Point is given in global scale in canvas container box plane. * * @param {Object} point { x: X, y: Y } */ AutoScroll.prototype.startScroll = function(point) { var canvas = this._canvas; var opts = this._opts; var self = this; var clientRect = canvas.getContainer().getBoundingClientRect(); var diff = [ point.x, point.y, clientRect.width - point.x, clientRect.height - point.y ]; this.stopScroll(); var dx = 0, dy = 0; for (var i = 0; i < 4; i++) { if (between(diff[i], opts.scrollThresholdOut[i], opts.scrollThresholdIn[i])) { if (i === 0) { dx = opts.scrollStep; } else if (i == 1) { dy = opts.scrollStep; } else if (i == 2) { dx = -opts.scrollStep; } else if (i == 3) { dy = -opts.scrollStep; } } } if (dx !== 0 || dy !== 0) { canvas.scroll({ dx: dx, dy: dy }); this._scrolling = setTimeout(function() { self.startScroll(point); }, opts.scrollRepeatTimeout); } }; function between(val, start, end) { if (start < val && val < end) { return true; } return false; } /** * Stops scrolling loop. */ AutoScroll.prototype.stopScroll = function() { clearTimeout(this._scrolling); }; /** * Overrides defaults options. * * @param {Object} options */ AutoScroll.prototype.setOptions = function(options) { this._opts = assign({}, this._opts, options); }; /** * Converts event to a point in canvas container plane in global scale. * * @param {Event} event * @return {Point} */ AutoScroll.prototype._toBorderPoint = function(event) { var clientRect = this._canvas._container.getBoundingClientRect(); var globalPosition = EventUtil.toPoint(event.originalEvent); return { x: globalPosition.x - clientRect.left, y: globalPosition.y - clientRect.top }; }; },{"267":267,"431":431}],139:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(162), _dereq_(203) ], __init__: [ 'autoScroll' ], autoScroll: [ 'type', _dereq_(138) ] }; },{"138":138,"162":162,"203":203}],140:[function(_dereq_,module,exports){ 'use strict'; var Geometry = _dereq_(268), BendpointUtil = _dereq_(142); var MARKER_OK = 'connect-ok', MARKER_NOT_OK = 'connect-not-ok', MARKER_CONNECT_HOVER = 'connect-hover', MARKER_CONNECT_UPDATING = 'djs-updating'; var COMMAND_BENDPOINT_UPDATE = 'connection.updateWaypoints', COMMAND_RECONNECT_START = 'connection.reconnectStart', COMMAND_RECONNECT_END = 'connection.reconnectEnd'; var round = Math.round; var svgClasses = _dereq_(475), svgRemove = _dereq_(481); var translate = _dereq_(279).translate; /** * A component that implements moving of bendpoints */ function BendpointMove(injector, eventBus, canvas, dragging, graphicsFactory, rules, modeling) { // optional connection docking integration var connectionDocking = injector.get('connectionDocking', false); // API this.start = function(event, connection, bendpointIndex, insert) { var type, context, waypoints = connection.waypoints, gfx = canvas.getGraphics(connection); if (!insert && bendpointIndex === 0) { type = COMMAND_RECONNECT_START; } else if (!insert && bendpointIndex === waypoints.length - 1) { type = COMMAND_RECONNECT_END; } else { type = COMMAND_BENDPOINT_UPDATE; } context = { connection: connection, bendpointIndex: bendpointIndex, insert: insert, type: type }; dragging.init(event, 'bendpoint.move', { data: { connection: connection, connectionGfx: gfx, context: context } }); }; // DRAGGING IMPLEMENTATION function redrawConnection(data) { graphicsFactory.update('connection', data.connection, data.connectionGfx); } function filterRedundantWaypoints(waypoints) { // alter copy of waypoints, not original waypoints = waypoints.slice(); var idx = 0, point, previousPoint, nextPoint; while (waypoints[idx]) { point = waypoints[idx]; previousPoint = waypoints[idx - 1]; nextPoint = waypoints[idx + 1]; if (Geometry.pointDistance(point, nextPoint) === 0 || Geometry.pointsOnLine(previousPoint, nextPoint, point)) { // remove point, if overlapping with {nextPoint} // or on line with {previousPoint} -> {point} -> {nextPoint} waypoints.splice(idx, 1); } else { idx++; } } return waypoints; } eventBus.on('bendpoint.move.start', function(e) { var context = e.context, connection = context.connection, originalWaypoints = connection.waypoints, waypoints = originalWaypoints.slice(), insert = context.insert, idx = context.bendpointIndex; context.originalWaypoints = originalWaypoints; if (insert) { // insert placeholder for bendpoint to-be-added waypoints.splice(idx, 0, null); } connection.waypoints = waypoints; // add dragger gfx context.draggerGfx = BendpointUtil.addBendpoint(canvas.getLayer('overlays')); svgClasses(context.draggerGfx).add('djs-dragging'); canvas.addMarker(connection, MARKER_CONNECT_UPDATING); }); eventBus.on('bendpoint.move.hover', function(e) { var context = e.context; context.hover = e.hover; if (e.hover) { canvas.addMarker(e.hover, MARKER_CONNECT_HOVER); // asks whether reconnect / bendpoint move / bendpoint add // is allowed at the given position var allowed = context.allowed = rules.allowed(context.type, context); if (allowed) { canvas.removeMarker(context.hover, MARKER_NOT_OK); canvas.addMarker(context.hover, MARKER_OK); context.target = context.hover; } else if (allowed === false) { canvas.removeMarker(context.hover, MARKER_OK); canvas.addMarker(context.hover, MARKER_NOT_OK); context.target = null; } } }); eventBus.on([ 'bendpoint.move.out', 'bendpoint.move.cleanup' ], function(e) { // remove connect marker // if it was added var hover = e.context.hover; if (hover) { canvas.removeMarker(hover, MARKER_CONNECT_HOVER); canvas.removeMarker(hover, e.context.target ? MARKER_OK : MARKER_NOT_OK); } }); eventBus.on('bendpoint.move.move', function(e) { var context = e.context, moveType = context.type, connection = e.connection, source, target; connection.waypoints[context.bendpointIndex] = { x: e.x, y: e.y }; if (connectionDocking) { if (context.hover) { if (moveType === COMMAND_RECONNECT_START) { source = context.hover; } if (moveType === COMMAND_RECONNECT_END) { target = context.hover; } } connection.waypoints = connectionDocking.getCroppedWaypoints(connection, source, target); } // add dragger gfx translate(context.draggerGfx, e.x, e.y); redrawConnection(e); }); eventBus.on([ 'bendpoint.move.end', 'bendpoint.move.cancel' ], function(e) { var context = e.context, hover = context.hover, connection = context.connection; // remove dragger gfx svgRemove(context.draggerGfx); context.newWaypoints = connection.waypoints.slice(); connection.waypoints = context.originalWaypoints; canvas.removeMarker(connection, MARKER_CONNECT_UPDATING); if (hover) { canvas.removeMarker(hover, MARKER_OK); canvas.removeMarker(hover, MARKER_NOT_OK); } }); eventBus.on('bendpoint.move.end', function(e) { var context = e.context, waypoints = context.newWaypoints, bendpointIndex = context.bendpointIndex, bendpoint = waypoints[bendpointIndex], allowed = context.allowed, hints; // ensure we have actual pixel values bendpoint // coordinates (important when zoom level was > 1 during move) bendpoint.x = round(bendpoint.x); bendpoint.y = round(bendpoint.y); if (allowed && context.type === COMMAND_RECONNECT_START) { modeling.reconnectStart(context.connection, context.target, bendpoint); } else if (allowed && context.type === COMMAND_RECONNECT_END) { modeling.reconnectEnd(context.connection, context.target, bendpoint); } else if (allowed !== false && context.type === COMMAND_BENDPOINT_UPDATE) { // pass hints on the actual moved bendpoint // this is useful for connection and label layouting hints = { bendpointMove: { insert: e.context.insert, bendpointIndex: bendpointIndex } }; modeling.updateWaypoints(context.connection, filterRedundantWaypoints(waypoints), hints); } else { redrawConnection(e); return false; } }); eventBus.on('bendpoint.move.cancel', function(e) { redrawConnection(e); }); } BendpointMove.$inject = [ 'injector', 'eventBus', 'canvas', 'dragging', 'graphicsFactory', 'rules', 'modeling' ]; module.exports = BendpointMove; },{"142":142,"268":268,"279":279,"475":475,"481":481}],141:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303), isArray = _dereq_(422); var abs= Math.abs, round = Math.round; var TOLERANCE = 10; function BendpointSnapping(eventBus) { function snapTo(values, value) { if (isArray(values)) { var i = values.length; while (i--) if (abs(values[i] - value) <= TOLERANCE) { return values[i]; } } else { values = +values; var rem = value % values; if (rem < TOLERANCE) { return value - rem; } if (rem > values - TOLERANCE) { return value - rem + values; } } return value; } function mid(element) { if (element.width) { return { x: round(element.width / 2 + element.x), y: round(element.height / 2 + element.y) }; } } ////////// connection segment snapping ////////////////////////////////////// function getConnectionSegmentSnaps(context) { var snapPoints = context.snapPoints, connection = context.connection, waypoints = connection.waypoints, segmentStart = context.segmentStart, segmentStartIndex = context.segmentStartIndex, segmentEnd = context.segmentEnd, segmentEndIndex = context.segmentEndIndex, axis = context.axis; if (snapPoints) { return snapPoints; } var referenceWaypoints = [ waypoints[segmentStartIndex - 1], segmentStart, segmentEnd, waypoints[segmentEndIndex + 1] ]; if (segmentStartIndex < 2) { referenceWaypoints.unshift(mid(connection.source)); } if (segmentEndIndex > waypoints.length - 3) { referenceWaypoints.unshift(mid(connection.target)); } context.snapPoints = snapPoints = { horizontal: [] , vertical: [] }; forEach(referenceWaypoints, function(p) { // we snap on existing bendpoints only, // not placeholders that are inserted during add if (p) { p = p.original || p; if (axis === 'y') { snapPoints.horizontal.push(p.y); } if (axis === 'x') { snapPoints.vertical.push(p.x); } } }); return snapPoints; } eventBus.on('connectionSegment.move.move', 1500, function(event) { var context = event.context, snapPoints = getConnectionSegmentSnaps(context), x = event.x, y = event.y, sx, sy; if (!snapPoints) { return; } // snap sx = snapTo(snapPoints.vertical, x); sy = snapTo(snapPoints.horizontal, y); // correction x/y var cx = (x - sx), cy = (y - sy); // update delta assign(event, { dx: event.dx - cx, dy: event.dy - cy, x: sx, y: sy }); }); ///////// bendpoint snapping ///////////////////////////// function getBendpointSnaps(context) { var snapPoints = context.snapPoints, waypoints = context.connection.waypoints, bendpointIndex = context.bendpointIndex; if (snapPoints) { return snapPoints; } var referenceWaypoints = [ waypoints[bendpointIndex - 1], waypoints[bendpointIndex + 1] ]; context.snapPoints = snapPoints = { horizontal: [] , vertical: [] }; forEach(referenceWaypoints, function(p) { // we snap on existing bendpoints only, // not placeholders that are inserted during add if (p) { p = p.original || p; snapPoints.horizontal.push(p.y); snapPoints.vertical.push(p.x); } }); return snapPoints; } eventBus.on('bendpoint.move.move', 1500, function(event) { var context = event.context, snapPoints = getBendpointSnaps(context), target = context.target, targetMid = target && mid(target), x = event.x, y = event.y, sx, sy; if (!snapPoints) { return; } // snap sx = snapTo(targetMid ? snapPoints.vertical.concat([ targetMid.x ]) : snapPoints.vertical, x); sy = snapTo(targetMid ? snapPoints.horizontal.concat([ targetMid.y ]) : snapPoints.horizontal, y); // correction x/y var cx = (x - sx), cy = (y - sy); // update delta assign(event, { dx: event.dx - cx, dy: event.dy - cy, x: event.x - cx, y: event.y - cy }); }); } BendpointSnapping.$inject = [ 'eventBus' ]; module.exports = BendpointSnapping; },{"303":303,"422":422,"431":431}],142:[function(_dereq_,module,exports){ 'use strict'; var Events = _dereq_(267), Geometry = _dereq_(268); var BENDPOINT_CLS = module.exports.BENDPOINT_CLS = 'djs-bendpoint'; var SEGMENT_DRAGGER_CLS = module.exports.SEGMENT_DRAGGER_CLS = 'djs-segment-dragger'; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478); var rotate = _dereq_(279).rotate, translate = _dereq_(279).translate; module.exports.toCanvasCoordinates = function(canvas, event) { var position = Events.toPoint(event), clientRect = canvas._container.getBoundingClientRect(), offset; // canvas relative position offset = { x: clientRect.left, y: clientRect.top }; // update actual event payload with canvas relative measures var viewbox = canvas.viewbox(); return { x: viewbox.x + (position.x - offset.x) / viewbox.scale, y: viewbox.y + (position.y - offset.y) / viewbox.scale }; }; module.exports.addBendpoint = function(parentGfx, cls) { var groupGfx = svgCreate('g'); svgClasses(groupGfx).add(BENDPOINT_CLS); svgAppend(parentGfx, groupGfx); var visual = svgCreate('circle'); svgAttr(visual, { cx: 0, cy: 0, r: 4 }); svgClasses(visual).add('djs-visual'); svgAppend(groupGfx, visual); var hit = svgCreate('circle'); svgAttr(hit, { cx: 0, cy: 0, r: 10 }); svgClasses(hit).add('djs-hit'); svgAppend(groupGfx, hit); if (cls) { svgClasses(groupGfx).add(cls); } return groupGfx; }; function createParallelDragger(parentGfx, position, alignment) { var draggerGfx = svgCreate('g'); svgAppend(parentGfx, draggerGfx); var width = 14, height = 3, padding = 6, hitWidth = width + padding, hitHeight = height + padding; var visual = svgCreate('rect'); svgAttr(visual, { x: -width / 2, y: -height / 2, width: width, height: height }); svgClasses(visual).add('djs-visual'); svgAppend(draggerGfx, visual); var hit = svgCreate('rect'); svgAttr(hit, { x: -hitWidth / 2, y: -hitHeight / 2, width: hitWidth, height: hitHeight }); svgClasses(hit).add('djs-hit'); svgAppend(draggerGfx, hit); rotate(draggerGfx, alignment === 'h' ? 90 : 0, 0, 0); return draggerGfx; } module.exports.addSegmentDragger = function(parentGfx, segmentStart, segmentEnd) { var groupGfx = svgCreate('g'), mid = Geometry.getMidPoint(segmentStart, segmentEnd), alignment = Geometry.pointsAligned(segmentStart, segmentEnd); svgAppend(parentGfx, groupGfx); createParallelDragger(groupGfx, mid, alignment); svgClasses(groupGfx).add(SEGMENT_DRAGGER_CLS); svgClasses(groupGfx).add(alignment === 'h' ? 'vertical' : 'horizontal'); translate(groupGfx, mid.x, mid.y); return groupGfx; }; },{"267":267,"268":268,"279":279,"472":472,"474":474,"475":475,"478":478}],143:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var domEvent = _dereq_(450), domQuery = _dereq_(452), BendpointUtil = _dereq_(142); var pointsAligned = _dereq_(268).pointsAligned, getMidPoint = _dereq_(268).getMidPoint; var BENDPOINT_CLS = BendpointUtil.BENDPOINT_CLS, SEGMENT_DRAGGER_CLS = BendpointUtil.SEGMENT_DRAGGER_CLS; var getApproxIntersection = _dereq_(272).getApproxIntersection; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var translate = _dereq_(279).translate; /** * A service that adds editable bendpoints to connections. */ function Bendpoints(eventBus, canvas, interactionEvents, bendpointMove, connectionSegmentMove) { function getConnectionIntersection(waypoints, event) { var localPosition = BendpointUtil.toCanvasCoordinates(canvas, event), intersection = getApproxIntersection(waypoints, localPosition); return intersection; } function isIntersectionMiddle(intersection, waypoints, treshold) { var idx = intersection.index, p = intersection.point, p0, p1, mid, aligned, xDelta, yDelta; if (idx <= 0 || intersection.bendpoint) { return false; } p0 = waypoints[idx - 1]; p1 = waypoints[idx]; mid = getMidPoint(p0, p1), aligned = pointsAligned(p0, p1); xDelta = Math.abs(p.x - mid.x); yDelta = Math.abs(p.y - mid.y); return aligned && xDelta <= treshold && yDelta <= treshold; } function activateBendpointMove(event, connection) { var waypoints = connection.waypoints, intersection = getConnectionIntersection(waypoints, event); if (!intersection) { return; } if (isIntersectionMiddle(intersection, waypoints, 10)) { connectionSegmentMove.start(event, connection, intersection.index); } else { bendpointMove.start(event, connection, intersection.index, !intersection.bendpoint); } } function bindInteractionEvents(node, eventName, element) { domEvent.bind(node, eventName, function(event) { interactionEvents.triggerMouseEvent(eventName, event, element); event.stopPropagation(); }); } function getBendpointsContainer(element, create) { var layer = canvas.getLayer('overlays'), gfx = domQuery('.djs-bendpoints[data-element-id=' + element.id + ']', layer); if (!gfx && create) { gfx = svgCreate('g'); svgAttr(gfx, { 'data-element-id': element.id }); svgClasses(gfx).add('djs-bendpoints'); svgAppend(layer, gfx); bindInteractionEvents(gfx, 'mousedown', element); bindInteractionEvents(gfx, 'click', element); bindInteractionEvents(gfx, 'dblclick', element); } return gfx; } function createBendpoints(gfx, connection) { connection.waypoints.forEach(function(p, idx) { var bendpoint = BendpointUtil.addBendpoint(gfx); svgAppend(gfx, bendpoint); translate(bendpoint, p.x, p.y); }); // add floating bendpoint BendpointUtil.addBendpoint(gfx, 'floating'); } function createSegmentDraggers(gfx, connection) { var waypoints = connection.waypoints; var segmentStart, segmentEnd; for (var i = 1; i < waypoints.length; i++) { segmentStart = waypoints[i - 1]; segmentEnd = waypoints[i]; if (pointsAligned(segmentStart, segmentEnd)) { BendpointUtil.addSegmentDragger(gfx, segmentStart, segmentEnd); } } } function clearBendpoints(gfx) { forEach(domQuery.all('.' + BENDPOINT_CLS, gfx), function(node) { svgRemove(node); }); } function clearSegmentDraggers(gfx) { forEach(domQuery.all('.' + SEGMENT_DRAGGER_CLS, gfx), function(node) { svgRemove(node); }); } function addHandles(connection) { var gfx = getBendpointsContainer(connection); if (!gfx) { gfx = getBendpointsContainer(connection, true); createBendpoints(gfx, connection); createSegmentDraggers(gfx, connection); } return gfx; } function updateHandles(connection) { var gfx = getBendpointsContainer(connection); if (gfx) { clearSegmentDraggers(gfx); clearBendpoints(gfx); createSegmentDraggers(gfx, connection); createBendpoints(gfx, connection); } } eventBus.on('connection.changed', function(event) { updateHandles(event.element); }); eventBus.on('connection.remove', function(event) { var gfx = getBendpointsContainer(event.element); if (gfx) { svgRemove(gfx); } }); eventBus.on('element.marker.update', function(event) { var element = event.element, bendpointsGfx; if (!element.waypoints) { return; } bendpointsGfx = addHandles(element); if (event.add) { svgClasses(bendpointsGfx).add(event.marker); } else { svgClasses(bendpointsGfx).remove(event.marker); } }); eventBus.on('element.mousemove', function(event) { var element = event.element, waypoints = element.waypoints, bendpointsGfx, floating, intersection; if (waypoints) { bendpointsGfx = getBendpointsContainer(element, true); floating = domQuery('.floating', bendpointsGfx); if (!floating) { return; } intersection = getConnectionIntersection(waypoints, event.originalEvent); if (intersection) { translate(floating, intersection.point.x, intersection.point.y); } } }); eventBus.on('element.mousedown', function(event) { var originalEvent = event.originalEvent, element = event.element, waypoints = element.waypoints; if (!waypoints) { return; } activateBendpointMove(originalEvent, element, waypoints); }); eventBus.on('selection.changed', function(event) { var newSelection = event.newSelection, primary = newSelection[0]; if (primary && primary.waypoints) { addHandles(primary); } }); eventBus.on('element.hover', function(event) { var element = event.element; if (element.waypoints) { addHandles(element); interactionEvents.registerEvent(event.gfx, 'mousemove', 'element.mousemove'); } }); eventBus.on('element.out', function(event) { interactionEvents.unregisterEvent(event.gfx, 'mousemove', 'element.mousemove'); }); // update bendpoint container data attribute on element ID change eventBus.on('element.updateId', function(context) { var element = context.element, newId = context.newId; if (element.waypoints) { var bendpointContainer = getBendpointsContainer(element); if (bendpointContainer) { svgAttr(bendpointContainer, { 'data-element-id': newId }); } } }); // API this.addHandles = addHandles; this.updateHandles = updateHandles; this.getBendpointsContainer = getBendpointsContainer; } Bendpoints.$inject = [ 'eventBus', 'canvas', 'interactionEvents', 'bendpointMove', 'connectionSegmentMove' ]; module.exports = Bendpoints; },{"142":142,"268":268,"272":272,"279":279,"303":303,"450":450,"452":452,"472":472,"474":474,"475":475,"478":478,"481":481}],144:[function(_dereq_,module,exports){ 'use strict'; var Geometry = _dereq_(268), BendpointUtil = _dereq_(142), LayoutUtil = _dereq_(252); var MARKER_CONNECT_HOVER = 'connect-hover', MARKER_CONNECT_UPDATING = 'djs-updating'; var svgClasses = _dereq_(475), svgRemove = _dereq_(481); var translate = _dereq_(279).translate; function axisAdd(point, axis, delta) { return axisSet(point, axis, point[axis] + delta); } function axisSet(point, axis, value) { return { x: (axis === 'x' ? value : point.x), y: (axis === 'y' ? value : point.y) }; } function axisFenced(position, segmentStart, segmentEnd, axis) { var maxValue = Math.max(segmentStart[axis], segmentEnd[axis]), minValue = Math.min(segmentStart[axis], segmentEnd[axis]); var padding = 20; var fencedValue = Math.min(Math.max(minValue + padding, position[axis]), maxValue - padding); return axisSet(segmentStart, axis, fencedValue); } function flipAxis(axis) { return axis === 'x' ? 'y' : 'x'; } /** * Get the docking point on the given element. * * Compute a reasonable docking, if non exists. * * @param {Point} point * @param {djs.model.Shape} referenceElement * @param {String} moveAxis (x|y) * * @return {Point} */ function getDocking(point, referenceElement, moveAxis) { var referenceMid, inverseAxis; if (point.original) { return point.original; } else { referenceMid = LayoutUtil.getMid(referenceElement); inverseAxis = flipAxis(moveAxis); return axisSet(point, inverseAxis, referenceMid[inverseAxis]); } } /** * A component that implements moving of bendpoints */ function ConnectionSegmentMove(injector, eventBus, canvas, dragging, graphicsFactory, rules, modeling) { // optional connection docking integration var connectionDocking = injector.get('connectionDocking', false); // API this.start = function(event, connection, idx) { var context, gfx = canvas.getGraphics(connection), segmentStartIndex = idx - 1, segmentEndIndex = idx, waypoints = connection.waypoints, segmentStart = waypoints[segmentStartIndex], segmentEnd = waypoints[segmentEndIndex], direction, axis; direction = Geometry.pointsAligned(segmentStart, segmentEnd); // do not move diagonal connection if (!direction) { return; } // the axis where we are going to move things axis = direction === 'v' ? 'y' : 'x'; if (segmentStartIndex === 0) { segmentStart = getDocking(segmentStart, connection.source, axis); } if (segmentEndIndex === waypoints.length - 1) { segmentEnd = getDocking(segmentEnd, connection.target, axis); } context = { connection: connection, segmentStartIndex: segmentStartIndex, segmentEndIndex: segmentEndIndex, segmentStart: segmentStart, segmentEnd: segmentEnd, axis: axis }; dragging.init(event, { x: (segmentStart.x + segmentEnd.x)/2, y: (segmentStart.y + segmentEnd.y)/2 }, 'connectionSegment.move', { cursor: axis === 'x' ? 'resize-ew' : 'resize-ns', data: { connection: connection, connectionGfx: gfx, context: context } }); }; /** * Crop connection if connection cropping is provided. * * @param {Connection} connection * @param {Array} newWaypoints * * @return {Array} cropped connection waypoints */ function cropConnection(connection, newWaypoints) { // crop connection, if docking service is provided only if (!connectionDocking) { return newWaypoints; } var oldWaypoints = connection.waypoints, croppedWaypoints; // temporary set new waypoints connection.waypoints = newWaypoints; croppedWaypoints = connectionDocking.getCroppedWaypoints(connection); // restore old waypoints connection.waypoints = oldWaypoints; return croppedWaypoints; } // DRAGGING IMPLEMENTATION function redrawConnection(data) { graphicsFactory.update('connection', data.connection, data.connectionGfx); } function updateDragger(context, segmentOffset, event) { var newWaypoints = context.newWaypoints, segmentStartIndex = context.segmentStartIndex + segmentOffset, segmentStart = newWaypoints[segmentStartIndex], segmentEndIndex = context.segmentEndIndex + segmentOffset, segmentEnd = newWaypoints[segmentEndIndex], axis = flipAxis(context.axis); // make sure the dragger does not move // outside the connection var draggerPosition = axisFenced(event, segmentStart, segmentEnd, axis); // update dragger translate(context.draggerGfx, draggerPosition.x, draggerPosition.y); } /** * Filter waypoints for redundant ones (i.e. on the same axis). * Returns the filtered waypoints and the offset related to the segment move. * * @param {Array} waypoints * @param {Integer} segmentStartIndex of moved segment start * * @return {Object} { filteredWaypoints, segmentOffset } */ function filterRedundantWaypoints(waypoints, segmentStartIndex) { var segmentOffset = 0; var filteredWaypoints = waypoints.filter(function(r, idx) { if (Geometry.pointsOnLine(waypoints[idx - 1], waypoints[idx + 1], r)) { // remove point and increment offset segmentOffset = idx <= segmentStartIndex ? segmentOffset - 1 : segmentOffset; return false; } // dont remove point return true; }); return { waypoints: filteredWaypoints, segmentOffset: segmentOffset }; } eventBus.on('connectionSegment.move.start', function(e) { var context = e.context, connection = e.connection, layer = canvas.getLayer('overlays'); context.originalWaypoints = connection.waypoints.slice(); // add dragger gfx context.draggerGfx = BendpointUtil.addSegmentDragger(layer, context.segmentStart, context.segmentEnd); svgClasses(context.draggerGfx).add('djs-dragging'); canvas.addMarker(connection, MARKER_CONNECT_UPDATING); }); eventBus.on('connectionSegment.move.move', function(e) { var context = e.context, connection = context.connection, segmentStartIndex = context.segmentStartIndex, segmentEndIndex = context.segmentEndIndex, segmentStart = context.segmentStart, segmentEnd = context.segmentEnd, axis = context.axis; var newWaypoints = context.originalWaypoints.slice(), newSegmentStart = axisAdd(segmentStart, axis, e['d' + axis]), newSegmentEnd = axisAdd(segmentEnd, axis, e['d' + axis]); // original waypoint count and added / removed // from start waypoint delta. We use the later // to retrieve the updated segmentStartIndex / segmentEndIndex var waypointCount = newWaypoints.length, segmentOffset = 0; // move segment start / end by axis delta newWaypoints[segmentStartIndex] = newSegmentStart; newWaypoints[segmentEndIndex] = newSegmentEnd; var sourceToSegmentOrientation, targetToSegmentOrientation; // handle first segment if (segmentStartIndex < 2) { sourceToSegmentOrientation = LayoutUtil.getOrientation(connection.source, newSegmentStart); // first bendpoint, remove first segment if intersecting if (segmentStartIndex === 1) { if (sourceToSegmentOrientation === 'intersect') { newWaypoints.shift(); newWaypoints[0] = newSegmentStart; segmentOffset--; } } // docking point, add segment if not intersecting anymore else { if (sourceToSegmentOrientation !== 'intersect') { newWaypoints.unshift(segmentStart); segmentOffset++; } } } // handle last segment if (segmentEndIndex > waypointCount - 3) { targetToSegmentOrientation = LayoutUtil.getOrientation(connection.target, newSegmentEnd); // last bendpoint, remove last segment if intersecting if (segmentEndIndex === waypointCount - 2) { if (targetToSegmentOrientation === 'intersect') { newWaypoints.pop(); newWaypoints[newWaypoints.length - 1] = newSegmentEnd; } } // last bendpoint, remove last segment if intersecting else { if (targetToSegmentOrientation !== 'intersect') { newWaypoints.push(segmentEnd); } } } // update connection waypoints context.newWaypoints = connection.waypoints = cropConnection(connection, newWaypoints); // update dragger position updateDragger(context, segmentOffset, e); // save segmentOffset in context context.newSegmentStartIndex = segmentStartIndex + segmentOffset; // redraw connection redrawConnection(e); }); eventBus.on('connectionSegment.move.hover', function(e) { e.context.hover = e.hover; canvas.addMarker(e.hover, MARKER_CONNECT_HOVER); }); eventBus.on([ 'connectionSegment.move.out', 'connectionSegment.move.cleanup' ], function(e) { // remove connect marker // if it was added var hover = e.context.hover; if (hover) { canvas.removeMarker(hover, MARKER_CONNECT_HOVER); } }); eventBus.on('connectionSegment.move.cleanup', function(e) { var context = e.context, connection = context.connection; // remove dragger gfx if (context.draggerGfx) { svgRemove(context.draggerGfx); } canvas.removeMarker(connection, MARKER_CONNECT_UPDATING); }); eventBus.on([ 'connectionSegment.move.cancel', 'connectionSegment.move.end' ], function(e) { var context = e.context, connection = context.connection; connection.waypoints = context.originalWaypoints; redrawConnection(e); }); eventBus.on('connectionSegment.move.end', function(e) { var context = e.context, connection = context.connection, newWaypoints = context.newWaypoints, newSegmentStartIndex = context.newSegmentStartIndex; // ensure we have actual pixel values bendpoint // coordinates (important when zoom level was > 1 during move) newWaypoints = newWaypoints.map(function(p) { return { original: p.original, x: Math.round(p.x), y: Math.round(p.y) }; }); // apply filter redunant waypoints var filtered = filterRedundantWaypoints(newWaypoints, newSegmentStartIndex); // get filtered waypoints var filteredWaypoints = filtered.waypoints, croppedWaypoints = cropConnection(connection, filteredWaypoints), segmentOffset = filtered.segmentOffset; var hints = { segmentMove: { segmentStartIndex: context.segmentStartIndex, newSegmentStartIndex: newSegmentStartIndex + segmentOffset } }; modeling.updateWaypoints(connection, croppedWaypoints, hints); }); } ConnectionSegmentMove.$inject = [ 'injector', 'eventBus', 'canvas', 'dragging', 'graphicsFactory', 'rules', 'modeling' ]; module.exports = ConnectionSegmentMove; },{"142":142,"252":252,"268":268,"279":279,"475":475,"481":481}],145:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(162), _dereq_(227) ], __init__: [ 'bendpoints', 'bendpointSnapping' ], bendpoints: [ 'type', _dereq_(143) ], bendpointMove: [ 'type', _dereq_(140) ], connectionSegmentMove: [ 'type', _dereq_(144) ], bendpointSnapping: [ 'type', _dereq_(141) ] }; },{"140":140,"141":141,"143":143,"144":144,"162":162,"227":227}],146:[function(_dereq_,module,exports){ 'use strict'; var getElementType = _dereq_(266).getType; /** * Adds change support to the diagram, including * *
    *
  • redrawing shapes and connections on change
  • *
* * @param {EventBus} eventBus * @param {Canvas} canvas * @param {ElementRegistry} elementRegistry * @param {GraphicsFactory} graphicsFactory */ function ChangeSupport(eventBus, canvas, elementRegistry, graphicsFactory) { // redraw shapes / connections on change eventBus.on('element.changed', function(event) { var element = event.element; // element might have been deleted and replaced by new element with same ID // thus check for parent of element except for root element if (element.parent || element === canvas.getRootElement()) { event.gfx = elementRegistry.getGraphics(element); } // shape + gfx may have been deleted if (!event.gfx) { return; } eventBus.fire(getElementType(element) + '.changed', event); }); eventBus.on('elements.changed', function(event) { var elements = event.elements; elements.forEach(function(e) { eventBus.fire('element.changed', { element: e }); }); graphicsFactory.updateContainments(elements); }); eventBus.on('shape.changed', function(event) { graphicsFactory.update('shape', event.element, event.gfx); }); eventBus.on('connection.changed', function(event) { graphicsFactory.update('connection', event.element, event.gfx); }); } ChangeSupport.$inject = [ 'eventBus', 'canvas', 'elementRegistry', 'graphicsFactory' ]; module.exports = ChangeSupport; },{"266":266}],147:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'changeSupport'], changeSupport: [ 'type', _dereq_(146) ] }; },{"146":146}],148:[function(_dereq_,module,exports){ 'use strict'; /** * A clip board stub */ function Clipboard() {} module.exports = Clipboard; Clipboard.prototype.get = function() { return this._data; }; Clipboard.prototype.set = function(data) { this._data = data; }; Clipboard.prototype.clear = function() { var data = this._data; delete this._data; return data; }; Clipboard.prototype.isEmpty = function() { return !this._data; }; },{}],149:[function(_dereq_,module,exports){ module.exports = { clipboard: [ 'type', _dereq_(148) ] }; },{"148":148}],150:[function(_dereq_,module,exports){ 'use strict'; var LayoutUtil = _dereq_(252); var MARKER_OK = 'connect-ok', MARKER_NOT_OK = 'connect-not-ok'; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478), svgRemove = _dereq_(481); function Connect(eventBus, dragging, modeling, rules, canvas, graphicsFactory) { // TODO(nre): separate UI and events // rules function canConnect(source, target) { return rules.allowed('connection.create', { source: source, target: target }); } // layouting function crop(start, end, source, target) { var sourcePath = graphicsFactory.getShapePath(source), targetPath = target && graphicsFactory.getShapePath(target), connectionPath = graphicsFactory.getConnectionPath({ waypoints: [ start, end ] }); start = LayoutUtil.getElementLineIntersection(sourcePath, connectionPath, true) || start; end = (target && LayoutUtil.getElementLineIntersection(targetPath, connectionPath, false)) || end; return [ start, end ]; } // event handlers eventBus.on('connect.move', function(event) { var context = event.context, source = context.source, target = context.target, visual = context.visual, sourcePosition = context.sourcePosition, endPosition, waypoints; // update connection visuals during drag endPosition = { x: event.x, y: event.y }; waypoints = crop(sourcePosition, endPosition, source, target); svgAttr(visual, { 'points': [ waypoints[0].x, waypoints[0].y, waypoints[1].x, waypoints[1].y ] }); }); eventBus.on('connect.hover', function(event) { var context = event.context, source = context.source, hover = event.hover, canExecute; canExecute = context.canExecute = canConnect(source, hover); // simply ignore hover if (canExecute === null) { return; } context.target = hover; canvas.addMarker(hover, canExecute ? MARKER_OK : MARKER_NOT_OK); }); eventBus.on([ 'connect.out', 'connect.cleanup' ], function(event) { var context = event.context; if (context.target) { canvas.removeMarker(context.target, context.canExecute ? MARKER_OK : MARKER_NOT_OK); } context.target = null; }); eventBus.on('connect.cleanup', function(event) { var context = event.context; if (context.visual) { svgRemove(context.visual); } }); eventBus.on('connect.start', function(event) { var context = event.context, visual; visual = svgCreate('polyline'); svgAttr(visual, { 'stroke': '#333', 'strokeDasharray': [ 1 ], 'strokeWidth': 2, 'pointer-events': 'none' }); svgAppend(canvas.getDefaultLayer(), visual); context.visual = visual; }); eventBus.on('connect.end', function(event) { var context = event.context, source = context.source, sourcePosition = context.sourcePosition, target = context.target, targetPosition = { x: event.x, y: event.y }, canExecute = context.canExecute || canConnect(source, target); if (!canExecute) { return false; } var attrs = null, hints = { connectionStart: sourcePosition, connectionEnd: targetPosition }; if (typeof canExecute === 'object') { attrs = canExecute; } modeling.connect(source, target, attrs, hints); }); // API /** * Start connect operation. * * @param {DOMEvent} event * @param {djs.model.Base} source * @param {Point} [sourcePosition] * @param {Boolean} [autoActivate=false] */ this.start = function(event, source, sourcePosition, autoActivate) { if (typeof sourcePosition !== 'object') { autoActivate = sourcePosition; sourcePosition = LayoutUtil.getMid(source); } dragging.init(event, 'connect', { autoActivate: autoActivate, data: { shape: source, context: { source: source, sourcePosition: sourcePosition } } }); }; } Connect.$inject = [ 'eventBus', 'dragging', 'modeling', 'rules', 'canvas', 'graphicsFactory' ]; module.exports = Connect; },{"252":252,"472":472,"474":474,"478":478,"481":481}],151:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(233), _dereq_(227), _dereq_(162) ], connect: [ 'type', _dereq_(150) ] }; },{"150":150,"162":162,"227":227,"233":233}],152:[function(_dereq_,module,exports){ 'use strict'; var isFunction = _dereq_(423), isArray = _dereq_(422), forEach = _dereq_(303), domDelegate = _dereq_(448), domEvent = _dereq_(450), domAttr = _dereq_(444), domQuery = _dereq_(452), domClasses = _dereq_(445), domify = _dereq_(449); var entrySelector = '.entry'; /** * A context pad that displays element specific, contextual actions next * to a diagram element. * * @param {EventBus} eventBus * @param {Overlays} overlays */ function ContextPad(eventBus, overlays) { this._providers = []; this._eventBus = eventBus; this._overlays = overlays; this._current = null; this._init(); } ContextPad.$inject = [ 'eventBus', 'overlays' ]; module.exports = ContextPad; /** * Registers events needed for interaction with other components */ ContextPad.prototype._init = function() { var eventBus = this._eventBus; var self = this; eventBus.on('selection.changed', function(e) { var selection = e.newSelection; if (selection.length === 1) { self.open(selection[0]); } else { self.close(); } }); eventBus.on('elements.delete', function(event) { var elements = event.elements; forEach(elements, function(e) { if (self.isOpen(e)) { self.close(); } }); }); eventBus.on('element.changed', function(event) { var element = event.element, current = self._current; // force reopen if element for which we are currently opened changed if (current && current.element === element) { self.open(element, true); } }); }; /** * Register a provider with the context pad * * @param {ContextPadProvider} provider */ ContextPad.prototype.registerProvider = function(provider) { this._providers.push(provider); }; /** * Returns the context pad entries for a given element * * @param {djs.element.Base} element * * @return {Array} list of entries */ ContextPad.prototype.getEntries = function(element) { var entries = {}; // loop through all providers and their entries. // group entries by id so that overriding an entry is possible forEach(this._providers, function(provider) { var e = provider.getContextPadEntries(element); forEach(e, function(entry, id) { entries[id] = entry; }); }); return entries; }; /** * Trigger an action available on the opened context pad * * @param {String} action * @param {Event} event * @param {Boolean} [autoActivate=false] */ ContextPad.prototype.trigger = function(action, event, autoActivate) { var element = this._current.element, entries = this._current.entries, entry, handler, originalEvent, button = event.delegateTarget || event.target; if (!button) { return event.preventDefault(); } entry = entries[domAttr(button, 'data-action')]; handler = entry.action; originalEvent = event.originalEvent || event; // simple action (via callback function) if (isFunction(handler)) { if (action === 'click') { return handler(originalEvent, element, autoActivate); } } else { if (handler[action]) { return handler[action](originalEvent, element, autoActivate); } } // silence other actions event.preventDefault(); }; /** * Open the context pad for the given element * * @param {djs.model.Base} element * @param {Boolean} force if true, force reopening the context pad */ ContextPad.prototype.open = function(element, force) { if (!force && this.isOpen(element)) { return; } this.close(); this._updateAndOpen(element); }; ContextPad.prototype._updateAndOpen = function(element) { var entries = this.getEntries(element), pad = this.getPad(element), html = pad.html; forEach(entries, function(entry, id) { var grouping = entry.group || 'default', control = domify(entry.html || '
'), container; domAttr(control, 'data-action', id); container = domQuery('[data-group=' + grouping + ']', html); if (!container) { container = domify('
'); html.appendChild(container); } container.appendChild(control); if (entry.className) { addClasses(control, entry.className); } if (entry.title) { domAttr(control, 'title', entry.title); } if (entry.imageUrl) { control.appendChild(domify('')); } }); domClasses(html).add('open'); this._current = { element: element, pad: pad, entries: entries }; this._eventBus.fire('contextPad.open', { current: this._current }); }; ContextPad.prototype.getPad = function(element) { if (this.isOpen()) { return this._current.pad; } var self = this; var overlays = this._overlays; var html = domify('
'); domDelegate.bind(html, entrySelector, 'click', function(event) { self.trigger('click', event); }); domDelegate.bind(html, entrySelector, 'dragstart', function(event) { self.trigger('dragstart', event); }); // stop propagation of mouse events domEvent.bind(html, 'mousedown', function(event) { event.stopPropagation(); }); this._overlayId = overlays.add(element, 'context-pad', { position: { right: -9, top: -6 }, html: html }); var pad = overlays.get(this._overlayId); this._eventBus.fire('contextPad.create', { element: element, pad: pad }); return pad; }; /** * Close the context pad */ ContextPad.prototype.close = function() { if (!this.isOpen()) { return; } this._overlays.remove(this._overlayId); this._overlayId = null; this._eventBus.fire('contextPad.close', { current: this._current }); this._current = null; }; /** * Check if pad is open. If element is given, will check * if pad is opened with given element. * * @param {Element} element * @return {Boolean} */ ContextPad.prototype.isOpen = function(element) { return !!this._current && (!element ? true : this._current.element === element); }; ////////// helpers ///////////////////////////// function addClasses(element, classNames) { var classes = domClasses(element); var actualClassNames = isArray(classNames) ? classNames : classNames.split(/\s+/g); actualClassNames.forEach(function(cls) { classes.add(cls); }); } },{"303":303,"422":422,"423":423,"444":444,"445":445,"448":448,"449":449,"450":450,"452":452}],153:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(170), _dereq_(211) ], contextPad: [ 'type', _dereq_(152) ] }; },{"152":152,"170":170,"211":211}],154:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), forEach = _dereq_(303), map = _dereq_(305), find = _dereq_(302), findIndex = _dereq_(290), sortBy = _dereq_(310), reduce = _dereq_(306); var getBBox = _dereq_(266).getBBox; var PositionUtil = _dereq_(276); var CopyPasteUtil = _dereq_(264), ElementsUtil = _dereq_(266); function CopyPaste(eventBus, modeling, elementFactory, rules, clipboard, canvas) { this._eventBus = eventBus; this._modeling = modeling; this._elementFactory = elementFactory; this._rules = rules; this._canvas = canvas; this._clipboard = clipboard; this._descriptors = []; // Element creation priorities: // - 1: Independent shapes // - 2: Attached shapes // - 3: Connections // - 4: labels this.registerDescriptor(function(element, descriptor) { // Base priority descriptor.priority = 1; descriptor.id = element.id; if (element.parent) { descriptor.parent = element.parent.id; } if (element.labelTarget) { // Labels priority descriptor.priority = 4; descriptor.labelTarget = element.labelTarget.id; } if (element.host) { // Attached shapes priority descriptor.priority = 2; descriptor.host = element.host.id; } if (typeof element.x === 'number') { descriptor.x = element.x; descriptor.y = element.y; } if (element.width) { descriptor.width = element.width; descriptor.height = element.height; } if (element.waypoints) { // Connections priority descriptor.priority = 3; descriptor.waypoints = []; forEach(element.waypoints, function(waypoint) { var wp = { x: waypoint.x, y: waypoint.y }; if (waypoint.original) { wp.original = { x: waypoint.original.x, y: waypoint.original.y }; } descriptor.waypoints.push(wp); }); } if (element.source && element.target) { descriptor.source = element.source.id; descriptor.target = element.target.id; } return descriptor; }); } CopyPaste.$inject = [ 'eventBus', 'modeling', 'elementFactory', 'rules', 'clipboard', 'canvas' ]; module.exports = CopyPaste; /** * Copy a number of elements. * * @param {djs.model.Base} selectedElements * * @return {Object} the copied tree */ CopyPaste.prototype.copy = function(selectedElements) { var clipboard = this._clipboard, tree, bbox; if (!isArray(selectedElements)) { selectedElements = selectedElements ? [ selectedElements ] : []; } if (!selectedElements.length) { return; } tree = this.createTree(selectedElements); bbox = this._bbox = PositionUtil.center(getBBox(tree.allShapes)); // not needed after computing the center position of the copied elements delete tree.allShapes; forEach(tree, function(elements) { forEach(elements, function(element) { var delta, labelTarget; // set label's relative position to their label target if (element.labelTarget) { labelTarget = find(elements, { id: element.labelTarget }); // just grab the delta from the first waypoint if (labelTarget.waypoints) { delta = PositionUtil.delta(element, labelTarget.waypoints[0]); } else { delta = PositionUtil.delta(element, labelTarget); } } else if (element.priority === 3) { // connections have priority 3 delta = []; forEach(element.waypoints, function(waypoint) { var waypointDelta = PositionUtil.delta(waypoint, bbox); delta.push(waypointDelta); }, this); } else { delta = PositionUtil.delta(element, bbox); } element.delta = delta; }); }); this._eventBus.fire('elements.copy', { context: { tree: tree } }); // if tree is empty, means that nothing can be or is allowed to be copied if (Object.keys(tree).length === 0) { clipboard.clear(); } else { clipboard.set(tree); } this._eventBus.fire('elements.copied', { context: { tree: tree } }); return tree; }; // Allow pasting under the cursor CopyPaste.prototype.paste = function(context) { var clipboard = this._clipboard, modeling = this._modeling, eventBus = this._eventBus, rules = this._rules; var tree = clipboard.get(), topParent = context.element, position = context.point, newTree, canPaste; if (clipboard.isEmpty()) { return; } newTree = reduce(tree, function(pasteTree, elements, depthStr) { var depth = parseInt(depthStr, 10); if (isNaN(depth)) { return pasteTree; } pasteTree[depth] = elements; return pasteTree; }, {}, this); canPaste = rules.allowed('elements.paste', { tree: newTree, target: topParent }); if (!canPaste) { eventBus.fire('elements.paste.rejected', { context: { tree: newTree, position: position, target: topParent } }); return; } modeling.pasteElements(newTree, topParent, position); }; CopyPaste.prototype._computeDelta = function(elements, element) { var bbox = this._bbox, delta = {}; // set label's relative position to their label target if (element.labelTarget) { return PositionUtil.delta(element, element.labelTarget); } // connections have prority 3 if (element.priority === 3) { delta = []; forEach(element.waypoints, function(waypoint) { var waypointDelta = PositionUtil.delta(waypoint, bbox); delta.push(waypointDelta); }, this); } else { delta = PositionUtil.delta(element, bbox); } return delta; }; /** * Checks if the element in question has a relations to other elements. * Possible dependants: connections, labels, attachers * * @param {Array} elements * @param {Object} element * * @return {Boolean} */ CopyPaste.prototype.hasRelations = function(elements, element) { var source, target, labelTarget; if (element.waypoints) { source = find(elements, { id: element.source.id }); target = find(elements, { id: element.target.id }); if (!source || !target) { return false; } } if (element.labelTarget) { labelTarget = find(elements, { id: element.labelTarget.id }); if (!labelTarget) { return false; } } return true; }; CopyPaste.prototype.registerDescriptor = function(descriptor) { if (typeof descriptor !== 'function') { throw new Error('the descriptor must be a function'); } if (this._descriptors.indexOf(descriptor) !== -1) { throw new Error('this descriptor is already registered'); } this._descriptors.push(descriptor); }; CopyPaste.prototype._executeDescriptors = function(data) { if (!data.descriptor) { data.descriptor = {}; } forEach(this._descriptors, function(descriptor) { data.descriptor = descriptor(data.element, data.descriptor); }); return data; }; /** * Creates a tree like structure from an arbitrary collection of elements * * @example * tree: { * 0: [ * { id: 'shape_12da', priority: 1, ... }, * { id: 'shape_01bj', priority: 1, ... }, * { id: 'connection_79fa', source: 'shape_12da', target: 'shape_01bj', priority: 3, ... }, * ], * 1: [ ... ] * }; * * @param {Array} elements * @return {Object} */ CopyPaste.prototype.createTree = function(elements) { var rules = this._rules; var tree = {}, includedElements = [], _elements; var topLevel = CopyPasteUtil.getTopLevel(elements); tree.allShapes = []; function canCopy(collection, element) { return rules.allowed('element.copy', { collection: collection, element: element }); } function includeElement(data) { var idx = findIndex(includedElements, { element: data.element }), element; if (idx !== -1) { element = includedElements[idx]; } else { return includedElements.push(data); } // makes sure that it has the correct depth if (element.depth < data.depth) { includedElements.splice(idx, 1); includedElements.push(data); } } ElementsUtil.eachElement(topLevel, function(element, i, depth) { var nestedChildren = element.children; // don't add labels directly if (element.labelTarget) { return; } function getNested(lists) { forEach(lists, function(list) { if (list && list.length) { forEach(list, function(elem) { // fetch element's label if (elem.label) { includeElement({ element: elem.label, depth: depth }); } includeElement({ element: elem, depth: depth }); }); } }); } // fetch element's label if (element.label) { includeElement({ element: element.label, depth: depth }); } getNested([ element.attachers, element.incoming, element.outgoing ]); includeElement({ element: element, depth: depth }); if (nestedChildren) { return nestedChildren; } }); includedElements = map(includedElements, function(data) { // this is where other registered descriptors hook in return this._executeDescriptors(data); }, this); // order the elements to check if the ones dependant on others (by relationship) // can be copied. f.ex: label needs it's label target includedElements = sortBy(includedElements, function(data) { return data.descriptor.priority; }); _elements = map(includedElements, function(data) { return data.element; }); forEach(includedElements, function(data) { var depth = data.depth; if (!this.hasRelations(tree.allShapes, data.element)) { return; } if (!canCopy(_elements, data.element)) { return; } tree.allShapes.push(data.element); // create depth branches if (!tree[depth]) { tree[depth] = []; } tree[depth].push(data.descriptor); }, this); return tree; }; },{"264":264,"266":266,"276":276,"290":290,"302":302,"303":303,"305":305,"306":306,"310":310,"422":422}],155:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(149), _dereq_(227), _dereq_(203) ], __init__: [ 'copyPaste' ], copyPaste: [ 'type', _dereq_(154) ] }; },{"149":149,"154":154,"203":203,"227":227}],156:[function(_dereq_,module,exports){ 'use strict'; var LOW_PRIORITY = 750; var MARKER_OK = 'drop-ok', MARKER_NOT_OK = 'drop-not-ok', MARKER_ATTACH = 'attach-ok', MARKER_NEW_PARENT = 'new-parent'; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var translate = _dereq_(279).translate; function Create(eventBus, dragging, rules, modeling, canvas, styles, graphicsFactory) { // rules function canCreate(shape, target, source, position) { if (source) { return rules.allowed('shape.append', { source: source, shape: shape, target: target, position: position }); } else { return rules.allowed('shape.create', { shape: shape, target: target, position: position }); } } /** set drop marker on an element */ function setMarker(element, marker) { [ MARKER_ATTACH, MARKER_OK, MARKER_NOT_OK, MARKER_NEW_PARENT ].forEach(function(m) { if (m === marker) { canvas.addMarker(element, m); } else { canvas.removeMarker(element, m); } }); } // visual helpers function createVisual(shape) { var group, preview, visual; group = svgCreate('g'); svgAttr(group, styles.cls('djs-drag-group', [ 'no-events' ])); svgAppend(canvas.getDefaultLayer(), group); preview = svgCreate('g'); svgClasses(preview).add('djs-dragger'); svgAppend(group, preview); translate(preview, shape.width / -2, shape.height / -2); var visualGroup = svgCreate('g'); svgClasses(visualGroup).add('djs-visual'); svgAppend(preview, visualGroup); visual = visualGroup; // hijack renderer to draw preview graphicsFactory.drawShape(visual, shape); return group; } // event handlers eventBus.on('create.move', function(event) { var context = event.context, hover = event.hover, canExecute; var position = { x: event.x, y: event.y }; canExecute = context.canExecute = hover && canCreate(context.shape, hover, context.source, position); // ignore hover visually if canExecute is null if (hover && canExecute !== null) { context.target = hover; if (canExecute === 'attach') { setMarker(hover, MARKER_ATTACH); } else { setMarker(hover, context.canExecute ? MARKER_NEW_PARENT : MARKER_NOT_OK); } } }); eventBus.on('create.move', LOW_PRIORITY, function(event) { var context = event.context, shape = context.shape, visual = context.visual; // lazy init drag visual once we received the first real // drag move event (this allows us to get the proper canvas local coordinates) if (!visual) { visual = context.visual = createVisual(shape); } translate(visual, event.x, event.y); }); eventBus.on([ 'create.end', 'create.out', 'create.cleanup' ], function(event) { var context = event.context, target = context.target; if (target) { setMarker(target, null); } }); eventBus.on('create.end', function(event) { var context = event.context, source = context.source, shape = context.shape, target = context.target, canExecute = context.canExecute, isAttach, position = { x: event.x, y: event.y }; if (!canExecute) { return false; } if (source) { shape = modeling.appendShape(source, shape, position, target); } else { isAttach = canExecute === 'attach'; shape = modeling.createShape(shape, position, target, isAttach); } // make sure we provide the actual attached // shape with the context so that selection and // other components can use it right after the create // operation ends context.shape = shape; }); eventBus.on('create.cleanup', function(event) { var context = event.context; if (context.visual) { svgRemove(context.visual); } }); // API this.start = function(event, shape, source) { dragging.init(event, 'create', { cursor: 'grabbing', autoActivate: true, data: { shape: shape, context: { shape: shape, source: source } } }); }; } Create.$inject = [ 'eventBus', 'dragging', 'rules', 'modeling', 'canvas', 'styles', 'graphicsFactory' ]; module.exports = Create; },{"279":279,"472":472,"474":474,"475":475,"478":478,"481":481}],157:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(162), _dereq_(233), _dereq_(227) ], create: [ 'type', _dereq_(156) ] }; },{"156":156,"162":162,"227":227,"233":233}],158:[function(_dereq_,module,exports){ 'use strict'; var sortBy = _dereq_(310), forEach = _dereq_(303), filter = _dereq_(301); var AXIS_DIMENSIONS = { horizontal: [ 'x', 'width' ], vertical: [ 'y', 'height' ] }; var THRESHOLD = 5; /** * Groups and filters elements and then trigger even distribution. */ function DistributeElements(modeling) { this._modeling = modeling; this._filters = []; // register filter for filtering big elements this.registerFilter(function(elements, axis, dimension) { var elementsSize = 0, numOfShapes = 0, avgDimension; forEach(elements, function(element) { if (element.waypoints || element.labelTarget) { return; } elementsSize += element[dimension]; numOfShapes += 1; }); avgDimension = Math.round(elementsSize / numOfShapes); return filter(elements, function(element) { return element[dimension] < (avgDimension + 50); }); }); } module.exports = DistributeElements; DistributeElements.$inject = [ 'modeling' ]; /** * Registers filter functions that allow external parties to filter * out certain elements. * * @param {Function} filterFn */ DistributeElements.prototype.registerFilter = function(filterFn) { if (typeof filterFn !== 'function') { throw new Error('the filter has to be a function'); } this._filters.push(filterFn); }; /** * Distributes the elements with a given orientation * * @param {Array} elements [description] * @param {String} orientation [description] */ DistributeElements.prototype.trigger = function(elements, orientation) { var modeling = this._modeling; var groups, distributableElements; if (elements.length < 3) { return; } this._setOrientation(orientation); distributableElements = this._filterElements(elements); groups = this._createGroups(distributableElements); // nothing to distribute if (groups.length <= 2) { return; } modeling.distributeElements(groups, this._axis, this._dimension); return groups; }; /** * Filters the elements with provided filters by external parties * * @param {Array[Elements]} elements * * @return {Array[Elements]} */ DistributeElements.prototype._filterElements = function(elements) { var filters = this._filters, axis = this._axis, dimension = this._dimension, distributableElements = [].concat(elements); if (!filters.length) { return elements; } forEach(filters, function(filterFn) { distributableElements = filterFn(distributableElements, axis, dimension); }); return distributableElements; }; /** * Create range (min, max) groups. Also tries to group elements * together that share the same range. * * @example * var distributableElements = [ * { * range: { * min: 100, * max: 200 * }, * elements: [ { id: 'shape1', .. }] * } * ] * * @param {Array} elements * * @return {Array[Objects]} */ DistributeElements.prototype._createGroups = function(elements) { var rangeGroups = [], axis = this._axis, dimension = this._dimension; if (!axis) { throw new Error('must have a defined "axis" and "dimension"'); } // sort by 'left->right' or 'top->bottom' var sortedElements = sortBy(elements, axis); forEach(sortedElements, function(element, idx) { var elementRange = this._findRange(element, axis, dimension), range; var previous = rangeGroups[rangeGroups.length - 1]; if (previous && this._hasIntersection(previous.range, elementRange)) { rangeGroups[rangeGroups.length - 1].elements.push(element); } else { range = { range: elementRange, elements: [ element ] }; rangeGroups.push(range); } }, this); return rangeGroups; }; /** * Maps a direction to the according axis and dimension * * @param {String} direction 'horizontal' or 'vertical' */ DistributeElements.prototype._setOrientation = function(direction) { var orientation = AXIS_DIMENSIONS[direction]; this._axis = orientation[0]; this._dimension = orientation[1]; }; /** * Checks if the two ranges intercept each other * * @param {Object} rangeA {min, max} * @param {Object} rangeB {min, max} * * @return {Boolean} */ DistributeElements.prototype._hasIntersection = function(rangeA, rangeB) { return Math.max(rangeA.min, rangeA.max) >= Math.min(rangeB.min, rangeB.max) && Math.min(rangeA.min, rangeA.max) <= Math.max(rangeB.min, rangeB.max); }; /** * Returns the min and max values for an element * * @param {[type]} element [description] * @param {[type]} axis [description] * @param {[type]} dimension [description] * * @return {[type]} [description] */ DistributeElements.prototype._findRange = function(element) { var axis = element[this._axis], dimension = element[this._dimension]; return { min: axis + THRESHOLD, max: axis + dimension - THRESHOLD }; }; },{"301":301,"303":303,"310":310}],159:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'distributeElements' ], distributeElements: [ 'type', _dereq_(158) ] }; },{"158":158}],160:[function(_dereq_,module,exports){ 'use strict'; /* global TouchEvent */ var round = Math.round; var assign = _dereq_(431); var domEvent = _dereq_(450), Event = _dereq_(267), ClickTrap = _dereq_(262), Cursor = _dereq_(265); var EventBusEvent = _dereq_(125).Event; var DRAG_ACTIVE_CLS = 'djs-drag-active'; function suppressEvent(event) { if (event instanceof MouseEvent) { Event.stopEvent(event, true); } else { Event.preventDefault(event); } } function getLength(point) { return Math.sqrt(Math.pow(point.x, 2) + Math.pow(point.y, 2)); } function substract(p1, p2) { return { x: p1.x - p2.x, y: p1.y - p2.y }; } /** * A helper that fires canvas localized drag events and realizes * the general "drag-and-drop" look and feel. * * Calling {@link Dragging#activate} activates dragging on a canvas. * * It provides the following: * * * emits life cycle events, namespaced with a prefix assigned * during dragging activation * * sets and restores the cursor * * sets and restores the selection * * ensures there can be only one drag operation active at a time * * Dragging may be canceled manually by calling {@link Dragging#cancel} * or by pressing ESC. * * * ## Life-cycle events * * Dragging can be in three different states, off, initialized * and active. * * (1) off: no dragging operation is in progress * (2) initialized: a new drag operation got initialized but not yet * started (i.e. because of no initial move) * (3) started: dragging is in progress * * Eventually dragging will be off again after a drag operation has * been ended or canceled via user click or ESC key press. * * To indicate transitions between these states dragging emits generic * life-cycle events with the `drag.` prefix _and_ events namespaced * to a prefix choosen by a user during drag initialization. * * The following events are emitted (appropriately prefixed) via * the {@link EventBus}. * * * `init` * * `start` * * `move` * * `end` * * `ended` (dragging already in off state) * * `cancel` (only if previously started) * * `canceled` (dragging already in off state, only if previously started) * * `cleanup` * * * @example * * function MyDragComponent(eventBus, dragging) { * * eventBus.on('mydrag.start', function(event) { * console.log('yes, we start dragging'); * }); * * eventBus.on('mydrag.move', function(event) { * console.log('canvas local coordinates', event.x, event.y, event.dx, event.dy); * * // local drag data is passed with the event * event.context.foo; // "BAR" * * // the original mouse event, too * event.originalEvent; // MouseEvent(...) * }); * * eventBus.on('element.click', function(event) { * dragging.init(event, 'mydrag', { * cursor: 'grabbing', * data: { * context: { * foo: "BAR" * } * } * }); * }); * } */ function Dragging(eventBus, canvas, selection) { var defaultOptions = { threshold: 5, trapClick: true }; // the currently active drag operation // dragging is active as soon as this context exists. // // it is visually _active_ only when a context.active flag is set to true. var context; /* convert a global event into local coordinates */ function toLocalPoint(globalPosition) { var viewbox = canvas.viewbox(); var clientRect = canvas._container.getBoundingClientRect(); return { x: viewbox.x + round((globalPosition.x - clientRect.left) / viewbox.scale), y: viewbox.y + round((globalPosition.y - clientRect.top) / viewbox.scale) }; } // helpers function fire(type, dragContext) { dragContext = dragContext || context; var event = assign(new EventBusEvent(), dragContext.payload, dragContext.data); // default integration if (eventBus.fire('drag.' + type, event) === false) { return false; } return eventBus.fire(dragContext.prefix + '.' + type, event); } // event listeners function move(event, activate) { var payload = context.payload, displacement = context.displacement; var globalStart = context.globalStart, globalCurrent = Event.toPoint(event), globalDelta = substract(globalCurrent, globalStart); var localStart = context.localStart, localCurrent = toLocalPoint(globalCurrent), localDelta = substract(localCurrent, localStart); // activate context explicitly or once threshold is reached if (!context.active && (activate || getLength(globalDelta) > context.threshold)) { // fire start event with original // starting coordinates assign(payload, { x: localStart.x + displacement.x, y: localStart.y + displacement.y, dx: 0, dy: 0 }, { originalEvent: event }); if (false === fire('start')) { return cancel(); } context.active = true; // unset selection and remember old selection // the previous (old) selection will always passed // with the event via the event.previousSelection property if (!context.keepSelection) { payload.previousSelection = selection.get(); selection.select(null); } // allow custom cursor if (context.cursor) { Cursor.set(context.cursor); } // indicate dragging via marker on root element canvas.addMarker(canvas.getRootElement(), DRAG_ACTIVE_CLS); } suppressEvent(event); if (context.active) { // update payload with actual coordinates assign(payload, { x: localCurrent.x + displacement.x, y: localCurrent.y + displacement.y, dx: localDelta.x, dy: localDelta.y }, { originalEvent: event }); // emit move event fire('move'); } } function end(event) { var previousContext, returnValue = true; if (context.active) { if (event) { context.payload.originalEvent = event; // suppress original event (click, ...) // because we just ended a drag operation suppressEvent(event); } // implementations may stop restoring the // original state (selections, ...) by preventing the // end events default action returnValue = fire('end'); } if (returnValue === false) { fire('rejected'); } previousContext = cleanup(returnValue !== true); // last event to be fired when all drag operations are done // at this point in time no drag operation is in progress anymore fire('ended', previousContext); } // cancel active drag operation if the user presses // the ESC key on the keyboard function checkCancel(event) { if (event.which === 27) { event.preventDefault(); cancel(); } } // prevent ghost click that might occur after a finished // drag and drop session function trapClickAndEnd(event) { var untrap; // trap the click in case we are part of an active // drag operation. This will effectively prevent // the ghost click that cannot be canceled otherwise. if (context.active) { untrap = ClickTrap.install(); setTimeout(untrap, 400); } end(event); } function trapTouch(event) { move(event); } // update the drag events hover (djs.model.Base) and hoverGfx (Snap) // properties during hover and out and fire {prefix}.hover and {prefix}.out properties // respectively function hover(event) { var payload = context.payload; payload.hoverGfx = event.gfx; payload.hover = event.element; fire('hover'); } function out(event) { fire('out'); var payload = context.payload; payload.hoverGfx = null; payload.hover = null; } // life-cycle methods function cancel(restore) { var previousContext; if (!context) { return; } var wasActive = context.active; if (wasActive) { fire('cancel'); } previousContext = cleanup(restore); if (wasActive) { // last event to be fired when all drag operations are done // at this point in time no drag operation is in progress anymore fire('canceled', previousContext); } } function cleanup(restore) { var previousContext, endDrag; fire('cleanup'); // reset cursor Cursor.unset(); if (context.trapClick) { endDrag = trapClickAndEnd; } else { endDrag = end; } // reset dom listeners domEvent.unbind(document, 'mousemove', move); domEvent.unbind(document, 'mousedown', endDrag, true); domEvent.unbind(document, 'mouseup', endDrag, true); domEvent.unbind(document, 'keyup', checkCancel); domEvent.unbind(document, 'touchstart', trapTouch, true); domEvent.unbind(document, 'touchcancel', cancel, true); domEvent.unbind(document, 'touchmove', move, true); domEvent.unbind(document, 'touchend', end, true); eventBus.off('element.hover', hover); eventBus.off('element.out', out); // remove drag marker on root element canvas.removeMarker(canvas.getRootElement(), DRAG_ACTIVE_CLS); // restore selection, unless it has changed var previousSelection = context.payload.previousSelection; if (restore !== false && previousSelection && !selection.get().length) { selection.select(previousSelection); } previousContext = context; context = null; return previousContext; } /** * Initialize a drag operation. * * If `localPosition` is given, drag events will be emitted * relative to it. * * @param {MouseEvent|TouchEvent} [event] * @param {Point} [localPosition] actual diagram local position this drag operation should start at * @param {String} prefix * @param {Object} [options] */ function init(event, relativeTo, prefix, options) { // only one drag operation may be active, at a time if (context) { cancel(false); } if (typeof relativeTo === 'string') { options = prefix; prefix = relativeTo; relativeTo = null; } options = assign({}, defaultOptions, options || {}); var data = options.data || {}, originalEvent, globalStart, endDrag; if (options.trapClick) { endDrag = trapClickAndEnd; } else { endDrag = end; } if (event) { originalEvent = Event.getOriginal(event) || event; globalStart = Event.toPoint(event); suppressEvent(event); } else { originalEvent = null; globalStart = { x: 0, y: 0 }; } var localStart = toLocalPoint(globalStart); if (!relativeTo) { relativeTo = localStart; } context = assign({ prefix: prefix, data: data, payload: {}, globalStart: globalStart, displacement: substract(relativeTo, localStart), localStart: localStart }, options); // skip dom registration if trigger // is set to manual (during testing) if (!options.manual) { // add dom listeners // fixes TouchEvent not being available on desktop Firefox if (typeof TouchEvent !== 'undefined' && originalEvent instanceof TouchEvent) { domEvent.bind(document, 'touchstart', trapTouch, true); domEvent.bind(document, 'touchcancel', cancel, true); domEvent.bind(document, 'touchmove', move, true); domEvent.bind(document, 'touchend', end, true); } else { // assume we use the mouse to interact per default domEvent.bind(document, 'mousemove', move); domEvent.bind(document, 'mousedown', endDrag, true); domEvent.bind(document, 'mouseup', endDrag, true); } domEvent.bind(document, 'keyup', checkCancel); eventBus.on('element.hover', hover); eventBus.on('element.out', out); } fire('init'); if (options.autoActivate) { move(event, true); } } // cancel on diagram destruction eventBus.on('diagram.destroy', cancel); // API this.init = init; this.move = move; this.hover = hover; this.out = out; this.end = end; this.cancel = cancel; // for introspection this.context = function() { return context; }; this.setOptions = function(options) { assign(defaultOptions, options); }; } Dragging.$inject = [ 'eventBus', 'canvas', 'selection' ]; module.exports = Dragging; },{"125":125,"262":262,"265":265,"267":267,"431":431,"450":450}],161:[function(_dereq_,module,exports){ 'use strict'; var domClosest = _dereq_(447); var Event = _dereq_(267); function getGfx(target) { var node = domClosest(target, 'svg, .djs-element', true); return node; } /** * Browsers may swallow the hover event if users are to * fast with the mouse. * * @see http://stackoverflow.com/questions/7448468/why-cant-i-reliably-capture-a-mouseout-event * * The fix implemented in this component ensure that we * have a hover state after a successive drag.move event. * * @param {EventBus} eventBus * @param {Dragging} dragging * @param {ElementRegistry} elementRegistry */ function HoverFix(eventBus, dragging, elementRegistry) { var self = this; // we wait for a specific sequence of events before // emitting a fake drag.hover event. // // Event Sequence: // // drag.start // drag.move // drag.move >> ensure we are hovering // eventBus.on('drag.start', function(event) { eventBus.once('drag.move', function() { eventBus.once('drag.move', function(event) { self.ensureHover(event); }); }); }); /** * Make sure we are god damn hovering! * * @param {Event} dragging event */ this.ensureHover = function(event) { if (event.hover) { return; } var originalEvent = event.originalEvent, position, target, element, gfx; if (!(originalEvent instanceof MouseEvent)) { return; } position = Event.toPoint(originalEvent); // damn expensive operation, ouch! target = document.elementFromPoint(position.x, position.y); gfx = getGfx(target); if (gfx) { element = elementRegistry.get(gfx); dragging.hover({ element: element, gfx: gfx }); } }; } HoverFix.$inject = [ 'eventBus', 'dragging', 'elementRegistry' ]; module.exports = HoverFix; },{"267":267,"447":447}],162:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'hoverFix' ], __depends__: [ _dereq_(233) ], dragging: [ 'type', _dereq_(160) ], hoverFix: [ 'type', _dereq_(161) ] }; },{"160":160,"161":161,"233":233}],163:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), isArray = _dereq_(422); var NOT_REGISTERED_ERROR = 'is not a registered action', IS_REGISTERED_ERROR = 'is already registered'; /** * An interface that provides access to modeling actions by decoupling * the one who requests the action to be triggered and the trigger itself. * * It's possible to add new actions by registering them with ´registerAction´ and likewise * unregister existing ones with ´unregisterAction´. * */ function EditorActions(eventBus, commandStack, modeling, selection, zoomScroll, copyPaste, canvas, rules, mouseTracking) { this._actions = { undo: function() { commandStack.undo(); }, redo: function() { commandStack.redo(); }, copy: function() { var selectedElements = selection.get(); copyPaste.copy(selectedElements); }, paste: function() { var context = mouseTracking.getHoverContext(); copyPaste.paste(context); }, stepZoom: function(opts) { zoomScroll.stepZoom(opts.value); }, zoom: function(opts) { canvas.zoom(opts.value); }, removeSelection: function() { var selectedElements = selection.get(); if (selectedElements.length) { var allowed = rules.allowed('elements.delete', { elements: selectedElements }), removableElements; if (allowed === false) { return; } else if (isArray(allowed)) { removableElements = allowed; } else { removableElements = selectedElements; } if (removableElements.length) { modeling.removeElements(removableElements.slice()); } } }, moveCanvas: function(opts) { var dx = 0, dy = 0, invertY = opts.invertY, speed = opts.speed; var actualSpeed = speed / Math.min(Math.sqrt(canvas.viewbox().scale), 1); switch (opts.direction) { case 'left': // Left dx = actualSpeed; break; case 'up': // Up dy = actualSpeed; break; case 'right': // Right dx = -actualSpeed; break; case 'down': // Down dy = -actualSpeed; break; } if (dy && invertY) { dy = -dy; } canvas.scroll({ dx: dx, dy: dy }); } }; } EditorActions.$inject = [ 'eventBus', 'commandStack', 'modeling', 'selection', 'zoomScroll', 'copyPaste', 'canvas', 'rules', 'mouseTracking' ]; module.exports = EditorActions; /** * Triggers a registered action * * @param {String} action * @param {Object} opts * * @return {Unknown} Returns what the registered listener returns */ EditorActions.prototype.trigger = function(action, opts) { if (!this._actions[action]) { throw error(action, NOT_REGISTERED_ERROR); } return this._actions[action](opts); }; /** * Registers a collections of actions. * The key of the object will be the name of the action. * * @example * ´´´ * var actions = { * spaceTool: function() { * spaceTool.activateSelection(); * }, * lassoTool: function() { * lassoTool.activateSelection(); * } * ]; * * editorActions.register(actions); * * editorActions.isRegistered('spaceTool'); // true * ´´´ * * @param {Object} actions */ EditorActions.prototype.register = function(actions, listener) { if (typeof actions === 'string') { return this._registerAction(actions, listener); } forEach(actions, function(listener, action) { this._registerAction(action, listener); }, this); }; /** * Registers a listener to an action key * * @param {String} action * @param {Function} listener */ EditorActions.prototype._registerAction = function(action, listener) { if (this.isRegistered(action)) { throw error(action, IS_REGISTERED_ERROR); } this._actions[action] = listener; }; /** * Unregister an existing action * * @param {String} action */ EditorActions.prototype.unregister = function(action) { if (!this.isRegistered(action)) { throw error(action, NOT_REGISTERED_ERROR); } this._actions[action] = undefined; }; /** * Returns the number of actions that are currently registered * * @return {Number} */ EditorActions.prototype.length = function() { return Object.keys(this._actions).length; }; /** * Checks wether the given action is registered * * @param {String} action * * @return {Boolean} */ EditorActions.prototype.isRegistered = function(action) { return !!this._actions[action]; }; function error(action, message) { return new Error(action + ' ' + message); } },{"303":303,"422":422}],164:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(233), _dereq_(155), _dereq_(260) ], __init__: [ 'editorActions' ], editorActions: [ 'type', _dereq_(163) ] }; },{"155":155,"163":163,"233":233,"260":260}],165:[function(_dereq_,module,exports){ 'use strict'; var MARKER_OK = 'connect-ok', MARKER_NOT_OK = 'connect-not-ok'; function GlobalConnect(eventBus, dragging, connect, canvas, toolManager) { var self = this; this._dragging = dragging; toolManager.registerTool('global-connect', { tool: 'global-connect', dragging: 'global-connect.drag' }); eventBus.on('global-connect.hover', function(event) { var context = event.context, startTarget = event.hover; var canStartConnect = context.canStartConnect = self.canStartConnect(startTarget); // simply ignore hover if (canStartConnect === null) { return; } context.startTarget = startTarget; canvas.addMarker(startTarget, canStartConnect ? MARKER_OK : MARKER_NOT_OK); }); eventBus.on([ 'global-connect.out', 'global-connect.cleanup' ], function(event) { var startTarget = event.context.startTarget, canStartConnect = event.context.canStartConnect; if (startTarget) { canvas.removeMarker(startTarget, canStartConnect ? MARKER_OK : MARKER_NOT_OK); } }); eventBus.on([ 'global-connect.ended' ], function(event) { var context = event.context, startTarget = context.startTarget, startPosition = { x: event.x, y: event.y }; var canStartConnect = self.canStartConnect(startTarget); if (!canStartConnect) { return; } eventBus.once('element.out', function() { eventBus.once([ 'connect.ended', 'connect.canceled' ], function() { eventBus.fire('global-connect.drag.ended'); }); connect.start(null, startTarget, startPosition); }); return false; }); } GlobalConnect.$inject = [ 'eventBus', 'dragging', 'connect', 'canvas', 'toolManager' ]; module.exports = GlobalConnect; /** * Initiates tool activity. */ GlobalConnect.prototype.start = function(event) { this._dragging.init(event, 'global-connect', { trapClick: false, data: { context: {} } }); }; GlobalConnect.prototype.toggle = function() { if (this.isActive()) { this._dragging.cancel(); } else { this.start(); } }; GlobalConnect.prototype.isActive = function() { var context = this._dragging.context(); return context && /^global-connect/.test(context.prefix); }; GlobalConnect.prototype.registerProvider = function(provider) { this._provider = provider; }; /** * Check if source shape can initiate connection. * * @param {Shape} startTarget * @return {Boolean} */ GlobalConnect.prototype.canStartConnect = function(startTarget) { return this._provider.canStartConnect(startTarget); }; },{}],166:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(151), _dereq_(227), _dereq_(162), _dereq_(242) ], globalConnect: [ 'type', _dereq_(165) ] }; },{"151":151,"162":162,"165":165,"227":227,"242":242}],167:[function(_dereq_,module,exports){ 'use strict'; var hasPrimaryModifier = _dereq_(274).hasPrimaryModifier; var HIGH_PRIORITY = 1500; var HAND_CURSOR = 'grab'; function HandTool(eventBus, canvas, dragging, toolManager) { this._dragging = dragging; toolManager.registerTool('hand', { tool: 'hand', dragging: 'hand.move' }); eventBus.on('element.mousedown', HIGH_PRIORITY, function(event) { if (hasPrimaryModifier(event)) { this.activateMove(event.originalEvent); return false; } }, this); eventBus.on('hand.end', function(event) { var target = event.originalEvent.target; // only reactive on diagram click // on some occasions, event.hover is not set and we have to check if the target is an svg if (!event.hover && !(target instanceof SVGElement)) { return false; } eventBus.once('hand.ended', function() { this.activateMove(event.originalEvent, { reactivate: true }); }, this); }, this); eventBus.on('hand.move.move', function(event) { var scale = canvas.viewbox().scale; canvas.scroll({ dx: event.dx * scale, dy: event.dy * scale }); }); eventBus.on('hand.move.end', function(event) { var context = event.context, reactivate = context.reactivate; // Don't reactivate if the user is using the keyboard keybinding if (!hasPrimaryModifier(event) && reactivate) { eventBus.once('hand.move.ended', function(event) { this.activateHand(event.originalEvent, true, true); }, this); } return false; }, this); } HandTool.$inject = [ 'eventBus', 'canvas', 'dragging', 'toolManager' ]; module.exports = HandTool; HandTool.prototype.activateMove = function(event, autoActivate, context) { if (typeof autoActivate === 'object') { context = autoActivate; autoActivate = false; } this._dragging.init(event, 'hand.move', { autoActivate: autoActivate, cursor: HAND_CURSOR, data: { context: context || {} } }); }; HandTool.prototype.activateHand = function(event, autoActivate, reactivate) { this._dragging.init(event, 'hand', { trapClick: false, autoActivate: autoActivate, cursor: HAND_CURSOR, data: { context: { reactivate: reactivate } } }); }; HandTool.prototype.toggle = function() { if (this.isActive()) { this._dragging.cancel(); } else { this.activateHand(); } }; HandTool.prototype.isActive = function() { var context = this._dragging.context(); return context && /^hand/.test(context.prefix); }; },{"274":274}],168:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __depends__: [ _dereq_(242) ], __init__: [ 'handTool' ], handTool: [ 'type', _dereq_(167) ] }; },{"167":167,"242":242}],169:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), domDelegate = _dereq_(448); var isPrimaryButton = _dereq_(274).isPrimaryButton; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478); var domQuery = _dereq_(452); var renderUtil = _dereq_(278); var createLine = renderUtil.createLine, updateLine = renderUtil.updateLine; var LOW_PRIORITY = 500; /** * A plugin that provides interaction events for diagram elements. * * It emits the following events: * * * element.hover * * element.out * * element.click * * element.dblclick * * element.mousedown * * Each event is a tuple { element, gfx, originalEvent }. * * Canceling the event via Event#preventDefault() prevents the original DOM operation. * * @param {EventBus} eventBus */ function InteractionEvents(eventBus, elementRegistry, styles) { var HIT_STYLE = styles.cls('djs-hit', [ 'no-fill', 'no-border' ], { stroke: 'white', strokeWidth: 15 }); /** * Fire an interaction event. * * @param {String} type local event name, e.g. element.click. * @param {DOMEvent} event native event * @param {djs.model.Base} [element] the diagram element to emit the event on; * defaults to the event target */ function fire(type, event, element) { // only react on left mouse button interactions // for interaction events if (!isPrimaryButton(event)) { return; } var target, gfx, returnValue; if (!element) { target = event.delegateTarget || event.target; if (target) { gfx = target; element = elementRegistry.get(gfx); } } else { gfx = elementRegistry.getGraphics(element); } if (!gfx || !element) { return; } returnValue = eventBus.fire(type, { element: element, gfx: gfx, originalEvent: event }); if (returnValue === false) { event.stopPropagation(); event.preventDefault(); } } // TODO(nikku): document this var handlers = {}; function mouseHandler(type) { var fn = handlers[type]; if (!fn) { fn = handlers[type] = function(event) { fire(type, event); }; } return fn; } var bindings = { mouseover: 'element.hover', mouseout: 'element.out', click: 'element.click', dblclick: 'element.dblclick', mousedown: 'element.mousedown', mouseup: 'element.mouseup' }; ///// manual event trigger /** * Trigger an interaction event (based on a native dom event) * on the target shape or connection. * * @param {String} eventName the name of the triggered DOM event * @param {MouseEvent} event * @param {djs.model.Base} targetElement */ function triggerMouseEvent(eventName, event, targetElement) { // i.e. element.mousedown... var localEventName = bindings[eventName]; if (!localEventName) { throw new Error('unmapped DOM event name <' + eventName + '>'); } return fire(localEventName, event, targetElement); } var elementSelector = 'svg, .djs-element'; ///// event registration function registerEvent(node, event, localEvent) { var handler = mouseHandler(localEvent); handler.$delegate = domDelegate.bind(node, elementSelector, event, handler); } function unregisterEvent(node, event, localEvent) { domDelegate.unbind(node, event, mouseHandler(localEvent).$delegate); } function registerEvents(svg) { forEach(bindings, function(val, key) { registerEvent(svg, key, val); }); } function unregisterEvents(svg) { forEach(bindings, function(val, key) { unregisterEvent(svg, key, val); }); } eventBus.on('canvas.destroy', function(event) { unregisterEvents(event.svg); }); eventBus.on('canvas.init', function(event) { registerEvents(event.svg); }); eventBus.on([ 'shape.added', 'connection.added' ], function(event) { var element = event.element, gfx = event.gfx, hit; if (element.waypoints) { hit = createLine(element.waypoints); } else { hit = svgCreate('rect'); svgAttr(hit, { x: 0, y: 0, width: element.width, height: element.height }); } svgAttr(hit, HIT_STYLE); svgAppend(gfx, hit); }); // Update djs-hit on change. // A low priortity is necessary, because djs-hit of labels has to be updated // after the label bounds have been updated in the renderer. eventBus.on('shape.changed', LOW_PRIORITY, function(event) { var element = event.element, gfx = event.gfx, hit = domQuery('.djs-hit', gfx); svgAttr(hit, { width: element.width, height: element.height }); }); eventBus.on('connection.changed', function(event) { var element = event.element, gfx = event.gfx, hit = domQuery('.djs-hit', gfx); updateLine(hit, element.waypoints); }); // API this.fire = fire; this.triggerMouseEvent = triggerMouseEvent; this.mouseHandler = mouseHandler; this.registerEvent = registerEvent; this.unregisterEvent = unregisterEvent; } InteractionEvents.$inject = [ 'eventBus', 'elementRegistry', 'styles' ]; module.exports = InteractionEvents; /** * An event indicating that the mouse hovered over an element * * @event element.hover * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ /** * An event indicating that the mouse has left an element * * @event element.out * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ /** * An event indicating that the mouse has clicked an element * * @event element.click * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ /** * An event indicating that the mouse has double clicked an element * * @event element.dblclick * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ /** * An event indicating that the mouse has gone down on an element. * * @event element.mousedown * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ /** * An event indicating that the mouse has gone up on an element. * * @event element.mouseup * * @type {Object} * @property {djs.model.Base} element * @property {SVGElement} gfx * @property {Event} originalEvent */ },{"274":274,"278":278,"303":303,"448":448,"452":452,"472":472,"474":474,"478":478}],170:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'interactionEvents' ], interactionEvents: [ 'type', _dereq_(169) ] }; },{"169":169}],171:[function(_dereq_,module,exports){ 'use strict'; var domEvent = _dereq_(450), domMatches = _dereq_(451); /** * A keyboard abstraction that may be activated and * deactivated by users at will, consuming key events * and triggering diagram actions. * * The implementation fires the following key events that allow * other components to hook into key handling: * * - keyboard.bind * - keyboard.unbind * - keyboard.init * - keyboard.destroy * * All events contain the fields (node, listeners). * * A default binding for the keyboard may be specified via the * `keyboard.bindTo` configuration option. * * @param {Config} config * @param {EventBus} eventBus * @param {EditorActions} editorActions */ function Keyboard(config, eventBus, editorActions) { var self = this; this._config = config || {}; this._eventBus = eventBus; this._editorActions = editorActions; this._listeners = []; // our key handler is a singleton that passes // (keycode, modifiers) to each listener. // // listeners must indicate that they handled a key event // by returning true. This stops the event propagation. // this._keyHandler = function(event) { var i, l, target = event.target, listeners = self._listeners, code = event.keyCode || event.charCode || -1; if (target && (domMatches(target, 'input, textarea') || target.contentEditable === 'true')) { return; } for (i = 0; (l = listeners[i]); i++) { if (l(code, event)) { event.preventDefault(); event.stopPropagation(); } } }; // properly clean dom registrations eventBus.on('diagram.destroy', function() { self._fire('destroy'); self.unbind(); self._listeners = null; }); eventBus.on('diagram.init', function() { self._fire('init'); if (config && config.bindTo) { self.bind(config.bindTo); } }); this._init(); } Keyboard.$inject = [ 'config.keyboard', 'eventBus', 'editorActions' ]; module.exports = Keyboard; Keyboard.prototype.bind = function(node) { // make sure that the keyboard is only bound once to the DOM this.unbind(); this._node = node; // bind key events domEvent.bind(node, 'keydown', this._keyHandler, true); this._fire('bind'); }; Keyboard.prototype.getBinding = function() { return this._node; }; Keyboard.prototype.unbind = function() { var node = this._node; if (node) { this._fire('unbind'); // unbind key events domEvent.unbind(node, 'keydown', this._keyHandler, true); } this._node = null; }; Keyboard.prototype._fire = function(event) { this._eventBus.fire('keyboard.' + event, { node: this._node, listeners: this._listeners }); }; Keyboard.prototype._init = function() { var listeners = this._listeners; var editorActions = this._editorActions, config = this._config; // init default listeners // undo // (CTRL|CMD) + Z function undo(key, modifiers) { if (isCmd(modifiers) && !isShift(modifiers) && key === 90) { editorActions.trigger('undo'); return true; } } // redo // CTRL + Y // CMD + SHIFT + Z function redo(key, modifiers) { if (isCmd(modifiers) && (key === 89 || (key === 90 && isShift(modifiers)))) { editorActions.trigger('redo'); return true; } } // copy // CTRL/CMD + C function copy(key, modifiers) { if (isCmd(modifiers) && (key === 67)) { editorActions.trigger('copy'); return true; } } // paste // CTRL/CMD + V function paste(key, modifiers) { if (isCmd(modifiers) && (key === 86)) { editorActions.trigger('paste'); return true; } } /** * zoom in one step * CTRL + + * * 107 = numpad plus * 187 = regular plus * 171 = regular plus in Firefox (german keyboard layout) * 61 = regular plus in Firefox (US keyboard layout) */ function zoomIn(key, modifiers) { if ((key === 107 || key === 187 || key === 171 || key === 61) && isCmd(modifiers)) { editorActions.trigger('stepZoom', { value: 1 }); return true; } } /** * zoom out one step * CTRL + - * * 109 = numpad minus * 189 = regular minus * 173 = regular minus in Firefox (US and german keyboard layout) */ function zoomOut(key, modifiers) { if ((key === 109 || key === 189 || key === 173) && isCmd(modifiers)) { editorActions.trigger('stepZoom', { value: -1 }); return true; } } /** * zoom to the default level * CTRL + 0 * * 96 = numpad zero * 48 = regular zero */ function zoomDefault(key, modifiers) { if ((key === 96 || key === 48) && isCmd(modifiers)) { editorActions.trigger('zoom', { value: 1 }); return true; } } // delete selected element // DEL function removeSelection(key, modifiers) { if (key === 46) { editorActions.trigger('removeSelection'); return true; } } // move canvas left // left arrow // // 37 = Left // 38 = Up // 39 = Right // 40 = Down function moveCanvas(key, modifiers) { if ([37, 38, 39, 40].indexOf(key) >= 0) { var opts = { invertY: config.invertY, speed: (config.speed || 50) }; switch (key) { case 37: // Left opts.direction = 'left'; break; case 38: // Up opts.direction = 'up'; break; case 39: // Right opts.direction = 'right'; break; case 40: // Down opts.direction = 'down'; break; } editorActions.trigger('moveCanvas', opts); return true; } } listeners.push(undo); listeners.push(redo); listeners.push(copy); listeners.push(paste); listeners.push(removeSelection); listeners.push(zoomIn); listeners.push(zoomOut); listeners.push(zoomDefault); listeners.push(moveCanvas); }; /** * Add a listener function that is notified with (key, modifiers) whenever * the keyboard is bound and the user presses a key. * * @param {Function} listenerFn */ Keyboard.prototype.addListener = function(listenerFn) { this._listeners.push(listenerFn); }; Keyboard.prototype.hasModifier = hasModifier; Keyboard.prototype.isCmd = isCmd; Keyboard.prototype.isShift = isShift; function hasModifier(modifiers) { return (modifiers.ctrlKey || modifiers.metaKey || modifiers.shiftKey || modifiers.altKey); } function isCmd(modifiers) { return modifiers.ctrlKey || modifiers.metaKey; } function isShift(modifiers) { return modifiers.shiftKey; } },{"450":450,"451":451}],172:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'keyboard' ], keyboard: [ 'type', _dereq_(171) ] }; },{"171":171}],173:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), filter = _dereq_(301), inherits = _dereq_(289); var LOW_PRIORITY = 250, HIGH_PRIORITY = 1400; var CommandInterceptor = _dereq_(119); /** * A handler that makes sure labels are properly moved with * their label targets. */ function LabelSupport(eventBus, modeling, movePreview) { CommandInterceptor.call(this, eventBus); // remove labels from the collection that are being // moved with other elements anyway eventBus.on('shape.move.start', HIGH_PRIORITY, function(e) { var context = e.context, shapes = context.shapes, validatedShapes = context.validatedShapes; context.shapes = removeLabels(shapes); context.validatedShapes = removeLabels(validatedShapes); }); // add labels to visual's group eventBus.on('shape.move.start', LOW_PRIORITY, function(e) { var context = e.context, shapes = context.shapes; var labels = []; forEach(shapes, function(element) { var label = element.label; if (label && !label.hidden && context.shapes.indexOf(label) === -1) { labels.push(label); } if (element.labelTarget) { labels.push(element); } }); forEach(labels, function(label) { movePreview.makeDraggable(context, label, true); }); }); // move labels after the other shapes are done moving this.postExecuted([ 'elements.move' ], function(e) { var context = e.context, closure = context.closure, enclosedElements = closure.enclosedElements; // ensure we move all labels with their respective elements // if they have not been moved already forEach(enclosedElements, function(element) { if (element.label && !enclosedElements[element.label.id]) { modeling.moveShape(element.label, context.delta, element.parent); } }); }); } inherits(LabelSupport, CommandInterceptor); LabelSupport.$inject = [ 'eventBus', 'modeling', 'movePreview' ]; module.exports = LabelSupport; /** * Return a filtered list of elements that do not * contain attached elements with hosts being part * of the selection. * * @param {Array} elements * * @return {Array} filtered */ function removeLabels(elements) { return filter(elements, function(element) { // filter out labels that are move together // with their label targets return elements.indexOf(element.labelTarget) === -1; }); } },{"119":119,"289":289,"301":301,"303":303}],174:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(206) ], __init__: [ 'labelSupport'], labelSupport: [ 'type', _dereq_(173) ] }; },{"173":173,"206":206}],175:[function(_dereq_,module,exports){ 'use strict'; var values = _dereq_(440); var getEnclosedElements = _dereq_(266).getEnclosedElements; var hasSecondaryModifier = _dereq_(274).hasSecondaryModifier; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var LASSO_TOOL_CURSOR = 'crosshair'; function LassoTool(eventBus, canvas, dragging, elementRegistry, selection, toolManager) { this._selection = selection; this._dragging = dragging; var self = this; // lasso visuals implementation /** * A helper that realizes the selection box visual */ var visuals = { create: function(context) { var container = canvas.getDefaultLayer(), frame; frame = context.frame = svgCreate('rect'); svgAttr(frame, { class: 'djs-lasso-overlay', width: 1, height: 1, x: 0, y: 0 }); svgAppend(container, frame); }, update: function(context) { var frame = context.frame, bbox = context.bbox; svgAttr(frame, { x: bbox.x, y: bbox.y, width: bbox.width, height: bbox.height }); }, remove: function(context) { if (context.frame) { svgRemove(context.frame); } } }; toolManager.registerTool('lasso', { tool: 'lasso.selection', dragging: 'lasso' }); eventBus.on('lasso.selection.end', function(event) { var target = event.originalEvent.target; // only reactive on diagram click // on some occasions, event.hover is not set and we have to check if the target is an svg if (!event.hover && !(target instanceof SVGElement)) { return; } eventBus.once('lasso.selection.ended', function() { self.activateLasso(event.originalEvent, true); }); }); // lasso interaction implementation eventBus.on('lasso.end', function(event) { var bbox = toBBox(event); var elements = elementRegistry.filter(function(element) { return element; }); self.select(elements, bbox); }); eventBus.on('lasso.start', function(event) { var context = event.context; context.bbox = toBBox(event); visuals.create(context); }); eventBus.on('lasso.move', function(event) { var context = event.context; context.bbox = toBBox(event); visuals.update(context); }); eventBus.on('lasso.cleanup', function(event) { var context = event.context; visuals.remove(context); }); // event integration eventBus.on('element.mousedown', 1500, function(event) { if (hasSecondaryModifier(event)) { self.activateLasso(event.originalEvent); event.stopPropagation(); } }); } LassoTool.$inject = [ 'eventBus', 'canvas', 'dragging', 'elementRegistry', 'selection', 'toolManager' ]; module.exports = LassoTool; LassoTool.prototype.activateLasso = function(event, autoActivate) { this._dragging.init(event, 'lasso', { autoActivate: autoActivate, cursor: LASSO_TOOL_CURSOR, data: { context: {} } }); }; LassoTool.prototype.activateSelection = function(event) { this._dragging.init(event, 'lasso.selection', { trapClick: false, cursor: LASSO_TOOL_CURSOR, data: { context: {} } }); }; LassoTool.prototype.select = function(elements, bbox) { var selectedElements = getEnclosedElements(elements, bbox); this._selection.select(values(selectedElements)); }; LassoTool.prototype.toggle = function() { if (this.isActive()) { this._dragging.cancel(); } else { this.activateSelection(); } }; LassoTool.prototype.isActive = function() { var context = this._dragging.context(); return context && /^lasso/.test(context.prefix); }; function toBBox(event) { var start = { x: event.x - event.dx, y: event.y - event.dy }; var end = { x: event.x, y: event.y }; var bbox; if ((start.x <= end.x && start.y < end.y) || (start.x < end.x && start.y <= end.y)) { bbox = { x: start.x, y: start.y, width: end.x - start.x, height: end.y - start.y }; } else if ((start.x >= end.x && start.y < end.y) || (start.x > end.x && start.y <= end.y)) { bbox = { x: end.x, y: start.y, width: start.x - end.x, height: end.y - start.y }; } else if ((start.x <= end.x && start.y > end.y) || (start.x < end.x && start.y >= end.y)) { bbox = { x: start.x, y: end.y, width: end.x - start.x, height: start.y - end.y }; } else if ((start.x >= end.x && start.y > end.y) || (start.x > end.x && start.y >= end.y)) { bbox = { x: end.x, y: end.y, width: start.x - end.x, height: start.y - end.y }; } else { bbox = { x: end.x, y: end.y, width: 0, height: 0 }; } return bbox; } },{"266":266,"274":274,"440":440,"472":472,"474":474,"478":478,"481":481}],176:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __depends__: [ _dereq_(242) ], __init__: [ 'lassoTool' ], lassoTool: [ 'type', _dereq_(175) ] }; },{"175":175,"242":242}],177:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var model = _dereq_(254); /** * The basic modeling entry point. * * @param {EventBus} eventBus * @param {ElementFactory} elementFactory * @param {CommandStack} commandStack */ function Modeling(eventBus, elementFactory, commandStack) { this._eventBus = eventBus; this._elementFactory = elementFactory; this._commandStack = commandStack; var self = this; eventBus.on('diagram.init', function() { // register modeling handlers self.registerHandlers(commandStack); }); } Modeling.$inject = [ 'eventBus', 'elementFactory', 'commandStack' ]; module.exports = Modeling; Modeling.prototype.getHandlers = function() { return { 'shape.append': _dereq_(179), 'shape.create': _dereq_(182), 'shape.delete': _dereq_(185), 'shape.move': _dereq_(190), 'shape.resize': _dereq_(195), 'shape.replace': _dereq_(194), 'shape.toggleCollapse': _dereq_(197), 'spaceTool': _dereq_(196), 'label.create': _dereq_(181), 'connection.create': _dereq_(180), 'connection.delete': _dereq_(183), 'connection.move': _dereq_(188), 'connection.layout': _dereq_(187), 'connection.updateWaypoints': _dereq_(199), 'connection.reconnectStart': _dereq_(193), 'connection.reconnectEnd': _dereq_(193), 'elements.move': _dereq_(189), 'elements.delete': _dereq_(184), 'elements.distribute': _dereq_(186), 'elements.align': _dereq_(178), 'element.updateAttachment': _dereq_(198), 'elements.paste': _dereq_(192) }; }; /** * Register handlers with the command stack * * @param {CommandStack} commandStack */ Modeling.prototype.registerHandlers = function(commandStack) { forEach(this.getHandlers(), function(handler, id) { commandStack.registerHandler(id, handler); }); }; ///// modeling helpers ///////////////////////////////////////// Modeling.prototype.moveShape = function(shape, delta, newParent, newParentIndex, hints) { if (typeof newParentIndex === 'object') { hints = newParentIndex; newParentIndex = null; } var context = { shape: shape, delta: delta, newParent: newParent, newParentIndex: newParentIndex, hints: hints || {} }; this._commandStack.execute('shape.move', context); }; /** * Update the attachment of the given shape. * * @param {djs.mode.Base} shape * @param {djs.model.Base} [newHost] */ Modeling.prototype.updateAttachment = function(shape, newHost) { var context = { shape: shape, newHost: newHost }; this._commandStack.execute('element.updateAttachment', context); }; /** * Move a number of shapes to a new target, either setting it as * the new parent or attaching it. * * @param {Array} shapes * @param {Point} delta * @param {djs.model.Base} [target] * @param {Boolean} [isAttach=false] * @param {Object} [hints] */ Modeling.prototype.moveElements = function(shapes, delta, target, isAttach, hints) { if (typeof isAttach === 'object') { hints = isAttach; isAttach = undefined; } var newParent = target, newHost; if (isAttach === true) { newHost = target; newParent = target.parent; } if (isAttach === false) { newHost = null; } var context = { shapes: shapes, delta: delta, newParent: newParent, newHost: newHost, hints: hints || {} }; this._commandStack.execute('elements.move', context); }; Modeling.prototype.moveConnection = function(connection, delta, newParent, newParentIndex, hints) { if (typeof newParentIndex === 'object') { hints = newParentIndex; newParentIndex = undefined; } var context = { connection: connection, delta: delta, newParent: newParent, newParentIndex: newParentIndex, hints: hints || {} }; this._commandStack.execute('connection.move', context); }; Modeling.prototype.layoutConnection = function(connection, hints) { var context = { connection: connection, hints: hints || {} }; this._commandStack.execute('connection.layout', context); }; /** * Create connection. * * @param {djs.model.Base} source * @param {djs.model.Base} target * @param {Number} [targetIndex] * @param {Object|djs.model.Connection} connection * @param {djs.model.Base} parent * @param {Object} hints * * @return {djs.model.Connection} the created connection. */ Modeling.prototype.createConnection = function(source, target, parentIndex, connection, parent, hints) { if (typeof parentIndex === 'object') { hints = parent; parent = connection; connection = parentIndex; parentIndex = undefined; } connection = this._create('connection', connection); var context = { source: source, target: target, parent: parent, parentIndex: parentIndex, connection: connection, hints: hints }; this._commandStack.execute('connection.create', context); return context.connection; }; Modeling.prototype.createShape = function(shape, position, parent, parentIndex, isAttach, hints) { if (typeof parentIndex !== 'number') { hints = isAttach; isAttach = parentIndex; } if (typeof isAttach !== 'boolean') { hints = isAttach; isAttach = false; } shape = this._create('shape', shape); var context = { position: position, shape: shape, parent: parent, parentIndex: parentIndex, host: shape.host, hints: hints || {} }; if (isAttach) { context.parent = parent.parent; context.host = parent; } this._commandStack.execute('shape.create', context); return context.shape; }; Modeling.prototype.createLabel = function(labelTarget, position, label, parent) { label = this._create('label', label); var context = { labelTarget: labelTarget, position: position, parent: parent || labelTarget.parent, shape: label }; this._commandStack.execute('label.create', context); return context.shape; }; Modeling.prototype.appendShape = function(source, shape, position, parent, connection, connectionParent) { shape = this._create('shape', shape); var context = { source: source, position: position, parent: parent, shape: shape, connection: connection, connectionParent: connectionParent }; this._commandStack.execute('shape.append', context); return context.shape; }; Modeling.prototype.removeElements = function(elements) { var context = { elements: elements }; this._commandStack.execute('elements.delete', context); }; Modeling.prototype.distributeElements = function(groups, axis, dimension) { var context = { groups: groups, axis: axis, dimension: dimension }; this._commandStack.execute('elements.distribute', context); }; Modeling.prototype.removeShape = function(shape, hints) { var context = { shape: shape, hints: hints || {} }; this._commandStack.execute('shape.delete', context); }; Modeling.prototype.removeConnection = function(connection, hints) { var context = { connection: connection, hints: hints || {} }; this._commandStack.execute('connection.delete', context); }; Modeling.prototype.replaceShape = function(oldShape, newShape, hints) { var context = { oldShape: oldShape, newData: newShape, hints: hints || {} }; this._commandStack.execute('shape.replace', context); return context.newShape; }; Modeling.prototype.pasteElements = function(tree, topParent, position) { var context = { tree: tree, topParent: topParent, position: position }; this._commandStack.execute('elements.paste', context); }; Modeling.prototype.alignElements = function(elements, alignment) { var context = { elements: elements, alignment: alignment }; this._commandStack.execute('elements.align', context); }; Modeling.prototype.resizeShape = function(shape, newBounds, minBounds) { var context = { shape: shape, newBounds: newBounds, minBounds: minBounds }; this._commandStack.execute('shape.resize', context); }; Modeling.prototype.createSpace = function(movingShapes, resizingShapes, delta, direction) { var context = { movingShapes: movingShapes, resizingShapes: resizingShapes, delta: delta, direction: direction }; this._commandStack.execute('spaceTool', context); }; Modeling.prototype.updateWaypoints = function(connection, newWaypoints, hints) { var context = { connection: connection, newWaypoints: newWaypoints, hints: hints || {} }; this._commandStack.execute('connection.updateWaypoints', context); }; Modeling.prototype.reconnectStart = function(connection, newSource, dockingOrPoints) { var context = { connection: connection, newSource: newSource, dockingOrPoints: dockingOrPoints }; this._commandStack.execute('connection.reconnectStart', context); }; Modeling.prototype.reconnectEnd = function(connection, newTarget, dockingOrPoints) { var context = { connection: connection, newTarget: newTarget, dockingOrPoints: dockingOrPoints }; this._commandStack.execute('connection.reconnectEnd', context); }; Modeling.prototype.connect = function(source, target, attrs, hints) { return this.createConnection(source, target, attrs || {}, source.parent, hints); }; Modeling.prototype._create = function(type, attrs) { if (attrs instanceof model.Base) { return attrs; } else { return this._elementFactory.create(type, attrs); } }; Modeling.prototype.toggleCollapse = function(shape, hints) { var context = { shape: shape, hints: hints || {} }; this._commandStack.execute('shape.toggleCollapse', context); }; },{"178":178,"179":179,"180":180,"181":181,"182":182,"183":183,"184":184,"185":185,"186":186,"187":187,"188":188,"189":189,"190":190,"192":192,"193":193,"194":194,"195":195,"196":196,"197":197,"198":198,"199":199,"254":254,"303":303}],178:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); /** * A handler that align elements in a certain way. * */ function AlignElements(modeling, canvas) { this._modeling = modeling; this._canvas = canvas; } AlignElements.$inject = [ 'modeling', 'canvas' ]; module.exports = AlignElements; AlignElements.prototype.preExecute = function(context) { var modeling = this._modeling; var elements = context.elements, alignment = context.alignment; forEach(elements, function(element) { var delta = { x: 0, y: 0 }; if (alignment.left) { delta.x = alignment.left - element.x; } else if (alignment.right) { delta.x = (alignment.right - element.width) - element.x; } else if (alignment.center) { delta.x = (alignment.center - Math.round(element.width / 2)) - element.x; } else if (alignment.top) { delta.y = alignment.top - element.y; } else if (alignment.bottom) { delta.y = (alignment.bottom - element.height) - element.y; } else if (alignment.middle) { delta.y = (alignment.middle - Math.round(element.height / 2)) - element.y; } modeling.moveElements([ element ], delta, element.parent); }); }; AlignElements.prototype.postExecute = function(context) { }; },{"303":303}],179:[function(_dereq_,module,exports){ 'use strict'; var any = _dereq_(299); var inherits = _dereq_(289); /** * A handler that implements reversible appending of shapes * to a source shape. * * @param {canvas} Canvas * @param {elementFactory} ElementFactory * @param {modeling} Modeling */ function AppendShapeHandler(modeling) { this._modeling = modeling; } inherits(AppendShapeHandler, _dereq_(191)); AppendShapeHandler.$inject = [ 'modeling' ]; module.exports = AppendShapeHandler; ////// api ///////////////////////////////////////////// /** * Creates a new shape * * @param {Object} context * @param {ElementDescriptor} context.shape the new shape * @param {ElementDescriptor} context.source the source object * @param {ElementDescriptor} context.parent the parent object * @param {Point} context.position position of the new element */ AppendShapeHandler.prototype.preExecute = function(context) { if (!context.source) { throw new Error('source required'); } var parent = context.parent || context.source.parent, shape = this._modeling.createShape(context.shape, context.position, parent); context.shape = shape; }; AppendShapeHandler.prototype.postExecute = function(context) { var parent = context.connectionParent || context.shape.parent; if (!existsConnection(context.source, context.shape)) { // create connection this._modeling.connect(context.source, context.shape, context.connection, parent); } }; function existsConnection(source, target) { return any(source.outgoing, function(c) { return c.target === target; }); } },{"191":191,"289":289,"299":299}],180:[function(_dereq_,module,exports){ 'use strict'; function CreateConnectionHandler(canvas, layouter) { this._canvas = canvas; this._layouter = layouter; } CreateConnectionHandler.$inject = [ 'canvas', 'layouter' ]; module.exports = CreateConnectionHandler; ////// api ///////////////////////////////////////// /** * Appends a shape to a target shape * * @param {Object} context * @param {djs.element.Base} context.source the source object * @param {djs.element.Base} context.target the parent object * @param {Point} context.position position of the new element */ CreateConnectionHandler.prototype.execute = function(context) { var connection = context.connection, source = context.source, target = context.target, parent = context.parent, parentIndex = context.parentIndex, hints = context.hints; if (!source || !target) { throw new Error('source and target required'); } if (!parent) { throw new Error('parent required'); } connection.source = source; connection.target = target; if (!connection.waypoints) { connection.waypoints = this._layouter.layoutConnection(connection, hints); } // add connection this._canvas.addConnection(connection, parent, parentIndex); return connection; }; CreateConnectionHandler.prototype.revert = function(context) { var connection = context.connection; this._canvas.removeConnection(connection); connection.source = null; connection.target = null; }; },{}],181:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CreateShapeHandler = _dereq_(182); /** * A handler that attaches a label to a given target shape. * * @param {canvas} Canvas */ function CreateLabelHandler(canvas) { CreateShapeHandler.call(this, canvas); } inherits(CreateLabelHandler, CreateShapeHandler); CreateLabelHandler.$inject = [ 'canvas' ]; module.exports = CreateLabelHandler; ////// api ///////////////////////////////////////// var originalExecute = CreateShapeHandler.prototype.execute; /** * Appends a label to a target shape. * * @method CreateLabelHandler#execute * * @param {Object} context * @param {ElementDescriptor} context.target the element the label is attached to * @param {ElementDescriptor} context.parent the parent object * @param {Point} context.position position of the new element */ CreateLabelHandler.prototype.execute = function(context) { var label = context.shape; ensureValidDimensions(label); label.labelTarget = context.labelTarget; return originalExecute.call(this, context); }; var originalRevert = CreateShapeHandler.prototype.revert; /** * Undo append by removing the shape */ CreateLabelHandler.prototype.revert = function(context) { context.shape.labelTarget = null; return originalRevert.call(this, context); }; ////// helpers ///////////////////////////////////////// function ensureValidDimensions(label) { // make sure a label has valid { width, height } dimensions [ 'width', 'height' ].forEach(function(prop) { if (typeof label[prop] === 'undefined') { label[prop] = 0; } }); } },{"182":182,"289":289}],182:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var round = Math.round; /** * A handler that implements reversible addition of shapes. * * @param {canvas} Canvas */ function CreateShapeHandler(canvas) { this._canvas = canvas; } CreateShapeHandler.$inject = [ 'canvas' ]; module.exports = CreateShapeHandler; ////// api ///////////////////////////////////////// /** * Appends a shape to a target shape * * @param {Object} context * @param {djs.model.Base} context.parent the parent object * @param {Point} context.position position of the new element */ CreateShapeHandler.prototype.execute = function(context) { var shape = context.shape, positionOrBounds = context.position, parent = context.parent, parentIndex = context.parentIndex; if (!parent) { throw new Error('parent required'); } if (!positionOrBounds) { throw new Error('position required'); } // (1) add at event center position _or_ at given bounds if (positionOrBounds.width !== undefined) { assign(shape, positionOrBounds); } else { assign(shape, { x: positionOrBounds.x - round(shape.width / 2), y: positionOrBounds.y - round(shape.height / 2) }); } // (2) add to canvas this._canvas.addShape(shape, parent, parentIndex); return shape; }; /** * Undo append by removing the shape */ CreateShapeHandler.prototype.revert = function(context) { // (3) remove form canvas this._canvas.removeShape(context.shape); }; },{"431":431}],183:[function(_dereq_,module,exports){ 'use strict'; var Collections = _dereq_(263); /** * A handler that implements reversible deletion of Connections. * */ function DeleteConnectionHandler(canvas, modeling) { this._canvas = canvas; this._modeling = modeling; } DeleteConnectionHandler.$inject = [ 'canvas', 'modeling' ]; module.exports = DeleteConnectionHandler; /** * - Remove attached label */ DeleteConnectionHandler.prototype.preExecute = function(context) { var connection = context.connection; // Remove label if (connection.label) { this._modeling.removeShape(connection.label); } }; DeleteConnectionHandler.prototype.execute = function(context) { var connection = context.connection, parent = connection.parent; context.parent = parent; context.parentIndex = Collections.indexOf(parent.children, connection); context.source = connection.source; context.target = connection.target; this._canvas.removeConnection(connection); connection.source = null; connection.target = null; connection.label = null; return connection; }; /** * Command revert implementation. */ DeleteConnectionHandler.prototype.revert = function(context) { var connection = context.connection, parent = context.parent, parentIndex = context.parentIndex; connection.source = context.source; connection.target = context.target; // restore previous location in old parent Collections.add(parent.children, connection, parentIndex); this._canvas.addConnection(connection, parent); return connection; }; },{"263":263}],184:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), inherits = _dereq_(289); function DeleteElementsHandler(modeling, elementRegistry) { this._modeling = modeling; this._elementRegistry = elementRegistry; } inherits(DeleteElementsHandler, _dereq_(191)); DeleteElementsHandler.$inject = [ 'modeling', 'elementRegistry' ]; module.exports = DeleteElementsHandler; DeleteElementsHandler.prototype.postExecute = function(context) { var modeling = this._modeling, elementRegistry = this._elementRegistry, elements = context.elements; forEach(elements, function(element) { // element may have been removed with previous // remove operations already (e.g. in case of nesting) if (!elementRegistry.get(element.id)) { return; } if (element.waypoints) { modeling.removeConnection(element); } else { modeling.removeShape(element); } }); }; },{"191":191,"289":289,"303":303}],185:[function(_dereq_,module,exports){ 'use strict'; var Collections = _dereq_(263); var saveClear = _dereq_(277).saveClear; /** * A handler that implements reversible deletion of shapes. * */ function DeleteShapeHandler(canvas, modeling) { this._canvas = canvas; this._modeling = modeling; } DeleteShapeHandler.$inject = [ 'canvas', 'modeling' ]; module.exports = DeleteShapeHandler; /** * - Remove connections * - Remove all direct children */ DeleteShapeHandler.prototype.preExecute = function(context) { var modeling = this._modeling; var shape = context.shape, label = shape.label; // Clean up on removeShape(label) if (shape.labelTarget) { context.labelTarget = shape.labelTarget; shape.labelTarget = null; } // Remove label if (label) { this._modeling.removeShape(label, { nested: true }); } // remove connections saveClear(shape.incoming, function(connection) { // To make sure that the connection isn't removed twice // For example if a container is removed modeling.removeConnection(connection, { nested: true }); }); saveClear(shape.outgoing, function(connection) { modeling.removeConnection(connection, { nested: true }); }); // remove child shapes and connections saveClear(shape.children, function(child) { if (isConnection(child)) { modeling.removeConnection(child, { nested: true }); } else { modeling.removeShape(child, { nested: true }); } }); }; /** * Remove shape and remember the parent */ DeleteShapeHandler.prototype.execute = function(context) { var canvas = this._canvas; var shape = context.shape, oldParent = shape.parent; context.oldParent = oldParent; context.oldParentIndex = Collections.indexOf(oldParent.children, shape); shape.label = null; canvas.removeShape(shape); return shape; }; /** * Command revert implementation */ DeleteShapeHandler.prototype.revert = function(context) { var canvas = this._canvas; var shape = context.shape, oldParent = context.oldParent, oldParentIndex = context.oldParentIndex, labelTarget = context.labelTarget; // restore previous location in old oldParent Collections.add(oldParent.children, shape, oldParentIndex); if (labelTarget) { labelTarget.label = shape; } canvas.addShape(shape, oldParent); return shape; }; function isConnection(element) { return element.waypoints; } },{"263":263,"277":277}],186:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), sortBy = _dereq_(310); /** * A handler that distributes elements evenly. */ function DistributeElements(modeling) { this._modeling = modeling; } DistributeElements.$inject = [ 'modeling' ]; module.exports = DistributeElements; var OFF_AXIS = { x: 'y', y: 'x' }; DistributeElements.prototype.preExecute = function(context) { var modeling = this._modeling; var groups = context.groups, axis = context.axis, dimension = context.dimension; function updateRange(group, element) { group.range.min = Math.min(element[axis], group.range.min); group.range.max = Math.max(element[axis] + element[dimension], group.range.max); } function center(element) { return element[axis] + element[dimension] / 2; } function lastIdx(arr) { return arr.length - 1; } function rangeDiff(range) { return range.max - range.min; } function centerElement(refCenter, element) { var delta = { y: 0 }; delta[axis] = refCenter - center(element); if (delta[axis]) { delta[OFF_AXIS[axis]] = 0; modeling.moveElements([ element ], delta, element.parent); } } var firstGroup = groups[0], lastGroupIdx = lastIdx(groups), lastGroup = groups[ lastGroupIdx ]; var margin, spaceInBetween, groupsSize = 0; // the size of each range forEach(groups, function(group, idx) { var sortedElements, refElem, refCenter; if (group.elements.length < 2) { if (idx && idx !== groups.length - 1) { updateRange(group, group.elements[0]); groupsSize += rangeDiff(group.range); } return; } sortedElements = sortBy(group.elements, axis); refElem = sortedElements[0]; if (idx === lastGroupIdx) { refElem = sortedElements[lastIdx(sortedElements)]; } refCenter = center(refElem); // wanna update the ranges after the shapes have been centered group.range = null; forEach(sortedElements, function(element) { centerElement(refCenter, element); if (group.range === null) { group.range = { min: element[axis], max: element[axis] + element[dimension] }; return; } // update group's range after centering the range elements updateRange(group, element); }); if (idx && idx !== groups.length - 1) { groupsSize += rangeDiff(group.range); } }); spaceInBetween = Math.abs(lastGroup.range.min - firstGroup.range.max); margin = Math.round((spaceInBetween - groupsSize) / (groups.length - 1)); if (margin < groups.length - 1) { return; } forEach(groups, function(group, groupIdx) { var delta = {}, prevGroup; if (group === firstGroup || group === lastGroup) { return; } prevGroup = groups[groupIdx - 1]; group.range.max = 0; forEach(group.elements, function(element, idx) { delta[OFF_AXIS[axis]] = 0; delta[axis] = (prevGroup.range.max - element[axis]) + margin; if (group.range.min !== element[axis]) { delta[axis] += element[axis] - group.range.min; } if (delta[axis]) { modeling.moveElements([ element ], delta, element.parent); } group.range.max = Math.max(element[axis] + element[dimension], idx ? group.range.max : 0); }); }); }; DistributeElements.prototype.postExecute = function(context) { }; },{"303":303,"310":310}],187:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); /** * A handler that implements reversible moving of shapes. */ function LayoutConnectionHandler(layouter, canvas) { this._layouter = layouter; this._canvas = canvas; } LayoutConnectionHandler.$inject = [ 'layouter', 'canvas' ]; module.exports = LayoutConnectionHandler; LayoutConnectionHandler.prototype.execute = function(context) { var connection = context.connection; var oldWaypoints = connection.waypoints; assign(context, { oldWaypoints: oldWaypoints }); connection.waypoints = this._layouter.layoutConnection(connection, context.hints); return connection; }; LayoutConnectionHandler.prototype.revert = function(context) { var connection = context.connection; connection.waypoints = context.oldWaypoints; return connection; }; },{"431":431}],188:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var Collections = _dereq_(263); /** * A handler that implements reversible moving of connections. * * The handler differs from the layout connection handler in a sense * that it preserves the connection layout. */ function MoveConnectionHandler() { } module.exports = MoveConnectionHandler; MoveConnectionHandler.prototype.execute = function(context) { var connection = context.connection, delta = context.delta; var newParent = context.newParent || connection.parent, newParentIndex = context.newParentIndex, oldParent = connection.parent; // save old parent in context context.oldParent = oldParent; context.oldParentIndex = Collections.remove(oldParent.children, connection); // add to new parent at position Collections.add(newParent.children, connection, newParentIndex); // update parent connection.parent = newParent; // update waypoint positions forEach(connection.waypoints, function(p) { p.x += delta.x; p.y += delta.y; if (p.original) { p.original.x += delta.x; p.original.y += delta.y; } }); return connection; }; MoveConnectionHandler.prototype.revert = function(context) { var connection = context.connection, newParent = connection.parent, oldParent = context.oldParent, oldParentIndex = context.oldParentIndex, delta = context.delta; // remove from newParent Collections.remove(newParent.children, connection); // restore previous location in old parent Collections.add(oldParent.children, connection, oldParentIndex); // restore parent connection.parent = oldParent; // revert to old waypoint positions forEach(connection.waypoints, function(p) { p.x -= delta.x; p.y -= delta.y; if (p.original) { p.original.x -= delta.x; p.original.y -= delta.y; } }); return connection; }; },{"263":263,"303":303}],189:[function(_dereq_,module,exports){ 'use strict'; var MoveHelper = _dereq_(201); /** * A handler that implements reversible moving of shapes. */ function MoveElementsHandler(modeling) { this._helper = new MoveHelper(modeling); } MoveElementsHandler.$inject = [ 'modeling' ]; module.exports = MoveElementsHandler; MoveElementsHandler.prototype.preExecute = function(context) { context.closure = this._helper.getClosure(context.shapes); }; MoveElementsHandler.prototype.postExecute = function(context) { var hints = context.hints, primaryShape; if (hints && hints.primaryShape) { primaryShape = hints.primaryShape; hints.oldParent = primaryShape.parent; } this._helper.moveClosure(context.closure, context.delta, context.newParent, context.newHost, primaryShape); }; MoveElementsHandler.prototype.execute = function(context) { }; MoveElementsHandler.prototype.revert = function(context) { }; },{"201":201}],190:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303), pick = _dereq_(438); var MoveHelper = _dereq_(201), Collections = _dereq_(263); var getMovedSourceAnchor = _dereq_(200).getMovedSourceAnchor, getMovedTargetAnchor = _dereq_(200).getMovedTargetAnchor; /** * A handler that implements reversible moving of shapes. */ function MoveShapeHandler(modeling) { this._modeling = modeling; this._helper = new MoveHelper(modeling); } MoveShapeHandler.$inject = [ 'modeling' ]; module.exports = MoveShapeHandler; MoveShapeHandler.prototype.execute = function(context) { var shape = context.shape, delta = context.delta, newParent = context.newParent || shape.parent, newParentIndex = context.newParentIndex, oldParent = shape.parent; context.oldBounds = pick(shape, [ 'x', 'y', 'width', 'height']); // save old parent in context context.oldParent = oldParent; context.oldParentIndex = Collections.remove(oldParent.children, shape); // add to new parent at position Collections.add(newParent.children, shape, newParentIndex); // update shape parent + position assign(shape, { parent: newParent, x: shape.x + delta.x, y: shape.y + delta.y }); return shape; }; MoveShapeHandler.prototype.postExecute = function(context) { var shape = context.shape, delta = context.delta, hints = context.hints; var modeling = this._modeling; if (hints.layout !== false) { forEach(shape.incoming, function(c) { modeling.layoutConnection(c, { connectionEnd: getMovedTargetAnchor(c, shape, delta) }); }); forEach(shape.outgoing, function(c) { modeling.layoutConnection(c, { connectionStart: getMovedSourceAnchor(c, shape, delta) }); }); } if (hints.recurse !== false) { this.moveChildren(context); } }; MoveShapeHandler.prototype.revert = function(context) { var shape = context.shape, oldParent = context.oldParent, oldParentIndex = context.oldParentIndex, delta = context.delta; // restore previous location in old parent Collections.add(oldParent.children, shape, oldParentIndex); // revert to old position and parent assign(shape, { parent: oldParent, x: shape.x - delta.x, y: shape.y - delta.y }); return shape; }; MoveShapeHandler.prototype.moveChildren = function(context) { var delta = context.delta, shape = context.shape; this._helper.moveRecursive(shape.children, delta, null); }; MoveShapeHandler.prototype.getNewParent = function(context) { return context.newParent || context.shape.parent; }; },{"200":200,"201":201,"263":263,"303":303,"431":431,"438":438}],191:[function(_dereq_,module,exports){ 'use strict'; function NoopHandler() {} module.exports = NoopHandler; NoopHandler.prototype.execute = function() {}; NoopHandler.prototype.revert = function() {}; },{}],192:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), map = _dereq_(305), sortBy = _dereq_(310), clone = _dereq_(420); var inherits = _dereq_(289); function removeProperties(element, properties) { forEach(properties, function(prop) { if (element[prop]) { delete element[prop]; } }); } /** * A handler that implements pasting of elements onto the diagram. * * @param {eventBus} EventBus * @param {canvas} Canvas * @param {selection} Selection * @param {elementFactory} ElementFactory * @param {modeling} Modeling * @param {rules} Rules */ function PasteHandler(eventBus, canvas, selection, elementFactory, modeling, rules) { this._eventBus = eventBus; this._canvas = canvas; this._selection = selection; this._elementFactory = elementFactory; this._modeling = modeling; this._rules = rules; } inherits(PasteHandler, _dereq_(191)); PasteHandler.$inject = [ 'eventBus', 'canvas', 'selection', 'elementFactory', 'modeling', 'rules' ]; module.exports = PasteHandler; ////// api ///////////////////////////////////////////// /** * Creates a new shape * * @param {Object} context * @param {Object} context.tree the new shape * @param {Element} context.topParent the paste target */ PasteHandler.prototype.preExecute = function(context) { var eventBus = this._eventBus; var tree = context.tree, topParent = context.topParent, position = context.position; tree.createdElements = {}; tree.labels = []; forEach(tree, function(elements, depthStr) { var depth = parseInt(depthStr, 10); if (isNaN(depth)) { return; } // set the parent on the top level elements if (!depth) { elements = map(elements, function(descriptor) { descriptor.parent = topParent; return descriptor; }); } // Order by priority for element creation elements = sortBy(elements, 'priority'); forEach(elements, function(descriptor) { var id = descriptor.id, parent = descriptor.parent, isAttach = false, hints, newPosition; var element = clone(descriptor); if (depth) { element.parent = this._getCreatedElement(parent, tree); } // this happens when shapes have not been created due to rules if (!parent) { return; } eventBus.fire('element.paste', { createdElements: tree.createdElements, descriptor: element }); // in case the parent changed during 'element.paste' parent = element.parent; if (element.waypoints) { element = this._createConnection(element, parent, position, tree); if (element) { tree.createdElements[id] = { element: element, descriptor: descriptor }; } return; } // supply not-root information as hint if (element.parent !== topParent) { hints = { root: false }; } // set host if (element.host) { isAttach = true; parent = this._getCreatedElement(element.host, tree); } // handle labels if (element.labelTarget) { return tree.labels.push(element); } newPosition = { x: Math.round(position.x + element.delta.x + (element.width / 2)), y: Math.round(position.y + element.delta.y + (element.height / 2)) }; removeProperties(element, [ 'id', 'parent', 'delta', 'host', 'priority' ]); element = this._createShape(element, parent, newPosition, isAttach, hints); if (element) { tree.createdElements[id] = { element: element, descriptor: descriptor }; } }, this); }, this); }; // move label's to their relative position PasteHandler.prototype.postExecute = function(context) { var modeling = this._modeling, selection = this._selection; var tree = context.tree, labels = tree.labels, topLevelElements = []; forEach(labels, function(labelDescriptor) { var labelTarget = this._getCreatedElement(labelDescriptor.labelTarget, tree), label, labelTargetPos, newPosition; if (!labelTarget) { return; } label = labelTarget.label; if (!label) { return; } labelTargetPos = { x: labelTarget.x, y: labelTarget.y }; if (labelTarget.waypoints) { labelTargetPos = labelTarget.waypoints[0]; } newPosition = { x: Math.round((labelTargetPos.x - label.x) + labelDescriptor.delta.x), y: Math.round((labelTargetPos.y - label.y) + labelDescriptor.delta.y) }; modeling.moveShape(label, newPosition, labelTarget.parent); }, this); forEach(tree[0], function(descriptor) { var id = descriptor.id, toplevel = tree.createdElements[id]; if (toplevel) { topLevelElements.push(toplevel.element); } }); selection.select(topLevelElements); }; PasteHandler.prototype._createConnection = function(element, parent, parentCenter, tree) { var modeling = this._modeling, rules = this._rules; var connection, source, target, canPaste; element.waypoints = map(element.waypoints, function(waypoint, idx) { return { x: Math.round(parentCenter.x + element.delta[idx].x), y: Math.round(parentCenter.y + element.delta[idx].y) }; }); source = this._getCreatedElement(element.source, tree); target = this._getCreatedElement(element.target, tree); if (!source || !target) { return null; } canPaste = rules.allowed('element.paste', { source: source, target: target }); if (!canPaste) { return null; } removeProperties(element, [ 'id', 'parent', 'delta', 'source', 'target', 'width', 'height', 'priority' ]); connection = modeling.createConnection(source, target, element, parent); return connection; }; PasteHandler.prototype._createShape = function(element, parent, position, isAttach, hints) { var modeling = this._modeling, elementFactory = this._elementFactory, rules = this._rules; var canPaste = rules.allowed('element.paste', { element: element, position: position, parent: parent }); if (!canPaste) { return null; } var shape = elementFactory.createShape(element); modeling.createShape(shape, position, parent, isAttach, hints); return shape; }; PasteHandler.prototype._getCreatedElement = function(id, tree) { return tree.createdElements[id] && tree.createdElements[id].element; }; },{"191":191,"289":289,"303":303,"305":305,"310":310,"420":420}],193:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422); /** * Reconnect connection handler */ function ReconnectConnectionHandler() { } ReconnectConnectionHandler.$inject = [ ]; module.exports = ReconnectConnectionHandler; ReconnectConnectionHandler.prototype.execute = function(context) { var newSource = context.newSource, newTarget = context.newTarget, connection = context.connection, dockingOrPoints = context.dockingOrPoints, oldWaypoints = connection.waypoints, newWaypoints; if (!newSource && !newTarget) { throw new Error('newSource or newTarget are required'); } if (newSource && newTarget) { throw new Error('must specify either newSource or newTarget'); } context.oldWaypoints = oldWaypoints; if (isArray(dockingOrPoints)) { newWaypoints = dockingOrPoints; } else { newWaypoints = oldWaypoints.slice(); newWaypoints.splice(newSource ? 0 : -1, 1, dockingOrPoints); } if (newSource) { context.oldSource = connection.source; connection.source = newSource; } if (newTarget) { context.oldTarget = connection.target; connection.target = newTarget; } connection.waypoints = newWaypoints; return connection; }; ReconnectConnectionHandler.prototype.revert = function(context) { var newSource = context.newSource, newTarget = context.newTarget, connection = context.connection; if (newSource) { connection.source = context.oldSource; } if (newTarget) { connection.target = context.oldTarget; } connection.waypoints = context.oldWaypoints; return connection; }; },{"422":422}],194:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); /** * A handler that implements reversible replacing of shapes. * Internally the old shape will be removed and the new shape will be added. * * * @class * @constructor * * @param {canvas} Canvas */ function ReplaceShapeHandler(modeling, rules) { this._modeling = modeling; this._rules = rules; } ReplaceShapeHandler.$inject = [ 'modeling', 'rules' ]; module.exports = ReplaceShapeHandler; ////// api ///////////////////////////////////////// /** * Replaces a shape with an replacement Element. * * The newData object should contain type, x, y. * * If possible also the incoming/outgoing connection * will be restored. * * @param {Object} context */ ReplaceShapeHandler.prototype.preExecute = function(context) { var self = this, modeling = this._modeling, rules = this._rules; var oldShape = context.oldShape, newData = context.newData, hints = context.hints, newShape; function canReconnect(type, source, target, connection) { return rules.allowed(type, { source: source, target: target, connection: connection }); } // (1) place a new shape at the given position var position = { x: newData.x, y: newData.y }; newShape = context.newShape = context.newShape || self.createShape(newData, position, oldShape.parent); // (2) update the host if (oldShape.host) { modeling.updateAttachment(newShape, oldShape.host); } // (3) adopt all children from the old shape var children; if (hints.moveChildren !== false) { children = oldShape.children.slice(); modeling.moveElements(children, { x: 0, y: 0 }, newShape); } // (4) reconnect connections to the new shape (where allowed) var incoming = oldShape.incoming.slice(), outgoing = oldShape.outgoing.slice(); forEach(incoming, function(connection) { var waypoints = connection.waypoints, docking = waypoints[waypoints.length - 1], source = connection.source, allowed = canReconnect('connection.reconnectEnd', source, newShape, connection); if (allowed) { self.reconnectEnd(connection, newShape, docking); } }); forEach(outgoing, function(connection) { var waypoints = connection.waypoints, docking = waypoints[0], target = connection.target, allowed = canReconnect('connection.reconnectStart', newShape, target, connection); if (allowed) { self.reconnectStart(connection, newShape, docking); } }); }; ReplaceShapeHandler.prototype.postExecute = function(context) { var modeling = this._modeling; var oldShape = context.oldShape, newShape = context.newShape; // if an element gets resized on replace, layout the connection again forEach(newShape.incoming, function(c) { modeling.layoutConnection(c, { endChanged: true }); }); forEach(newShape.outgoing, function(c) { modeling.layoutConnection(c, { startChanged: true }); }); modeling.removeShape(oldShape); }; ReplaceShapeHandler.prototype.execute = function(context) {}; ReplaceShapeHandler.prototype.revert = function(context) {}; ReplaceShapeHandler.prototype.createShape = function(shape, position, target) { var modeling = this._modeling; return modeling.createShape(shape, position, target); }; ReplaceShapeHandler.prototype.reconnectStart = function(connection, newSource, dockingPoint) { var modeling = this._modeling; modeling.reconnectStart(connection, newSource, dockingPoint); }; ReplaceShapeHandler.prototype.reconnectEnd = function(connection, newTarget, dockingPoint) { var modeling = this._modeling; modeling.reconnectEnd(connection, newTarget, dockingPoint); }; },{"303":303}],195:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303); var getResizedSourceAnchor = _dereq_(200).getResizedSourceAnchor, getResizedTargetAnchor = _dereq_(200).getResizedTargetAnchor; /** * A handler that implements reversible resizing of shapes. * * @param {Modeling} modeling */ function ResizeShapeHandler(modeling) { this._modeling = modeling; } ResizeShapeHandler.$inject = [ 'modeling' ]; module.exports = ResizeShapeHandler; /** * { * shape: {....} * newBounds: { * width: 20, * height: 40, * x: 5, * y: 10 * } * * } */ ResizeShapeHandler.prototype.execute = function(context) { var shape = context.shape, newBounds = context.newBounds, minBounds = context.minBounds; if (newBounds.x === undefined || newBounds.y === undefined || newBounds.width === undefined || newBounds.height === undefined) { throw new Error('newBounds must have {x, y, width, height} properties'); } if (minBounds && (newBounds.width < minBounds.width || newBounds.height < minBounds.height)) { throw new Error('width and height cannot be less than minimum height and width'); } else if (!minBounds && newBounds.width < 10 || newBounds.height < 10) { throw new Error('width and height cannot be less than 10px'); } // save old bbox in context context.oldBounds = { width: shape.width, height: shape.height, x: shape.x, y: shape.y }; // update shape assign(shape, { width: newBounds.width, height: newBounds.height, x: newBounds.x, y: newBounds.y }); return shape; }; ResizeShapeHandler.prototype.postExecute = function(context) { var shape = context.shape, oldBounds = context.oldBounds; var modeling = this._modeling; forEach(shape.incoming, function(c) { modeling.layoutConnection(c, { connectionEnd: getResizedTargetAnchor(c, shape, oldBounds) }); }); forEach(shape.outgoing, function(c) { modeling.layoutConnection(c, { connectionStart: getResizedSourceAnchor(c, shape, oldBounds) }); }); }; ResizeShapeHandler.prototype.revert = function(context) { var shape = context.shape, oldBounds = context.oldBounds; // restore previous bbox assign(shape, { width: oldBounds.width, height: oldBounds.height, x: oldBounds.x, y: oldBounds.y }); return shape; }; },{"200":200,"303":303,"431":431}],196:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var SpaceUtil = _dereq_(239); /** * A handler that implements reversible creating and removing of space. * * It executes in two phases: * * (1) resize all affected resizeShapes * (2) move all affected moveElements */ function SpaceToolHandler(modeling) { this._modeling = modeling; } SpaceToolHandler.$inject = [ 'modeling' ]; module.exports = SpaceToolHandler; SpaceToolHandler.prototype.preExecute = function(context) { // resize var modeling = this._modeling, resizingShapes = context.resizingShapes, delta = context.delta, direction = context.direction; forEach(resizingShapes, function(shape) { var newBounds = SpaceUtil.resizeBounds(shape, direction, delta); modeling.resizeShape(shape, newBounds); }); }; SpaceToolHandler.prototype.postExecute = function(context) { // move var modeling = this._modeling, movingShapes = context.movingShapes, delta = context.delta; modeling.moveElements(movingShapes, delta, undefined, false, { autoResize: false }); }; SpaceToolHandler.prototype.execute = function(context) {}; SpaceToolHandler.prototype.revert = function(context) {}; },{"239":239,"303":303}],197:[function(_dereq_,module,exports){ 'use strict'; /** * A handler that toggles the collapsed state of an element * and the visibility of all its children. * * @param {Modeling} modeling */ function ToggleShapeCollapseHandler(modeling) { this._modeling = modeling; } ToggleShapeCollapseHandler.$inject = [ 'modeling' ]; module.exports = ToggleShapeCollapseHandler; ToggleShapeCollapseHandler.prototype.execute = function(context) { var shape = context.shape, children = shape.children; // remember previous visibility of children context.oldChildrenVisibility = getElementsVisibility(children); // toggle state shape.collapsed = !shape.collapsed; // hide/show children setHidden(children, shape.collapsed); return [shape].concat(children); }; ToggleShapeCollapseHandler.prototype.revert = function(context) { var shape = context.shape, oldChildrenVisibility = context.oldChildrenVisibility; var children = shape.children; // set old visability of children restoreVisibility(children, oldChildrenVisibility); // retoggle state shape.collapsed = !shape.collapsed; return [shape].concat(children); }; /////// helpers /////////////////////////////// /** * Return a map { elementId -> hiddenState}. * * @param {Array} elements * * @return {Object} */ function getElementsVisibility(elements) { var result = {}; elements.forEach(function(e) { result[e.id] = e.hidden; }); return result; } function setHidden(elements, newHidden) { elements.forEach(function(element) { element.hidden = newHidden; }); } function restoreVisibility(elements, lastState) { elements.forEach(function(e) { e.hidden = lastState[e.id]; }); } },{}],198:[function(_dereq_,module,exports){ 'use strict'; var Collections = _dereq_(263); /** * A handler that implements reversible attaching/detaching of shapes. */ function UpdateAttachmentHandler(modeling) { this._modeling = modeling; } module.exports = UpdateAttachmentHandler; UpdateAttachmentHandler.$inject = [ 'modeling' ]; UpdateAttachmentHandler.prototype.execute = function(context) { var shape = context.shape, newHost = context.newHost, oldHost = shape.host; // (0) detach from old host context.oldHost = oldHost; context.attacherIdx = removeAttacher(oldHost, shape); // (1) attach to new host addAttacher(newHost, shape); // (2) update host shape.host = newHost; return shape; }; UpdateAttachmentHandler.prototype.revert = function(context) { var shape = context.shape, newHost = context.newHost, oldHost = context.oldHost, attacherIdx = context.attacherIdx; // (2) update host shape.host = oldHost; // (1) attach to new host removeAttacher(newHost, shape); // (0) detach from old host addAttacher(oldHost, shape, attacherIdx); return shape; }; function removeAttacher(host, attacher) { // remove attacher from host return Collections.remove(host && host.attachers, attacher); } function addAttacher(host, attacher, idx) { if (!host) { return; } var attachers = host.attachers; if (!attachers) { host.attachers = attachers = []; } Collections.add(attachers, attacher, idx); } },{"263":263}],199:[function(_dereq_,module,exports){ 'use strict'; function UpdateWaypointsHandler() { } module.exports = UpdateWaypointsHandler; UpdateWaypointsHandler.prototype.execute = function(context) { var connection = context.connection, newWaypoints = context.newWaypoints; context.oldWaypoints = connection.waypoints; connection.waypoints = newWaypoints; return connection; }; UpdateWaypointsHandler.prototype.revert = function(context) { var connection = context.connection, oldWaypoints = context.oldWaypoints; connection.waypoints = oldWaypoints; return connection; }; },{}],200:[function(_dereq_,module,exports){ 'use strict'; var getNewAttachPoint = _dereq_(261).getNewAttachPoint; function getResizedSourceAnchor(connection, shape, oldBounds) { var waypoints = safeGetWaypoints(connection), oldAnchor = waypoints[0]; return getNewAttachPoint(oldAnchor.original || oldAnchor, oldBounds, shape); } module.exports.getResizedSourceAnchor = getResizedSourceAnchor; function getResizedTargetAnchor(connection, shape, oldBounds) { var waypoints = safeGetWaypoints(connection), oldAnchor = waypoints[waypoints.length - 1]; return getNewAttachPoint(oldAnchor.original || oldAnchor, oldBounds, shape); } module.exports.getResizedTargetAnchor = getResizedTargetAnchor; function getMovedSourceAnchor(connection, source, moveDelta) { return getResizedSourceAnchor(connection, source, substractPosition(source, moveDelta)); } module.exports.getMovedSourceAnchor = getMovedSourceAnchor; function getMovedTargetAnchor(connection, target, moveDelta) { return getResizedTargetAnchor(connection, target, substractPosition(target, moveDelta)); } module.exports.getMovedTargetAnchor = getMovedTargetAnchor; //////// helpers //////////////////////////////////// function substractPosition(bounds, delta) { return { x: bounds.x - delta.x, y: bounds.y - delta.y, width: bounds.width, height: bounds.height }; } /** * Return waypoints of given connection; throw if non exists (should not happen!!). * * @param {Connection} connection * * @return {Array} */ function safeGetWaypoints(connection) { var waypoints = connection.waypoints; if (!waypoints.length) { throw new Error('connection#' + connection.id + ': no waypoints'); } return waypoints; } },{"261":261}],201:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var Elements = _dereq_(266); var getMovedSourceAnchor = _dereq_(200).getMovedSourceAnchor, getMovedTargetAnchor = _dereq_(200).getMovedTargetAnchor; /** * A helper that is able to carry out serialized move operations on multiple elements. * * @param {Modeling} modeling */ function MoveHelper(modeling) { this._modeling = modeling; } module.exports = MoveHelper; /** * Move the specified elements and all children by the given delta. * * This moves all enclosed connections, too and layouts all affected * external connections. * * @param {Array} elements * @param {Point} delta * @param {djs.model.Base} newParent applied to the first level of shapes * * @return {Array} list of touched elements */ MoveHelper.prototype.moveRecursive = function(elements, delta, newParent) { if (!elements) { return []; } else { return this.moveClosure(this.getClosure(elements), delta, newParent); } }; /** * Move the given closure of elmements. * * @param {Object} closure * @param {Point} delta * @param {djs.model.Base} [newParent] * @param {djs.model.Base} [newHost] */ MoveHelper.prototype.moveClosure = function(closure, delta, newParent, newHost, primaryShape) { var modeling = this._modeling; var allShapes = closure.allShapes, allConnections = closure.allConnections, enclosedConnections = closure.enclosedConnections, topLevel = closure.topLevel, keepParent = false; if (primaryShape && primaryShape.parent === newParent) { keepParent = true; } // move all shapes forEach(allShapes, function(shape) { // move the element according to the given delta modeling.moveShape(shape, delta, topLevel[shape.id] && !keepParent && newParent, { recurse: false, layout: false }); }); // move all child connections / layout external connections forEach(allConnections, function(c) { var sourceMoved = !!allShapes[c.source.id], targetMoved = !!allShapes[c.target.id]; if (enclosedConnections[c.id] && sourceMoved && targetMoved) { modeling.moveConnection(c, delta, topLevel[c.id] && !keepParent && newParent); } else { modeling.layoutConnection(c, { connectionStart: sourceMoved && getMovedSourceAnchor(c, c.source, delta), connectionEnd: targetMoved && getMovedTargetAnchor(c, c.target, delta) }); } }); }; /** * Returns the closure for the selected elements * * @param {Array} elements * @return {Object} closure */ MoveHelper.prototype.getClosure = function(elements) { return Elements.getClosure(elements); }; },{"200":200,"266":266,"303":303}],202:[function(_dereq_,module,exports){ 'use strict'; var bind = _dereq_(312); function MouseTracking(eventBus, canvas) { this._eventBus = eventBus; this._canvas = canvas; this._init(); } MouseTracking.$inject = [ 'eventBus', 'canvas' ]; module.exports = MouseTracking; MouseTracking.prototype.getHoverContext = function() { var viewbox = this._canvas.viewbox(); return { element: this._hoverElement, point: { x: viewbox.x + Math.round(this._mouseX / viewbox.scale), y: viewbox.y + Math.round(this._mouseY / viewbox.scale) } }; }; MouseTracking.prototype._init = function() { var eventBus = this._eventBus, canvas = this._canvas; var container = canvas.getContainer(); this._setMousePosition = bind(this._setMousePosition, this); container.addEventListener('mousemove', this._setMousePosition); eventBus.on('diagram.destroy', function() { container.removeEventListener('mousemove', this._setMousePosition); }, this); eventBus.on('element.hover', this._setHoverElement, this); }; MouseTracking.prototype._setHoverElement = function(event) { this._hoverElement = event.element; }; MouseTracking.prototype._setMousePosition = function(event) { this._mouseX = event.layerX; this._mouseY = event.layerY; }; },{"312":312}],203:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'mouseTracking' ], mouseTracking: [ 'type', _dereq_(202) ] }; },{"202":202}],204:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), filter = _dereq_(301), groupBy = _dereq_(304); var LOW_PRIORITY = 500, MEDIUM_PRIORITY = 1250, HIGH_PRIORITY = 1500; var getOriginalEvent = _dereq_(267).getOriginal; var round = Math.round; function mid(element) { return { x: element.x + round(element.width / 2), y: element.y + round(element.height / 2) }; } /** * A plugin that makes shapes draggable / droppable. * * @param {EventBus} eventBus * @param {Dragging} dragging * @param {Modeling} modeling * @param {Selection} selection * @param {Rules} rules */ function MoveEvents(eventBus, dragging, modeling, selection, rules) { // rules function canMove(shapes, delta, position, target) { return rules.allowed('elements.move', { shapes: shapes, delta: delta, position: position, target: target }); } // move events // assign a high priority to this handler to setup the environment // others may hook up later, e.g. at default priority and modify // the move environment. // // This sets up the context with // // * shape: the primary shape being moved // * shapes: a list of shapes to be moved // * validatedShapes: a list of shapes that are being checked // against the rules before and during move // eventBus.on('shape.move.start', HIGH_PRIORITY, function(event) { var context = event.context, shape = event.shape, shapes = selection.get().slice(); // move only single shape if the dragged element // is not part of the current selection if (shapes.indexOf(shape) === -1) { shapes = [ shape ]; } // ensure we remove nested elements in the collection // and add attachers for a proper dragger shapes = removeNested(shapes); // attach shapes to drag context assign(context, { shapes: shapes, validatedShapes: shapes, shape: shape }); }); // assign a high priority to this handler to setup the environment // others may hook up later, e.g. at default priority and modify // the move environment // eventBus.on('shape.move.start', MEDIUM_PRIORITY, function(event) { var context = event.context, validatedShapes = context.validatedShapes, canExecute; canExecute = context.canExecute = canMove(validatedShapes); // check if we can move the elements if (!canExecute) { // suppress move operation event.stopPropagation(); return false; } }); // assign a low priority to this handler // to let others modify the move event before we update // the context // eventBus.on('shape.move.move', LOW_PRIORITY, function(event) { var context = event.context, validatedShapes = context.validatedShapes, hover = event.hover, delta = { x: event.dx, y: event.dy }, position = { x: event.x, y: event.y }, canExecute; // check if we can move the elements canExecute = canMove(validatedShapes, delta, position, hover); context.delta = delta; context.canExecute = canExecute; // simply ignore move over if (canExecute === null) { context.target = null; return; } context.target = hover; }); eventBus.on('shape.move.end', function(event) { var context = event.context; var delta = context.delta, canExecute = context.canExecute, isAttach = canExecute === 'attach', shapes = context.shapes; if (!canExecute) { return false; } // ensure we have actual pixel values deltas // (important when zoom level was > 1 during move) delta.x = round(delta.x); delta.y = round(delta.y); modeling.moveElements(shapes, delta, context.target, isAttach, { primaryShape: context.shape }); }); // move activation eventBus.on('element.mousedown', function(event) { var originalEvent = getOriginalEvent(event); if (!originalEvent) { throw new Error('must supply DOM mousedown event'); } start(originalEvent, event.element); }); function start(event, element, activate) { // do not move connections or the root element if (element.waypoints || !element.parent) { return; } var referencePoint = mid(element); dragging.init(event, referencePoint, 'shape.move', { cursor: 'grabbing', autoActivate: activate, data: { shape: element, context: {} } }); } // API this.start = start; } MoveEvents.$inject = [ 'eventBus', 'dragging', 'modeling', 'selection', 'rules' ]; module.exports = MoveEvents; /** * Return a filtered list of elements that do not contain * those nested into others. * * @param {Array} elements * * @return {Array} filtered */ function removeNested(elements) { var ids = groupBy(elements, 'id'); return filter(elements, function(element) { while ((element = element.parent)) { // parent in selection if (ids[element.id]) { return false; } } return true; }); } },{"267":267,"301":301,"304":304,"431":431}],205:[function(_dereq_,module,exports){ 'use strict'; var flatten = _dereq_(291), forEach = _dereq_(303), filter = _dereq_(301), find = _dereq_(302), size = _dereq_(308), groupBy = _dereq_(304), map = _dereq_(305); var Elements = _dereq_(266); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClear = _dereq_(476), svgCreate = _dereq_(478); var translate = _dereq_(279).translate; var LOW_PRIORITY = 500; var MARKER_DRAGGING = 'djs-dragging', MARKER_OK = 'drop-ok', MARKER_NOT_OK = 'drop-not-ok', MARKER_NEW_PARENT = 'new-parent', MARKER_ATTACH = 'attach-ok'; /** * Provides previews for moving shapes when moving. * * @param {EventBus} eventBus * @param {ElementRegistry} elementRegistry * @param {Canvas} canvas * @param {Styles} styles */ function MovePreview(eventBus, elementRegistry, canvas, styles, previewSupport) { function getVisualDragShapes(shapes) { var elements = getAllDraggedElements(shapes); var filteredElements = removeEdges(elements); return filteredElements; } function getAllDraggedElements(shapes) { var allShapes = Elements.selfAndAllChildren(shapes, true); var allConnections = map(allShapes, function(shape) { return (shape.incoming || []).concat(shape.outgoing || []); }); return flatten(allShapes.concat(allConnections), true); } /** * Sets drop marker on an element. */ function setMarker(element, marker) { [ MARKER_ATTACH, MARKER_OK, MARKER_NOT_OK, MARKER_NEW_PARENT ].forEach(function(m) { if (m === marker) { canvas.addMarker(element, m); } else { canvas.removeMarker(element, m); } }); } function makeDraggable(context, element, addMarker) { previewSupport.addDragger(element, context.dragGroup); if (addMarker) { canvas.addMarker(element, MARKER_DRAGGING); } if (context.allDraggedElements) { context.allDraggedElements.push(element); } else { context.allDraggedElements = [ element ]; } } // expose to other components // that plug into the drag behavior this.makeDraggable = makeDraggable; // add previews eventBus.on('shape.move.start', LOW_PRIORITY, function(event) { var context = event.context, dragShapes = context.shapes, allDraggedElements = context.allDraggedElements; var visuallyDraggedShapes = getVisualDragShapes(dragShapes); if (!context.dragGroup) { var dragGroup = svgCreate('g'); svgAttr(dragGroup, styles.cls('djs-drag-group', [ 'no-events' ])); var defaultLayer = canvas.getDefaultLayer(); svgAppend(defaultLayer, dragGroup); context.dragGroup = dragGroup; } // add previews visuallyDraggedShapes.forEach(function(shape) { previewSupport.addDragger(shape, context.dragGroup); }); // cache all dragged elements / gfx // so that we can quickly undo their state changes later if (!allDraggedElements) { allDraggedElements = getAllDraggedElements(dragShapes); } else { allDraggedElements = flatten(allDraggedElements, getAllDraggedElements(dragShapes)); } // add dragging marker forEach(allDraggedElements, function(e) { canvas.addMarker(e, MARKER_DRAGGING); }); context.allDraggedElements = allDraggedElements; // determine, if any of the dragged elements have different parents context.differentParents = haveDifferentParents(dragShapes); }); // update previews eventBus.on('shape.move.move', LOW_PRIORITY, function(event) { var context = event.context, dragGroup = context.dragGroup, target = context.target, parent = context.shape.parent, canExecute = context.canExecute; if (target) { if (canExecute === 'attach') { setMarker(target, MARKER_ATTACH); } else if (context.canExecute && target && target.id !== parent.id) { setMarker(target, MARKER_NEW_PARENT); } else { setMarker(target, context.canExecute ? MARKER_OK : MARKER_NOT_OK); } } translate(dragGroup, event.dx, event.dy); }); eventBus.on([ 'shape.move.out', 'shape.move.cleanup' ], function(event) { var context = event.context, target = context.target; if (target) { setMarker(target, null); } }); // remove previews eventBus.on('shape.move.cleanup', function(event) { var context = event.context, allDraggedElements = context.allDraggedElements, dragGroup = context.dragGroup; // remove dragging marker forEach(allDraggedElements, function(e) { canvas.removeMarker(e, MARKER_DRAGGING); }); if (dragGroup) { svgClear(dragGroup); } }); } MovePreview.$inject = [ 'eventBus', 'elementRegistry', 'canvas', 'styles', 'previewSupport' ]; module.exports = MovePreview; ////////// helpers ////////// // returns elements minus all connections // where source or target is not elements function removeEdges(elements) { var filteredElements = filter(elements, function(element) { if (!isConnection(element)) { return true; } else { var srcFound = find(elements, element.source); var targetFound = find(elements, element.target); return srcFound && targetFound; } }); return filteredElements; } function haveDifferentParents(elements) { return size(groupBy(elements, function(e) { return e.parent && e.parent.id; })) !== 1; } /** * Checks if an element is a connection. */ function isConnection(element) { return element.waypoints; } },{"266":266,"279":279,"291":291,"301":301,"302":302,"303":303,"304":304,"305":305,"308":308,"472":472,"474":474,"476":476,"478":478}],206:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(170), _dereq_(233), _dereq_(209), _dereq_(227), _dereq_(162), _dereq_(217) ], __init__: [ 'move', 'movePreview' ], move: [ 'type', _dereq_(204) ], movePreview: [ 'type', _dereq_(205) ] }; },{"162":162,"170":170,"204":204,"205":205,"209":209,"217":217,"227":227,"233":233}],207:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); /** * An abstract provider that allows modelers to implement a custom * ordering of diagram elements on the canvas. * * It makes sure that the order is always preserved during element * creation and move operations. * * In order to use this behavior, inherit from it and override * the method {@link OrderingProvider#getOrdering}. * * @example * * ```javascript * function CustomOrderingProvider(eventBus) { * OrderingProvider.call(this, eventBus); * * this.getOrdering = function(element, newParent) { * // always insert elements at the front * // when moving * return { * index: 0, * parent: newParent * }; * }; * } * ``` * * @param {EventBus} eventBus */ function OrderingProvider(eventBus) { CommandInterceptor.call(this, eventBus); var self = this; this.preExecute([ 'shape.create', 'connection.create' ], function(event) { var context = event.context, element = context.shape || context.connection, parent = context.parent; var ordering = self.getOrdering(element, parent); if (ordering) { if (ordering.parent !== undefined) { context.parent = ordering.parent; } context.parentIndex = ordering.index; } }); this.preExecute([ 'shape.move', 'connection.move' ], function(event) { var context = event.context, element = context.shape || context.connection, parent = context.newParent || element.parent; var ordering = self.getOrdering(element, parent); if (ordering) { if (ordering.parent !== undefined) { context.newParent = ordering.parent; } context.newParentIndex = ordering.index; } }); } /** * Return a custom ordering of the element, both in terms * of parent element and index in the new parent. * * Implementors of this method must return an object with * `parent` _and_ `index` in it. * * @param {djs.model.Base} element * @param {djs.model.Shape} newParent * * @return {Object} ordering descriptor */ OrderingProvider.prototype.getOrdering = function(element, newParent) { return null; }; inherits(OrderingProvider, CommandInterceptor); module.exports = OrderingProvider; },{"119":119,"289":289}],208:[function(_dereq_,module,exports){ 'use strict'; var getBBox = _dereq_(266).getBBox; var LOW_PRIORITY = 500; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478); var domQuery = _dereq_(452); var assign = _dereq_(431); /** * @class * * A plugin that adds an outline to shapes and connections that may be activated and styled * via CSS classes. * * @param {EventBus} eventBus * @param {Styles} styles * @param {ElementRegistry} elementRegistry */ function Outline(eventBus, styles, elementRegistry) { this.offset = 6; var OUTLINE_STYLE = styles.cls('djs-outline', [ 'no-fill' ]); var self = this; function createOutline(gfx, bounds) { var outline = svgCreate('rect'); svgAttr(outline, assign({ x: 10, y: 10, width: 100, height: 100 }, OUTLINE_STYLE)); svgAppend(gfx, outline); return outline; } // A low priortity is necessary, because outlines of labels have to be updated // after the label bounds have been updated in the renderer. eventBus.on([ 'shape.added', 'shape.changed' ], LOW_PRIORITY, function(event) { var element = event.element, gfx = event.gfx; var outline = domQuery('.djs-outline', gfx); if (!outline) { outline = createOutline(gfx, element); } self.updateShapeOutline(outline, element); }); eventBus.on([ 'connection.added', 'connection.changed' ], function(event) { var element = event.element, gfx = event.gfx; var outline = domQuery('.djs-outline', gfx); if (!outline) { outline = createOutline(gfx, element); } self.updateConnectionOutline(outline, element); }); } /** * Updates the outline of a shape respecting the dimension of the * element and an outline offset. * * @param {SVGElement} outline * @param {djs.model.Base} element */ Outline.prototype.updateShapeOutline = function(outline, element) { svgAttr(outline, { x: -this.offset, y: -this.offset, width: element.width + this.offset * 2, height: element.height + this.offset * 2 }); }; /** * Updates the outline of a connection respecting the bounding box of * the connection and an outline offset. * * @param {SVGElement} outline * @param {djs.model.Base} element */ Outline.prototype.updateConnectionOutline = function(outline, connection) { var bbox = getBBox(connection); svgAttr(outline, { x: bbox.x - this.offset, y: bbox.y - this.offset, width: bbox.width + this.offset * 2, height: bbox.height + this.offset * 2 }); }; Outline.$inject = ['eventBus', 'styles', 'elementRegistry']; module.exports = Outline; },{"266":266,"431":431,"452":452,"472":472,"474":474,"478":478}],209:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'outline' ], outline: [ 'type', _dereq_(208) ] }; },{"208":208}],210:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), isString = _dereq_(428), isObject = _dereq_(426), assign = _dereq_(431), forEach = _dereq_(303), find = _dereq_(302), filter = _dereq_(301); var domify = _dereq_(449), domClasses = _dereq_(445), domAttr = _dereq_(444), domRemove = _dereq_(453), domClear = _dereq_(446); var getBBox = _dereq_(266).getBBox; // document wide unique overlay ids var ids = new (_dereq_(270))('ov'); var LOW_PRIORITY = 500; function createRoot(parent) { var root = domify('
'); parent.insertBefore(root, parent.firstChild); return root; } function setPosition(el, x, y) { assign(el.style, { left: x + 'px', top: y + 'px' }); } function setVisible(el, visible) { el.style.display = visible === false ? 'none' : ''; } function setTransform(el, transform) { el.style['transform-origin'] = 'top left'; [ '', '-ms-', '-webkit-' ].forEach(function(prefix) { el.style[prefix + 'transform'] = transform; }); } function isDef(o) { return typeof o !== 'undefined'; } /** * A service that allows users to attach overlays to diagram elements. * * The overlay service will take care of overlay positioning during updates. * * @example * * // add a pink badge on the top left of the shape * overlays.add(someShape, { * position: { * top: -5, * left: -5 * }, * html: '
0
' * }); * * // or add via shape id * * overlays.add('some-element-id', { * position: { * top: -5, * left: -5 * } * html: '
0
' * }); * * // or add with optional type * * overlays.add(someShape, 'badge', { * position: { * top: -5, * left: -5 * } * html: '
0
' * }); * * * // remove an overlay * * var id = overlays.add(...); * overlays.remove(id); * * * You may configure overlay defaults during tool by providing a `config` module * with `overlays.defaults` as an entry: * * { * overlays: { * defaults: { * show: { * minZoom: 0.7, * maxZoom: 5.0 * }, * scale: { * min: 1 * } * } * } * * @param {Object} config * @param {EventBus} eventBus * @param {Canvas} canvas * @param {ElementRegistry} elementRegistry */ function Overlays(config, eventBus, canvas, elementRegistry) { this._eventBus = eventBus; this._canvas = canvas; this._elementRegistry = elementRegistry; this._ids = ids; this._overlayDefaults = assign({ // no show constraints show: null, // always scale scale: true }, config && config.defaults); /** * Mapping overlayId -> overlay */ this._overlays = {}; /** * Mapping elementId -> overlay container */ this._overlayContainers = []; // root html element for all overlays this._overlayRoot = createRoot(canvas.getContainer()); this._init(); } Overlays.$inject = [ 'config.overlays', 'eventBus', 'canvas', 'elementRegistry' ]; module.exports = Overlays; /** * Returns the overlay with the specified id or a list of overlays * for an element with a given type. * * @example * * // return the single overlay with the given id * overlays.get('some-id'); * * // return all overlays for the shape * overlays.get({ element: someShape }); * * // return all overlays on shape with type 'badge' * overlays.get({ element: someShape, type: 'badge' }); * * // shape can also be specified as id * overlays.get({ element: 'element-id', type: 'badge' }); * * * @param {Object} search * @param {String} [search.id] * @param {String|djs.model.Base} [search.element] * @param {String} [search.type] * * @return {Object|Array} the overlay(s) */ Overlays.prototype.get = function(search) { if (isString(search)) { search = { id: search }; } if (isString(search.element)) { search.element = this._elementRegistry.get(search.element); } if (search.element) { var container = this._getOverlayContainer(search.element, true); // return a list of overlays when searching by element (+type) if (container) { return search.type ? filter(container.overlays, { type: search.type }) : container.overlays.slice(); } else { return []; } } else if (search.type) { return filter(this._overlays, { type: search.type }); } else { // return single element when searching by id return search.id ? this._overlays[search.id] : null; } }; /** * Adds a HTML overlay to an element. * * @param {String|djs.model.Base} element attach overlay to this shape * @param {String} [type] optional type to assign to the overlay * @param {Object} overlay the overlay configuration * * @param {String|DOMElement} overlay.html html element to use as an overlay * @param {Object} [overlay.show] show configuration * @param {Number} [overlay.show.minZoom] minimal zoom level to show the overlay * @param {Number} [overlay.show.maxZoom] maximum zoom level to show the overlay * @param {Object} overlay.position where to attach the overlay * @param {Number} [overlay.position.left] relative to element bbox left attachment * @param {Number} [overlay.position.top] relative to element bbox top attachment * @param {Number} [overlay.position.bottom] relative to element bbox bottom attachment * @param {Number} [overlay.position.right] relative to element bbox right attachment * @param {Boolean|Object} [overlay.scale=true] false to preserve the same size regardless of * diagram zoom * @param {Number} [overlay.scale.min] * @param {Number} [overlay.scale.max] * * @return {String} id that may be used to reference the overlay for update or removal */ Overlays.prototype.add = function(element, type, overlay) { if (isObject(type)) { overlay = type; type = null; } if (!element.id) { element = this._elementRegistry.get(element); } if (!overlay.position) { throw new Error('must specifiy overlay position'); } if (!overlay.html) { throw new Error('must specifiy overlay html'); } if (!element) { throw new Error('invalid element specified'); } var id = this._ids.next(); overlay = assign({}, this._overlayDefaults, overlay, { id: id, type: type, element: element, html: overlay.html }); this._addOverlay(overlay); return id; }; /** * Remove an overlay with the given id or all overlays matching the given filter. * * @see Overlays#get for filter options. * * @param {String} [id] * @param {Object} [filter] */ Overlays.prototype.remove = function(filter) { var overlays = this.get(filter) || []; if (!isArray(overlays)) { overlays = [ overlays ]; } var self = this; forEach(overlays, function(overlay) { var container = self._getOverlayContainer(overlay.element, true); if (overlay) { domRemove(overlay.html); domRemove(overlay.htmlContainer); delete overlay.htmlContainer; delete overlay.element; delete self._overlays[overlay.id]; } if (container) { var idx = container.overlays.indexOf(overlay); if (idx !== -1) { container.overlays.splice(idx, 1); } } }); }; Overlays.prototype.show = function() { setVisible(this._overlayRoot); }; Overlays.prototype.hide = function() { setVisible(this._overlayRoot, false); }; Overlays.prototype.clear = function() { this._overlays = {}; this._overlayContainers = []; domClear(this._overlayRoot); }; Overlays.prototype._updateOverlayContainer = function(container) { var element = container.element, html = container.html; // update container left,top according to the elements x,y coordinates // this ensures we can attach child elements relative to this container var x = element.x, y = element.y; if (element.waypoints) { var bbox = getBBox(element); x = bbox.x; y = bbox.y; } setPosition(html, x, y); domAttr(container.html, 'data-container-id', element.id); }; Overlays.prototype._updateOverlay = function(overlay) { var position = overlay.position, htmlContainer = overlay.htmlContainer, element = overlay.element; // update overlay html relative to shape because // it is already positioned on the element // update relative var left = position.left, top = position.top; if (position.right !== undefined) { var width; if (element.waypoints) { width = getBBox(element).width; } else { width = element.width; } left = position.right * -1 + width; } if (position.bottom !== undefined) { var height; if (element.waypoints) { height = getBBox(element).height; } else { height = element.height; } top = position.bottom * -1 + height; } setPosition(htmlContainer, left || 0, top || 0); }; Overlays.prototype._createOverlayContainer = function(element) { var html = domify('
'); this._overlayRoot.appendChild(html); var container = { html: html, element: element, overlays: [] }; this._updateOverlayContainer(container); this._overlayContainers.push(container); return container; }; Overlays.prototype._updateRoot = function(viewbox) { var scale = viewbox.scale || 1; var matrix = 'matrix(' + [ scale, 0, 0, scale, -1 * viewbox.x * scale, -1 * viewbox.y * scale ].join(',') + ')'; setTransform(this._overlayRoot, matrix); }; Overlays.prototype._getOverlayContainer = function(element, raw) { var container = find(this._overlayContainers, function(c) { return c.element === element; }); if (!container && !raw) { return this._createOverlayContainer(element); } return container; }; Overlays.prototype._addOverlay = function(overlay) { var id = overlay.id, element = overlay.element, html = overlay.html, htmlContainer, overlayContainer; // unwrap jquery (for those who need it) if (html.get && html.constructor.prototype.jquery) { html = html.get(0); } // create proper html elements from // overlay HTML strings if (isString(html)) { html = domify(html); } overlayContainer = this._getOverlayContainer(element); htmlContainer = domify('
'); htmlContainer.appendChild(html); if (overlay.type) { domClasses(htmlContainer).add('djs-overlay-' + overlay.type); } overlay.htmlContainer = htmlContainer; overlayContainer.overlays.push(overlay); overlayContainer.html.appendChild(htmlContainer); this._overlays[id] = overlay; this._updateOverlay(overlay); this._updateOverlayVisibilty(overlay, this._canvas.viewbox()); }; Overlays.prototype._updateOverlayVisibilty = function(overlay, viewbox) { var show = overlay.show, minZoom = show && show.minZoom, maxZoom = show && show.maxZoom, htmlContainer = overlay.htmlContainer, visible = true; if (show) { if ( (isDef(minZoom) && minZoom > viewbox.scale) || (isDef(maxZoom) && maxZoom < viewbox.scale) ) { visible = false; } setVisible(htmlContainer, visible); } this._updateOverlayScale(overlay, viewbox); }; Overlays.prototype._updateOverlayScale = function(overlay, viewbox) { var shouldScale = overlay.scale, minScale, maxScale, htmlContainer = overlay.htmlContainer; var scale, transform = ''; if (shouldScale !== true) { if (shouldScale === false) { minScale = 1; maxScale = 1; } else { minScale = shouldScale.min; maxScale = shouldScale.max; } if (isDef(minScale) && viewbox.scale < minScale) { scale = (1 / viewbox.scale || 1) * minScale; } if (isDef(maxScale) && viewbox.scale > maxScale) { scale = (1 / viewbox.scale || 1) * maxScale; } } if (isDef(scale)) { transform = 'scale(' + scale + ',' + scale + ')'; } setTransform(htmlContainer, transform); }; Overlays.prototype._updateOverlaysVisibilty = function(viewbox) { var self = this; forEach(this._overlays, function(overlay) { self._updateOverlayVisibilty(overlay, viewbox); }); }; Overlays.prototype._init = function() { var eventBus = this._eventBus; var self = this; // scroll/zoom integration function updateViewbox(viewbox) { self._updateRoot(viewbox); self._updateOverlaysVisibilty(viewbox); self.show(); } eventBus.on('canvas.viewbox.changing', function(event) { self.hide(); }); eventBus.on('canvas.viewbox.changed', function(event) { updateViewbox(event.viewbox); }); // remove integration eventBus.on([ 'shape.remove', 'connection.remove' ], function(e) { var element = e.element; var overlays = self.get({ element: element }); forEach(overlays, function(o) { self.remove(o.id); }); var container = self._getOverlayContainer(element); if (container) { domRemove(container.html); var i = self._overlayContainers.indexOf(container); if (i !== -1) { self._overlayContainers.splice(i, 1); } } }); // move integration eventBus.on('element.changed', LOW_PRIORITY, function(e) { var element = e.element; var container = self._getOverlayContainer(element, true); if (container) { forEach(container.overlays, function(overlay) { self._updateOverlay(overlay); }); self._updateOverlayContainer(container); } }); // marker integration, simply add them on the overlays as classes, too. eventBus.on('element.marker.update', function(e) { var container = self._getOverlayContainer(e.element, true); if (container) { domClasses(container.html)[e.add ? 'add' : 'remove'](e.marker); } }); // clear overlays with diagram eventBus.on('diagram.clear', this.clear, this); }; },{"266":266,"270":270,"301":301,"302":302,"303":303,"422":422,"426":426,"428":428,"431":431,"444":444,"445":445,"446":446,"449":449,"453":453}],211:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'overlays' ], overlays: [ 'type', _dereq_(210) ] }; },{"210":210}],212:[function(_dereq_,module,exports){ 'use strict'; var isFunction = _dereq_(423), isArray = _dereq_(422), forEach = _dereq_(303); var domify = _dereq_(449), domQuery = _dereq_(452), domAttr = _dereq_(444), domClear = _dereq_(446), domClasses = _dereq_(445), domMatches = _dereq_(451), domDelegate = _dereq_(448), domEvent = _dereq_(450); var toggleSelector = '.djs-palette-toggle', entrySelector = '.entry', elementSelector = toggleSelector + ', ' + entrySelector; /** * A palette containing modeling elements. */ function Palette(eventBus, canvas, dragging) { this._eventBus = eventBus; this._canvas = canvas; this._dragging = dragging; this._providers = []; var self = this; eventBus.on('tool-manager.update', function(event) { var tool = event.tool; self.updateToolHighlight(tool); }); eventBus.on('i18n.changed', function() { self._update(); }); } Palette.$inject = [ 'eventBus', 'canvas', 'dragging' ]; module.exports = Palette; /** * Register a provider with the palette * * @param {PaletteProvider} provider */ Palette.prototype.registerProvider = function(provider) { this._providers.push(provider); if (!this._container) { this._init(); } this._update(); }; /** * Returns the palette entries for a given element * * @return {Array} list of entries */ Palette.prototype.getEntries = function() { var entries = {}; // loop through all providers and their entries. // group entries by id so that overriding an entry is possible forEach(this._providers, function(provider) { var e = provider.getPaletteEntries(); forEach(e, function(entry, id) { entries[id] = entry; }); }); return entries; }; /** * Initialize */ Palette.prototype._init = function() { var canvas = this._canvas, eventBus = this._eventBus; var parent = canvas.getContainer(), container = this._container = domify(Palette.HTML_MARKUP), self = this; parent.appendChild(container); domDelegate.bind(container, elementSelector, 'click', function(event) { var target = event.delegateTarget; if (domMatches(target, toggleSelector)) { return self.toggle(); } self.trigger('click', event); }); // prevent drag propagation domEvent.bind(container, 'mousedown', function(event) { event.stopPropagation(); }); // prevent drag propagation domDelegate.bind(container, entrySelector, 'dragstart', function(event) { self.trigger('dragstart', event); }); eventBus.fire('palette.create', { html: container }); eventBus.on('canvas.resized', this.triggerTwoColumn, this); }; Palette.prototype._update = function() { var entriesContainer = domQuery('.djs-palette-entries', this._container), entries = this._entries = this.getEntries(); domClear(entriesContainer); forEach(entries, function(entry, id) { var grouping = entry.group || 'default'; var container = domQuery('[data-group=' + grouping + ']', entriesContainer); if (!container) { container = domify('
'); entriesContainer.appendChild(container); } var html = entry.html || ( entry.separator ? '
' : '
'); var control = domify(html); container.appendChild(control); if (!entry.separator) { domAttr(control, 'data-action', id); if (entry.title) { domAttr(control, 'title', entry.title); } if (entry.className) { addClasses(control, entry.className); } if (entry.imageUrl) { control.appendChild(domify('')); } } }); // open after update this.open(true); }; /** * Trigger an action available on the palette * * @param {String} action * @param {Event} event */ Palette.prototype.trigger = function(action, event, autoActivate) { var entries = this._entries, entry, handler, originalEvent, button = event.delegateTarget || event.target; if (!button) { return event.preventDefault(); } entry = entries[domAttr(button, 'data-action')]; // when user clicks on the palette and not on an action if (!entry) { return; } handler = entry.action; originalEvent = event.originalEvent || event; // simple action (via callback function) if (isFunction(handler)) { if (action === 'click') { handler(originalEvent, autoActivate); } } else { if (handler[action]) { handler[action](originalEvent, autoActivate); } } // silence other actions event.preventDefault(); }; Palette.prototype.triggerTwoColumn = function() { var canvas = this._canvas; var parent = canvas.getContainer(); if (parent.clientHeight < 650) { domClasses(parent).add('two-column'); } else { domClasses(parent).remove('two-column'); } }; /** * Close the palette */ Palette.prototype.close = function() { var canvas = this._canvas; var parent = canvas.getContainer(); domClasses(this._container).remove('open'); domClasses(parent).remove('two-column'); }; /** * Open the palette */ Palette.prototype.open = function() { domClasses(this._container).add('open'); this.triggerTwoColumn(); }; Palette.prototype.toggle = function(open) { if (this.isOpen()) { this.close(); } else { this.open(); } }; Palette.prototype.isActiveTool = function(tool) { return tool && this._activeTool === tool; }; Palette.prototype.updateToolHighlight = function(name) { var entriesContainer, toolsContainer; if (!this._toolsContainer) { entriesContainer = domQuery('.djs-palette-entries', this._container); this._toolsContainer = domQuery('[data-group=tools]', entriesContainer); } toolsContainer = this._toolsContainer; forEach(toolsContainer.children, function(tool) { var actionName = tool.getAttribute('data-action'); if (!actionName) { return; } actionName = actionName.replace('-tool', ''); if (tool.classList.contains('entry') && actionName === name) { domClasses(tool).add('highlighted-entry'); } else { domClasses(tool).remove('highlighted-entry'); } }); }; /** * Return true if the palette is opened. * * @example * * palette.open(); * * if (palette.isOpen()) { * // yes, we are open * } * * @return {boolean} true if palette is opened */ Palette.prototype.isOpen = function() { return this._container && domClasses(this._container).has('open'); }; /* markup definition */ Palette.HTML_MARKUP = '
' + '
' + '
' + '
'; ////////// helpers ///////////////////////////// function addClasses(element, classNames) { var classes = domClasses(element); var actualClassNames = isArray(classNames) ? classNames : classNames.split(/\s+/g); actualClassNames.forEach(function(cls) { classes.add(cls); }); } },{"303":303,"422":422,"423":423,"444":444,"445":445,"446":446,"448":448,"449":449,"450":450,"451":451,"452":452}],213:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __depends__: [ _dereq_(242) ], __init__: [ 'palette' ], palette: [ 'type', _dereq_(212) ] }; },{"212":212,"242":242}],214:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), assign = _dereq_(431), find = _dereq_(302); var domDelegate = _dereq_(448), domify = _dereq_(449), domClasses = _dereq_(445), domAttr = _dereq_(444), domRemove = _dereq_(453); var DATA_REF = 'data-id'; /** * A popup menu that can be used to display a list of actions anywhere in the canvas. * * @param {EventBus} eventBus * @param {Canvas} canvas * * @class * @constructor */ function PopupMenu(eventBus, canvas) { this._eventBus = eventBus; this._canvas = canvas; this._providers = {}; } PopupMenu.$inject = [ 'eventBus', 'canvas' ]; /** * Registers a popup menu provider * * @param {String} id * @param {Object} provider * * @example * popupMenu.registerProvider('myMenuID', { * getEntries: function(element) { * return [ * { * id: 'entry-1', * label: 'My Entry', * action: 'alert("I have been clicked!")' * } * ]; * } * }); * }) */ PopupMenu.prototype.registerProvider = function(id, provider) { this._providers[id] = provider; }; /** * Create a popup menu according to a given element. The id refers to the ID * of the provider that must be registered before. * * @param {String} id provider id * @param {Object} element * * @return {PopupMenu} popup menu instance */ PopupMenu.prototype.create = function(id, element) { var provider = this._providers[id]; if (!provider) { throw new Error('Provider is not registered: ' + id); } if (!element) { throw new Error('Element is missing'); } var current = this._current = { provider: provider, className: id, element: element }; if (provider.getHeaderEntries) { current.headerEntries = provider.getHeaderEntries(element); } current.entries = provider.getEntries(element); return this; }; /** * Determine if the popup menu has entries. * * @return {Boolean} true if empty */ PopupMenu.prototype.isEmpty = function() { var current = this._current; return current.entries.length === 0 && current.headerEntries && current.headerEntries.length === 0; }; /** * Open popup menu at given position * * @param {Object} position * * @return {Object} popup menu instance */ PopupMenu.prototype.open = function(position) { if (!position) { throw new Error('the position argument is missing'); } // make sure, only one popup menu is open at a time if (this.isOpen()) { this.close(); } var current = this._current, canvas = this._canvas, parent = canvas.getContainer(); current.position = position; current.container = this._createContainer(); if (current.headerEntries) { var headerEntriesContainer = this._createEntries(current.headerEntries, 'djs-popup-header'); current.container.appendChild(headerEntriesContainer); } if (current.entries) { var entriesContainer = this._createEntries(current.entries, 'djs-popup-body'); current.container.appendChild(entriesContainer); } this._attachContainer(current.container, parent, position.cursor); return this; }; /** * Removes the popup menu and unbinds the event handlers. */ PopupMenu.prototype.close = function() { if (!this.isOpen()) { return; } this._unbindHandlers(); domRemove(this._current.container); this._current.container = null; }; /** * Determine if an open popup menu exist. * * @return {Boolean} true if open */ PopupMenu.prototype.isOpen = function() { return !!this._current.container; }; /** * Trigger an action associated with an entry. * * @param {Object} event * * @return the result of the action callback, if any */ PopupMenu.prototype.trigger = function(event) { // silence other actions event.preventDefault(); var element = event.delegateTarget || event.target, entryId = domAttr(element, DATA_REF); var entry = this._getEntry(entryId); if (entry.action) { return entry.action.call(null, event, entry); } }; /** * Gets an entry instance (either entry or headerEntry) by id. * * @param {String} entryId * * @return {Object} entry instance */ PopupMenu.prototype._getEntry = function(entryId) { var search = { id: entryId }; var entry = find(this._current.entries, search) || find(this._current.headerEntries, search); if (!entry) { throw new Error('entry not found'); } return entry; }; /** * Creates the popup menu container. * * @return {Object} a DOM container */ PopupMenu.prototype._createContainer = function() { var container = domify('
'), position = this._current.position, className = this._current.className; assign(container.style, { position: 'absolute', left: position.x + 'px', top: position.y + 'px', visibility: 'hidden' }); domClasses(container).add(className); return container; }; /** * Attaches the container to the DOM and binds the event handlers. * * @param {Object} container * @param {Object} parent */ PopupMenu.prototype._attachContainer = function(container, parent, cursor) { var self = this; // Event handler domDelegate.bind(container, '.entry' ,'click', function(event) { self.trigger(event); }); // apply canvas zoom level var zoom = this._canvas.zoom(); container.style.transformOrigin = 'top left'; container.style.transform = 'scale(' + zoom + ')'; // Attach to DOM parent.appendChild(container); if (cursor) { this._assureIsInbounds(container, cursor); } // Add Handler this._bindHandlers(); }; /** * Make sure that the menu is always fully shown * * @method function * * @param {Object} container * @param {Position} cursor {x, y} */ PopupMenu.prototype._assureIsInbounds = function(container, cursor) { var canvas = this._canvas, clientRect = canvas._container.getBoundingClientRect(); var containerX = container.offsetLeft, containerY = container.offsetTop, containerWidth = container.scrollWidth, containerHeight = container.scrollHeight, overAxis = {}, left, top; var cursorPosition = { x: cursor.x - clientRect.left, y: cursor.y - clientRect.top }; if (containerX + containerWidth > clientRect.width) { overAxis.x = true; } if (containerY + containerHeight > clientRect.height) { overAxis.y = true; } if (overAxis.x && overAxis.y) { left = cursorPosition.x - containerWidth + 'px'; top = cursorPosition.y - containerHeight + 'px'; } else if (overAxis.x) { left = cursorPosition.x - containerWidth + 'px'; top = cursorPosition.y + 'px'; } else if (overAxis.y && cursorPosition.y < containerHeight) { left = cursorPosition.x + 'px'; top = 10 + 'px'; } else if (overAxis.y) { left = cursorPosition.x + 'px'; top = cursorPosition.y - containerHeight + 'px'; } assign(container.style, { left: left, top: top }, { visibility: 'visible', 'z-index': 1000 }); }; /** * Creates a list of entries and returns them as a DOM container. * * @param {Array} entries an array of entry objects * @param {String} className the class name of the entry container * * @return {Object} a DOM container */ PopupMenu.prototype._createEntries = function(entries, className) { var entriesContainer = domify('
'), self = this; domClasses(entriesContainer).add(className); forEach(entries, function(entry) { var entryContainer = self._createEntry(entry, entriesContainer); entriesContainer.appendChild(entryContainer); }); return entriesContainer; }; /** * Creates a single entry and returns it as a DOM container. * * @param {Object} entry * * @return {Object} a DOM container */ PopupMenu.prototype._createEntry = function(entry) { if (!entry.id) { throw new Error ('every entry must have the id property set'); } var entryContainer = domify('
'), entryClasses = domClasses(entryContainer); entryClasses.add('entry'); if (entry.className) { entryClasses.add(entry.className); } domAttr(entryContainer, DATA_REF, entry.id); if (entry.label) { var label = domify(''); label.textContent = entry.label; entryContainer.appendChild(label); } if (entry.imageUrl) { entryContainer.appendChild(domify('')); } if (entry.active === true) { entryClasses.add('active'); } if (entry.disabled === true) { entryClasses.add('disabled'); } if (entry.title) { entryContainer.title = entry.title; } return entryContainer; }; /** * Binds the `close` method to 'contextPad.close' & 'canvas.viewbox.changed'. */ PopupMenu.prototype._bindHandlers = function() { var eventBus = this._eventBus, self = this; function close() { self.close(); } eventBus.once('contextPad.close', close); eventBus.once('canvas.viewbox.changing', close); eventBus.once('commandStack.changed', close); }; /** * Unbinds the `close` method to 'contextPad.close' & 'canvas.viewbox.changing'. */ PopupMenu.prototype._unbindHandlers = function() { var eventBus = this._eventBus, self = this; function close() { self.close(); } eventBus.off('contextPad.close', close); eventBus.off('canvas.viewbox.changed', close); eventBus.off('commandStack.changed', close); }; module.exports = PopupMenu; },{"302":302,"303":303,"431":431,"444":444,"445":445,"448":448,"449":449,"453":453}],215:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'popupMenu' ], popupMenu: [ 'type', _dereq_(214) ] }; },{"214":214}],216:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClone = _dereq_(477), svgCreate = _dereq_(478); /** * Adds support for previews of moving/resizing elements. */ function PreviewSupport(elementRegistry, canvas, styles) { this._elementRegistry = elementRegistry; this._canvas = canvas; this._styles = styles; } module.exports = PreviewSupport; PreviewSupport.$inject = [ 'elementRegistry', 'canvas', 'styles' ]; /** * Returns graphics of an element. * * @param {djs.model.Base} element * * @return {SVGElement} */ PreviewSupport.prototype.getGfx = function(element) { return this._elementRegistry.getGraphics(element); }; /** * Adds a move preview of a given shape to a given svg group. * * @param {djs.model.Base} element * @param {SVGElement} group * * @return {SVGElement} dragger */ PreviewSupport.prototype.addDragger = function(shape, group) { var gfx = this.getGfx(shape); // clone is not included in tsvg for some reason var dragger = svgClone(gfx); var bbox = gfx.getBoundingClientRect(); // remove markers from connections if (isConnection(shape)) { removeMarkers(dragger); } svgAttr(dragger, this._styles.cls('djs-dragger', [], { x: bbox.top, y: bbox.left })); svgAppend(group, dragger); return dragger; }; /** * Adds a resize preview of a given shape to a given svg group. * * @param {djs.model.Base} element * @param {SVGElement} group * * @return {SVGElement} frame */ PreviewSupport.prototype.addFrame = function(shape, group) { var frame = svgCreate('rect', { class: 'djs-resize-overlay', width: shape.width, height: shape.height, x: shape.x, y: shape.y }); svgAppend(group, frame); return frame; }; ////////// helpers ////////// /** * Removes all svg marker references from an SVG. * * @param {SVGElement} gfx */ function removeMarkers(gfx) { if (gfx.children) { forEach(gfx.children, function(child) { // recursion removeMarkers(child); }); } gfx.style.markerStart = ''; gfx.style.markerEnd = ''; } /** * Checks if an element is a connection. */ function isConnection(element) { return element.waypoints; } },{"303":303,"472":472,"474":474,"477":477,"478":478}],217:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'previewSupport' ], previewSupport: [ 'type', _dereq_(216) ] }; },{"216":216}],218:[function(_dereq_,module,exports){ 'use strict'; /** * Service that allow replacing of elements. * * * @class * @constructor */ function Replace(modeling) { this._modeling = modeling; } module.exports = Replace; Replace.$inject = [ 'modeling' ]; /** * @param {Element} oldElement - Element to be replaced * @param {Object} newElementData - Containing information about the new Element, for example height, width, type. * @param {Object} options - Custom options that will be attached to the context. It can be used to inject data * that is needed in the command chain. For example it could be used in * eventbus.on('commandStack.shape.replace.postExecute') to change shape attributes after * shape creation. */ Replace.prototype.replaceElement = function(oldElement, newElementData, options) { var modeling = this._modeling; var newElement = null; if (oldElement.waypoints) { // TODO // modeling.replaceConnection } else { // set center of element for modeling API // if no new width / height is given use old elements size newElementData.x = Math.ceil(oldElement.x + (newElementData.width || oldElement.width) / 2); newElementData.y = Math.ceil(oldElement.y + (newElementData.height || oldElement.height) / 2); newElement = modeling.replaceShape(oldElement, newElementData, options); } return newElement; }; },{}],219:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: [ 'replace' ], replace: [ 'type', _dereq_(218) ] }; },{"218":218}],220:[function(_dereq_,module,exports){ 'use strict'; var pick = _dereq_(438), assign = _dereq_(431); var ResizeUtil = _dereq_(223); var asTRBL = _dereq_(252).asTRBL, roundBounds = _dereq_(252).roundBounds; var DEFAULT_MIN_WIDTH = 10; /** * A component that provides resizing of shapes on the canvas. * * The following components are part of shape resize: * * * adding resize handles, * * creating a visual during resize * * checking resize rules * * committing a change once finished * * * ## Customizing * * It's possible to customize the resizing behaviour by intercepting 'resize.start' * and providing the following parameters through the 'context': * * * minDimensions ({ width, height }): minimum shape dimensions * * * childrenBoxPadding ({ left, top, bottom, right } || number): * gap between the minimum bounding box and the container * * f.ex: * * ```javascript * eventBus.on('resize.start', 1500, function(event) { * var context = event.context, * * context.minDimensions = { width: 140, height: 120 }; * * // Passing general padding * context.childrenBoxPadding = 30; * * // Passing padding to a specific side * context.childrenBoxPadding.left = 20; * }); * ``` */ function Resize(eventBus, rules, modeling, dragging) { this._dragging = dragging; this._rules = rules; var self = this; eventBus.on('resize.start', function(event) { var context = event.context, resizeConstraints = context.resizeConstraints, // evaluate minBounds for backwards compatibility minBounds = context.minBounds; if (resizeConstraints === undefined) { if (minBounds === undefined) { minBounds = self.computeMinResizeBox(context); } context.resizeConstraints = { min: asTRBL(minBounds) }; } }); eventBus.on('resize.move', function(event) { var context = event.context, shape = context.shape, direction = context.direction, resizeConstraints = context.resizeConstraints, delta, newBounds; delta = { x: event.dx, y: event.dy }; context.delta = delta; newBounds = ResizeUtil.resizeBounds(shape, direction, delta); // ensure constraints during resize context.newBounds = ResizeUtil.ensureConstraints(newBounds, resizeConstraints); // update + cache executable state context.canExecute = self.canResize(context); }); eventBus.on('resize.end', function(event) { var context = event.context, shape = context.shape, canExecute = context.canExecute, newBounds = context.newBounds; if (canExecute) { // ensure we have actual pixel values for new bounds // (important when zoom level was > 1 during move) newBounds = roundBounds(newBounds); // perform the actual resize modeling.resizeShape(shape, newBounds); } }); } Resize.prototype.canResize = function(context) { var rules = this._rules; var ctx = pick(context, [ 'newBounds', 'shape', 'delta', 'direction' ]); return rules.allowed('shape.resize', ctx); }; /** * Activate a resize operation * * You may specify additional contextual information and must specify a * resize direction during activation of the resize event. * * @param {MouseEvent} event * @param {djs.model.Shape} shape * @param {Object|String} contextOrDirection */ Resize.prototype.activate = function(event, shape, contextOrDirection) { var dragging = this._dragging, context, direction; if (typeof contextOrDirection === 'string') { contextOrDirection = { direction: contextOrDirection }; } context = assign({ shape: shape }, contextOrDirection); direction = context.direction; if (!direction) { throw new Error('must provide a direction (nw|se|ne|sw)'); } dragging.init(event, 'resize', { autoActivate: true, cursor: 'resize-' + (/nw|se/.test(direction) ? 'nwse' : 'nesw'), data: { shape: shape, context: context } }); }; Resize.prototype.computeMinResizeBox = function(context) { var shape = context.shape, direction = context.direction, minDimensions, childrenBounds; minDimensions = context.minDimensions || { width: DEFAULT_MIN_WIDTH, height: DEFAULT_MIN_WIDTH }; // get children bounds childrenBounds = ResizeUtil.computeChildrenBBox(shape, context.childrenBoxPadding); // get correct minimum bounds from given resize direction // basically ensures that the minBounds is max(childrenBounds, minDimensions) return ResizeUtil.getMinResizeBounds(direction, shape, minDimensions, childrenBounds); }; Resize.$inject = [ 'eventBus', 'rules', 'modeling', 'dragging' ]; module.exports = Resize; },{"223":223,"252":252,"431":431,"438":438}],221:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var HANDLE_OFFSET = -2, HANDLE_SIZE = 5, HANDLE_HIT_SIZE = 20; var CLS_RESIZER = 'djs-resizer'; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgClear = _dereq_(476), svgCreate = _dereq_(478); var domEvent = _dereq_(450); var isPrimaryButton = _dereq_(274).isPrimaryButton; var asTRBL = _dereq_(252).asTRBL; var transform = _dereq_(279).transform; /** * This component is responsible for adding resize handles. * * @param {EventBus} eventBus * @param {Canvas} canvas * @param {Selection} selection * @param {Resize} resize */ function ResizeHandles(eventBus, canvas, selection, resize) { this._resize = resize; this._canvas = canvas; var self = this; eventBus.on('selection.changed', function(e) { var newSelection = e.newSelection; // remove old selection markers self.removeResizers(); // add new selection markers ONLY if single selection if (newSelection.length === 1) { forEach(newSelection, self.addResizer, self); } }); eventBus.on('shape.changed', function(e) { var shape = e.element; if (selection.isSelected(shape)) { self.removeResizers(); self.addResizer(shape); } }); } ResizeHandles.prototype.makeDraggable = function(element, gfx, direction) { var resize = this._resize; function startResize(event) { // only trigger on left mouse button if (isPrimaryButton(event)) { resize.activate(event, element, direction); } } domEvent.bind(gfx, 'mousedown', startResize); domEvent.bind(gfx, 'touchstart', startResize); }; ResizeHandles.prototype._createResizer = function(element, x, y, rotation, direction) { var resizersParent = this._getResizersParent(); var group = svgCreate('g'); svgClasses(group).add(CLS_RESIZER); svgClasses(group).add(CLS_RESIZER + '-' + element.id); svgClasses(group).add(CLS_RESIZER + '-' + direction); svgAppend(resizersParent, group); var origin = -HANDLE_SIZE + HANDLE_OFFSET; // Create four drag indicators on the outline var visual = svgCreate('rect'); svgAttr(visual, { x: origin, y: origin, width: HANDLE_SIZE, height: HANDLE_SIZE }); svgClasses(visual).add(CLS_RESIZER + '-visual'); svgAppend(group, visual); var hit = svgCreate('rect'); svgAttr(hit, { x: origin, y: origin, width: HANDLE_HIT_SIZE, height: HANDLE_HIT_SIZE }); svgClasses(hit).add(CLS_RESIZER + '-hit'); svgAppend(group, hit); transform(group, x, y, rotation); return group; }; ResizeHandles.prototype.createResizer = function(element, direction) { var resizer; var trbl = asTRBL(element); if (direction === 'nw') { resizer = this._createResizer(element, trbl.left, trbl.top, 0, direction); } else if (direction === 'ne') { resizer = this._createResizer(element, trbl.right, trbl.top, 90, direction); } else if (direction === 'se') { resizer = this._createResizer(element, trbl.right, trbl.bottom, 180, direction); } else { resizer = this._createResizer(element, trbl.left, trbl.bottom, 270, direction); } this.makeDraggable(element, resizer, direction); }; // resize handles implementation /////////////////////////////// /** * Add resizers for a given element. * * @param {djs.model.Shape} shape */ ResizeHandles.prototype.addResizer = function(shape) { var resize = this._resize; if (!resize.canResize({ shape: shape })) { return; } this.createResizer(shape, 'nw'); this.createResizer(shape, 'ne'); this.createResizer(shape, 'se'); this.createResizer(shape, 'sw'); }; /** * Remove all resizers */ ResizeHandles.prototype.removeResizers = function() { var resizersParent = this._getResizersParent(); svgClear(resizersParent); }; ResizeHandles.prototype._getResizersParent = function() { return this._canvas.getLayer('resizers'); }; ResizeHandles.$inject = [ 'eventBus', 'canvas', 'selection', 'resize' ]; module.exports = ResizeHandles; },{"252":252,"274":274,"279":279,"303":303,"450":450,"472":472,"474":474,"475":475,"476":476,"478":478}],222:[function(_dereq_,module,exports){ 'use strict'; var MARKER_RESIZING = 'djs-resizing', MARKER_RESIZE_NOT_OK = 'resize-not-ok'; var LOW_PRIORITY = 500; var svgAttr = _dereq_(474), svgRemove = _dereq_(481); var svgClasses = _dereq_(475); /** * Provides previews for resizing shapes when resizing. * * @param {EventBus} eventBus * @param {ElementRegistry} elementRegistry * @param {Canvas} canvas * @param {Styles} styles */ function ResizePreview(eventBus, elementRegistry, canvas, styles, previewSupport) { // add and update previews eventBus.on('resize.move', LOW_PRIORITY, function(event) { var context = event.context, shape = context.shape, bounds = context.newBounds, frame = context.frame; if (!frame) { frame = context.frame = previewSupport.addFrame(shape, canvas.getDefaultLayer()); canvas.addMarker(shape, MARKER_RESIZING); } if (bounds.width > 5) { svgAttr(frame, { x: bounds.x, width: bounds.width }); } if (bounds.height > 5) { svgAttr(frame, { y: bounds.y, height: bounds.height }); } if (context.canExecute) { svgClasses(frame).remove(MARKER_RESIZE_NOT_OK); } else { svgClasses(frame).add(MARKER_RESIZE_NOT_OK); } }); // remove previews eventBus.on('resize.cleanup', function(event) { var context = event.context, shape = context.shape, frame = context.frame; if (frame) { svgRemove(context.frame); } canvas.removeMarker(shape, MARKER_RESIZING); }); } ResizePreview.$inject = [ 'eventBus', 'elementRegistry', 'canvas', 'styles', 'previewSupport']; module.exports = ResizePreview; },{"474":474,"475":475,"481":481}],223:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301); var max = Math.max, min = Math.min; var DEFAULT_CHILD_BOX_PADDING = 20; var getBBox = _dereq_(266).getBBox; var asTRBL = _dereq_(252).asTRBL, asBounds = _dereq_(252).asBounds; function isNumber(a) { return typeof a === 'number'; } /** * Substract a TRBL from another * * @param {TRBL} trblA * @param {TRBL} trblB * * @return {TRBL} */ module.exports.substractTRBL = function(trblA, trblB) { return { top: trblA.top - trblB.top, right: trblA.right - trblB.right, bottom: trblA.bottom - trblB.bottom, left: trblA.left - trblB.left }; }; /** * Resize the given bounds by the specified delta from a given anchor point. * * @param {Bounds} bounds the bounding box that should be resized * @param {String} direction in which the element is resized (nw, ne, se, sw) * @param {Point} delta of the resize operation * * @return {Bounds} resized bounding box */ module.exports.resizeBounds = function(bounds, direction, delta) { var dx = delta.x, dy = delta.y; switch (direction) { case 'nw': return { x: bounds.x + dx, y: bounds.y + dy, width: bounds.width - dx, height: bounds.height - dy }; case 'sw': return { x: bounds.x + dx, y: bounds.y, width: bounds.width - dx, height: bounds.height + dy }; case 'ne': return { x: bounds.x, y: bounds.y + dy, width: bounds.width + dx, height: bounds.height - dy }; case 'se': return { x: bounds.x, y: bounds.y, width: bounds.width + dx, height: bounds.height + dy }; default: throw new Error('unrecognized direction: ' + direction); } }; /** * Resize the given bounds by applying the passed * { top, right, bottom, left } delta. * * @param {Bounds} bounds * @param {TRBL} trblResize * * @return {Bounds} */ module.exports.resizeTRBL = function(bounds, resize) { return { x: bounds.x + (resize.left || 0), y: bounds.y + (resize.top || 0), width: bounds.width - (resize.left || 0) + (resize.right || 0), height: bounds.height - (resize.top || 0) + (resize.bottom || 0) }; }; module.exports.reattachPoint = function(bounds, newBounds, point) { var sx = bounds.width / newBounds.width, sy = bounds.height / newBounds.height; return { x: Math.round((newBounds.x + newBounds.width / 2)) - Math.floor(((bounds.x + bounds.width / 2) - point.x) / sx), y: Math.round((newBounds.y + newBounds.height / 2)) - Math.floor(((bounds.y + bounds.height / 2) - point.y) / sy) }; }; function applyConstraints(attr, trbl, resizeConstraints) { var value = trbl[attr], minValue = resizeConstraints.min && resizeConstraints.min[attr], maxValue = resizeConstraints.max && resizeConstraints.max[attr]; if (isNumber(minValue)) { value = (/top|left/.test(attr) ? min : max)(value, minValue); } if (isNumber(maxValue)) { value = (/top|left/.test(attr) ? max : min)(value, maxValue); } return value; } module.exports.ensureConstraints = function(currentBounds, resizeConstraints) { if (!resizeConstraints) { return currentBounds; } var currentTrbl = asTRBL(currentBounds); return asBounds({ top: applyConstraints('top', currentTrbl, resizeConstraints), right: applyConstraints('right', currentTrbl, resizeConstraints), bottom: applyConstraints('bottom', currentTrbl, resizeConstraints), left: applyConstraints('left', currentTrbl, resizeConstraints) }); }; module.exports.getMinResizeBounds = function(direction, currentBounds, minDimensions, childrenBounds) { var currentBox = asTRBL(currentBounds); var minBox = { top: /n/.test(direction) ? currentBox.bottom - minDimensions.height : currentBox.top, left: /w/.test(direction) ? currentBox.right - minDimensions.width : currentBox.left, bottom: /s/.test(direction) ? currentBox.top + minDimensions.height : currentBox.bottom, right: /e/.test(direction) ? currentBox.left + minDimensions.width : currentBox.right }; var childrenBox = childrenBounds ? asTRBL(childrenBounds) : minBox; var combinedBox = { top: min(minBox.top, childrenBox.top), left: min(minBox.left, childrenBox.left), bottom: max(minBox.bottom, childrenBox.bottom), right: max(minBox.right, childrenBox.right) }; return asBounds(combinedBox); }; function asPadding(mayBePadding, defaultValue) { if (typeof mayBePadding !== 'undefined') { return mayBePadding; } else { return DEFAULT_CHILD_BOX_PADDING; } } function addPadding(bbox, padding) { var left, right, top, bottom; if (typeof padding === 'object') { left = asPadding(padding.left); right = asPadding(padding.right); top = asPadding(padding.top); bottom = asPadding(padding.bottom); } else { left = right = top = bottom = asPadding(padding); } return { x: bbox.x - left, y: bbox.y - top, width: bbox.width + left + right, height: bbox.height + top + bottom }; } module.exports.addPadding = addPadding; /** * Is the given element part of the resize * targets min boundary box? * * This is the default implementation which excludes * connections and labels. * * @param {djs.model.Base} element */ function isBBoxChild(element) { // exclude connections if (element.waypoints) { return false; } // exclude labels if (element.type === 'label') { return false; } return true; } /** * Return children bounding computed from a shapes children * or a list of prefiltered children. * * @param {djs.model.Shape|Array} shapeOrChildren * @param {Number|Object} padding * * @return {Bounds} */ function computeChildrenBBox(shapeOrChildren, padding) { var elements; // compute based on shape if (shapeOrChildren.length === undefined) { // grab all the children that are part of the // parents children box elements = filter(shapeOrChildren.children, isBBoxChild); } else { elements = shapeOrChildren; } if (elements.length) { return addPadding(getBBox(elements), padding); } } module.exports.computeChildrenBBox = computeChildrenBBox; },{"252":252,"266":266,"301":301}],224:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(227), _dereq_(162), _dereq_(217) ], __init__: [ 'resize', 'resizePreview', 'resizeHandles' ], resize: [ 'type', _dereq_(220) ], resizePreview: [ 'type', _dereq_(222) ], resizeHandles: [ 'type', _dereq_(221) ] }; },{"162":162,"217":217,"220":220,"221":221,"222":222,"227":227}],225:[function(_dereq_,module,exports){ 'use strict'; var inherits = _dereq_(289); var CommandInterceptor = _dereq_(119); /** * A basic provider that may be extended to implement modeling rules. * * Extensions should implement the init method to actually add their custom * modeling checks. Checks may be added via the #addRule(action, fn) method. * * @param {EventBus} eventBus */ function RuleProvider(eventBus) { CommandInterceptor.call(this, eventBus); this.init(); } RuleProvider.$inject = [ 'eventBus' ]; inherits(RuleProvider, CommandInterceptor); module.exports = RuleProvider; /** * Adds a modeling rule for the given action, implemented through * a callback function. * * The function will receive the modeling specific action context * to perform its check. It must return `false` to disallow the * action from happening or `true` to allow the action. * * A rule provider may pass over the evaluation to lower priority * rules by returning return nothing (or undefined). * * @example * * ResizableRules.prototype.init = function() { * * \/** * * Return `true`, `false` or nothing to denote * * _allowed_, _not allowed_ and _continue evaluating_. * *\/ * this.addRule('shape.resize', function(context) { * * var shape = context.shape; * * if (!context.newBounds) { * // check general resizability * if (!shape.resizable) { * return false; * } * * // not returning anything (read: undefined) * // will continue the evaluation of other rules * // (with lower priority) * return; * } else { * // element must have minimum size of 10*10 points * return context.newBounds.width > 10 && context.newBounds.height > 10; * } * }); * }; * * @param {String|Array} actions the identifier for the modeling action to check * @param {Number} [priority] the priority at which this rule is being applied * @param {Function} fn the callback function that performs the actual check */ RuleProvider.prototype.addRule = function(actions, priority, fn) { var self = this; if (typeof actions === 'string') { actions = [ actions ]; } actions.forEach(function(action) { self.canExecute(action, priority, function(context, action, event) { return fn(context); }, true); }); }; /** * Implement this method to add new rules during provider initialization. */ RuleProvider.prototype.init = function() {}; },{"119":119,"289":289}],226:[function(_dereq_,module,exports){ 'use strict'; /** * A service that provides rules for certain diagram actions. * * The default implementation will hook into the {@link CommandStack} * to perform the actual rule evaluation. Make sure to provide the * `commandStack` service with this module if you plan to use it. * * Together with this implementation you may use the {@link RuleProvider} * to implement your own rule checkers. * * This module is ment to be easily replaced, thus the tiny foot print. * * @param {Injector} injector */ function Rules(injector) { this._commandStack = injector.get('commandStack', false); } Rules.$inject = [ 'injector' ]; module.exports = Rules; /** * Returns whether or not a given modeling action can be executed * in the specified context. * * This implementation will respond with allow unless anyone * objects. * * @param {String} action the action to be checked * @param {Object} [context] the context to check the action in * * @return {Boolean} returns true, false or null depending on whether the * operation is allowed, not allowed or should be ignored. */ Rules.prototype.allowed = function(action, context) { var allowed = true; var commandStack = this._commandStack; if (commandStack) { allowed = commandStack.canExecute(action, context); } // map undefined to true, i.e. no rules return allowed === undefined ? true : allowed; }; },{}],227:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'rules' ], rules: [ 'type', _dereq_(226) ] }; },{"226":226}],228:[function(_dereq_,module,exports){ 'use strict'; var domClear = _dereq_(446), domDelegate = _dereq_(448), domQuery = _dereq_(452), domClasses = _dereq_(445), domAttr = _dereq_(444), domify = _dereq_(449); var getBoundingBox = _dereq_(266).getBBox; /** * Provides searching infrastructure */ function SearchPad(canvas, eventBus, overlays, selection) { this._open = false; this._results = []; this._eventMaps = []; this._canvas = canvas; this._eventBus = eventBus; this._overlays = overlays; this._selection = selection; // setup elements this._container = domify(SearchPad.BOX_HTML); this._searchInput = domQuery(SearchPad.INPUT_SELECTOR, this._container); this._resultsContainer = domQuery(SearchPad.RESULTS_CONTAINER_SELECTOR, this._container); // attach search pad this._canvas.getContainer().appendChild(this._container); // cleanup on destroy eventBus.on([ 'canvas.destroy', 'diagram.destroy' ], this.close, this); } SearchPad.$inject = [ 'canvas', 'eventBus', 'overlays', 'selection' ]; /** * Binds and keeps track of all event listereners */ SearchPad.prototype._bindEvents = function() { var self = this; function listen(el, selector, type, fn) { self._eventMaps.push({ el: el, type: type, listener: domDelegate.bind(el, selector, type, fn) }); } // close search on clicking anywhere outside listen(document, 'html', 'click', function(e) { self.close(); }, true); // stop event from propagating and closing search // focus on input listen(this._container, SearchPad.INPUT_SELECTOR, 'click', function(e) { e.stopPropagation(); e.delegateTarget.focus(); }); // preselect result on hover listen(this._container, SearchPad.RESULT_SELECTOR, 'mouseover', function(e) { e.stopPropagation(); self._scrollToNode(e.delegateTarget); self._preselect(e.delegateTarget); }); // selects desired result on mouse click listen(this._container, SearchPad.RESULT_SELECTOR, 'click', function(e) { e.stopPropagation(); self._select(e.delegateTarget); }); // prevent cursor in input from going left and right when using up/down to // navigate results listen(this._container, SearchPad.INPUT_SELECTOR, 'keydown', function(e) { // up if (e.keyCode === 38) { e.preventDefault(); } // down if (e.keyCode === 40) { e.preventDefault(); } }); // handle keyboard input listen(this._container, SearchPad.INPUT_SELECTOR, 'keyup', function(e) { // escape if (e.keyCode === 27) { return self.close(); } // enter if (e.keyCode === 13) { var selected = self._getCurrentResult(); return selected ? self._select(selected) : self.close(); } // up if (e.keyCode === 38) { return self._scrollToDirection(true); } // down if (e.keyCode === 40) { return self._scrollToDirection(); } // left && right // do not search while navigating text input if (e.keyCode === 37 || e.keyCode === 39) { return; } // anything else self._search(e.delegateTarget.value); }); }; /** * Unbinds all previously established listeners */ SearchPad.prototype._unbindEvents = function() { this._eventMaps.forEach(function(m) { domDelegate.unbind(m.el, m.type, m.listener); }); }; /** * Performs a search for the given pattern. * * @param {String} pattern */ SearchPad.prototype._search = function(pattern) { var self = this; this._clearResults(); // do not search on empty query if (!pattern || pattern === '') { return; } var searchResults = this._searchProvider.find(pattern); if (!searchResults.length) { return; } // append new results searchResults.forEach(function(result) { var id = result.element.id; var node = self._createResultNode(result, id); self._results[id] = { element: result.element, node: node }; }); // preselect first result var node = domQuery(SearchPad.RESULT_SELECTOR, this._resultsContainer); this._scrollToNode(node); this._preselect(node); }; /** * Navigate to the previous/next result. Defaults to next result. * @param {Boolean} previous */ SearchPad.prototype._scrollToDirection = function(previous) { var selected = this._getCurrentResult(); if (!selected) { return; } var node = previous ? selected.previousElementSibling : selected.nextElementSibling; if (node) { this._scrollToNode(node); this._preselect(node); } }; /** * Scroll to the node if it is not visible. * * @param {Element} node */ SearchPad.prototype._scrollToNode = function(node) { if (!node || node === this._getCurrentResult()) { return; } var nodeOffset = node.offsetTop; var containerScroll = this._resultsContainer.scrollTop; var bottomScroll = nodeOffset - this._resultsContainer.clientHeight + node.clientHeight; if (nodeOffset < containerScroll) { this._resultsContainer.scrollTop = nodeOffset; } else if (containerScroll < bottomScroll) { this._resultsContainer.scrollTop = bottomScroll; } }; /** * Clears all results data. */ SearchPad.prototype._clearResults = function() { domClear(this._resultsContainer); this._results = []; this._resetOverlay(); this._eventBus.fire('searchPad.cleared'); }; /** * Get currently selected result. * * @return {Element} */ SearchPad.prototype._getCurrentResult = function() { return domQuery(SearchPad.RESULT_SELECTED_SELECTOR, this._resultsContainer); }; /** * Create result DOM element within results container * that corresponds to a search result. * * 'result' : one of the elements returned by SearchProvider * 'id' : id attribute value to assign to the new DOM node * return : created DOM element * * @param {SearchResult} result * @param {String} id * @return {Element} */ SearchPad.prototype._createResultNode = function(result, id) { var node = domify(SearchPad.RESULT_HTML); // create only if available if (result.primaryTokens.length > 0) { createInnerTextNode(node, result.primaryTokens, SearchPad.RESULT_PRIMARY_HTML); } // secondary tokens (represent element ID) are allways available createInnerTextNode(node, result.secondaryTokens, SearchPad.RESULT_SECONDARY_HTML); domAttr(node, SearchPad.RESULT_ID_ATTRIBUTE, id); this._resultsContainer.appendChild(node); return node; }; /** * Register search element provider. * * SearchProvider.find - provides search function over own elements * (pattern) => [{ text: , element: }, ...] * * @param {SearchProvider} provider */ SearchPad.prototype.registerProvider = function(provider) { this._searchProvider = provider; }; /** * Open search pad. */ SearchPad.prototype.open = function() { if (!this._searchProvider) { throw new Error('no search provider registered'); } if (this.isOpen()) { return; } this._bindEvents(); this._open = true; domClasses(this._container).add('open'); this._searchInput.focus(); this._eventBus.fire('searchPad.opened'); }; /** * Close search pad. */ SearchPad.prototype.close = function() { if (!this.isOpen()) { return; } this._unbindEvents(); this._open = false; domClasses(this._container).remove('open'); this._clearResults(); this._searchInput.value = ''; this._searchInput.blur(); this._resetOverlay(); this._eventBus.fire('searchPad.closed'); }; /** * Toggles search pad on/off. */ SearchPad.prototype.toggle = function() { this.isOpen() ? this.close() : this.open(); }; /** * Report state of search pad. */ SearchPad.prototype.isOpen = function() { return this._open; }; /** * Preselect result entry. * * @param {Element} element */ SearchPad.prototype._preselect = function(node) { var selectedNode = this._getCurrentResult(); // already selected if (node === selectedNode) { return; } // removing preselection from current node if (selectedNode) { domClasses(selectedNode).remove(SearchPad.RESULT_SELECTED_CLASS); } var id = domAttr(node, SearchPad.RESULT_ID_ATTRIBUTE); var element = this._results[id].element; domClasses(node).add(SearchPad.RESULT_SELECTED_CLASS); this._resetOverlay(element); this._centerViewbox(element); this._selection.select(element); this._eventBus.fire('searchPad.preselected', element); }; /** * Select result node. * * @param {Element} element */ SearchPad.prototype._select = function(node) { var id = domAttr(node, SearchPad.RESULT_ID_ATTRIBUTE); var element = this._results[id].element; this.close(); this._resetOverlay(); this._centerViewbox(element); this._selection.select(element); this._eventBus.fire('searchPad.selected', element); }; /** * Center viewbox on the element middle point. * * @param {Element} element */ SearchPad.prototype._centerViewbox = function(element) { var viewbox = this._canvas.viewbox(); var box = getBoundingBox(element); var newViewbox = { x: (box.x + box.width/2) - viewbox.outer.width/2, y: (box.y + box.height/2) - viewbox.outer.height/2, width: viewbox.outer.width, height: viewbox.outer.height }; this._canvas.viewbox(newViewbox); this._canvas.zoom(viewbox.scale); }; /** * Reset overlay removes and, optionally, set * overlay to a new element. * * @param {Element} element */ SearchPad.prototype._resetOverlay = function(element) { if (this._overlayId) { this._overlays.remove(this._overlayId); } if (element) { var box = getBoundingBox(element); var overlay = constructOverlay(box); this._overlayId = this._overlays.add(element, overlay); } }; module.exports = SearchPad; /** * Construct overlay object for the given bounding box. * * @param {BoundingBox} box * @return {Object} */ function constructOverlay(box) { var offset = 6; var w = box.width + offset * 2; var h = box.height + offset * 2; var styles = [ 'width: '+ w +'px', 'height: '+ h + 'px' ].join('; '); return { position: { bottom: h - offset, right: w - offset }, show: true, html: '
' }; } /** * Creates and appends child node from result tokens and HTML template. * * @param {Element} node * @param {Array} tokens * @param {String} template */ function createInnerTextNode(parentNode, tokens, template) { var text = createHtmlText(tokens); var childNode = domify(template); childNode.innerHTML = text; parentNode.appendChild(childNode); } /** * Create internal HTML markup from result tokens. * Caters for highlighting pattern matched tokens. * * @param {Array} tokens * @return {String} */ function createHtmlText(tokens) { var htmlText = ''; tokens.forEach(function(t) { if (t.matched) { htmlText += '' + t.matched + ''; } else { htmlText += t.normal; } }); return htmlText !== '' ? htmlText : null; } /** * CONSTANTS */ SearchPad.CONTAINER_SELECTOR = '.djs-search-container'; SearchPad.INPUT_SELECTOR = '.djs-search-input input'; SearchPad.RESULTS_CONTAINER_SELECTOR = '.djs-search-results'; SearchPad.RESULT_SELECTOR = '.djs-search-result'; SearchPad.RESULT_SELECTED_CLASS = 'djs-search-result-selected'; SearchPad.RESULT_SELECTED_SELECTOR = '.' + SearchPad.RESULT_SELECTED_CLASS; SearchPad.RESULT_ID_ATTRIBUTE = 'data-result-id'; SearchPad.RESULT_HIGHLIGHT_CLASS = 'djs-search-highlight'; SearchPad.OVERLAY_CLASS = 'djs-search-overlay'; SearchPad.BOX_HTML = '
' + '
' + '' + '
' + '
' + '
'; SearchPad.RESULT_HTML = '
'; SearchPad.RESULT_PRIMARY_HTML = '
'; SearchPad.RESULT_SECONDARY_HTML = '

'; },{"266":266,"444":444,"445":445,"446":446,"448":448,"449":449,"452":452}],229:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(211), _dereq_(233) ], searchPad: [ 'type', _dereq_(228) ] }; },{"211":211,"228":228,"233":233}],230:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), forEach = _dereq_(303); /** * A service that offers the current selection in a diagram. * Offers the api to control the selection, too. * * @class * * @param {EventBus} eventBus the event bus */ function Selection(eventBus) { this._eventBus = eventBus; this._selectedElements = []; var self = this; eventBus.on([ 'shape.remove', 'connection.remove' ], function(e) { var element = e.element; self.deselect(element); }); eventBus.on([ 'diagram.clear' ], function(e) { self.select(null); }); } Selection.$inject = [ 'eventBus' ]; module.exports = Selection; Selection.prototype.deselect = function(element) { var selectedElements = this._selectedElements; var idx = selectedElements.indexOf(element); if (idx !== -1) { var oldSelection = selectedElements.slice(); selectedElements.splice(idx, 1); this._eventBus.fire('selection.changed', { oldSelection: oldSelection, newSelection: selectedElements }); } }; Selection.prototype.get = function() { return this._selectedElements; }; Selection.prototype.isSelected = function(element) { return this._selectedElements.indexOf(element) !== -1; }; /** * This method selects one or more elements on the diagram. * * By passing an additional add parameter you can decide whether or not the element(s) * should be added to the already existing selection or not. * * @method Selection#select * * @param {Object|Object[]} elements element or array of elements to be selected * @param {boolean} [add] whether the element(s) should be appended to the current selection, defaults to false */ Selection.prototype.select = function(elements, add) { var selectedElements = this._selectedElements, oldSelection = selectedElements.slice(); if (!isArray(elements)) { elements = elements ? [ elements ] : []; } // selection may be cleared by passing an empty array or null // to the method if (add) { forEach(elements, function(element) { if (selectedElements.indexOf(element) !== -1) { // already selected return; } else { selectedElements.push(element); } }); } else { this._selectedElements = selectedElements = elements.slice(); } this._eventBus.fire('selection.changed', { oldSelection: oldSelection, newSelection: selectedElements }); }; },{"303":303,"422":422}],231:[function(_dereq_,module,exports){ 'use strict'; var hasPrimaryModifier = _dereq_(274).hasPrimaryModifier; var find = _dereq_(302); function SelectionBehavior(eventBus, selection, canvas, elementRegistry) { eventBus.on('create.end', 500, function(e) { // select the created shape after a // successful create operation if (e.context.canExecute) { selection.select(e.context.shape); } }); eventBus.on('connect.end', 500, function(e) { // select the connect end target // after a connect operation if (e.context.canExecute && e.context.target) { selection.select(e.context.target); } }); eventBus.on('shape.move.end', 500, function(e) { var previousSelection = e.previousSelection || []; var shape = elementRegistry.get(e.context.shape.id); // make sure at least the main moved element is being // selected after a move operation var inSelection = find(previousSelection, function(selectedShape) { return shape.id === selectedShape.id; }); if (!inSelection) { selection.select(shape); } }); // Shift + click selection eventBus.on('element.click', function(event) { var element = event.element; // do not select the root element // or connections if (element === canvas.getRootElement()) { element = null; } var isSelected = selection.isSelected(element), isMultiSelect = selection.get().length > 1; // mouse-event: SELECTION_KEY var add = hasPrimaryModifier(event); // select OR deselect element in multi selection if (isSelected && isMultiSelect) { if (add) { return selection.deselect(element); } else { return selection.select(element); } } else if (!isSelected) { selection.select(element, add); } else { selection.deselect(element); } }); } SelectionBehavior.$inject = [ 'eventBus', 'selection', 'canvas', 'elementRegistry' ]; module.exports = SelectionBehavior; },{"274":274,"302":302}],232:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var MARKER_HOVER = 'hover', MARKER_SELECTED = 'selected'; /** * A plugin that adds a visible selection UI to shapes and connections * by appending the hover and selected classes to them. * * @class * * Makes elements selectable, too. * * @param {EventBus} events * @param {SelectionService} selection * @param {Canvas} canvas */ function SelectionVisuals(events, canvas, selection, styles) { this._multiSelectionBox = null; function addMarker(e, cls) { canvas.addMarker(e, cls); } function removeMarker(e, cls) { canvas.removeMarker(e, cls); } events.on('element.hover', function(event) { addMarker(event.element, MARKER_HOVER); }); events.on('element.out', function(event) { removeMarker(event.element, MARKER_HOVER); }); events.on('selection.changed', function(event) { function deselect(s) { removeMarker(s, MARKER_SELECTED); } function select(s) { addMarker(s, MARKER_SELECTED); } var oldSelection = event.oldSelection, newSelection = event.newSelection; forEach(oldSelection, function(e) { if (newSelection.indexOf(e) === -1) { deselect(e); } }); forEach(newSelection, function(e) { if (oldSelection.indexOf(e) === -1) { select(e); } }); }); } SelectionVisuals.$inject = [ 'eventBus', 'canvas', 'selection', 'styles' ]; module.exports = SelectionVisuals; },{"303":303}],233:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'selectionVisuals', 'selectionBehavior' ], __depends__: [ _dereq_(170), _dereq_(209) ], selection: [ 'type', _dereq_(230) ], selectionVisuals: [ 'type', _dereq_(232) ], selectionBehavior: [ 'type', _dereq_(231) ] }; },{"170":170,"209":209,"230":230,"231":231,"232":232}],234:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var snapTo = _dereq_(235).snapTo; /** * A snap context, containing the (possibly incomplete) * mappings of drop targets (to identify the snapping) * to computed snap points. */ function SnapContext() { /** * Map mapping drop targets to * a list of possible snappings. * * @type {Object} */ this._targets = {}; /** * Map initial positioning of element * regarding various snap directions. * * @type {Object} */ this._snapOrigins = {}; /** * List of snap locations * * @type {Array} */ this._snapLocations = []; /** * Map> of default snapping locations * * @type {Object} */ this._defaultSnaps = {}; } SnapContext.prototype.getSnapOrigin = function(snapLocation) { return this._snapOrigins[snapLocation]; }; SnapContext.prototype.setSnapOrigin = function(snapLocation, initialValue) { this._snapOrigins[snapLocation] = initialValue; if (this._snapLocations.indexOf(snapLocation) === -1) { this._snapLocations.push(snapLocation); } }; SnapContext.prototype.addDefaultSnap = function(type, point) { var snapValues = this._defaultSnaps[type]; if (!snapValues) { snapValues = this._defaultSnaps[type] = []; } snapValues.push(point); }; /** * Return a number of initialized snaps, i.e. snap locations such as * top-left, mid, bottom-right and so forth. * * @return {Array} snapLocations */ SnapContext.prototype.getSnapLocations = function() { return this._snapLocations; }; /** * Set the snap locations for this context. * * The order of locations determines precedence. * * @param {Array} snapLocations */ SnapContext.prototype.setSnapLocations = function(snapLocations) { this._snapLocations = snapLocations; }; /** * Get snap points for a given target * * @param {Element|String} target */ SnapContext.prototype.pointsForTarget = function(target) { var targetId = target.id || target; var snapPoints = this._targets[targetId]; if (!snapPoints) { snapPoints = this._targets[targetId] = new SnapPoints(); snapPoints.initDefaults(this._defaultSnaps); } return snapPoints; }; module.exports = SnapContext; /** * Creates the snap points and initializes them with the * given default values. * * @param {Object>} [defaultPoints] */ function SnapPoints(defaultSnaps) { /** * Map>> mapping snap locations, * i.e. top-left, bottom-right, center to actual snap values. * * @type {Object} */ this._snapValues = {}; } SnapPoints.prototype.add = function(snapLocation, point) { var snapValues = this._snapValues[snapLocation]; if (!snapValues) { snapValues = this._snapValues[snapLocation] = { x: [], y: [] }; } if (snapValues.x.indexOf(point.x) === -1) { snapValues.x.push(point.x); } if (snapValues.y.indexOf(point.y) === -1) { snapValues.y.push(point.y); } }; SnapPoints.prototype.snap = function(point, snapLocation, axis, tolerance) { var snappingValues = this._snapValues[snapLocation]; return snappingValues && snapTo(point[axis], snappingValues[axis], tolerance); }; /** * Initialize a number of default snapping points. * * @param {Object} defaultSnaps */ SnapPoints.prototype.initDefaults = function(defaultSnaps) { var self = this; forEach(defaultSnaps || {}, function(snapPoints, snapLocation) { forEach(snapPoints, function(point) { self.add(snapLocation, point); }); }); }; },{"235":235,"303":303}],235:[function(_dereq_,module,exports){ 'use strict'; var abs = Math.abs, round = Math.round; /** * Snap value to a collection of reference values. * * @param {Number} value * @param {Array} values * @param {Number} [tolerance=10] * * @return {Number} the value we snapped to or null, if none snapped */ function snapTo(value, values, tolerance) { tolerance = tolerance === undefined ? 10 : tolerance; var idx, snapValue; for (idx = 0; idx < values.length; idx++) { snapValue = values[idx]; if (abs(snapValue - value) <= tolerance) { return snapValue; } } } module.exports.snapTo = snapTo; function topLeft(bounds) { return { x: bounds.x, y: bounds.y }; } module.exports.topLeft = topLeft; function mid(bounds, defaultValue) { if (!bounds || isNaN(bounds.x) || isNaN(bounds.y)) { return defaultValue; } return { x: round(bounds.x + bounds.width / 2), y: round(bounds.y + bounds.height / 2) }; } module.exports.mid = mid; function bottomRight(bounds) { return { x: bounds.x + bounds.width, y: bounds.y + bounds.height }; } module.exports.bottomRight = bottomRight; /** * Retrieve the snap state of the given event. * * @param {Event} event * @param {String} axis * * @return {Boolean} the snapped state * */ module.exports.isSnapped = function(event, axis) { var snapped = event.snapped; if (!snapped) { return false; } if (typeof axis === 'string') { return snapped[axis]; } return snapped.x && snapped.y; }; /** * Set the given event as snapped. * * This method may change the x and/or y position of the shape * from the given event! * * @param {Event} event * @param {String} axis * @param {Number|Boolean} value * * @return {Number} old value */ module.exports.setSnapped = function(event, axis, value) { if (typeof axis !== 'string') { throw new Error('axis must be in [x, y]'); } if (typeof value !== 'number' && value !== false) { throw new Error('value must be Number or false'); } var delta, previousValue = event[axis]; var snapped = event.snapped = (event.snapped || {}); if (value === false) { snapped[axis] = false; } else { snapped[axis] = true; delta = value - previousValue; event[axis] += delta; event['d' + axis] += delta; } return previousValue; }; },{}],236:[function(_dereq_,module,exports){ 'use strict'; var filter = _dereq_(301), forEach = _dereq_(303), debounce = _dereq_(313); var mid = _dereq_(235).mid; var SnapContext = _dereq_(234); var SnapUtil = _dereq_(235); var HIGHER_PRIORITY = 1250; var isSnapped = SnapUtil.isSnapped, setSnapped = SnapUtil.setSnapped; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478); /** * A general purpose snapping component for diagram elements. * * @param {EventBus} eventBus * @param {Canvas} canvas */ function Snapping(eventBus, canvas) { this._canvas = canvas; var self = this; eventBus.on([ 'shape.move.start', 'create.start' ], function(event) { self.initSnap(event); }); eventBus.on([ 'shape.move.move', 'shape.move.end', 'create.move', 'create.end' ], HIGHER_PRIORITY, function(event) { if (event.originalEvent && event.originalEvent.ctrlKey) { return; } if (isSnapped(event)) { return; } self.snap(event); }); eventBus.on([ 'shape.move.cleanup', 'create.cleanup' ], function(event) { self.hide(); }); // delay hide by 1000 seconds since last match this._asyncHide = debounce(this.hide, 1000); } Snapping.$inject = [ 'eventBus', 'canvas' ]; module.exports = Snapping; Snapping.prototype.initSnap = function(event) { var context = event.context, shape = context.shape, snapContext = context.snapContext; if (!snapContext) { snapContext = context.snapContext = new SnapContext(); } var snapMid = mid(shape, event); snapContext.setSnapOrigin('mid', { x: snapMid.x - event.x, y: snapMid.y - event.y }); return snapContext; }; Snapping.prototype.snap = function(event) { var context = event.context, snapContext = context.snapContext, shape = context.shape, target = context.target, snapLocations = snapContext.getSnapLocations(); if (!target) { return; } var snapPoints = snapContext.pointsForTarget(target); if (!snapPoints.initialized) { this.addTargetSnaps(snapPoints, shape, target); snapPoints.initialized = true; } var snapping = { x: isSnapped(event, 'x'), y: isSnapped(event, 'y') }; forEach(snapLocations, function(location) { var snapOrigin = snapContext.getSnapOrigin(location); var snapCurrent = { x: event.x + snapOrigin.x, y: event.y + snapOrigin.y }; // snap on both axis, if not snapped already forEach([ 'x', 'y' ], function(axis) { var locationSnapping; if (!snapping[axis]) { locationSnapping = snapPoints.snap(snapCurrent, location, axis, 7); if (locationSnapping !== undefined) { snapping[axis] = { value: locationSnapping, originValue: locationSnapping - snapOrigin[axis] }; } } }); // no more need to snap, drop out of interation if (snapping.x && snapping.y) { return false; } }); // show snap visuals this.showSnapLine('vertical', snapping.x && snapping.x.value); this.showSnapLine('horizontal', snapping.y && snapping.y.value); // adjust event { x, y, dx, dy } and mark as snapping forEach([ 'x', 'y' ], function(axis) { var axisSnapping = snapping[axis]; if (typeof axisSnapping === 'object') { // set as snapped and adjust the x and/or y position of the event setSnapped(event, axis, axisSnapping.originValue); } }); }; Snapping.prototype._createLine = function(orientation) { var root = this._canvas.getLayer('snap'); // var line = root.path('M0,0 L0,0').addClass('djs-snap-line'); var line = svgCreate('path'); svgAttr(line, { d: 'M0,0 L0,0' }); svgClasses(line).add('djs-snap-line'); svgAppend(root, line); return { update: function(position) { if (typeof position !== 'number') { svgAttr(line, { display: 'none' }); } else { if (orientation === 'horizontal') { svgAttr(line, { d: 'M-100000,' + position + ' L+100000,' + position, display: '' }); } else { svgAttr(line, { d: 'M ' + position + ',-100000 L ' + position + ', +100000', display: '' }); } } } }; }; Snapping.prototype._createSnapLines = function() { this._snapLines = { horizontal: this._createLine('horizontal'), vertical: this._createLine('vertical') }; }; Snapping.prototype.showSnapLine = function(orientation, position) { var line = this.getSnapLine(orientation); if (line) { line.update(position); } this._asyncHide(); }; Snapping.prototype.getSnapLine = function(orientation) { if (!this._snapLines) { this._createSnapLines(); } return this._snapLines[orientation]; }; Snapping.prototype.hide = function() { forEach(this._snapLines, function(l) { l.update(); }); }; Snapping.prototype.addTargetSnaps = function(snapPoints, shape, target) { var siblings = this.getSiblings(shape, target); forEach(siblings, function(s) { snapPoints.add('mid', mid(s)); }); }; Snapping.prototype.getSiblings = function(element, target) { // snap to all siblings that are not hidden, labels, attached to element or element itself return target && filter(target.children, function(e) { return !e.hidden && !e.labelTarget && e.host !== element && e !== element; }); }; },{"234":234,"235":235,"301":301,"303":303,"313":313,"472":472,"474":474,"475":475,"478":478}],237:[function(_dereq_,module,exports){ 'use strict'; var SpaceUtil = _dereq_(239); var Cursor = _dereq_(265); var hasPrimaryModifier = _dereq_(274).hasPrimaryModifier; var abs = Math.abs, round = Math.round; var HIGH_PRIORITY = 1500, SPACE_TOOL_CURSOR = 'crosshair'; var AXIS_TO_DIMENSION = { x: 'width', y: 'height' }, AXIS_INVERTED = { x: 'y', y: 'x' }; var getAllChildren = _dereq_(266).selfAndAllChildren; var assign = _dereq_(431), forEach = _dereq_(303); /** * A tool that allows users to create and remove space in a diagram. * * The tool needs to be activated manually via {@link SpaceTool#activate(MouseEvent)}. */ function SpaceTool(eventBus, dragging, canvas, modeling, rules, toolManager) { this._canvas = canvas; this._dragging = dragging; this._modeling = modeling; this._rules = rules; this._toolManager = toolManager; var self = this; toolManager.registerTool('space', { tool: 'spaceTool.selection', dragging: 'spaceTool' }); eventBus.on('spaceTool.selection.end', function(event) { var target = event.originalEvent.target; // only reactive on diagram click // on some occasions, event.hover is not set and we have to check if the target is an svg if (!event.hover && !(target instanceof SVGElement)) { return; } eventBus.once('spaceTool.selection.ended', function() { self.activateMakeSpace(event.originalEvent); }); }); eventBus.on('spaceTool.move', HIGH_PRIORITY , function(event) { var context = event.context; if (!context.initialized) { context.initialized = self.initializeMakeSpace(event, context); } }); eventBus.on('spaceTool.end', function(event) { var context = event.context, axis = context.axis, direction = context.direction, movingShapes = context.movingShapes, resizingShapes = context.resizingShapes; // skip if create space has not been initialized yet if (!context.initialized) { return; } var delta = { x: round(event.dx), y: round(event.dy) }; delta[ AXIS_INVERTED[ axis ] ] = 0; var insideBounds = true; // check if the space tool cursor is inside of bounds of // any of the shapes that would be resized. forEach(resizingShapes, function(shape) { if ((direction === 'w' && event.x > shape.x + shape.width) || (direction === 'e' && event.x < shape.x) || (direction === 'n' && event.y > shape.y + shape.height) || (direction === 's' && event.y < shape.y)) { insideBounds = false; return; } }); if (insideBounds) { // make space only if the cursor is inside bounds self.makeSpace(movingShapes, resizingShapes, delta, direction); } eventBus.once('spaceTool.ended', function(event) { // reactivate space tool after usage self.activateSelection(event.originalEvent, true, true); }); }); } SpaceTool.$inject = [ 'eventBus', 'dragging', 'canvas', 'modeling', 'rules', 'toolManager' ]; module.exports = SpaceTool; /** * Activate space tool selection * * @param {MouseEvent} event * @param {Boolean} autoActivate */ SpaceTool.prototype.activateSelection = function(event, autoActivate, reactivate) { this._dragging.init(event, 'spaceTool.selection', { trapClick: false, cursor: SPACE_TOOL_CURSOR, autoActivate: autoActivate, data: { context: { reactivate: reactivate } } }); }; /** * Activate make space * * @param {MouseEvent} event */ SpaceTool.prototype.activateMakeSpace = function(event) { this._dragging.init(event, 'spaceTool', { autoActivate: true, cursor: SPACE_TOOL_CURSOR, data: { context: {} } }); }; /** * Actually make space on the diagram * * @param {Array} movingShapes * @param {Array} resizingShapes * @param {Point} delta * @param {String} direction */ SpaceTool.prototype.makeSpace = function(movingShapes, resizingShapes, delta, direction) { return this._modeling.createSpace(movingShapes, resizingShapes, delta, direction); }; /** * Initialize make space and return true if that was successful. * * @param {Event} event * @param {Object} context * * @return {Boolean} true, if successful */ SpaceTool.prototype.initializeMakeSpace = function(event, context) { var axis = abs(event.dx) > abs(event.dy) ? 'x' : 'y', offset = event['d' + axis], // start point of create space operation spacePos = event[axis] - offset; if (abs(offset) < 5) { return false; } // invert the offset in order to remove space when moving left if (offset < 0) { offset *= -1; } // inverts the offset to choose the shapes // on the opposite side of the resizer if // a key modifier is pressed if (hasPrimaryModifier(event)) { offset *= -1; } var rootShape = this._canvas.getRootElement(); var allShapes = getAllChildren(rootShape, true); var adjustments = this.calculateAdjustments(allShapes, axis, offset, spacePos); // store data in context assign(context, adjustments, { axis: axis, direction: SpaceUtil.getDirection(axis, offset) }); Cursor.set('resize-' + (axis === 'x' ? 'ew' : 'ns')); return true; }; /** * Calculate adjustments needed when making space * * @param {Array} elements * @param {String} axis * @param {Number} offset * @param {Number} spacePos * * @return {Object} */ SpaceTool.prototype.calculateAdjustments = function(elements, axis, offset, spacePos) { var movingShapes = [], resizingShapes = []; var rules = this._rules; // collect all elements that need to be moved _AND_ // resized given on the initial create space position elements.forEach(function(shape) { var shapeStart = shape[axis], shapeEnd = shapeStart + shape[AXIS_TO_DIMENSION[axis]]; // checking if it's root if (!shape.parent) { return; } // checking if it's a shape if (shape.waypoints) { return; } // shape after spacePos if (offset > 0 && shapeStart > spacePos) { return movingShapes.push(shape); } // shape before spacePos if (offset < 0 && shapeEnd < spacePos) { return movingShapes.push(shape); } // shape on top of spacePos, resize only if allowed if (shapeStart < spacePos && shapeEnd > spacePos && rules.allowed('shape.resize', { shape: shape })) { return resizingShapes.push(shape); } }); return { movingShapes: movingShapes, resizingShapes: resizingShapes }; }; SpaceTool.prototype.toggle = function() { if (this.isActive()) { this._dragging.cancel(); } else { this.activateSelection(); } }; SpaceTool.prototype.isActive = function() { var context = this._dragging.context(); return context && /^spaceTool/.test(context.prefix); }; },{"239":239,"265":265,"266":266,"274":274,"303":303,"431":431}],238:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var MARKER_DRAGGING = 'djs-dragging', MARKER_RESIZING = 'djs-resizing'; var LOW_PRIORITY = 250; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgClasses = _dereq_(475), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var translate = _dereq_(279).translate; /** * Provides previews for selecting/moving/resizing shapes when creating/removing space. * * @param {EventBus} eventBus * @param {ElementRegistry} elementRegistry * @param {Canvas} canvas * @param {Styles} styles */ function SpaceToolPreview(eventBus, elementRegistry, canvas, styles, previewSupport) { function addPreviewGfx(collection, dragGroup) { forEach(collection, function(element) { previewSupport.addDragger(element, dragGroup); canvas.addMarker(element, MARKER_DRAGGING); }); } // add crosshair eventBus.on('spaceTool.selection.start', function(event) { var space = canvas.getLayer('space'), context = event.context; var orientation = { x: 'M 0,-10000 L 0,10000', y: 'M -10000,0 L 10000,0' }; var crosshairGroup = svgCreate('g'); svgAttr(crosshairGroup, styles.cls('djs-crosshair-group', [ 'no-events' ])); svgAppend(space, crosshairGroup); // horizontal path var pathX = svgCreate('path'); svgAttr(pathX, 'd', orientation.x); svgClasses(pathX).add('djs-crosshair'); svgAppend(crosshairGroup, pathX); // vertical path var pathY = svgCreate('path'); svgAttr(pathY, 'd', orientation.y); svgClasses(pathY).add('djs-crosshair'); svgAppend(crosshairGroup, pathY); context.crosshairGroup = crosshairGroup; }); // update crosshair eventBus.on('spaceTool.selection.move', function(event) { var crosshairGroup = event.context.crosshairGroup; translate(crosshairGroup, event.x, event.y); }); // remove crosshair eventBus.on('spaceTool.selection.cleanup', function(event) { var context = event.context, crosshairGroup = context.crosshairGroup; if (crosshairGroup) { svgRemove(crosshairGroup); } }); // add and update move/resize previews eventBus.on('spaceTool.move', LOW_PRIORITY, function(event) { var context = event.context, line = context.line, axis = context.axis, movingShapes = context.movingShapes, resizingShapes = context.resizingShapes; if (!context.initialized) { return; } if (!context.dragGroup) { var spaceLayer = canvas.getLayer('space'); line = svgCreate('path'); svgAttr(line, 'd', 'M0,0 L0,0'); svgClasses(line).add('djs-crosshair'); svgAppend(spaceLayer, line); context.line = line; var dragGroup = svgCreate('g'); svgAttr(dragGroup, styles.cls('djs-drag-group', [ 'no-events' ])); svgAppend(canvas.getDefaultLayer(), dragGroup); // shapes addPreviewGfx(movingShapes, dragGroup); // connections var movingConnections = context.movingConnections = elementRegistry.filter(function(element) { var sourceIsMoving = false; forEach(movingShapes, function(shape) { forEach(shape.outgoing, function(connection) { if (element === connection) { sourceIsMoving = true; } }); }); var targetIsMoving = false; forEach(movingShapes, function(shape) { forEach(shape.incoming, function(connection) { if (element === connection) { targetIsMoving = true; } }); }); var sourceIsResizing = false; forEach(resizingShapes, function(shape) { forEach(shape.outgoing, function(connection) { if (element === connection) { sourceIsResizing = true; } }); }); var targetIsResizing = false; forEach(resizingShapes, function(shape) { forEach(shape.incoming, function(connection) { if (element === connection) { targetIsResizing = true; } }); }); return isConnection(element) && (sourceIsMoving || sourceIsResizing) && (targetIsMoving || targetIsResizing); }); addPreviewGfx(movingConnections, dragGroup); context.dragGroup = dragGroup; } if (!context.frameGroup) { var frameGroup = svgCreate('g'); svgAttr(frameGroup, styles.cls('djs-frame-group', [ 'no-events' ])); svgAppend(canvas.getDefaultLayer(), frameGroup); var frames = []; forEach(resizingShapes, function(shape) { var frame = previewSupport.addFrame(shape, frameGroup); frames.push({ element: frame, initialWidth: frame.getBBox().width, initialHeight: frame.getBBox().height }); canvas.addMarker(shape, MARKER_RESIZING); }); context.frameGroup = frameGroup; context.frames = frames; } var orientation = { x: 'M' + event.x + ', -10000 L' + event.x + ', 10000', y: 'M -10000, ' + event.y + ' L 10000, ' + event.y }; svgAttr(line, { path: orientation[ axis ], display: '' }); var opposite = { x: 'y', y: 'x' }; var delta = { x: event.dx, y: event.dy }; delta[ opposite[ context.axis ] ] = 0; // update move previews translate(context.dragGroup, delta.x, delta.y); // update resize previews forEach(context.frames, function(frame) { if (frame.initialWidth + delta.x > 5) { svgAttr(frame.element, { width: frame.initialWidth + delta.x }); } if (frame.initialHeight + delta.y > 5) { svgAttr(frame.element, { height: frame.initialHeight + delta.y }); } }); }); // remove move/resize previews eventBus.on('spaceTool.cleanup', function(event) { var context = event.context, movingShapes = context.movingShapes, movingConnections = context.movingConnections, resizingShapes = context.resizingShapes, line = context.line, dragGroup = context.dragGroup, frameGroup = context.frameGroup; // moving shapes forEach(movingShapes, function(shape) { canvas.removeMarker(shape, MARKER_DRAGGING); }); // moving connections forEach(movingConnections, function(connection) { canvas.removeMarker(connection, MARKER_DRAGGING); }); if (dragGroup) { svgRemove(line); svgRemove(dragGroup); } forEach(resizingShapes, function(shape) { canvas.removeMarker(shape, MARKER_RESIZING); }); if (frameGroup) { svgRemove(frameGroup); } }); } SpaceToolPreview.$inject = [ 'eventBus', 'elementRegistry', 'canvas', 'styles', 'previewSupport' ]; module.exports = SpaceToolPreview; ////////// helpers ////////// /** * Checks if an element is a connection. */ function isConnection(element) { return element.waypoints; } },{"279":279,"303":303,"472":472,"474":474,"475":475,"478":478,"481":481}],239:[function(_dereq_,module,exports){ 'use strict'; /** * Get Resize direction given axis + offset * * @param {String} axis (x|y) * @param {Number} offset * * @return {String} (e|w|n|s) */ function getDirection(axis, offset) { if (axis === 'x') { if (offset > 0) { return 'e'; } if (offset < 0) { return 'w'; } } if (axis === 'y') { if (offset > 0) { return 's'; } if (offset < 0) { return 'n'; } } return null; } module.exports.getDirection = getDirection; /** * Resize the given bounds by the specified delta from a given anchor point. * * @param {Bounds} bounds the bounding box that should be resized * @param {String} direction in which the element is resized (n, s, e, w) * @param {Point} delta of the resize operation * * @return {Bounds} resized bounding box */ module.exports.resizeBounds = function(bounds, direction, delta) { var dx = delta.x, dy = delta.y; switch (direction) { case 'n': return { x: bounds.x, y: bounds.y + dy, width: bounds.width, height: bounds.height - dy }; case 's': return { x: bounds.x, y: bounds.y, width: bounds.width, height: bounds.height + dy }; case 'w': return { x: bounds.x + dx, y: bounds.y, width: bounds.width - dx, height: bounds.height }; case 'e': return { x: bounds.x, y: bounds.y, width: bounds.width + dx, height: bounds.height }; default: throw new Error('unrecognized direction: ' + direction); } }; },{}],240:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __init__: ['spaceToolPreview'], __depends__: [ _dereq_(162), _dereq_(227), _dereq_(242), _dereq_(217) ], spaceTool: ['type', _dereq_(237)], spaceToolPreview: ['type', _dereq_(238) ] }; },{"162":162,"217":217,"227":227,"237":237,"238":238,"242":242}],241:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var LOW_PRIORITY = 250; /** * The tool manager acts as middle-man between the available tool's and the Palette, * it takes care of making sure that the correct active state is set. * * @param {Object} eventBus * @param {Object} dragging */ function ToolManager(eventBus, dragging) { this._eventBus = eventBus; this._dragging = dragging; this._tools = []; this._active = null; } ToolManager.$inject = [ 'eventBus', 'dragging' ]; module.exports = ToolManager; ToolManager.prototype.registerTool = function(name, events) { var tools = this._tools; if (!events) { throw new Error('A tool has to be registered with it\'s "events"'); } tools.push(name); this.bindEvents(name, events); }; ToolManager.prototype.isActive = function(tool) { return tool && this._active === tool; }; ToolManager.prototype.length = function(tool) { return this._tools.length; }; ToolManager.prototype.setActive = function(tool) { var eventBus = this._eventBus; if (this._active !== tool) { this._active = tool; eventBus.fire('tool-manager.update', { tool: tool }); } }; ToolManager.prototype.bindEvents = function(name, events) { var eventBus = this._eventBus, dragging = this._dragging; var eventsToRegister = []; eventBus.on(events.tool + '.init', function(event) { var context = event.context; // Active tools that want to reactivate themselves must do this explicitly if (!context.reactivate && this.isActive(name)) { this.setActive(null); dragging.cancel(); return; } this.setActive(name); }, this); // Todo[ricardo]: add test cases forEach(events, function(event) { eventsToRegister.push(event + '.ended'); eventsToRegister.push(event + '.canceled'); }); eventBus.on(eventsToRegister, LOW_PRIORITY, function(event) { var originalEvent = event.originalEvent; // We defer the de-activation of the tool to the .activate phase, // so we're able to check if we want to toggle off the current active tool or switch to a new one if (!this._active || (originalEvent && originalEvent.target.parentNode.getAttribute('data-group') === 'tools')) { return; } this.setActive(null); }, this); }; },{"303":303}],242:[function(_dereq_,module,exports){ 'use strict'; module.exports = { __depends__: [ _dereq_(162) ], __init__: [ 'toolManager' ], toolManager: [ 'type', _dereq_(241) ] }; },{"162":162,"241":241}],243:[function(_dereq_,module,exports){ 'use strict'; var isString = _dereq_(428), assign = _dereq_(431), forEach = _dereq_(303); var domify = _dereq_(449), domAttr = _dereq_(444), domClasses = _dereq_(445), domRemove = _dereq_(453), domDelegate = _dereq_(448); // document wide unique tooltip ids var ids = new (_dereq_(270))('tt'); function createRoot(parent) { var root = domify('
'); parent.insertBefore(root, parent.firstChild); return root; } function setPosition(el, x, y) { assign(el.style, { left: x + 'px', top: y + 'px' }); } function setVisible(el, visible) { el.style.display = visible === false ? 'none' : ''; } var tooltipClass = 'djs-tooltip', tooltipSelector = '.' + tooltipClass; /** * A service that allows users to render tool tips on the diagram. * * The tooltip service will take care of updating the tooltip positioning * during navigation + zooming. * * @example * * ```javascript * * // add a pink badge on the top left of the shape * tooltips.add({ * position: { * x: 50, * y: 100 * }, * html: '
0
' * }); * * // or with optional life span * tooltips.add({ * position: { * top: -5, * left: -5 * }, * html: '
0
', * ttl: 2000 * }); * * // remove a tool tip * var id = tooltips.add(...); * tooltips.remove(id); * ``` * * @param {EventBus} eventBus * @param {Canvas} canvas */ function Tooltips(eventBus, canvas) { this._eventBus = eventBus; this._canvas = canvas; this._ids = ids; this._tooltipDefaults = { show: { minZoom: 0.7, maxZoom: 5.0 } }; /** * Mapping tooltipId -> tooltip */ this._tooltips = {}; // root html element for all tooltips this._tooltipRoot = createRoot(canvas.getContainer()); var self = this; domDelegate.bind(this._tooltipRoot, tooltipSelector, 'mousedown', function(event) { event.stopPropagation(); }); domDelegate.bind(this._tooltipRoot, tooltipSelector, 'mouseover', function(event) { self.trigger('mouseover', event); }); domDelegate.bind(this._tooltipRoot, tooltipSelector, 'mouseout', function(event) { self.trigger('mouseout', event); }); this._init(); } Tooltips.$inject = [ 'eventBus', 'canvas' ]; module.exports = Tooltips; /** * Adds a HTML tooltip to the diagram * * @param {Object} tooltip the tooltip configuration * * @param {String|DOMElement} tooltip.html html element to use as an tooltip * @param {Object} [tooltip.show] show configuration * @param {Number} [tooltip.show.minZoom] minimal zoom level to show the tooltip * @param {Number} [tooltip.show.maxZoom] maximum zoom level to show the tooltip * @param {Object} tooltip.position where to attach the tooltip * @param {Number} [tooltip.position.left] relative to element bbox left attachment * @param {Number} [tooltip.position.top] relative to element bbox top attachment * @param {Number} [tooltip.position.bottom] relative to element bbox bottom attachment * @param {Number} [tooltip.position.right] relative to element bbox right attachment * @param {Number} [tooltip.timeout=-1] * * @return {String} id that may be used to reference the tooltip for update or removal */ Tooltips.prototype.add = function(tooltip) { if (!tooltip.position) { throw new Error('must specifiy tooltip position'); } if (!tooltip.html) { throw new Error('must specifiy tooltip html'); } var id = this._ids.next(); tooltip = assign({}, this._tooltipDefaults, tooltip, { id: id }); this._addTooltip(tooltip); if (tooltip.timeout) { this.setTimeout(tooltip); } return id; }; Tooltips.prototype.trigger = function(action, event) { var node = event.delegateTarget || event.target; var tooltip = this.get(domAttr(node, 'data-tooltip-id')); if (!tooltip) { return; } if (action === 'mouseover' && tooltip.timeout) { this.clearTimeout(tooltip); } if (action === 'mouseout' && tooltip.timeout) { // cut timeout after mouse out tooltip.timeout = 1000; this.setTimeout(tooltip); } }; /** * Get a tooltip with the given id * * @param {String} id */ Tooltips.prototype.get = function(id) { if (typeof id !== 'string') { id = id.id; } return this._tooltips[id]; }; Tooltips.prototype.clearTimeout = function(tooltip) { tooltip = this.get(tooltip); if (!tooltip) { return; } var removeTimer = tooltip.removeTimer; if (removeTimer) { clearTimeout(removeTimer); tooltip.removeTimer = null; } }; Tooltips.prototype.setTimeout = function(tooltip) { tooltip = this.get(tooltip); if (!tooltip) { return; } this.clearTimeout(tooltip); var self = this; tooltip.removeTimer = setTimeout(function() { self.remove(tooltip); }, tooltip.timeout); }; /** * Remove an tooltip with the given id * * @param {String} id */ Tooltips.prototype.remove = function(id) { var tooltip = this.get(id); if (tooltip) { domRemove(tooltip.html); domRemove(tooltip.htmlContainer); delete tooltip.htmlContainer; delete this._tooltips[tooltip.id]; } }; Tooltips.prototype.show = function() { setVisible(this._tooltipRoot); }; Tooltips.prototype.hide = function() { setVisible(this._tooltipRoot, false); }; Tooltips.prototype._updateRoot = function(viewbox) { var a = viewbox.scale || 1; var d = viewbox.scale || 1; var matrix = 'matrix(' + a + ',0,0,' + d + ',' + (-1 * viewbox.x * a) + ',' + (-1 * viewbox.y * d) + ')'; this._tooltipRoot.style.transform = matrix; this._tooltipRoot.style['-ms-transform'] = matrix; }; Tooltips.prototype._addTooltip = function(tooltip) { var id = tooltip.id, html = tooltip.html, htmlContainer, tooltipRoot = this._tooltipRoot; // unwrap jquery (for those who need it) if (html.get && html.constructor.prototype.jquery) { html = html.get(0); } // create proper html elements from // tooltip HTML strings if (isString(html)) { html = domify(html); } htmlContainer = domify('
'); htmlContainer.appendChild(html); if (tooltip.type) { domClasses(htmlContainer).add('djs-tooltip-' + tooltip.type); } if (tooltip.className) { domClasses(htmlContainer).add(tooltip.className); } tooltip.htmlContainer = htmlContainer; tooltipRoot.appendChild(htmlContainer); this._tooltips[id] = tooltip; this._updateTooltip(tooltip); }; Tooltips.prototype._updateTooltip = function(tooltip) { var position = tooltip.position, htmlContainer = tooltip.htmlContainer; // update overlay html based on tooltip x, y setPosition(htmlContainer, position.x, position.y); }; Tooltips.prototype._updateTooltipVisibilty = function(viewbox) { forEach(this._tooltips, function(tooltip) { var show = tooltip.show, htmlContainer = tooltip.htmlContainer, visible = true; if (show) { if (show.minZoom > viewbox.scale || show.maxZoom < viewbox.scale) { visible = false; } setVisible(htmlContainer, visible); } }); }; Tooltips.prototype._init = function() { var self = this; // scroll/zoom integration function updateViewbox(viewbox) { self._updateRoot(viewbox); self._updateTooltipVisibilty(viewbox); self.show(); } this._eventBus.on('canvas.viewbox.changing', function(event) { self.hide(); }); this._eventBus.on('canvas.viewbox.changed', function(event) { updateViewbox(event.viewbox); }); }; },{"270":270,"303":303,"428":428,"431":431,"444":444,"445":445,"448":448,"449":449,"453":453}],244:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'tooltips' ], tooltips: [ 'type', _dereq_(243) ] }; },{"243":243}],245:[function(_dereq_,module,exports){ 'use strict'; var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478); function TouchFix(canvas, eventBus) { var self = this; eventBus.on('canvas.init', function(e) { self.addBBoxMarker(e.svg); }); } TouchFix.$inject = [ 'canvas', 'eventBus' ]; module.exports = TouchFix; /** * Safari mobile (iOS 7) does not fire touchstart event in element * if there is no shape between 0,0 and viewport elements origin. * * So touchstart event is only fired when the element was hit. * Putting an element over and below the 'viewport' fixes that behavior. */ TouchFix.prototype.addBBoxMarker = function(svg) { var markerStyle = { fill: 'none', class: 'outer-bound-marker' }; var rect1 = svgCreate('rect'); svgAttr(rect1, { x: -10000, y: 10000, width: 10, height: 10 }); svgAttr(rect1, markerStyle); svgAppend(svg, rect1); var rect2 = svgCreate('rect'); svgAttr(rect2, { x: 10000, y: 10000, width: 10, height: 10 }); svgAttr(rect2, markerStyle); svgAppend(svg, rect2); }; },{"472":472,"474":474,"478":478}],246:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), domEvent = _dereq_(450), domClosest = _dereq_(447), Hammer = _dereq_(286), Event = _dereq_(267); var MIN_ZOOM = 0.2, MAX_ZOOM = 4; var mouseEvents = [ 'mousedown', 'mouseup', 'mouseover', 'mouseout', 'click', 'dblclick' ]; function log() { // console.log.apply(console, arguments); } function get(service, injector) { return injector.get(service, false); } function createTouchRecognizer(node) { function stopEvent(event) { Event.stopEvent(event, true); } function stopMouse(event) { forEach(mouseEvents, function(e) { domEvent.bind(node, e, stopEvent, true); }); } function allowMouse(event) { setTimeout(function() { forEach(mouseEvents, function(e) { domEvent.unbind(node, e, stopEvent, true); }); }, 500); } domEvent.bind(node, 'touchstart', stopMouse, true); domEvent.bind(node, 'touchend', allowMouse, true); domEvent.bind(node, 'touchcancel', allowMouse, true); // A touch event recognizer that handles // touch events only (we know, we can already handle // mouse events out of the box) var recognizer = new Hammer.Manager(node, { inputClass: Hammer.TouchInput, recognizers: [] }); var tap = new Hammer.Tap(); var pan = new Hammer.Pan({ threshold: 10 }); var press = new Hammer.Press(); var pinch = new Hammer.Pinch(); var doubleTap = new Hammer.Tap({ event: 'doubletap', taps: 2 }); pinch.requireFailure(pan); pinch.requireFailure(press); recognizer.add([ pan, press, pinch, doubleTap, tap ]); recognizer.reset = function(force) { var recognizers = this.recognizers, session = this.session; if (session.stopped) { return; } log('recognizer', 'stop'); recognizer.stop(force); setTimeout(function() { var i, r; log('recognizer', 'reset'); for (i = 0; (r = recognizers[i]); i++) { r.reset(); r.state = 8; // FAILED STATE } session.curRecognizer = null; }, 0); }; recognizer.on('hammer.input', function(event) { if (event.srcEvent.defaultPrevented) { recognizer.reset(true); } }); return recognizer; } /** * A plugin that provides touch events for elements. * * @param {EventBus} eventBus * @param {InteractionEvents} interactionEvents */ function TouchInteractionEvents(injector, canvas, eventBus, elementRegistry, interactionEvents) { // optional integrations var dragging = get('dragging', injector), move = get('move', injector), contextPad = get('contextPad', injector), palette = get('palette', injector); // the touch recognizer var recognizer; function handler(type) { return function(event) { log('element', type, event); interactionEvents.fire(type, event); }; } function getGfx(target) { var node = domClosest(target, 'svg, .djs-element', true); return node; } function initEvents(svg) { // touch recognizer recognizer = createTouchRecognizer(svg); recognizer.on('doubletap', handler('element.dblclick')); recognizer.on('tap', handler('element.click')); function startGrabCanvas(event) { log('canvas', 'grab start'); var lx = 0, ly = 0; function update(e) { var dx = e.deltaX - lx, dy = e.deltaY - ly; canvas.scroll({ dx: dx, dy: dy }); lx = e.deltaX; ly = e.deltaY; } function end(e) { recognizer.off('panmove', update); recognizer.off('panend', end); recognizer.off('pancancel', end); log('canvas', 'grab end'); } recognizer.on('panmove', update); recognizer.on('panend', end); recognizer.on('pancancel', end); } function startGrab(event) { var gfx = getGfx(event.target), element = gfx && elementRegistry.get(gfx); // recognizer if (move && canvas.getRootElement() !== element) { log('element', 'move start', element, event, true); return move.start(event, element, true); } else { startGrabCanvas(event); } } function startZoom(e) { log('canvas', 'zoom start'); var zoom = canvas.zoom(), mid = e.center; function update(e) { var ratio = 1 - (1 - e.scale) / 1.50, newZoom = Math.max(MIN_ZOOM, Math.min(MAX_ZOOM, ratio * zoom)); canvas.zoom(newZoom, mid); Event.stopEvent(e, true); } function end(e) { recognizer.off('pinchmove', update); recognizer.off('pinchend', end); recognizer.off('pinchcancel', end); recognizer.reset(true); log('canvas', 'zoom end'); } recognizer.on('pinchmove', update); recognizer.on('pinchend', end); recognizer.on('pinchcancel', end); } recognizer.on('panstart', startGrab); recognizer.on('press', startGrab); recognizer.on('pinchstart', startZoom); } if (dragging) { // simulate hover during dragging eventBus.on('drag.move', function(event) { var originalEvent = event.originalEvent; if (!originalEvent || originalEvent instanceof MouseEvent) { return; } var position = Event.toPoint(originalEvent); // this gets really expensive ... var node = document.elementFromPoint(position.x, position.y), gfx = getGfx(node), element = gfx && elementRegistry.get(gfx); if (element !== event.hover) { if (event.hover) { dragging.out(event); } if (element) { dragging.hover({ element: element, gfx: gfx }); event.hover = element; event.hoverGfx = gfx; } } }); } if (contextPad) { eventBus.on('contextPad.create', function(event) { var node = event.pad.html; // touch recognizer var padRecognizer = createTouchRecognizer(node); padRecognizer.on('panstart', function(event) { log('context-pad', 'panstart', event); contextPad.trigger('dragstart', event, true); }); padRecognizer.on('press', function(event) { log('context-pad', 'press', event); contextPad.trigger('dragstart', event, true); }); padRecognizer.on('tap', function(event) { log('context-pad', 'tap', event); contextPad.trigger('click', event); }); }); } if (palette) { eventBus.on('palette.create', function(event) { var node = event.html; // touch recognizer var padRecognizer = createTouchRecognizer(node); padRecognizer.on('panstart', function(event) { log('palette', 'panstart', event); palette.trigger('dragstart', event, true); }); padRecognizer.on('press', function(event) { log('palette', 'press', event); palette.trigger('dragstart', event, true); }); padRecognizer.on('tap', function(event) { log('palette', 'tap', event); palette.trigger('click', event); }); }); } eventBus.on('canvas.init', function(event) { initEvents(event.svg); }); } TouchInteractionEvents.$inject = [ 'injector', 'canvas', 'eventBus', 'elementRegistry', 'interactionEvents', 'touchFix' ]; module.exports = TouchInteractionEvents; },{"267":267,"286":286,"303":303,"447":447,"450":450}],247:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(170) ], __init__: [ 'touchInteractionEvents' ], touchInteractionEvents: [ 'type', _dereq_(246) ], touchFix: [ 'type', _dereq_(245) ] }; },{"170":170,"245":245,"246":246}],248:[function(_dereq_,module,exports){ module.exports = { translate: [ 'value', _dereq_(249) ] }; },{"249":249}],249:[function(_dereq_,module,exports){ 'use strict'; /** * A simple translation stub to be used for multi-language support * in diagrams. Can be easily replaced with a more sophisticated * solution. * * @example * * // use it inside any diagram component by injecting `translate`. * * function MyService(translate) { * alert(translate('HELLO {you}', { you: 'You!' })); * } * * @param {String} template to interpolate * @param {Object} [replacements] a map with substitutes * * @return {String} the translated string */ module.exports = function translate(template, replacements) { replacements = replacements || {}; return template.replace(/{([^}]+)}/g, function(_, key) { return replacements[key] || '{' + key + '}'; }); }; },{}],250:[function(_dereq_,module,exports){ 'use strict'; var getMid = _dereq_(252).getMid; /** * A base connection layouter implementation * that layouts the connection by directly connecting * mid(source) + mid(target). */ function BaseLayouter() {} module.exports = BaseLayouter; /** * Return the new layouted waypoints for the given connection. * * The connection passed is still unchanged; you may figure out about * the new connection start / end via the layout hints provided. * * @param {djs.model.Connection} connection * @param {Object} [hints] * @param {Point} [hints.connectionStart] * @param {Point} [hints.connectionEnd] * * @return {Array} the layouted connection waypoints */ BaseLayouter.prototype.layoutConnection = function(connection, hints) { hints = hints || {}; return [ hints.connectionStart || getMid(connection.source), hints.connectionEnd || getMid(connection.target) ]; }; },{"252":252}],251:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431); var LayoutUtil = _dereq_(252); function dockingToPoint(docking) { // use the dockings actual point and // retain the original docking return assign({ original: docking.point.original || docking.point }, docking.actual); } /** * A {@link ConnectionDocking} that crops connection waypoints based on * the path(s) of the connection source and target. * * @param {djs.core.ElementRegistry} elementRegistry */ function CroppingConnectionDocking(elementRegistry, graphicsFactory) { this._elementRegistry = elementRegistry; this._graphicsFactory = graphicsFactory; } CroppingConnectionDocking.$inject = [ 'elementRegistry', 'graphicsFactory' ]; module.exports = CroppingConnectionDocking; /** * @inheritDoc ConnectionDocking#getCroppedWaypoints */ CroppingConnectionDocking.prototype.getCroppedWaypoints = function(connection, source, target) { source = source || connection.source; target = target || connection.target; var sourceDocking = this.getDockingPoint(connection, source, true), targetDocking = this.getDockingPoint(connection, target); var croppedWaypoints = connection.waypoints.slice(sourceDocking.idx + 1, targetDocking.idx); croppedWaypoints.unshift(dockingToPoint(sourceDocking)); croppedWaypoints.push(dockingToPoint(targetDocking)); return croppedWaypoints; }; /** * Return the connection docking point on the specified shape * * @inheritDoc ConnectionDocking#getDockingPoint */ CroppingConnectionDocking.prototype.getDockingPoint = function(connection, shape, dockStart) { var waypoints = connection.waypoints, dockingIdx, dockingPoint, croppedPoint; dockingIdx = dockStart ? 0 : waypoints.length - 1; dockingPoint = waypoints[dockingIdx]; croppedPoint = this._getIntersection(shape, connection, dockStart); return { point: dockingPoint, actual: croppedPoint || dockingPoint, idx: dockingIdx }; }; ////// helper methods /////////////////////////////////////////////////// CroppingConnectionDocking.prototype._getIntersection = function(shape, connection, takeFirst) { var shapePath = this._getShapePath(shape), connectionPath = this._getConnectionPath(connection); return LayoutUtil.getElementLineIntersection(shapePath, connectionPath, takeFirst); }; CroppingConnectionDocking.prototype._getConnectionPath = function(connection) { return this._graphicsFactory.getConnectionPath(connection); }; CroppingConnectionDocking.prototype._getShapePath = function(shape) { return this._graphicsFactory.getShapePath(shape); }; CroppingConnectionDocking.prototype._getGfx = function(element) { return this._elementRegistry.getGraphics(element); }; },{"252":252,"431":431}],252:[function(_dereq_,module,exports){ 'use strict'; var isObject = _dereq_(426), sortBy = _dereq_(310), pointDistance = _dereq_(268).pointDistance; var intersection = _dereq_(271).intersection; function roundBounds(bounds) { return { x: Math.round(bounds.x), y: Math.round(bounds.y), width: Math.round(bounds.width), height: Math.round(bounds.height) }; } module.exports.roundBounds = roundBounds; function roundPoint(point) { return { x: Math.round(point.x), y: Math.round(point.y) }; } module.exports.roundPoint = roundPoint; /** * Convert the given bounds to a { top, left, bottom, right } descriptor. * * @param {Bounds|Point} bounds * * @return {Object} */ function asTRBL(bounds) { return { top: bounds.y, right: bounds.x + (bounds.width || 0), bottom: bounds.y + (bounds.height || 0), left: bounds.x }; } module.exports.asTRBL = asTRBL; /** * Convert a { top, left, bottom, right } to an objects bounds. * * @param {Object} trbl * * @return {Bounds} */ function asBounds(trbl) { return { x: trbl.left, y: trbl.top, width: trbl.right - trbl.left, height: trbl.bottom - trbl.top }; } module.exports.asBounds = asBounds; /** * Get the mid of the given bounds or point. * * @param {Bounds|Point} bounds * * @return {Point} */ function getMid(bounds) { return roundPoint({ x: bounds.x + (bounds.width || 0) / 2, y: bounds.y + (bounds.height || 0) / 2 }); } module.exports.getMid = getMid; ////// orientation utils ////////////////////////////// /** * Get orientation of the given rectangle with respect to * the reference rectangle. * * A padding (positive or negative) may be passed to influence * horizontal / vertical orientation and intersection. * * @param {Bounds} rect * @param {Bounds} reference * @param {Point|Number} padding * * @return {String} the orientation; one of top, top-left, left, ..., bottom, right or intersect. */ function getOrientation(rect, reference, padding) { padding = padding || 0; // make sure we can use an object, too // for individual { x, y } padding if (!isObject(padding)) { padding = { x: padding, y: padding }; } var rectOrientation = asTRBL(rect), referenceOrientation = asTRBL(reference); var top = rectOrientation.bottom + padding.y <= referenceOrientation.top, right = rectOrientation.left - padding.x >= referenceOrientation.right, bottom = rectOrientation.top - padding.y >= referenceOrientation.bottom, left = rectOrientation.right + padding.x <= referenceOrientation.left; var vertical = top ? 'top' : (bottom ? 'bottom' : null), horizontal = left ? 'left' : (right ? 'right' : null); if (horizontal && vertical) { return vertical + '-' + horizontal; } else { return horizontal || vertical || 'intersect'; } } module.exports.getOrientation = getOrientation; ////// intersection utils ////////////////////////////// /** * Get intersection between an element and a line path. * * @param {PathDef} elementPath * @param {PathDef} linePath * @param {Boolean} cropStart crop from start or end * * @return {Point} */ function getElementLineIntersection(elementPath, linePath, cropStart) { var intersections = getIntersections(elementPath, linePath); // recognize intersections // only one -> choose // two close together -> choose first // two or more distinct -> pull out appropriate one // none -> ok (fallback to point itself) if (intersections.length === 1) { return roundPoint(intersections[0]); } else if (intersections.length === 2 && pointDistance(intersections[0], intersections[1]) < 1) { return roundPoint(intersections[0]); } else if (intersections.length > 1) { // sort by intersections based on connection segment + // distance from start intersections = sortBy(intersections, function(i) { var distance = Math.floor(i.t2 * 100) || 1; distance = 100 - distance; distance = (distance < 10 ? '0' : '') + distance; // create a sort string that makes sure we sort // line segment ASC + line segment position DESC (for cropStart) // line segment ASC + line segment position ASC (for cropEnd) return i.segment2 + '#' + distance; }); return roundPoint(intersections[cropStart ? 0 : intersections.length - 1]); } return null; } module.exports.getElementLineIntersection = getElementLineIntersection; function getIntersections(a, b) { return intersection(a, b); } module.exports.getIntersections = getIntersections; },{"268":268,"271":271,"310":310,"426":426}],253:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), find = _dereq_(302), without = _dereq_(297), assign = _dereq_(431); var LayoutUtil = _dereq_(252), Geometry = _dereq_(268); var getOrientation = LayoutUtil.getOrientation, getMid = LayoutUtil.getMid, pointsAligned = Geometry.pointsAligned; var pointInRect = Geometry.pointInRect, pointDistance = Geometry.pointDistance; var INTERSECTION_THRESHOLD = 20, ORIENTATION_THRESHOLD = { 'h:h': 20, 'v:v': 20, 'h:v': -10, 'v:h': -10 }; /** * Returns the mid points for a manhattan connection between two points. * * @example * * [a]----[x] * | * [x]----[b] * * @example * * [a]----[x] * | * [b] * * @param {Point} a * @param {Point} b * @param {String} directions * * @return {Array} */ function getBendpoints(a, b, directions) { directions = directions || 'h:h'; var xmid, ymid; // one point, next to a if (directions === 'h:v') { return [ { x: b.x, y: a.y } ]; } else // one point, above a if (directions === 'v:h') { return [ { x: a.x, y: b.y } ]; } else // vertical edge xmid if (directions === 'h:h') { xmid = Math.round((b.x - a.x) / 2 + a.x); return [ { x: xmid, y: a.y }, { x: xmid, y: b.y } ]; } else // horizontal edge ymid if (directions === 'v:v') { ymid = Math.round((b.y - a.y) / 2 + a.y); return [ { x: a.x, y: ymid }, { x: b.x, y: ymid } ]; } else { throw new Error( 'unknown directions: <' + directions + '>: ' + 'directions must be specified as {a direction}:{b direction} (direction in h|v)'); } } module.exports.getBendpoints = getBendpoints; /** * Create a connection between the two points according * to the manhattan layout (only horizontal and vertical) edges. * * @param {Point} a * @param {Point} b * * @param {String} [directions='h:h'] specifies manhattan directions for each point as {adirection}:{bdirection}. A directionfor a point is either `h` (horizontal) or `v` (vertical) * * @return {Array} */ function connectPoints(a, b, directions) { var points = []; if (!pointsAligned(a, b)) { points = getBendpoints(a, b, directions); } points.unshift(a); points.push(b); return points; } module.exports.connectPoints = connectPoints; /** * Connect two rectangles using a manhattan layouted connection. * * @param {Bounds} source source rectangle * @param {Bounds} target target rectangle * @param {Point} [start] source docking * @param {Point} [end] target docking * * @param {Object} [hints] * @param {String} [hints.preserveDocking=source] preserve docking on selected side * @param {Array} [hints.preferredLayouts] * @param {Point|Boolean} [hints.connectionStart] whether the start changed * @param {Point|Boolean} [hints.connectionEnd] whether the end changed * * @return {Array} connection points */ function connectRectangles(source, target, start, end, hints) { var preferredLayouts = hints && hints.preferredLayouts || []; var preferredLayout = without(preferredLayouts, 'straight')[0] || 'h:h'; var threshold = ORIENTATION_THRESHOLD[preferredLayout] || 0; var orientation = getOrientation(source, target, threshold); var directions = getDirections(orientation, preferredLayout); start = start || getMid(source); end = end || getMid(target); // overlapping elements if (!directions) { return; } if (directions === 'h:h') { switch (orientation) { case 'top-right': case 'right': case 'bottom-right': start = { original: start, x: source.x, y: start.y }; end = { original: end, x: target.x + target.width, y: end.y }; break; case 'top-left': case 'left': case 'bottom-left': start = { original: start, x: source.x + source.width, y: start.y }; end = { original: end, x: target.x, y: end.y }; break; } } if (directions === 'v:v') { switch (orientation) { case 'top-left': case 'top': case 'top-right': start = { original: start, x: start.x, y: source.y + source.height }; end = { original: end, x: end.x, y: target.y }; break; case 'bottom-left': case 'bottom': case 'bottom-right': start = { original: start, x: start.x, y: source.y }; end = { original: end, x: end.x, y: target.y + target.height }; break; } } return connectPoints(start, end, directions); } module.exports.connectRectangles = connectRectangles; /** * Repair the connection between two rectangles, of which one has been updated. * * @param {Bounds} source * @param {Bounds} target * @param {Point} [start] * @param {Point} [end] * @param {Array} waypoints * @param {Object} [hints] * @param {Array} [hints.preferredLayouts] list of preferred layouts * @param {Boolean} [hints.connectionStart] * @param {Boolean} [hints.connectionEnd] * * @return {Array} repaired waypoints */ function repairConnection(source, target, start, end, waypoints, hints) { if (isArray(start)) { waypoints = start; hints = end; start = getMid(source); end = getMid(target); } hints = assign({ preferredLayouts: [] }, hints); waypoints = waypoints || []; var preferredLayouts = hints.preferredLayouts, preferStraight = preferredLayouts.indexOf('straight') !== -1, repairedWaypoints; // just layout non-existing or simple connections // attempt to render straight lines, if required if (preferStraight) { // attempt to layout a straight line repairedWaypoints = layoutStraight(source, target, start, end, hints); } if (!repairedWaypoints) { // check if we layout from start or end if (hints.connectionEnd) { repairedWaypoints = _repairConnectionSide(target, source, end, waypoints.slice().reverse()); repairedWaypoints = repairedWaypoints && repairedWaypoints.reverse(); } else if (hints.connectionStart) { repairedWaypoints = _repairConnectionSide(source, target, start, waypoints); } else // or whether nothing seems to have changed if (waypoints && waypoints.length) { repairedWaypoints = waypoints; } } // simply reconnect if nothing else worked if (!repairedWaypoints) { repairedWaypoints = connectRectangles(source, target, start, end, hints); } return repairedWaypoints; } module.exports.repairConnection = repairConnection; function inRange(a, start, end) { return a >= start && a <= end; } function isInRange(axis, a, b) { var size = { x: 'width', y: 'height' }; return inRange(a[axis], b[axis], b[axis] + b[size[axis]]); } /** * Layout a straight connection * * @param {Bounds} source * @param {Bounds} target * @param {Point} start * @param {Point} end * @param {Object} [hints] * * @return {Array} waypoints if straight layout worked */ function layoutStraight(source, target, start, end, hints) { var axis = {}, primaryAxis, orientation; orientation = getOrientation(source, target); // We're only interested in layouting a straight connection // if the shapes are horizontally or vertically aligned if (!/^(top|bottom|left|right)$/.test(orientation)) { return null; } if (/top|bottom/.test(orientation)) { primaryAxis = 'x'; } if (/left|right/.test(orientation)) { primaryAxis = 'y'; } if (hints.preserveDocking === 'target') { if (!isInRange(primaryAxis, end, source)) { return null; } axis[primaryAxis] = end[primaryAxis]; return [ { x: axis.x !== undefined ? axis.x : start.x, y: axis.y !== undefined ? axis.y : start.y, original: { x: axis.x !== undefined ? axis.x : start.x, y: axis.y !== undefined ? axis.y : start.y } }, { x: end.x, y: end.y } ]; } else { if (!isInRange(primaryAxis, start, target)) { return null; } axis[primaryAxis] = start[primaryAxis]; return [ { x: start.x, y: start.y }, { x: axis.x !== undefined ? axis.x : end.x, y: axis.y !== undefined ? axis.y : end.y, original: { x: axis.x !== undefined ? axis.x : end.x, y: axis.y !== undefined ? axis.y : end.y } } ]; } } module.exports.layoutStraight = layoutStraight; /** * Repair a connection from one side that moved. * * @param {Bounds} moved * @param {Bounds} other * @param {Point} newDocking * @param {Array} points originalPoints from moved to other * * @return {Array} the repaired points between the two rectangles */ function _repairConnectionSide(moved, other, newDocking, points) { function needsRelayout(moved, other, points) { if (points.length < 3) { return true; } if (points.length > 4) { return false; } // relayout if two points overlap // this is most likely due to return !!find(points, function(p, idx) { var q = points[idx - 1]; return q && pointDistance(p, q) < 3; }); } function repairBendpoint(candidate, oldPeer, newPeer) { var alignment = pointsAligned(oldPeer, candidate); switch (alignment) { case 'v': // repair vertical alignment return { x: candidate.x, y: newPeer.y }; case 'h': // repair horizontal alignment return { x: newPeer.x, y: candidate.y }; } return { x: candidate.x, y: candidate. y }; } function removeOverlapping(points, a, b) { var i; for (i = points.length - 2; i !== 0; i--) { // intersects (?) break, remove all bendpoints up to this one and relayout if (pointInRect(points[i], a, INTERSECTION_THRESHOLD) || pointInRect(points[i], b, INTERSECTION_THRESHOLD)) { // return sliced old connection return points.slice(i); } } return points; } // (0) only repair what has layoutable bendpoints // (1) if only one bendpoint and on shape moved onto other shapes axis // (horizontally / vertically), relayout if (needsRelayout(moved, other, points)) { return null; } var oldDocking = points[0], newPoints = points.slice(), slicedPoints; // (2) repair only last line segment and only if it was layouted before newPoints[0] = newDocking; newPoints[1] = repairBendpoint(newPoints[1], oldDocking, newDocking); // (3) if shape intersects with any bendpoint after repair, // remove all segments up to this bendpoint and repair from there slicedPoints = removeOverlapping(newPoints, moved, other); if (slicedPoints !== newPoints) { return _repairConnectionSide(moved, other, newDocking, slicedPoints); } return newPoints; } module.exports._repairConnectionSide = _repairConnectionSide; /** * Returns the manhattan directions connecting two rectangles * with the given orientation. * * @example * * getDirections('top'); // -> 'v:v' * * getDirections('top-right', 'v:h'); // -> 'v:h' * getDirections('top-right', 'h:h'); // -> 'h:h' * * * @param {String} orientation * @param {String} defaultLayout * * @return {String} */ function getDirections(orientation, defaultLayout) { switch (orientation) { case 'intersect': return null; case 'top': case 'bottom': return 'v:v'; case 'left': case 'right': return 'h:h'; // 'top-left' // 'top-right' // 'bottom-left' // 'bottom-right' default: return defaultLayout; } } },{"252":252,"268":268,"297":297,"302":302,"422":422,"431":431}],254:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), inherits = _dereq_(289); var Refs = _dereq_(466); var parentRefs = new Refs({ name: 'children', enumerable: true, collection: true }, { name: 'parent' }), labelRefs = new Refs({ name: 'label', enumerable: true }, { name: 'labelTarget' }), attacherRefs = new Refs({ name: 'attachers', collection: true }, { name: 'host' }), outgoingRefs = new Refs({ name: 'outgoing', collection: true }, { name: 'source' }), incomingRefs = new Refs({ name: 'incoming', collection: true }, { name: 'target' }); /** * @namespace djs.model */ /** * @memberOf djs.model */ /** * The basic graphical representation * * @class * * @abstract */ function Base() { /** * The object that backs up the shape * * @name Base#businessObject * @type Object */ Object.defineProperty(this, 'businessObject', { writable: true }); /** * The parent shape * * @name Base#parent * @type Shape */ parentRefs.bind(this, 'parent'); /** * @name Base#label * @type Label */ labelRefs.bind(this, 'label'); /** * The list of outgoing connections * * @name Base#outgoing * @type Array */ outgoingRefs.bind(this, 'outgoing'); /** * The list of incoming connections * * @name Base#incoming * @type Array */ incomingRefs.bind(this, 'incoming'); } /** * A graphical object * * @class * @constructor * * @extends Base */ function Shape() { Base.call(this); /** * The list of children * * @name Shape#children * @type Array */ parentRefs.bind(this, 'children'); /** * @name Shape#host * @type Shape */ attacherRefs.bind(this, 'host'); /** * @name Shape#attachers * @type Shape */ attacherRefs.bind(this, 'attachers'); } inherits(Shape, Base); /** * A root graphical object * * @class * @constructor * * @extends Shape */ function Root() { Shape.call(this); } inherits(Root, Shape); /** * A label for an element * * @class * @constructor * * @extends Shape */ function Label() { Shape.call(this); /** * The labeled element * * @name Label#labelTarget * @type Base */ labelRefs.bind(this, 'labelTarget'); } inherits(Label, Shape); /** * A connection between two elements * * @class * @constructor * * @extends Base */ function Connection() { Base.call(this); /** * The element this connection originates from * * @name Connection#source * @type Base */ outgoingRefs.bind(this, 'source'); /** * The element this connection points to * * @name Connection#target * @type Base */ incomingRefs.bind(this, 'target'); } inherits(Connection, Base); var types = { connection: Connection, shape: Shape, label: Label, root: Root }; /** * Creates a new model element of the specified type * * @method create * * @example * * var shape1 = Model.create('shape', { x: 10, y: 10, width: 100, height: 100 }); * var shape2 = Model.create('shape', { x: 210, y: 210, width: 100, height: 100 }); * * var connection = Model.create('connection', { waypoints: [ { x: 110, y: 55 }, {x: 210, y: 55 } ] }); * * @param {String} type lower-cased model name * @param {Object} attrs attributes to initialize the new model instance with * * @return {Base} the new model instance */ module.exports.create = function(type, attrs) { var Type = types[type]; if (!Type) { throw new Error('unknown type: <' + type + '>'); } return assign(new Type(), attrs); }; module.exports.Base = Base; module.exports.Root = Root; module.exports.Shape = Shape; module.exports.Connection = Connection; module.exports.Label = Label; },{"289":289,"431":431,"466":466}],255:[function(_dereq_,module,exports){ 'use strict'; var Cursor = _dereq_(265), ClickTrap = _dereq_(262), substract = _dereq_(273).substract, domEvent = _dereq_(450), domClosest = _dereq_(447), EventUtil = _dereq_(267); function length(point) { return Math.sqrt(Math.pow(point.x, 2) + Math.pow(point.y, 2)); } var THRESHOLD = 15; function MoveCanvas(eventBus, canvas) { var container = canvas._container, context; function handleMove(event) { var start = context.start, position = EventUtil.toPoint(event), delta = substract(position, start); if (!context.dragging && length(delta) > THRESHOLD) { context.dragging = true; // prevent mouse click in this // interaction sequence ClickTrap.install(); Cursor.set('grab'); } if (context.dragging) { var lastPosition = context.last || context.start; delta = substract(position, lastPosition); canvas.scroll({ dx: delta.x, dy: delta.y }); context.last = position; } // prevent select event.preventDefault(); } function handleEnd(event) { domEvent.unbind(document, 'mousemove', handleMove); domEvent.unbind(document, 'mouseup', handleEnd); context = null; Cursor.unset(); } function handleStart(event) { // event is already handled by '.djs-draggable' if (domClosest(event.target, '.djs-draggable')) { return; } // reject non-left left mouse button or modifier key if (event.button || event.ctrlKey || event.shiftKey || event.altKey) { return; } context = { start: EventUtil.toPoint(event) }; domEvent.bind(document, 'mousemove', handleMove); domEvent.bind(document, 'mouseup', handleEnd); } domEvent.bind(container, 'mousedown', handleStart); } MoveCanvas.$inject = [ 'eventBus', 'canvas' ]; module.exports = MoveCanvas; },{"262":262,"265":265,"267":267,"273":273,"447":447,"450":450}],256:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'moveCanvas' ], moveCanvas: [ 'type', _dereq_(255) ] }; },{"255":255}],257:[function(_dereq_,module,exports){ module.exports = { __depends__: [ _dereq_(247) ] }; },{"247":247}],258:[function(_dereq_,module,exports){ 'use strict'; var domEvent = _dereq_(450), domClosest = _dereq_(447); var hasPrimaryModifier = _dereq_(274).hasPrimaryModifier, hasSecondaryModifier = _dereq_(274).hasSecondaryModifier; var isMac = _dereq_(275).isMac; var getStepSize = _dereq_(259).getStepSize, cap = _dereq_(259).cap; var log10 = _dereq_(273).log10; var bind = _dereq_(312); var RANGE = { min: 0.2, max: 4 }, NUM_STEPS = 10; var DELTA_THRESHOLD = 0.1; /** * An implementation of zooming and scrolling within the * {@link Canvas} via the mouse wheel. * * Mouse wheel zooming / scrolling may be disabled using * the {@link toggle(enabled)} method. * * Additionally users can define the initial enabled state * by passing `{ zoomScroll: { enabled: false } }` at diagram * initialization. * * @param {EventBus} eventBus * @param {Canvas} canvas * @param {Object} config */ function ZoomScroll(eventBus, canvas, config) { this._enabled = false; this._canvas = canvas; this._container = canvas._container; this._handleWheel = bind(this._handleWheel, this); var newEnabled = !config || config.enabled !== false; this.totalDelta = 0; var self = this; eventBus.on('canvas.init', function(e) { self._init(newEnabled); }); } ZoomScroll.$inject = [ 'eventBus', 'canvas', 'config.zoomScroll' ]; module.exports = ZoomScroll; ZoomScroll.prototype.scroll = function scroll(delta) { this._canvas.scroll(delta); }; ZoomScroll.prototype.reset = function reset() { this._canvas.zoom('fit-viewport'); }; /** * Zoom depending on delta. * * @param {number} delta - Zoom delta. * @param {Object} position - Zoom position. */ ZoomScroll.prototype.zoom = function zoom(delta, position) { // zoom with half the step size of stepZoom var stepSize = getStepSize(RANGE, NUM_STEPS * 2); // add until threshold reached this.totalDelta += delta; if (Math.abs(this.totalDelta) > DELTA_THRESHOLD) { this._zoom(delta, position, stepSize); // reset this.totalDelta = 0; } }; ZoomScroll.prototype._handleWheel = function handleWheel(event) { // event is already handled by '.djs-scrollable' if (domClosest(event.target, '.djs-scrollable', true)) { return; } var element = this._container; event.preventDefault(); // mouse-event: SELECTION_KEY // mouse-event: AND_KEY var isVerticalScroll = hasPrimaryModifier(event), isHorizontalScroll = hasSecondaryModifier(event); var factor; if (isVerticalScroll || isHorizontalScroll) { if (isMac) { factor = event.deltaMode === 0 ? 1.25 : 50; } else { factor = event.deltaMode === 0 ? 1/40 : 1/2; } var delta = {}; if (isHorizontalScroll) { delta.dx = (factor * (event.deltaX || event.deltaY)); } else { delta.dy = (factor * event.deltaY); } this.scroll(delta); } else { factor = (event.deltaMode === 0 ? 1/40 : 1/2); var elementRect = element.getBoundingClientRect(); var offset = { x: event.clientX - elementRect.left, y: event.clientY - elementRect.top }; // zoom in relative to diagram {x,y} coordinates this.zoom(event.deltaY * factor / (-5), offset); } }; /** * Zoom with fixed step size. * * @param {number} delta - Zoom delta (1 for zooming in, -1 for out). * @param {Object} position - Zoom position. */ ZoomScroll.prototype.stepZoom = function stepZoom(delta, position) { var stepSize = getStepSize(RANGE, NUM_STEPS); this._zoom(delta, position, stepSize); }; /** * Zoom in/out given a step size. * * @param {number} delta - Zoom delta. Can be positive or negative. * @param {Object} position - Zoom position. * @param {number} stepSize - Step size. */ ZoomScroll.prototype._zoom = function(delta, position, stepSize) { var canvas = this._canvas; var direction = delta > 0 ? 1 : -1; var currentLinearZoomLevel = log10(canvas.zoom()); // snap to a proximate zoom step var newLinearZoomLevel = Math.round(currentLinearZoomLevel / stepSize) * stepSize; // increase or decrease one zoom step in the given direction newLinearZoomLevel += stepSize * direction; // calculate the absolute logarithmic zoom level based on the linear zoom level // (e.g. 2 for an absolute x2 zoom) var newLogZoomLevel = Math.pow(10, newLinearZoomLevel); canvas.zoom(cap(RANGE, newLogZoomLevel), position); }; /** * Toggle the zoom scroll ability via mouse wheel. * * @param {Boolean} [newEnabled] new enabled state */ ZoomScroll.prototype.toggle = function toggle(newEnabled) { var element = this._container; var handleWheel = this._handleWheel; var oldEnabled = this._enabled; if (typeof newEnabled === 'undefined') { newEnabled = !oldEnabled; } // only react on actual changes if (oldEnabled !== newEnabled) { // add or remove wheel listener based on // changed enabled state domEvent[newEnabled ? 'bind' : 'unbind'](element, 'wheel', handleWheel, false); } this._enabled = newEnabled; return newEnabled; }; ZoomScroll.prototype._init = function(newEnabled) { this.toggle(newEnabled); }; },{"259":259,"273":273,"274":274,"275":275,"312":312,"447":447,"450":450}],259:[function(_dereq_,module,exports){ 'use strict'; var log10 = _dereq_(273).log10; /** * Get step size for given range and number of steps. * * @param {Object} range - Range. * @param {number} range.min - Range minimum. * @param {number} range.max - Range maximum. */ module.exports.getStepSize = function(range, steps) { var minLinearRange = log10(range.min), maxLinearRange = log10(range.max); var absoluteLinearRange = Math.abs(minLinearRange) + Math.abs(maxLinearRange); return absoluteLinearRange / steps; }; module.exports.cap = function(range, scale) { return Math.max(range.min, Math.min(range.max, scale)); }; },{"273":273}],260:[function(_dereq_,module,exports){ module.exports = { __init__: [ 'zoomScroll' ], zoomScroll: [ 'type', _dereq_(258) ] }; },{"258":258}],261:[function(_dereq_,module,exports){ 'use strict'; var roundPoint = _dereq_(252).roundPoint; var center = _dereq_(276).center, delta = _dereq_(276).delta; /** * Calculates the absolute point relative to the new element's position * * @param {point} point [absolute] * @param {bounds} oldBounds * @param {bounds} newBounds * * @return {point} point [absolute] */ function getNewAttachPoint(point, oldBounds, newBounds) { var oldCenter = center(oldBounds), newCenter = center(newBounds), oldDelta = delta(point, oldCenter); var newDelta = { x: oldDelta.x * (newBounds.width / oldBounds.width), y: oldDelta.y * (newBounds.height / oldBounds.height) }; return roundPoint({ x: newCenter.x + newDelta.x, y: newCenter.y + newDelta.y }); } module.exports.getNewAttachPoint = getNewAttachPoint; /** * Calculates the shape's delta relative to a new position * of a certain element's bounds * * @param {djs.model.Shape} point [absolute] * @param {bounds} oldBounds * @param {bounds} newBounds * * @return {delta} delta */ function getNewAttachShapeDelta(shape, oldBounds, newBounds) { var shapeCenter = center(shape), oldCenter = center(oldBounds), newCenter = center(newBounds), shapeDelta = delta(shape, shapeCenter), oldCenterDelta = delta(shapeCenter, oldCenter); var newCenterDelta = { x: oldCenterDelta.x * (newBounds.width / oldBounds.width), y: oldCenterDelta.y * (newBounds.height / oldBounds.height) }; var newShapeCenter = { x: newCenter.x + newCenterDelta.x, y: newCenter.y + newCenterDelta.y }; return roundPoint({ x: newShapeCenter.x + shapeDelta.x - shape.x, y: newShapeCenter.y + shapeDelta.y - shape.y }); } module.exports.getNewAttachShapeDelta = getNewAttachShapeDelta; },{"252":252,"276":276}],262:[function(_dereq_,module,exports){ 'use strict'; var domEvent = _dereq_(450), stopEvent = _dereq_(267).stopEvent; function trap(event) { stopEvent(event); toggle(false); } function toggle(active) { domEvent[active ? 'bind' : 'unbind'](document.body, 'click', trap, true); } /** * Installs a click trap that prevents a ghost click following a dragging operation. * * @return {Function} a function to immediately remove the installed trap. */ function install() { toggle(true); return function() { toggle(false); }; } module.exports.install = install; },{"267":267,"450":450}],263:[function(_dereq_,module,exports){ 'use strict'; /** * Failsafe remove an element from a collection * * @param {Array} [collection] * @param {Object} [element] * * @return {Number} the previous index of the element */ module.exports.remove = function(collection, element) { if (!collection || !element) { return -1; } var idx = collection.indexOf(element); if (idx !== -1) { collection.splice(idx, 1); } return idx; }; /** * Fail save add an element to the given connection, ensuring * it does not yet exist. * * @param {Array} collection * @param {Object} element * @param {Number} idx */ module.exports.add = function(collection, element, idx) { if (!collection || !element) { return; } if (typeof idx !== 'number') { idx = -1; } var currentIdx = collection.indexOf(element); if (currentIdx !== -1) { if (currentIdx === idx) { // nothing to do, position has not changed return; } else { if (idx !== -1) { // remove from current position collection.splice(currentIdx, 1); } else { // already exists in collection return; } } } if (idx !== -1) { // insert at specified position collection.splice(idx, 0, element); } else { // push to end collection.push(element); } }; /** * Fail save get the index of an element in a collection. * * @param {Array} collection * @param {Object} element * * @return {Number} the index or -1 if collection or element do * not exist or the element is not contained. */ module.exports.indexOf = function(collection, element) { if (!collection || !element) { return -1; } return collection.indexOf(element); }; },{}],264:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); function getTopLevel(elements) { var topLevel = {}, parents = [], result = [], clearedParents = []; forEach(elements, function(element) { var parent = element.parent; if (!topLevel[parent.id]) { topLevel[parent.id] = []; } if (parents.indexOf(parent.id) === -1) { parents.push(parent.id); } topLevel[parent.id].push(element); }); forEach(parents, function(parent) { forEach(topLevel[parent], function(element) { if (topLevel[element.id]) { clearedParents.push(element.id); } }); }); forEach(parents, function(parent) { var idx = clearedParents.indexOf(parent); if (idx === -1) { result = result.concat(topLevel[parent]); } }); return result; } module.exports.getTopLevel = getTopLevel; },{"303":303}],265:[function(_dereq_,module,exports){ 'use strict'; var domClasses = _dereq_(445); var CURSOR_CLS_PATTERN = /^djs-cursor-.*$/; module.exports.set = function(mode) { var classes = domClasses(document.body); classes.removeMatching(CURSOR_CLS_PATTERN); if (mode) { classes.add('djs-cursor-' + mode); } }; module.exports.unset = function() { this.set(null); }; module.exports.has = function(mode) { var classes = domClasses(document.body); return classes.has('djs-cursor-' + mode); }; },{"445":445}],266:[function(_dereq_,module,exports){ 'use strict'; var isArray = _dereq_(422), isNumber = _dereq_(425), groupBy = _dereq_(304), forEach = _dereq_(303); /** * Adds an element to a collection and returns true if the * element was added. * * @param {Array} elements * @param {Object} e * @param {Boolean} unique */ function add(elements, e, unique) { var canAdd = !unique || elements.indexOf(e) === -1; if (canAdd) { elements.push(e); } return canAdd; } /** * Iterate over each element in a collection, calling the iterator function `fn` * with (element, index, recursionDepth). * * Recurse into all elements that are returned by `fn`. * * @param {Object|Array} elements * @param {Function} fn iterator function called with (element, index, recursionDepth) * @param {Number} [depth] maximum recursion depth */ function eachElement(elements, fn, depth) { depth = depth || 0; if (!isArray(elements)) { elements = [ elements ]; } forEach(elements, function(s, i) { var filter = fn(s, i, depth); if (isArray(filter) && filter.length) { eachElement(filter, fn, depth + 1); } }); } /** * Collects self + child elements up to a given depth from a list of elements. * * @param {djs.model.Base|Array} elements the elements to select the children from * @param {Boolean} unique whether to return a unique result set (no duplicates) * @param {Number} maxDepth the depth to search through or -1 for infinite * * @return {Array} found elements */ function selfAndChildren(elements, unique, maxDepth) { var result = [], processedChildren = []; eachElement(elements, function(element, i, depth) { add(result, element, unique); var children = element.children; // max traversal depth not reached yet if (maxDepth === -1 || depth < maxDepth) { // children exist && children not yet processed if (children && add(processedChildren, children, unique)) { return children; } } }); return result; } /** * Return self + direct children for a number of elements * * @param {Array} elements to query * @param {Boolean} allowDuplicates to allow duplicates in the result set * * @return {Array} the collected elements */ function selfAndDirectChildren(elements, allowDuplicates) { return selfAndChildren(elements, !allowDuplicates, 1); } /** * Return self + ALL children for a number of elements * * @param {Array} elements to query * @param {Boolean} allowDuplicates to allow duplicates in the result set * * @return {Array} the collected elements */ function selfAndAllChildren(elements, allowDuplicates) { return selfAndChildren(elements, !allowDuplicates, -1); } /** * Gets the the closure for all selected elements, * their connections and their attachment's connections * * @param {Array} elements * @return {Object} enclosure */ function getClosure(elements) { // original elements passed to this function var topLevel = groupBy(elements, function(e) { return e.id; }); var allShapes = {}, allConnections = {}, enclosedElements = {}, enclosedConnections = {}; function handleConnection(c) { if (topLevel[c.source.id] && topLevel[c.target.id]) { topLevel[c.id] = [ c ]; } // not enclosed as a child, but maybe logically // (connecting two moved elements?) if (allShapes[c.source.id] && allShapes[c.target.id]) { enclosedConnections[c.id] = enclosedElements[c.id] = c; } allConnections[c.id] = c; } function handleElement(element) { enclosedElements[element.id] = element; if (element.waypoints) { // remember connection enclosedConnections[element.id] = allConnections[element.id] = element; } else { // remember shape allShapes[element.id] = element; // remember all connections forEach(element.incoming, handleConnection); forEach(element.outgoing, handleConnection); // recurse into children return element.children; } } eachElement(elements, handleElement); return { allShapes: allShapes, allConnections: allConnections, topLevel: topLevel, enclosedConnections: enclosedConnections, enclosedElements: enclosedElements }; } /** * Returns the surrounding bbox for all elements in * the array or the element primitive. * * @param {Array|djs.model.Shape} elements * @param {Boolean} stopRecursion */ function getBBox(elements, stopRecursion) { stopRecursion = !!stopRecursion; if (!isArray(elements)) { elements = [elements]; } var minX, minY, maxX, maxY; forEach(elements, function(element) { // If element is a connection the bbox must be computed first var bbox = element; if (element.waypoints && !stopRecursion) { bbox = getBBox(element.waypoints, true); } var x = bbox.x, y = bbox.y, height = bbox.height || 0, width = bbox.width || 0; if (x < minX || minX === undefined) { minX = x; } if (y < minY || minY === undefined) { minY = y; } if ((x + width) > maxX || maxX === undefined) { maxX = x + width; } if ((y + height) > maxY || maxY === undefined) { maxY = y + height; } }); return { x: minX, y: minY, height: maxY - minY, width: maxX - minX }; } /** * Returns all elements that are enclosed from the bounding box. * * * If bbox.(width|height) is not specified the method returns * all elements with element.x/y > bbox.x/y * * If only bbox.x or bbox.y is specified, method return all elements with * e.x > bbox.x or e.y > bbox.y * * @param {Array} elements List of Elements to search through * @param {djs.model.Shape} bbox the enclosing bbox. * * @return {Array} enclosed elements */ function getEnclosedElements(elements, bbox) { var filteredElements = {}; forEach(elements, function(element) { var e = element; if (e.waypoints) { e = getBBox(e); } if (!isNumber(bbox.y) && (e.x > bbox.x)) { filteredElements[element.id] = element; } if (!isNumber(bbox.x) && (e.y > bbox.y)) { filteredElements[element.id] = element; } if (e.x > bbox.x && e.y > bbox.y) { if (isNumber(bbox.width) && isNumber(bbox.height) && e.width + e.x < bbox.width + bbox.x && e.height + e.y < bbox.height + bbox.y) { filteredElements[element.id] = element; } else if (!isNumber(bbox.width) || !isNumber(bbox.height)) { filteredElements[element.id] = element; } } }); return filteredElements; } module.exports.add = add; module.exports.eachElement = eachElement; module.exports.selfAndDirectChildren = selfAndDirectChildren; module.exports.selfAndAllChildren = selfAndAllChildren; module.exports.getBBox = getBBox; module.exports.getEnclosedElements = getEnclosedElements; module.exports.getClosure = getClosure; function getElementType(element) { if ('waypoints' in element) { return 'connection'; } if ('x' in element) { return 'shape'; } return 'root'; } module.exports.getType = getElementType; },{"303":303,"304":304,"422":422,"425":425}],267:[function(_dereq_,module,exports){ 'use strict'; function __preventDefault(event) { return event && event.preventDefault(); } function __stopPropagation(event, immediate) { if (!event) { return; } if (event.stopPropagation) { event.stopPropagation(); } if (immediate && event.stopImmediatePropagation) { event.stopImmediatePropagation(); } } function getOriginal(event) { return event.originalEvent || event.srcEvent; } module.exports.getOriginal = getOriginal; function stopEvent(event, immediate) { stopPropagation(event, immediate); preventDefault(event); } module.exports.stopEvent = stopEvent; function preventDefault(event) { __preventDefault(event); __preventDefault(getOriginal(event)); } module.exports.preventDefault = preventDefault; function stopPropagation(event, immediate) { __stopPropagation(event, immediate); __stopPropagation(getOriginal(event), immediate); } module.exports.stopPropagation = stopPropagation; function toPoint(event) { if (event.pointers && event.pointers.length) { event = event.pointers[0]; } if (event.touches && event.touches.length) { event = event.touches[0]; } return event ? { x: event.clientX, y: event.clientY } : null; } module.exports.toPoint = toPoint; },{}],268:[function(_dereq_,module,exports){ 'use strict'; /** * Computes the distance between two points * * @param {Point} p * @param {Point} q * * @return {Number} distance */ function pointDistance(a, b) { if (!a || !b) { return -1; } return Math.sqrt(Math.pow(a.x - b.x, 2) + Math.pow(a.y - b.y, 2)); } module.exports.pointDistance = pointDistance; /** * Returns true if the point r is on the line between p and y * * @param {Point} p * @param {Point} q * @param {Point} r * * @return {Boolean} */ module.exports.pointsOnLine = function(p, q, r) { if (!p || !q || !r) { return false; } var val = (q.x - p.x) * (r.y - p.y) - (q.y - p.y) * (r.x - p.x), dist = pointDistance(p, q); // @see http://stackoverflow.com/a/907491/412190 return Math.abs(val / dist) < 5; }; var ALIGNED_THRESHOLD = 2; /** * Returns whether two points are in a horizontal or vertical line. * * @param {Point} a * @param {Point} b * * @return {String|Boolean} returns false if the points are not * aligned or 'h|v' if they are aligned * horizontally / vertically. */ function pointsAligned(a, b) { if (Math.abs(a.x - b.x) <= ALIGNED_THRESHOLD) { return 'h'; } if (Math.abs(a.y - b.y) <= ALIGNED_THRESHOLD) { return 'v'; } return false; } module.exports.pointsAligned = pointsAligned; /** * Returns true if the point p is inside the rectangle rect * * @param {Point} p * @param {Rect} rect * @param {Number} tolerance * * @return {Boolean} */ module.exports.pointInRect = function(p, rect, tolerance) { tolerance = tolerance || 0; return p.x > rect.x - tolerance && p.y > rect.y - tolerance && p.x < rect.x + rect.width + tolerance && p.y < rect.y + rect.height + tolerance; }; /** * Returns a point in the middle of points p and q * * @param {Point} p * @param {Point} q * * @return {Point} middle point */ module.exports.getMidPoint = function(p, q) { return { x: Math.round(p.x + ((q.x - p.x) / 2.0)), y: Math.round(p.y + ((q.y - p.y) / 2.0)) }; }; },{}],269:[function(_dereq_,module,exports){ 'use strict'; var domQuery = _dereq_(452); /** * SVGs for elements are generated by the {@link GraphicsFactory}. * * This utility gives quick access to the important semantic * parts of an element. */ /** * Returns the visual part of a diagram element * * @param {Snap} gfx * * @return {Snap} */ function getVisual(gfx) { return domQuery('.djs-visual', gfx); } /** * Returns the children for a given diagram element. * * @param {Snap} gfx * @return {Snap} */ function getChildren(gfx) { return gfx.parentNode.childNodes[1]; } module.exports.getVisual = getVisual; module.exports.getChildren = getChildren; },{"452":452}],270:[function(_dereq_,module,exports){ 'use strict'; /** * Util that provides unique IDs. * * @class djs.util.IdGenerator * @constructor * @memberOf djs.util * * The ids can be customized via a given prefix and contain a random value to avoid collisions. * * @param {String} prefix a prefix to prepend to generated ids (for better readability) */ function IdGenerator(prefix) { this._counter = 0; this._prefix = (prefix ? prefix + '-' : '') + Math.floor(Math.random() * 1000000000) + '-'; } module.exports = IdGenerator; /** * Returns a next unique ID. * * @method djs.util.IdGenerator#next * * @returns {String} the id */ IdGenerator.prototype.next = function() { return this._prefix + (++this._counter); }; },{}],271:[function(_dereq_,module,exports){ /* eslint no-fallthrough: "off" */ 'use strict'; var has = 'hasOwnProperty', p2s = /,?([a-z]),?/gi, toFloat = parseFloat, math = Math, PI = math.PI, mmin = math.min, mmax = math.max, pow = math.pow, abs = math.abs, pathCommand = /([a-z])[\s,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\s]*,?[\s]*)+)/ig, pathValues = /(-?\d*\.?\d*(?:e[\-+]?\\d+)?)[\s]*,?[\s]*/ig; function is(o, type) { type = String.prototype.toLowerCase.call(type); if (type == 'finite') { return isFinite(o); } if (type == 'array' && (o instanceof Array || Array.isArray && Array.isArray(o))) { return true; } return (type == 'null' && o === null) || (type == typeof o && o !== null) || (type == 'object' && o === Object(o)) || Object.prototype.toString.call(o).slice(8, -1).toLowerCase() == type; } function clone(obj) { if (typeof obj == 'function' || Object(obj) !== obj) { return obj; } var res = new obj.constructor; for (var key in obj) if (obj[has](key)) { res[key] = clone(obj[key]); } return res; } function repush(array, item) { for (var i = 0, ii = array.length; i < ii; i++) if (array[i] === item) { return array.push(array.splice(i, 1)[0]); } } function cacher(f, scope, postprocessor) { function newf() { var arg = Array.prototype.slice.call(arguments, 0), args = arg.join('\u2400'), cache = newf.cache = newf.cache || {}, count = newf.count = newf.count || []; if (cache[has](args)) { repush(count, args); return postprocessor ? postprocessor(cache[args]) : cache[args]; } count.length >= 1e3 && delete cache[count.shift()]; count.push(args); cache[args] = f.apply(scope, arg); return postprocessor ? postprocessor(cache[args]) : cache[args]; } return newf; } function parsePathString(pathString) { if (!pathString) { return null; } var pth = paths(pathString); if (pth.arr) { return clone(pth.arr); } var paramCounts = { a: 7, c: 6, o: 2, h: 1, l: 2, m: 2, r: 4, q: 4, s: 4, t: 2, v: 1, u: 3, z: 0 }, data = []; if (is(pathString, 'array') && is(pathString[0], 'array')) { // rough assumption data = clone(pathString); } if (!data.length) { String(pathString).replace(pathCommand, function(a, b, c) { var params = [], name = b.toLowerCase(); c.replace(pathValues, function(a, b) { b && params.push(+b); }); if (name == 'm' && params.length > 2) { data.push([b].concat(params.splice(0, 2))); name = 'l'; b = b == 'm' ? 'l' : 'L'; } if (name == 'o' && params.length == 1) { data.push([b, params[0]]); } if (name == 'r') { data.push([b].concat(params)); } else while (params.length >= paramCounts[name]) { data.push([b].concat(params.splice(0, paramCounts[name]))); if (!paramCounts[name]) { break; } } }); } data.toString = paths.toString; pth.arr = clone(data); return data; } function paths(ps) { var p = paths.ps = paths.ps || {}; if (p[ps]) { p[ps].sleep = 100; } else { p[ps] = { sleep: 100 }; } setTimeout(function() { for (var key in p) if (p[has](key) && key != ps) { p[key].sleep--; !p[key].sleep && delete p[key]; } }); return p[ps]; } function box(x, y, width, height) { if (x == null) { x = y = width = height = 0; } if (y == null) { y = x.y; width = x.width; height = x.height; x = x.x; } return { x: x, y: y, width: width, w: width, height: height, h: height, x2: x + width, y2: y + height, cx: x + width / 2, cy: y + height / 2, r1: math.min(width, height) / 2, r2: math.max(width, height) / 2, r0: math.sqrt(width * width + height * height) / 2, path: rectPath(x, y, width, height), vb: [x, y, width, height].join(' ') }; } function toString() { return this.join(',').replace(p2s, '$1'); } function pathClone(pathArray) { var res = clone(pathArray); res.toString = toString; return res; } function getPointAtSegmentLength(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, length) { if (length == null) { return bezlen(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y); } else { return findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, getTotLen(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, length)); } } function getLengthFactory(istotal, subpath) { function O(val) { return +(+val).toFixed(3); } return cacher(function(path, length, onlystart) { if (path instanceof Element) { path = path.attr('d'); } path = path2curve(path); var x, y, p, l, sp = '', subpaths = {}, point, len = 0; for (var i = 0, ii = path.length; i < ii; i++) { p = path[i]; if (p[0] == 'M') { x = +p[1]; y = +p[2]; } else { l = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6]); if (len + l > length) { if (subpath && !subpaths.start) { point = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6], length - len); sp += [ 'C' + O(point.start.x), O(point.start.y), O(point.m.x), O(point.m.y), O(point.x), O(point.y) ]; if (onlystart) { return sp; } subpaths.start = sp; sp = [ 'M' + O(point.x), O(point.y) + 'C' + O(point.n.x), O(point.n.y), O(point.end.x), O(point.end.y), O(p[5]), O(p[6]) ].join(); len += l; x = +p[5]; y = +p[6]; continue; } if (!istotal && !subpath) { point = getPointAtSegmentLength(x, y, p[1], p[2], p[3], p[4], p[5], p[6], length - len); return point; } } len += l; x = +p[5]; y = +p[6]; } sp += p.shift() + p; } subpaths.end = sp; point = istotal ? len : subpath ? subpaths : findDotsAtSegment(x, y, p[0], p[1], p[2], p[3], p[4], p[5], 1); return point; }, null, clone); } var getTotalLength = getLengthFactory(1), getPointAtLength = getLengthFactory(); function findDotsAtSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { var t1 = 1 - t, t13 = pow(t1, 3), t12 = pow(t1, 2), t2 = t * t, t3 = t2 * t, x = t13 * p1x + t12 * 3 * t * c1x + t1 * 3 * t * t * c2x + t3 * p2x, y = t13 * p1y + t12 * 3 * t * c1y + t1 * 3 * t * t * c2y + t3 * p2y, mx = p1x + 2 * t * (c1x - p1x) + t2 * (c2x - 2 * c1x + p1x), my = p1y + 2 * t * (c1y - p1y) + t2 * (c2y - 2 * c1y + p1y), nx = c1x + 2 * t * (c2x - c1x) + t2 * (p2x - 2 * c2x + c1x), ny = c1y + 2 * t * (c2y - c1y) + t2 * (p2y - 2 * c2y + c1y), ax = t1 * p1x + t * c1x, ay = t1 * p1y + t * c1y, cx = t1 * c2x + t * p2x, cy = t1 * c2y + t * p2y, alpha = (90 - math.atan2(mx - nx, my - ny) * 180 / PI); // (mx > nx || my < ny) && (alpha += 180); return { x: x, y: y, m: { x: mx, y: my }, n: { x: nx, y: ny }, start: { x: ax, y: ay }, end: { x: cx, y: cy }, alpha: alpha }; } function bezierBBox(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { if (!is(p1x, 'array')) { p1x = [p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y]; } var bbox = curveDim.apply(null, p1x); return box( bbox.min.x, bbox.min.y, bbox.max.x - bbox.min.x, bbox.max.y - bbox.min.y ); } function isPointInsideBBox(bbox, x, y) { return x >= bbox.x && x <= bbox.x + bbox.width && y >= bbox.y && y <= bbox.y + bbox.height; } function isBBoxIntersect(bbox1, bbox2) { bbox1 = box(bbox1); bbox2 = box(bbox2); return isPointInsideBBox(bbox2, bbox1.x, bbox1.y) || isPointInsideBBox(bbox2, bbox1.x2, bbox1.y) || isPointInsideBBox(bbox2, bbox1.x, bbox1.y2) || isPointInsideBBox(bbox2, bbox1.x2, bbox1.y2) || isPointInsideBBox(bbox1, bbox2.x, bbox2.y) || isPointInsideBBox(bbox1, bbox2.x2, bbox2.y) || isPointInsideBBox(bbox1, bbox2.x, bbox2.y2) || isPointInsideBBox(bbox1, bbox2.x2, bbox2.y2) || (bbox1.x < bbox2.x2 && bbox1.x > bbox2.x || bbox2.x < bbox1.x2 && bbox2.x > bbox1.x) && (bbox1.y < bbox2.y2 && bbox1.y > bbox2.y || bbox2.y < bbox1.y2 && bbox2.y > bbox1.y); } function base3(t, p1, p2, p3, p4) { var t1 = -3 * p1 + 9 * p2 - 9 * p3 + 3 * p4, t2 = t * t1 + 6 * p1 - 12 * p2 + 6 * p3; return t * t2 - 3 * p1 + 3 * p2; } function bezlen(x1, y1, x2, y2, x3, y3, x4, y4, z) { if (z == null) { z = 1; } z = z > 1 ? 1 : z < 0 ? 0 : z; var z2 = z / 2, n = 12, Tvalues = [-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816], Cvalues = [0.2491,0.2491,0.2335,0.2335,0.2032,0.2032,0.1601,0.1601,0.1069,0.1069,0.0472,0.0472], sum = 0; for (var i = 0; i < n; i++) { var ct = z2 * Tvalues[i] + z2, xbase = base3(ct, x1, x2, x3, x4), ybase = base3(ct, y1, y2, y3, y4), comb = xbase * xbase + ybase * ybase; sum += Cvalues[i] * math.sqrt(comb); } return z2 * sum; } function getTotLen(x1, y1, x2, y2, x3, y3, x4, y4, ll) { if (ll < 0 || bezlen(x1, y1, x2, y2, x3, y3, x4, y4) < ll) { return; } var t = 1, step = t / 2, t2 = t - step, l, e = .01; l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2); while (abs(l - ll) > e) { step /= 2; t2 += (l < ll ? 1 : -1) * step; l = bezlen(x1, y1, x2, y2, x3, y3, x4, y4, t2); } return t2; } function intersect(x1, y1, x2, y2, x3, y3, x4, y4) { if ( mmax(x1, x2) < mmin(x3, x4) || mmin(x1, x2) > mmax(x3, x4) || mmax(y1, y2) < mmin(y3, y4) || mmin(y1, y2) > mmax(y3, y4) ) { return; } var nx = (x1 * y2 - y1 * x2) * (x3 - x4) - (x1 - x2) * (x3 * y4 - y3 * x4), ny = (x1 * y2 - y1 * x2) * (y3 - y4) - (y1 - y2) * (x3 * y4 - y3 * x4), denominator = (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4); if (!denominator) { return; } var px = nx / denominator, py = ny / denominator, px2 = +px.toFixed(2), py2 = +py.toFixed(2); if ( px2 < +mmin(x1, x2).toFixed(2) || px2 > +mmax(x1, x2).toFixed(2) || px2 < +mmin(x3, x4).toFixed(2) || px2 > +mmax(x3, x4).toFixed(2) || py2 < +mmin(y1, y2).toFixed(2) || py2 > +mmax(y1, y2).toFixed(2) || py2 < +mmin(y3, y4).toFixed(2) || py2 > +mmax(y3, y4).toFixed(2) ) { return; } return { x: px, y: py }; } function interHelper(bez1, bez2, justCount) { var bbox1 = bezierBBox(bez1), bbox2 = bezierBBox(bez2); if (!isBBoxIntersect(bbox1, bbox2)) { return justCount ? 0 : []; } var l1 = bezlen.apply(0, bez1), l2 = bezlen.apply(0, bez2), n1 = ~~(l1 / 8), n2 = ~~(l2 / 8), dots1 = [], dots2 = [], xy = {}, res = justCount ? 0 : []; for (var i = 0; i < n1 + 1; i++) { var p = findDotsAtSegment.apply(0, bez1.concat(i / n1)); dots1.push({ x: p.x, y: p.y, t: i / n1 }); } for (i = 0; i < n2 + 1; i++) { p = findDotsAtSegment.apply(0, bez2.concat(i / n2)); dots2.push({ x: p.x, y: p.y, t: i / n2 }); } for (i = 0; i < n1; i++) { for (var j = 0; j < n2; j++) { var di = dots1[i], di1 = dots1[i + 1], dj = dots2[j], dj1 = dots2[j + 1], ci = abs(di1.x - di.x) < .001 ? 'y' : 'x', cj = abs(dj1.x - dj.x) < .001 ? 'y' : 'x', is = intersect(di.x, di.y, di1.x, di1.y, dj.x, dj.y, dj1.x, dj1.y); if (is) { if (xy[is.x.toFixed(4)] == is.y.toFixed(4)) { continue; } xy[is.x.toFixed(4)] = is.y.toFixed(4); var t1 = di.t + abs((is[ci] - di[ci]) / (di1[ci] - di[ci])) * (di1.t - di.t), t2 = dj.t + abs((is[cj] - dj[cj]) / (dj1[cj] - dj[cj])) * (dj1.t - dj.t); if (t1 >= 0 && t1 <= 1 && t2 >= 0 && t2 <= 1) { if (justCount) { res++; } else { res.push({ x: is.x, y: is.y, t1: t1, t2: t2 }); } } } } } return res; } function pathIntersection(path1, path2) { return interPathHelper(path1, path2); } function pathIntersectionNumber(path1, path2) { return interPathHelper(path1, path2, 1); } function interPathHelper(path1, path2, justCount) { path1 = path2curve(path1); path2 = path2curve(path2); var x1, y1, x2, y2, x1m, y1m, x2m, y2m, bez1, bez2, res = justCount ? 0 : []; for (var i = 0, ii = path1.length; i < ii; i++) { var pi = path1[i]; if (pi[0] == 'M') { x1 = x1m = pi[1]; y1 = y1m = pi[2]; } else { if (pi[0] == 'C') { bez1 = [x1, y1].concat(pi.slice(1)); x1 = bez1[6]; y1 = bez1[7]; } else { bez1 = [x1, y1, x1, y1, x1m, y1m, x1m, y1m]; x1 = x1m; y1 = y1m; } for (var j = 0, jj = path2.length; j < jj; j++) { var pj = path2[j]; if (pj[0] == 'M') { x2 = x2m = pj[1]; y2 = y2m = pj[2]; } else { if (pj[0] == 'C') { bez2 = [x2, y2].concat(pj.slice(1)); x2 = bez2[6]; y2 = bez2[7]; } else { bez2 = [x2, y2, x2, y2, x2m, y2m, x2m, y2m]; x2 = x2m; y2 = y2m; } var intr = interHelper(bez1, bez2, justCount); if (justCount) { res += intr; } else { for (var k = 0, kk = intr.length; k < kk; k++) { intr[k].segment1 = i; intr[k].segment2 = j; intr[k].bez1 = bez1; intr[k].bez2 = bez2; } res = res.concat(intr); } } } } } return res; } function isPointInsidePath(path, x, y) { var bbox = pathBBox(path); return isPointInsideBBox(bbox, x, y) && interPathHelper(path, [['M', x, y], ['H', bbox.x2 + 10]], 1) % 2 == 1; } function pathBBox(path) { var pth = paths(path); if (pth.bbox) { return clone(pth.bbox); } if (!path) { return box(); } path = path2curve(path); var x = 0, y = 0, X = [], Y = [], p; for (var i = 0, ii = path.length; i < ii; i++) { p = path[i]; if (p[0] == 'M') { x = p[1]; y = p[2]; X.push(x); Y.push(y); } else { var dim = curveDim(x, y, p[1], p[2], p[3], p[4], p[5], p[6]); X = X.concat(dim.min.x, dim.max.x); Y = Y.concat(dim.min.y, dim.max.y); x = p[5]; y = p[6]; } } var xmin = mmin.apply(0, X), ymin = mmin.apply(0, Y), xmax = mmax.apply(0, X), ymax = mmax.apply(0, Y), bb = box(xmin, ymin, xmax - xmin, ymax - ymin); pth.bbox = clone(bb); return bb; } function rectPath(x, y, w, h, r) { if (r) { return [ ['M', +x + (+r), y], ['l', w - r * 2, 0], ['a', r, r, 0, 0, 1, r, r], ['l', 0, h - r * 2], ['a', r, r, 0, 0, 1, -r, r], ['l', r * 2 - w, 0], ['a', r, r, 0, 0, 1, -r, -r], ['l', 0, r * 2 - h], ['a', r, r, 0, 0, 1, r, -r], ['z'] ]; } var res = [['M', x, y], ['l', w, 0], ['l', 0, h], ['l', -w, 0], ['z']]; res.toString = toString; return res; } function ellipsePath(x, y, rx, ry, a) { if (a == null && ry == null) { ry = rx; } x = +x; y = +y; rx = +rx; ry = +ry; if (a != null) { var rad = Math.PI / 180, x1 = x + rx * Math.cos(-ry * rad), x2 = x + rx * Math.cos(-a * rad), y1 = y + rx * Math.sin(-ry * rad), y2 = y + rx * Math.sin(-a * rad), res = [['M', x1, y1], ['A', rx, rx, 0, +(a - ry > 180), 0, x2, y2]]; } else { res = [ ['M', x, y], ['m', 0, -ry], ['a', rx, ry, 0, 1, 1, 0, 2 * ry], ['a', rx, ry, 0, 1, 1, 0, -2 * ry], ['z'] ]; } res.toString = toString; return res; } function pathToRelative(pathArray) { var pth = paths(pathArray), lowerCase = String.prototype.toLowerCase; if (pth.rel) { return pathClone(pth.rel); } if (!is(pathArray, 'array') || !is(pathArray && pathArray[0], 'array')) { pathArray = parsePathString(pathArray); } var res = [], x = 0, y = 0, mx = 0, my = 0, start = 0; if (pathArray[0][0] == 'M') { x = pathArray[0][1]; y = pathArray[0][2]; mx = x; my = y; start++; res.push(['M', x, y]); } for (var i = start, ii = pathArray.length; i < ii; i++) { var r = res[i] = [], pa = pathArray[i]; if (pa[0] != lowerCase.call(pa[0])) { r[0] = lowerCase.call(pa[0]); switch (r[0]) { case 'a': r[1] = pa[1]; r[2] = pa[2]; r[3] = pa[3]; r[4] = pa[4]; r[5] = pa[5]; r[6] = +(pa[6] - x).toFixed(3); r[7] = +(pa[7] - y).toFixed(3); break; case 'v': r[1] = +(pa[1] - y).toFixed(3); break; case 'm': mx = pa[1]; my = pa[2]; default: for (var j = 1, jj = pa.length; j < jj; j++) { r[j] = +(pa[j] - ((j % 2) ? x : y)).toFixed(3); } } } else { r = res[i] = []; if (pa[0] == 'm') { mx = pa[1] + x; my = pa[2] + y; } for (var k = 0, kk = pa.length; k < kk; k++) { res[i][k] = pa[k]; } } var len = res[i].length; switch (res[i][0]) { case 'z': x = mx; y = my; break; case 'h': x += +res[i][len - 1]; break; case 'v': y += +res[i][len - 1]; break; default: x += +res[i][len - 2]; y += +res[i][len - 1]; } } res.toString = toString; pth.rel = pathClone(res); return res; } function pathToAbsolute(pathArray) { var pth = paths(pathArray); if (pth.abs) { return pathClone(pth.abs); } if (!is(pathArray, 'array') || !is(pathArray && pathArray[0], 'array')) { // rough assumption pathArray = parsePathString(pathArray); } if (!pathArray || !pathArray.length) { return [['M', 0, 0]]; } var res = [], x = 0, y = 0, mx = 0, my = 0, start = 0, pa0; if (pathArray[0][0] == 'M') { x = +pathArray[0][1]; y = +pathArray[0][2]; mx = x; my = y; start++; res[0] = ['M', x, y]; } var crz = pathArray.length == 3 && pathArray[0][0] == 'M' && pathArray[1][0].toUpperCase() == 'R' && pathArray[2][0].toUpperCase() == 'Z'; for (var r, pa, i = start, ii = pathArray.length; i < ii; i++) { res.push(r = []); pa = pathArray[i]; pa0 = pa[0]; if (pa0 != pa0.toUpperCase()) { r[0] = pa0.toUpperCase(); switch (r[0]) { case 'A': r[1] = pa[1]; r[2] = pa[2]; r[3] = pa[3]; r[4] = pa[4]; r[5] = pa[5]; r[6] = +pa[6] + x; r[7] = +pa[7] + y; break; case 'V': r[1] = +pa[1] + y; break; case 'H': r[1] = +pa[1] + x; break; case 'R': var dots = [x, y].concat(pa.slice(1)); for (var j = 2, jj = dots.length; j < jj; j++) { dots[j] = +dots[j] + x; dots[++j] = +dots[j] + y; } res.pop(); res = res.concat(catmullRom2bezier(dots, crz)); break; case 'O': res.pop(); dots = ellipsePath(x, y, pa[1], pa[2]); dots.push(dots[0]); res = res.concat(dots); break; case 'U': res.pop(); res = res.concat(ellipsePath(x, y, pa[1], pa[2], pa[3])); r = ['U'].concat(res[res.length - 1].slice(-2)); break; case 'M': mx = +pa[1] + x; my = +pa[2] + y; default: for (j = 1, jj = pa.length; j < jj; j++) { r[j] = +pa[j] + ((j % 2) ? x : y); } } } else if (pa0 == 'R') { dots = [x, y].concat(pa.slice(1)); res.pop(); res = res.concat(catmullRom2bezier(dots, crz)); r = ['R'].concat(pa.slice(-2)); } else if (pa0 == 'O') { res.pop(); dots = ellipsePath(x, y, pa[1], pa[2]); dots.push(dots[0]); res = res.concat(dots); } else if (pa0 == 'U') { res.pop(); res = res.concat(ellipsePath(x, y, pa[1], pa[2], pa[3])); r = ['U'].concat(res[res.length - 1].slice(-2)); } else { for (var k = 0, kk = pa.length; k < kk; k++) { r[k] = pa[k]; } } pa0 = pa0.toUpperCase(); if (pa0 != 'O') { switch (r[0]) { case 'Z': x = +mx; y = +my; break; case 'H': x = r[1]; break; case 'V': y = r[1]; break; case 'M': mx = r[r.length - 2]; my = r[r.length - 1]; default: x = r[r.length - 2]; y = r[r.length - 1]; } } } res.toString = toString; pth.abs = pathClone(res); return res; } function l2c(x1, y1, x2, y2) { return [x1, y1, x2, y2, x2, y2]; } function q2c(x1, y1, ax, ay, x2, y2) { var _13 = 1 / 3, _23 = 2 / 3; return [ _13 * x1 + _23 * ax, _13 * y1 + _23 * ay, _13 * x2 + _23 * ax, _13 * y2 + _23 * ay, x2, y2 ]; } function a2c(x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive) { // for more information of where this math came from visit: // http://www.w3.org/TR/SVG11/implnote.html#ArcImplementationNotes var _120 = PI * 120 / 180, rad = PI / 180 * (+angle || 0), res = [], xy, rotate = cacher(function(x, y, rad) { var X = x * math.cos(rad) - y * math.sin(rad), Y = x * math.sin(rad) + y * math.cos(rad); return { x: X, y: Y }; }); if (!recursive) { xy = rotate(x1, y1, -rad); x1 = xy.x; y1 = xy.y; xy = rotate(x2, y2, -rad); x2 = xy.x; y2 = xy.y; var x = (x1 - x2) / 2, y = (y1 - y2) / 2; var h = (x * x) / (rx * rx) + (y * y) / (ry * ry); if (h > 1) { h = math.sqrt(h); rx = h * rx; ry = h * ry; } var rx2 = rx * rx, ry2 = ry * ry, k = (large_arc_flag == sweep_flag ? -1 : 1) * math.sqrt(abs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))), cx = k * rx * y / ry + (x1 + x2) / 2, cy = k * -ry * x / rx + (y1 + y2) / 2, f1 = math.asin(((y1 - cy) / ry).toFixed(9)), f2 = math.asin(((y2 - cy) / ry).toFixed(9)); f1 = x1 < cx ? PI - f1 : f1; f2 = x2 < cx ? PI - f2 : f2; f1 < 0 && (f1 = PI * 2 + f1); f2 < 0 && (f2 = PI * 2 + f2); if (sweep_flag && f1 > f2) { f1 = f1 - PI * 2; } if (!sweep_flag && f2 > f1) { f2 = f2 - PI * 2; } } else { f1 = recursive[0]; f2 = recursive[1]; cx = recursive[2]; cy = recursive[3]; } var df = f2 - f1; if (abs(df) > _120) { var f2old = f2, x2old = x2, y2old = y2; f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1); x2 = cx + rx * math.cos(f2); y2 = cy + ry * math.sin(f2); res = a2c(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy]); } df = f2 - f1; var c1 = math.cos(f1), s1 = math.sin(f1), c2 = math.cos(f2), s2 = math.sin(f2), t = math.tan(df / 4), hx = 4 / 3 * rx * t, hy = 4 / 3 * ry * t, m1 = [x1, y1], m2 = [x1 + hx * s1, y1 - hy * c1], m3 = [x2 + hx * s2, y2 - hy * c2], m4 = [x2, y2]; m2[0] = 2 * m1[0] - m2[0]; m2[1] = 2 * m1[1] - m2[1]; if (recursive) { return [m2, m3, m4].concat(res); } else { res = [m2, m3, m4].concat(res).join().split(','); var newres = []; for (var i = 0, ii = res.length; i < ii; i++) { newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x; } return newres; } } // Returns bounding box of cubic bezier curve. // Source: http://blog.hackers-cafe.net/2009/06/how-to-calculate-bezier-curves-bounding.html // Original version: NISHIO Hirokazu // Modifications: https://github.com/timo22345 function curveDim(x0, y0, x1, y1, x2, y2, x3, y3) { var tvalues = [], bounds = [[], []], a, b, c, t, t1, t2, b2ac, sqrtb2ac; for (var i = 0; i < 2; ++i) { if (i == 0) { b = 6 * x0 - 12 * x1 + 6 * x2; a = -3 * x0 + 9 * x1 - 9 * x2 + 3 * x3; c = 3 * x1 - 3 * x0; } else { b = 6 * y0 - 12 * y1 + 6 * y2; a = -3 * y0 + 9 * y1 - 9 * y2 + 3 * y3; c = 3 * y1 - 3 * y0; } if (abs(a) < 1e-12) { if (abs(b) < 1e-12) { continue; } t = -c / b; if (0 < t && t < 1) { tvalues.push(t); } continue; } b2ac = b * b - 4 * c * a; sqrtb2ac = math.sqrt(b2ac); if (b2ac < 0) { continue; } t1 = (-b + sqrtb2ac) / (2 * a); if (0 < t1 && t1 < 1) { tvalues.push(t1); } t2 = (-b - sqrtb2ac) / (2 * a); if (0 < t2 && t2 < 1) { tvalues.push(t2); } } var j = tvalues.length, jlen = j, mt; while (j--) { t = tvalues[j]; mt = 1 - t; bounds[0][j] = (mt * mt * mt * x0) + (3 * mt * mt * t * x1) + (3 * mt * t * t * x2) + (t * t * t * x3); bounds[1][j] = (mt * mt * mt * y0) + (3 * mt * mt * t * y1) + (3 * mt * t * t * y2) + (t * t * t * y3); } bounds[0][jlen] = x0; bounds[1][jlen] = y0; bounds[0][jlen + 1] = x3; bounds[1][jlen + 1] = y3; bounds[0].length = bounds[1].length = jlen + 2; return { min: { x: mmin.apply(0, bounds[0]), y: mmin.apply(0, bounds[1]) }, max: { x: mmax.apply(0, bounds[0]), y: mmax.apply(0, bounds[1]) } }; } function path2curve(path, path2) { var pth = !path2 && paths(path); if (!path2 && pth.curve) { return pathClone(pth.curve); } var p = pathToAbsolute(path), p2 = path2 && pathToAbsolute(path2), attrs = { x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null }, attrs2 = { x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null }, processPath = function(path, d, pcom) { var nx, ny; if (!path) { return ['C', d.x, d.y, d.x, d.y, d.x, d.y]; } !(path[0] in { T: 1, Q: 1 }) && (d.qx = d.qy = null); switch (path[0]) { case 'M': d.X = path[1]; d.Y = path[2]; break; case 'A': path = ['C'].concat(a2c.apply(0, [d.x, d.y].concat(path.slice(1)))); break; case 'S': if (pcom == 'C' || pcom == 'S') { // In 'S' case we have to take into account, if the previous command is C/S. nx = d.x * 2 - d.bx; // And reflect the previous ny = d.y * 2 - d.by; // command's control point relative to the current point. } else { // or some else or nothing nx = d.x; ny = d.y; } path = ['C', nx, ny].concat(path.slice(1)); break; case 'T': if (pcom == 'Q' || pcom == 'T') { // In 'T' case we have to take into account, if the previous command is Q/T. d.qx = d.x * 2 - d.qx; // And make a reflection similar d.qy = d.y * 2 - d.qy; // to case 'S'. } else { // or something else or nothing d.qx = d.x; d.qy = d.y; } path = ['C'].concat(q2c(d.x, d.y, d.qx, d.qy, path[1], path[2])); break; case 'Q': d.qx = path[1]; d.qy = path[2]; path = ['C'].concat(q2c(d.x, d.y, path[1], path[2], path[3], path[4])); break; case 'L': path = ['C'].concat(l2c(d.x, d.y, path[1], path[2])); break; case 'H': path = ['C'].concat(l2c(d.x, d.y, path[1], d.y)); break; case 'V': path = ['C'].concat(l2c(d.x, d.y, d.x, path[1])); break; case 'Z': path = ['C'].concat(l2c(d.x, d.y, d.X, d.Y)); break; } return path; }, fixArc = function(pp, i) { if (pp[i].length > 7) { pp[i].shift(); var pi = pp[i]; while (pi.length) { pcoms1[i] = 'A'; // if created multiple C:s, their original seg is saved p2 && (pcoms2[i] = 'A'); // the same as above pp.splice(i++, 0, ['C'].concat(pi.splice(0, 6))); } pp.splice(i, 1); ii = mmax(p.length, p2 && p2.length || 0); } }, fixM = function(path1, path2, a1, a2, i) { if (path1 && path2 && path1[i][0] == 'M' && path2[i][0] != 'M') { path2.splice(i, 0, ['M', a2.x, a2.y]); a1.bx = 0; a1.by = 0; a1.x = path1[i][1]; a1.y = path1[i][2]; ii = mmax(p.length, p2 && p2.length || 0); } }, pcoms1 = [], // path commands of original path p pcoms2 = [], // path commands of original path p2 pfirst = '', // temporary holder for original path command pcom = ''; // holder for previous path command of original path for (var i = 0, ii = mmax(p.length, p2 && p2.length || 0); i < ii; i++) { p[i] && (pfirst = p[i][0]); // save current path command if (pfirst != 'C') // C is not saved yet, because it may be result of conversion { pcoms1[i] = pfirst; // Save current path command i && ( pcom = pcoms1[i - 1]); // Get previous path command pcom } p[i] = processPath(p[i], attrs, pcom); // Previous path command is inputted to processPath if (pcoms1[i] != 'A' && pfirst == 'C') pcoms1[i] = 'C'; // A is the only command // which may produce multiple C:s // so we have to make sure that C is also C in original path fixArc(p, i); // fixArc adds also the right amount of A:s to pcoms1 if (p2) { // the same procedures is done to p2 p2[i] && (pfirst = p2[i][0]); if (pfirst != 'C') { pcoms2[i] = pfirst; i && (pcom = pcoms2[i - 1]); } p2[i] = processPath(p2[i], attrs2, pcom); if (pcoms2[i] != 'A' && pfirst == 'C') { pcoms2[i] = 'C'; } fixArc(p2, i); } fixM(p, p2, attrs, attrs2, i); fixM(p2, p, attrs2, attrs, i); var seg = p[i], seg2 = p2 && p2[i], seglen = seg.length, seg2len = p2 && seg2.length; attrs.x = seg[seglen - 2]; attrs.y = seg[seglen - 1]; attrs.bx = toFloat(seg[seglen - 4]) || attrs.x; attrs.by = toFloat(seg[seglen - 3]) || attrs.y; attrs2.bx = p2 && (toFloat(seg2[seg2len - 4]) || attrs2.x); attrs2.by = p2 && (toFloat(seg2[seg2len - 3]) || attrs2.y); attrs2.x = p2 && seg2[seg2len - 2]; attrs2.y = p2 && seg2[seg2len - 1]; } if (!p2) { pth.curve = pathClone(p); } return p2 ? [p, p2] : p; } function mapPath(path, matrix) { if (!matrix) { return path; } var x, y, i, j, ii, jj, pathi; path = path2curve(path); for (i = 0, ii = path.length; i < ii; i++) { pathi = path[i]; for (j = 1, jj = pathi.length; j < jj; j += 2) { x = matrix.x(pathi[j], pathi[j + 1]); y = matrix.y(pathi[j], pathi[j + 1]); pathi[j] = x; pathi[j + 1] = y; } } return path; } // http://schepers.cc/getting-to-the-point function catmullRom2bezier(crp, z) { var d = []; for (var i = 0, iLen = crp.length; iLen - 2 * !z > i; i += 2) { var p = [ { x: +crp[i - 2], y: +crp[i - 1] }, { x: +crp[i], y: +crp[i + 1] }, { x: +crp[i + 2], y: +crp[i + 3] }, { x: +crp[i + 4], y: +crp[i + 5] } ]; if (z) { if (!i) { p[0] = { x: +crp[iLen - 2], y: +crp[iLen - 1] }; } else if (iLen - 4 == i) { p[3] = { x: +crp[0], y: +crp[1] }; } else if (iLen - 2 == i) { p[2] = { x: +crp[0], y: +crp[1] }; p[3] = { x: +crp[2], y: +crp[3] }; } } else { if (iLen - 4 == i) { p[3] = p[2]; } else if (!i) { p[0] = { x: +crp[i], y: +crp[i + 1] }; } } d.push(['C', (-p[0].x + 6 * p[1].x + p[2].x) / 6, (-p[0].y + 6 * p[1].y + p[2].y) / 6, (p[1].x + 6 * p[2].x - p[3].x) / 6, (p[1].y + 6*p[2].y - p[3].y) / 6, p[2].x, p[2].y ]); } return d; } paths.getTotalLength = getTotalLength; paths.getPointAtLength = getPointAtLength; paths.findDotsAtSegment = findDotsAtSegment; paths.bezierBBox = bezierBBox; paths.isPointInsideBBox = isPointInsideBBox; paths.isBBoxIntersect = isBBoxIntersect; paths.intersection = pathIntersection; paths.intersectionNumber = pathIntersectionNumber; paths.isPointInside = isPointInsidePath; paths.getBBox = pathBBox; paths.toRelative = pathToRelative; paths.toAbsolute = pathToAbsolute; paths.toCubic = path2curve; paths.map = mapPath; paths.toString = toString; paths.clone = pathClone; module.exports.intersection = pathIntersection; },{}],272:[function(_dereq_,module,exports){ 'use strict'; var pointDistance = _dereq_(268).pointDistance; var intersection = _dereq_(271).intersection; var round = Math.round, max = Math.max; function circlePath(center, r) { var x = center.x, y = center.y; return [ ['M', x, y], ['m', 0, -r], ['a', r, r, 0, 1, 1, 0, 2 * r], ['a', r, r, 0, 1, 1, 0, -2 * r], ['z'] ]; } function linePath(points) { var segments = []; points.forEach(function(p, idx) { segments.push([ idx === 0 ? 'M' : 'L', p.x, p.y ]); }); return segments; } var INTERSECTION_THRESHOLD = 10; function getBendpointIntersection(waypoints, reference) { var i, w; for (i = 0; (w = waypoints[i]); i++) { if (pointDistance(w, reference) <= INTERSECTION_THRESHOLD) { return { point: waypoints[i], bendpoint: true, index: i }; } } return null; } function getPathIntersection(waypoints, reference) { var intersections = intersection(circlePath(reference, INTERSECTION_THRESHOLD), linePath(waypoints)); var a = intersections[0], b = intersections[intersections.length - 1], idx; if (!a) { // no intersection return null; } if (a !== b) { if (a.segment2 !== b.segment2) { // we use the bendpoint in between both segments // as the intersection point idx = max(a.segment2, b.segment2) - 1; return { point: waypoints[idx], bendpoint: true, index: idx }; } return { point: { x: (round(a.x + b.x) / 2), y: (round(a.y + b.y) / 2) }, index: a.segment2 }; } return { point: { x: round(a.x), y: round(a.y) }, index: a.segment2 }; } /** * Returns the closest point on the connection towards a given reference point. * * @param {Array} waypoints * @param {Point} reference * * @return {Object} intersection data (segment, point) */ module.exports.getApproxIntersection = function(waypoints, reference) { return getBendpointIntersection(waypoints, reference) || getPathIntersection(waypoints, reference); }; },{"268":268,"271":271}],273:[function(_dereq_,module,exports){ 'use strict'; /** * Get the logarithm of x with base 10 * @param {Integer} value */ function log10(x) { return Math.log(x) / Math.log(10); } module.exports.log10 = log10; function substract(p1, p2) { return { x: p1.x - p2.x, y: p1.y - p2.y }; } module.exports.substract = substract; },{}],274:[function(_dereq_,module,exports){ 'use strict'; var getOriginalEvent = _dereq_(267).getOriginal; var isMac = _dereq_(275).isMac; function isPrimaryButton(event) { // button === 0 -> left áka primary mouse button return !(getOriginalEvent(event) || event).button; } module.exports.isPrimaryButton = isPrimaryButton; module.exports.isMac = isMac; module.exports.hasPrimaryModifier = function(event) { var originalEvent = getOriginalEvent(event) || event; if (!isPrimaryButton(event)) { return false; } // Use alt as primary modifier key for mac OS if (isMac()) { return originalEvent.metaKey; } else { return originalEvent.ctrlKey; } }; module.exports.hasSecondaryModifier = function(event) { var originalEvent = getOriginalEvent(event) || event; return isPrimaryButton(event) && originalEvent.shiftKey; }; },{"267":267,"275":275}],275:[function(_dereq_,module,exports){ 'use strict'; module.exports.isMac = function isMac() { return (/mac/i).test(navigator.platform); }; },{}],276:[function(_dereq_,module,exports){ 'use strict'; function center(bounds) { return { x: bounds.x + (bounds.width / 2), y: bounds.y + (bounds.height / 2) }; } module.exports.center = center; function delta(a, b) { return { x: a.x - b.x, y: a.y - b.y }; } module.exports.delta = delta; },{}],277:[function(_dereq_,module,exports){ 'use strict'; /** * Remove from the beginning of a collection until it is empty. * * This is a null-safe operation that ensures elements * are being removed from the given collection until the * collection is empty. * * The implementation deals with the fact that a remove operation * may touch, i.e. remove multiple elements in the collection * at a time. * * @param {Array} [collection] * @param {Function} removeFn * * @return {Array} the cleared collection */ module.exports.saveClear = function(collection, removeFn) { if (typeof removeFn !== 'function') { throw new Error('removeFn iterator must be a function'); } if (!collection) { return; } var e; while ((e = collection[0])) { removeFn(e); } return collection; }; },{}],278:[function(_dereq_,module,exports){ 'use strict'; var svgAttr = _dereq_(474), svgCreate = _dereq_(478); module.exports.componentsToPath = function(elements) { return elements.join(',').replace(/,?([A-z]),?/g, '$1'); }; function toSVGPoints(points) { var result = ''; for (var i = 0, p; (p = points[i]); i++) { result += p.x + ',' + p.y + ' '; } return result; } module.exports.toSVGPoints = toSVGPoints; module.exports.createLine = function(points, attrs) { var line = svgCreate('polyline'); svgAttr(line, { points: toSVGPoints(points) }); if (attrs) { svgAttr(line, attrs); } return line; }; module.exports.updateLine = function(gfx, points) { svgAttr(gfx, { points: toSVGPoints(points) }); return gfx; }; },{"474":474,"478":478}],279:[function(_dereq_,module,exports){ 'use strict'; var svgTransform = _dereq_(482); var createTransform = _dereq_(479).createTransform; /** * @param {} element * @param {Number} x * @param {Number} y * @param {Number} angle * @param {Number} amount */ module.exports.transform = function(gfx, x, y, angle, amount) { var translate = createTransform(); translate.setTranslate(x, y); var rotate = createTransform(); rotate.setRotate(angle, 0, 0); var scale = createTransform(); scale.setScale(amount || 1, amount || 1); svgTransform(gfx, [ translate, rotate, scale ]); }; /** * @param {SVGElement} element * @param {Number} x * @param {Number} y */ module.exports.translate = function(gfx, x, y) { var translate = createTransform(); translate.setTranslate(x, y); svgTransform(gfx, translate); }; /** * @param {SVGElement} element * @param {Number} angle */ module.exports.rotate = function(gfx, angle) { var rotate = createTransform(); rotate.setRotate(angle, 0, 0); svgTransform(gfx, rotate); }; /** * @param {SVGElement} element * @param {Number} amount */ module.exports.scale = function(gfx, amount) { var scale = createTransform(); scale.setScale(amount, amount); svgTransform(gfx, scale); }; },{"479":479,"482":482}],280:[function(_dereq_,module,exports){ 'use strict'; var isObject = _dereq_(426), assign = _dereq_(431), pick = _dereq_(438), forEach = _dereq_(303), reduce = _dereq_(306), merge = _dereq_(435); var svgAppend = _dereq_(472), svgAttr = _dereq_(474), svgCreate = _dereq_(478), svgRemove = _dereq_(481); var DEFAULT_BOX_PADDING = 0; var DEFAULT_LABEL_SIZE = { width: 150, height: 50 }; function parseAlign(align) { var parts = align.split('-'); return { horizontal: parts[0] || 'center', vertical: parts[1] || 'top' }; } function parsePadding(padding) { if (isObject(padding)) { return assign({ top: 0, left: 0, right: 0, bottom: 0 }, padding); } else { return { top: padding, left: padding, right: padding, bottom: padding }; } } function getTextBBox(text, fakeText) { fakeText.textContent = text; try { var bbox, emptyLine = text === ''; // add dummy text, when line is empty to determine correct height fakeText.textContent = emptyLine ? 'dummy' : text; bbox = pick(fakeText.getBBox(), [ 'width', 'height' ]); if (emptyLine) { // correct width bbox.width = 0; } return bbox; } catch (e) { return { width: 0, height: 0 }; } } /** * Layout the next line and return the layouted element. * * Alters the lines passed. * * @param {Array} lines * @return {Object} the line descriptor, an object { width, height, text } */ function layoutNext(lines, maxWidth, fakeText) { var originalLine = lines.shift(), fitLine = originalLine; var textBBox; for (;;) { textBBox = getTextBBox(fitLine, fakeText); textBBox.width = fitLine ? textBBox.width : 0; // try to fit if (fitLine === ' ' || fitLine === '' || textBBox.width < Math.round(maxWidth) || fitLine.length < 2) { return fit(lines, fitLine, originalLine, textBBox); } fitLine = shortenLine(fitLine, textBBox.width, maxWidth); } } function fit(lines, fitLine, originalLine, textBBox) { if (fitLine.length < originalLine.length) { var remainder = originalLine.slice(fitLine.length).trim(); lines.unshift(remainder); } return { width: textBBox.width, height: textBBox.height, text: fitLine }; } /** * Shortens a line based on spacing and hyphens. * Returns the shortened result on success. * * @param {String} line * @param {Number} maxLength the maximum characters of the string * @return {String} the shortened string */ function semanticShorten(line, maxLength) { var parts = line.split(/(\s|-)/g), part, shortenedParts = [], length = 0; // try to shorten via spaces + hyphens if (parts.length > 1) { while ((part = parts.shift())) { if (part.length + length < maxLength) { shortenedParts.push(part); length += part.length; } else { // remove previous part, too if hyphen does not fit anymore if (part === '-') { shortenedParts.pop(); } break; } } } return shortenedParts.join(''); } function shortenLine(line, width, maxWidth) { var length = Math.max(line.length * (maxWidth / width), 1); // try to shorten semantically (i.e. based on spaces and hyphens) var shortenedLine = semanticShorten(line, length); if (!shortenedLine) { // force shorten by cutting the long word shortenedLine = line.slice(0, Math.max(Math.round(length - 1), 1)); } return shortenedLine; } function getHelperSvg() { var helperSvg = document.getElementById('helper-svg'); if (!helperSvg) { helperSvg = svgCreate('svg'); svgAttr(helperSvg, { id: 'helper-svg', width: 0, height: 0, style: 'visibility: hidden; position: fixed' }); document.body.appendChild(helperSvg); } return helperSvg; } /** * Creates a new label utility * * @param {Object} config * @param {Dimensions} config.size * @param {Number} config.padding * @param {Object} config.style * @param {String} config.align */ function Text(config) { this._config = assign({}, { size: DEFAULT_LABEL_SIZE, padding: DEFAULT_BOX_PADDING, style: {}, align: 'center-top' }, config || {}); } /** * Returns the layouted text as an SVG element. * * @param {String} text * @param {Object} options * * @return {SVGElement} */ Text.prototype.createText = function(text, options) { return this.layoutText(text, options).element; }; /** * Returns a labels layouted dimensions. * * @param {String} text to layout * @param {Object} options * * @return {Dimensions} */ Text.prototype.getDimensions = function(text, options) { return this.layoutText(text, options).dimensions; }; /** * Creates and returns a label and its bounding box. * * @method Text#createText * * @param {String} text the text to render on the label * @param {Object} options * @param {String} options.align how to align in the bounding box. * Any of { 'center-middle', 'center-top' }, * defaults to 'center-top'. * @param {String} options.style style to be applied to the text * @param {boolean} options.fitBox indicates if box will be recalculated to * fit text * * @return {Object} { element, dimensions } */ Text.prototype.layoutText = function(text, options) { var box = merge({}, this._config.size, options.box || {}), style = merge({}, this._config.style, options.style || {}), align = parseAlign(options.align || this._config.align), padding = parsePadding(options.padding !== undefined ? options.padding : this._config.padding), fitBox = options.fitBox || false; var lines = text.split(/\r?\n/g), layouted = []; var maxWidth = box.width - padding.left - padding.right; // ensure correct rendering by attaching helper text node to invisible SVG var helperText = svgCreate('text'); svgAttr(helperText, { x: 0, y: 0 }); svgAttr(helperText, style); var helperSvg = getHelperSvg(); svgAppend(helperSvg, helperText); while (lines.length) { layouted.push(layoutNext(lines, maxWidth, helperText)); } var totalHeight = reduce(layouted, function(sum, line, idx) { return sum + line.height; }, 0); var maxLineWidth = reduce(layouted, function(sum, line, idx) { return line.width > sum ? line.width : sum; }, 0); // the y position of the next line var y, x; switch (align.vertical) { case 'middle': y = (box.height - totalHeight) / 2 - layouted[0].height / 4; break; default: y = padding.top; } var textElement = svgCreate('text'); svgAttr(textElement, style); // layout each line taking into account that parent // shape might resize to fit text size forEach(layouted, function(line) { y += line.height; switch (align.horizontal) { case 'left': x = padding.left; break; case 'right': x = ((fitBox ? maxLineWidth : maxWidth) - padding.right - line.width); break; default: // aka center x = Math.max((((fitBox ? maxLineWidth : maxWidth) - line.width) / 2 + padding.left), 0); } var tspan = svgCreate('tspan'); svgAttr(tspan, { x: x, y: y }); tspan.textContent = line.text; svgAppend(textElement, tspan); }); svgRemove(helperText); var dimensions = { width: maxLineWidth, height: totalHeight }; return { dimensions: dimensions, element: textElement }; }; module.exports = Text; },{"303":303,"306":306,"426":426,"431":431,"435":435,"438":438,"472":472,"474":474,"478":478,"481":481}],281:[function(_dereq_,module,exports){ var isArray = function(obj) { return Object.prototype.toString.call(obj) === '[object Array]'; }; var annotate = function() { var args = Array.prototype.slice.call(arguments); if (args.length === 1 && isArray(args[0])) { args = args[0]; } var fn = args.pop(); fn.$inject = args; return fn; }; // Current limitations: // - can't put into "function arg" comments // function /* (no parenthesis like this) */ (){} // function abc( /* xx (no parenthesis like this) */ a, b) {} // // Just put the comment before function or inside: // /* (((this is fine))) */ function(a, b) {} // function abc(a) { /* (((this is fine))) */} var FN_ARGS = /^function\s*[^\(]*\(\s*([^\)]*)\)/m; var FN_ARG = /\/\*([^\*]*)\*\//m; var parse = function(fn) { if (typeof fn !== 'function') { throw new Error('Cannot annotate "' + fn + '". Expected a function!'); } var match = fn.toString().match(FN_ARGS); return match[1] && match[1].split(',').map(function(arg) { match = arg.match(FN_ARG); return match ? match[1].trim() : arg.trim(); }) || []; }; exports.annotate = annotate; exports.parse = parse; exports.isArray = isArray; },{}],282:[function(_dereq_,module,exports){ module.exports = { annotate: _dereq_(281).annotate, Module: _dereq_(284), Injector: _dereq_(283) }; },{"281":281,"283":283,"284":284}],283:[function(_dereq_,module,exports){ var Module = _dereq_(284); var autoAnnotate = _dereq_(281).parse; var annotate = _dereq_(281).annotate; var isArray = _dereq_(281).isArray; var Injector = function(modules, parent) { parent = parent || { get: function(name, strict) { currentlyResolving.push(name); if (strict === false) { return null; } else { throw error('No provider for "' + name + '"!'); } } }; var currentlyResolving = []; var providers = this._providers = Object.create(parent._providers || null); var instances = this._instances = Object.create(null); var self = instances.injector = this; var error = function(msg) { var stack = currentlyResolving.join(' -> '); currentlyResolving.length = 0; return new Error(stack ? msg + ' (Resolving: ' + stack + ')' : msg); }; /** * Return a named service. * * @param {String} name * @param {Boolean} [strict=true] if false, resolve missing services to null * * @return {Object} */ var get = function(name, strict) { if (!providers[name] && name.indexOf('.') !== -1) { var parts = name.split('.'); var pivot = get(parts.shift()); while(parts.length) { pivot = pivot[parts.shift()]; } return pivot; } if (Object.hasOwnProperty.call(instances, name)) { return instances[name]; } if (Object.hasOwnProperty.call(providers, name)) { if (currentlyResolving.indexOf(name) !== -1) { currentlyResolving.push(name); throw error('Cannot resolve circular dependency!'); } currentlyResolving.push(name); instances[name] = providers[name][0](providers[name][1]); currentlyResolving.pop(); return instances[name]; } return parent.get(name, strict); }; var instantiate = function(Type) { var instance = Object.create(Type.prototype); var returned = invoke(Type, instance); return typeof returned === 'object' ? returned : instance; }; var invoke = function(fn, context) { if (typeof fn !== 'function') { if (isArray(fn)) { fn = annotate(fn.slice()); } else { throw new Error('Cannot invoke "' + fn + '". Expected a function!'); } } var inject = fn.$inject && fn.$inject || autoAnnotate(fn); var dependencies = inject.map(function(dep) { return get(dep); }); // TODO(vojta): optimize without apply return fn.apply(context, dependencies); }; var createPrivateInjectorFactory = function(privateChildInjector) { return annotate(function(key) { return privateChildInjector.get(key); }); }; var createChild = function(modules, forceNewInstances) { if (forceNewInstances && forceNewInstances.length) { var fromParentModule = Object.create(null); var matchedScopes = Object.create(null); var privateInjectorsCache = []; var privateChildInjectors = []; var privateChildFactories = []; var provider; var cacheIdx; var privateChildInjector; var privateChildInjectorFactory; for (var name in providers) { provider = providers[name]; if (forceNewInstances.indexOf(name) !== -1) { if (provider[2] === 'private') { cacheIdx = privateInjectorsCache.indexOf(provider[3]); if (cacheIdx === -1) { privateChildInjector = provider[3].createChild([], forceNewInstances); privateChildInjectorFactory = createPrivateInjectorFactory(privateChildInjector); privateInjectorsCache.push(provider[3]); privateChildInjectors.push(privateChildInjector); privateChildFactories.push(privateChildInjectorFactory); fromParentModule[name] = [privateChildInjectorFactory, name, 'private', privateChildInjector]; } else { fromParentModule[name] = [privateChildFactories[cacheIdx], name, 'private', privateChildInjectors[cacheIdx]]; } } else { fromParentModule[name] = [provider[2], provider[1]]; } matchedScopes[name] = true; } if ((provider[2] === 'factory' || provider[2] === 'type') && provider[1].$scope) { /*jshint -W083 */ forceNewInstances.forEach(function(scope) { if (provider[1].$scope.indexOf(scope) !== -1) { fromParentModule[name] = [provider[2], provider[1]]; matchedScopes[scope] = true; } }); } } forceNewInstances.forEach(function(scope) { if (!matchedScopes[scope]) { throw new Error('No provider for "' + scope + '". Cannot use provider from the parent!'); } }); modules.unshift(fromParentModule); } return new Injector(modules, self); }; var factoryMap = { factory: invoke, type: instantiate, value: function(value) { return value; } }; modules.forEach(function(module) { function arrayUnwrap(type, value) { if (type !== 'value' && isArray(value)) { value = annotate(value.slice()); } return value; } // TODO(vojta): handle wrong inputs (modules) if (module instanceof Module) { module.forEach(function(provider) { var name = provider[0]; var type = provider[1]; var value = provider[2]; providers[name] = [factoryMap[type], arrayUnwrap(type, value), type]; }); } else if (typeof module === 'object') { if (module.__exports__) { var clonedModule = Object.keys(module).reduce(function(m, key) { if (key.substring(0, 2) !== '__') { m[key] = module[key]; } return m; }, Object.create(null)); var privateInjector = new Injector((module.__modules__ || []).concat([clonedModule]), self); var getFromPrivateInjector = annotate(function(key) { return privateInjector.get(key); }); module.__exports__.forEach(function(key) { providers[key] = [getFromPrivateInjector, key, 'private', privateInjector]; }); } else { Object.keys(module).forEach(function(name) { if (module[name][2] === 'private') { providers[name] = module[name]; return; } var type = module[name][0]; var value = module[name][1]; providers[name] = [factoryMap[type], arrayUnwrap(type, value), type]; }); } } }); // public API this.get = get; this.invoke = invoke; this.instantiate = instantiate; this.createChild = createChild; }; module.exports = Injector; },{"281":281,"284":284}],284:[function(_dereq_,module,exports){ var Module = function() { var providers = []; this.factory = function(name, factory) { providers.push([name, 'factory', factory]); return this; }; this.value = function(name, value) { providers.push([name, 'value', value]); return this; }; this.type = function(name, type) { providers.push([name, 'type', type]); return this; }; this.forEach = function(iterator) { providers.forEach(iterator); }; }; module.exports = Module; },{}],285:[function(_dereq_,module,exports){ /** * Expose `parse`. */ module.exports = parse; /** * Tests for browser support. */ var innerHTMLBug = false; var bugTestDiv; if (typeof document !== 'undefined') { bugTestDiv = document.createElement('div'); // Setup bugTestDiv.innerHTML = '
a'; // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE innerHTMLBug = !bugTestDiv.getElementsByTagName('link').length; bugTestDiv = undefined; } /** * Wrap map from jquery. */ var map = { legend: [1, '
', '
'], tr: [2, '', '
'], col: [2, '', '
'], // for script/link/style tags to work in IE6-8, you have to wrap // in a div with a non-whitespace character in front, ha! _default: innerHTMLBug ? [1, 'X
', '
'] : [0, '', ''] }; map.td = map.th = [3, '', '
']; map.option = map.optgroup = [1, '']; map.thead = map.tbody = map.colgroup = map.caption = map.tfoot = [1, '', '
']; map.polyline = map.ellipse = map.polygon = map.circle = map.text = map.line = map.path = map.rect = map.g = [1, '','']; /** * Parse `html` and return a DOM Node instance, which could be a TextNode, * HTML DOM Node of some kind (
for example), or a DocumentFragment * instance, depending on the contents of the `html` string. * * @param {String} html - HTML string to "domify" * @param {Document} doc - The `document` instance to create the Node for * @return {DOMNode} the TextNode, DOM Node, or DocumentFragment instance * @api private */ function parse(html, doc) { if ('string' != typeof html) throw new TypeError('String expected'); // default to the global `document` object if (!doc) doc = document; // tag name var m = /<([\w:]+)/.exec(html); if (!m) return doc.createTextNode(html); html = html.replace(/^\s+|\s+$/g, ''); // Remove leading/trailing whitespace var tag = m[1]; // body support if (tag == 'body') { var el = doc.createElement('html'); el.innerHTML = html; return el.removeChild(el.lastChild); } // wrap map var wrap = map[tag] || map._default; var depth = wrap[0]; var prefix = wrap[1]; var suffix = wrap[2]; var el = doc.createElement('div'); el.innerHTML = prefix + html + suffix; while (depth--) el = el.lastChild; // one element if (el.firstChild == el.lastChild) { return el.removeChild(el.firstChild); } // several elements var fragment = doc.createDocumentFragment(); while (el.firstChild) { fragment.appendChild(el.removeChild(el.firstChild)); } return fragment; } },{}],286:[function(_dereq_,module,exports){ /*! Hammer.JS - v2.0.7 - 2016-04-22 * http://hammerjs.github.io/ * * Copyright (c) 2016 Jorik Tangelder; * Licensed under the MIT license */ (function(window, document, exportName, undefined) { 'use strict'; var VENDOR_PREFIXES = ['', 'webkit', 'Moz', 'MS', 'ms', 'o']; var TEST_ELEMENT = document.createElement('div'); var TYPE_FUNCTION = 'function'; var round = Math.round; var abs = Math.abs; var now = Date.now; /** * set a timeout with a given scope * @param {Function} fn * @param {Number} timeout * @param {Object} context * @returns {number} */ function setTimeoutContext(fn, timeout, context) { return setTimeout(bindFn(fn, context), timeout); } /** * if the argument is an array, we want to execute the fn on each entry * if it aint an array we don't want to do a thing. * this is used by all the methods that accept a single and array argument. * @param {*|Array} arg * @param {String} fn * @param {Object} [context] * @returns {Boolean} */ function invokeArrayArg(arg, fn, context) { if (Array.isArray(arg)) { each(arg, context[fn], context); return true; } return false; } /** * walk objects and arrays * @param {Object} obj * @param {Function} iterator * @param {Object} context */ function each(obj, iterator, context) { var i; if (!obj) { return; } if (obj.forEach) { obj.forEach(iterator, context); } else if (obj.length !== undefined) { i = 0; while (i < obj.length) { iterator.call(context, obj[i], i, obj); i++; } } else { for (i in obj) { obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj); } } } /** * wrap a method with a deprecation warning and stack trace * @param {Function} method * @param {String} name * @param {String} message * @returns {Function} A new function wrapping the supplied method. */ function deprecate(method, name, message) { var deprecationMessage = 'DEPRECATED METHOD: ' + name + '\n' + message + ' AT \n'; return function() { var e = new Error('get-stack-trace'); var stack = e && e.stack ? e.stack.replace(/^[^\(]+?[\n$]/gm, '') .replace(/^\s+at\s+/gm, '') .replace(/^Object.\s*\(/gm, '{anonymous}()@') : 'Unknown Stack Trace'; var log = window.console && (window.console.warn || window.console.log); if (log) { log.call(window.console, deprecationMessage, stack); } return method.apply(this, arguments); }; } /** * extend object. * means that properties in dest will be overwritten by the ones in src. * @param {Object} target * @param {...Object} objects_to_assign * @returns {Object} target */ var assign; if (typeof Object.assign !== 'function') { assign = function assign(target) { if (target === undefined || target === null) { throw new TypeError('Cannot convert undefined or null to object'); } var output = Object(target); for (var index = 1; index < arguments.length; index++) { var source = arguments[index]; if (source !== undefined && source !== null) { for (var nextKey in source) { if (source.hasOwnProperty(nextKey)) { output[nextKey] = source[nextKey]; } } } } return output; }; } else { assign = Object.assign; } /** * extend object. * means that properties in dest will be overwritten by the ones in src. * @param {Object} dest * @param {Object} src * @param {Boolean} [merge=false] * @returns {Object} dest */ var extend = deprecate(function extend(dest, src, merge) { var keys = Object.keys(src); var i = 0; while (i < keys.length) { if (!merge || (merge && dest[keys[i]] === undefined)) { dest[keys[i]] = src[keys[i]]; } i++; } return dest; }, 'extend', 'Use `assign`.'); /** * merge the values from src in the dest. * means that properties that exist in dest will not be overwritten by src * @param {Object} dest * @param {Object} src * @returns {Object} dest */ var merge = deprecate(function merge(dest, src) { return extend(dest, src, true); }, 'merge', 'Use `assign`.'); /** * simple class inheritance * @param {Function} child * @param {Function} base * @param {Object} [properties] */ function inherit(child, base, properties) { var baseP = base.prototype, childP; childP = child.prototype = Object.create(baseP); childP.constructor = child; childP._super = baseP; if (properties) { assign(childP, properties); } } /** * simple function bind * @param {Function} fn * @param {Object} context * @returns {Function} */ function bindFn(fn, context) { return function boundFn() { return fn.apply(context, arguments); }; } /** * let a boolean value also be a function that must return a boolean * this first item in args will be used as the context * @param {Boolean|Function} val * @param {Array} [args] * @returns {Boolean} */ function boolOrFn(val, args) { if (typeof val == TYPE_FUNCTION) { return val.apply(args ? args[0] || undefined : undefined, args); } return val; } /** * use the val2 when val1 is undefined * @param {*} val1 * @param {*} val2 * @returns {*} */ function ifUndefined(val1, val2) { return (val1 === undefined) ? val2 : val1; } /** * addEventListener with multiple events at once * @param {EventTarget} target * @param {String} types * @param {Function} handler */ function addEventListeners(target, types, handler) { each(splitStr(types), function(type) { target.addEventListener(type, handler, false); }); } /** * removeEventListener with multiple events at once * @param {EventTarget} target * @param {String} types * @param {Function} handler */ function removeEventListeners(target, types, handler) { each(splitStr(types), function(type) { target.removeEventListener(type, handler, false); }); } /** * find if a node is in the given parent * @method hasParent * @param {HTMLElement} node * @param {HTMLElement} parent * @return {Boolean} found */ function hasParent(node, parent) { while (node) { if (node == parent) { return true; } node = node.parentNode; } return false; } /** * small indexOf wrapper * @param {String} str * @param {String} find * @returns {Boolean} found */ function inStr(str, find) { return str.indexOf(find) > -1; } /** * split string on whitespace * @param {String} str * @returns {Array} words */ function splitStr(str) { return str.trim().split(/\s+/g); } /** * find if a array contains the object using indexOf or a simple polyFill * @param {Array} src * @param {String} find * @param {String} [findByKey] * @return {Boolean|Number} false when not found, or the index */ function inArray(src, find, findByKey) { if (src.indexOf && !findByKey) { return src.indexOf(find); } else { var i = 0; while (i < src.length) { if ((findByKey && src[i][findByKey] == find) || (!findByKey && src[i] === find)) { return i; } i++; } return -1; } } /** * convert array-like objects to real arrays * @param {Object} obj * @returns {Array} */ function toArray(obj) { return Array.prototype.slice.call(obj, 0); } /** * unique array with objects based on a key (like 'id') or just by the array's value * @param {Array} src [{id:1},{id:2},{id:1}] * @param {String} [key] * @param {Boolean} [sort=False] * @returns {Array} [{id:1},{id:2}] */ function uniqueArray(src, key, sort) { var results = []; var values = []; var i = 0; while (i < src.length) { var val = key ? src[i][key] : src[i]; if (inArray(values, val) < 0) { results.push(src[i]); } values[i] = val; i++; } if (sort) { if (!key) { results = results.sort(); } else { results = results.sort(function sortUniqueArray(a, b) { return a[key] > b[key]; }); } } return results; } /** * get the prefixed property * @param {Object} obj * @param {String} property * @returns {String|Undefined} prefixed */ function prefixed(obj, property) { var prefix, prop; var camelProp = property[0].toUpperCase() + property.slice(1); var i = 0; while (i < VENDOR_PREFIXES.length) { prefix = VENDOR_PREFIXES[i]; prop = (prefix) ? prefix + camelProp : property; if (prop in obj) { return prop; } i++; } return undefined; } /** * get a unique id * @returns {number} uniqueId */ var _uniqueId = 1; function uniqueId() { return _uniqueId++; } /** * get the window object of an element * @param {HTMLElement} element * @returns {DocumentView|Window} */ function getWindowForElement(element) { var doc = element.ownerDocument || element; return (doc.defaultView || doc.parentWindow || window); } var MOBILE_REGEX = /mobile|tablet|ip(ad|hone|od)|android/i; var SUPPORT_TOUCH = ('ontouchstart' in window); var SUPPORT_POINTER_EVENTS = prefixed(window, 'PointerEvent') !== undefined; var SUPPORT_ONLY_TOUCH = SUPPORT_TOUCH && MOBILE_REGEX.test(navigator.userAgent); var INPUT_TYPE_TOUCH = 'touch'; var INPUT_TYPE_PEN = 'pen'; var INPUT_TYPE_MOUSE = 'mouse'; var INPUT_TYPE_KINECT = 'kinect'; var COMPUTE_INTERVAL = 25; var INPUT_START = 1; var INPUT_MOVE = 2; var INPUT_END = 4; var INPUT_CANCEL = 8; var DIRECTION_NONE = 1; var DIRECTION_LEFT = 2; var DIRECTION_RIGHT = 4; var DIRECTION_UP = 8; var DIRECTION_DOWN = 16; var DIRECTION_HORIZONTAL = DIRECTION_LEFT | DIRECTION_RIGHT; var DIRECTION_VERTICAL = DIRECTION_UP | DIRECTION_DOWN; var DIRECTION_ALL = DIRECTION_HORIZONTAL | DIRECTION_VERTICAL; var PROPS_XY = ['x', 'y']; var PROPS_CLIENT_XY = ['clientX', 'clientY']; /** * create new input type manager * @param {Manager} manager * @param {Function} callback * @returns {Input} * @constructor */ function Input(manager, callback) { var self = this; this.manager = manager; this.callback = callback; this.element = manager.element; this.target = manager.options.inputTarget; // smaller wrapper around the handler, for the scope and the enabled state of the manager, // so when disabled the input events are completely bypassed. this.domHandler = function(ev) { if (boolOrFn(manager.options.enable, [manager])) { self.handler(ev); } }; this.init(); } Input.prototype = { /** * should handle the inputEvent data and trigger the callback * @virtual */ handler: function() { }, /** * bind the events */ init: function() { this.evEl && addEventListeners(this.element, this.evEl, this.domHandler); this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler); this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); }, /** * unbind the events */ destroy: function() { this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler); this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler); this.evWin && removeEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); } }; /** * create new input type manager * called by the Manager constructor * @param {Hammer} manager * @returns {Input} */ function createInputInstance(manager) { var Type; var inputClass = manager.options.inputClass; if (inputClass) { Type = inputClass; } else if (SUPPORT_POINTER_EVENTS) { Type = PointerEventInput; } else if (SUPPORT_ONLY_TOUCH) { Type = TouchInput; } else if (!SUPPORT_TOUCH) { Type = MouseInput; } else { Type = TouchMouseInput; } return new (Type)(manager, inputHandler); } /** * handle input events * @param {Manager} manager * @param {String} eventType * @param {Object} input */ function inputHandler(manager, eventType, input) { var pointersLen = input.pointers.length; var changedPointersLen = input.changedPointers.length; var isFirst = (eventType & INPUT_START && (pointersLen - changedPointersLen === 0)); var isFinal = (eventType & (INPUT_END | INPUT_CANCEL) && (pointersLen - changedPointersLen === 0)); input.isFirst = !!isFirst; input.isFinal = !!isFinal; if (isFirst) { manager.session = {}; } // source event is the normalized value of the domEvents // like 'touchstart, mouseup, pointerdown' input.eventType = eventType; // compute scale, rotation etc computeInputData(manager, input); // emit secret event manager.emit('hammer.input', input); manager.recognize(input); manager.session.prevInput = input; } /** * extend the data with some usable properties like scale, rotate, velocity etc * @param {Object} manager * @param {Object} input */ function computeInputData(manager, input) { var session = manager.session; var pointers = input.pointers; var pointersLength = pointers.length; // store the first input to calculate the distance and direction if (!session.firstInput) { session.firstInput = simpleCloneInputData(input); } // to compute scale and rotation we need to store the multiple touches if (pointersLength > 1 && !session.firstMultiple) { session.firstMultiple = simpleCloneInputData(input); } else if (pointersLength === 1) { session.firstMultiple = false; } var firstInput = session.firstInput; var firstMultiple = session.firstMultiple; var offsetCenter = firstMultiple ? firstMultiple.center : firstInput.center; var center = input.center = getCenter(pointers); input.timeStamp = now(); input.deltaTime = input.timeStamp - firstInput.timeStamp; input.angle = getAngle(offsetCenter, center); input.distance = getDistance(offsetCenter, center); computeDeltaXY(session, input); input.offsetDirection = getDirection(input.deltaX, input.deltaY); var overallVelocity = getVelocity(input.deltaTime, input.deltaX, input.deltaY); input.overallVelocityX = overallVelocity.x; input.overallVelocityY = overallVelocity.y; input.overallVelocity = (abs(overallVelocity.x) > abs(overallVelocity.y)) ? overallVelocity.x : overallVelocity.y; input.scale = firstMultiple ? getScale(firstMultiple.pointers, pointers) : 1; input.rotation = firstMultiple ? getRotation(firstMultiple.pointers, pointers) : 0; input.maxPointers = !session.prevInput ? input.pointers.length : ((input.pointers.length > session.prevInput.maxPointers) ? input.pointers.length : session.prevInput.maxPointers); computeIntervalInputData(session, input); // find the correct target var target = manager.element; if (hasParent(input.srcEvent.target, target)) { target = input.srcEvent.target; } input.target = target; } function computeDeltaXY(session, input) { var center = input.center; var offset = session.offsetDelta || {}; var prevDelta = session.prevDelta || {}; var prevInput = session.prevInput || {}; if (input.eventType === INPUT_START || prevInput.eventType === INPUT_END) { prevDelta = session.prevDelta = { x: prevInput.deltaX || 0, y: prevInput.deltaY || 0 }; offset = session.offsetDelta = { x: center.x, y: center.y }; } input.deltaX = prevDelta.x + (center.x - offset.x); input.deltaY = prevDelta.y + (center.y - offset.y); } /** * velocity is calculated every x ms * @param {Object} session * @param {Object} input */ function computeIntervalInputData(session, input) { var last = session.lastInterval || input, deltaTime = input.timeStamp - last.timeStamp, velocity, velocityX, velocityY, direction; if (input.eventType != INPUT_CANCEL && (deltaTime > COMPUTE_INTERVAL || last.velocity === undefined)) { var deltaX = input.deltaX - last.deltaX; var deltaY = input.deltaY - last.deltaY; var v = getVelocity(deltaTime, deltaX, deltaY); velocityX = v.x; velocityY = v.y; velocity = (abs(v.x) > abs(v.y)) ? v.x : v.y; direction = getDirection(deltaX, deltaY); session.lastInterval = input; } else { // use latest velocity info if it doesn't overtake a minimum period velocity = last.velocity; velocityX = last.velocityX; velocityY = last.velocityY; direction = last.direction; } input.velocity = velocity; input.velocityX = velocityX; input.velocityY = velocityY; input.direction = direction; } /** * create a simple clone from the input used for storage of firstInput and firstMultiple * @param {Object} input * @returns {Object} clonedInputData */ function simpleCloneInputData(input) { // make a simple copy of the pointers because we will get a reference if we don't // we only need clientXY for the calculations var pointers = []; var i = 0; while (i < input.pointers.length) { pointers[i] = { clientX: round(input.pointers[i].clientX), clientY: round(input.pointers[i].clientY) }; i++; } return { timeStamp: now(), pointers: pointers, center: getCenter(pointers), deltaX: input.deltaX, deltaY: input.deltaY }; } /** * get the center of all the pointers * @param {Array} pointers * @return {Object} center contains `x` and `y` properties */ function getCenter(pointers) { var pointersLength = pointers.length; // no need to loop when only one touch if (pointersLength === 1) { return { x: round(pointers[0].clientX), y: round(pointers[0].clientY) }; } var x = 0, y = 0, i = 0; while (i < pointersLength) { x += pointers[i].clientX; y += pointers[i].clientY; i++; } return { x: round(x / pointersLength), y: round(y / pointersLength) }; } /** * calculate the velocity between two points. unit is in px per ms. * @param {Number} deltaTime * @param {Number} x * @param {Number} y * @return {Object} velocity `x` and `y` */ function getVelocity(deltaTime, x, y) { return { x: x / deltaTime || 0, y: y / deltaTime || 0 }; } /** * get the direction between two points * @param {Number} x * @param {Number} y * @return {Number} direction */ function getDirection(x, y) { if (x === y) { return DIRECTION_NONE; } if (abs(x) >= abs(y)) { return x < 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; } return y < 0 ? DIRECTION_UP : DIRECTION_DOWN; } /** * calculate the absolute distance between two points * @param {Object} p1 {x, y} * @param {Object} p2 {x, y} * @param {Array} [props] containing x and y keys * @return {Number} distance */ function getDistance(p1, p2, props) { if (!props) { props = PROPS_XY; } var x = p2[props[0]] - p1[props[0]], y = p2[props[1]] - p1[props[1]]; return Math.sqrt((x * x) + (y * y)); } /** * calculate the angle between two coordinates * @param {Object} p1 * @param {Object} p2 * @param {Array} [props] containing x and y keys * @return {Number} angle */ function getAngle(p1, p2, props) { if (!props) { props = PROPS_XY; } var x = p2[props[0]] - p1[props[0]], y = p2[props[1]] - p1[props[1]]; return Math.atan2(y, x) * 180 / Math.PI; } /** * calculate the rotation degrees between two pointersets * @param {Array} start array of pointers * @param {Array} end array of pointers * @return {Number} rotation */ function getRotation(start, end) { return getAngle(end[1], end[0], PROPS_CLIENT_XY) + getAngle(start[1], start[0], PROPS_CLIENT_XY); } /** * calculate the scale factor between two pointersets * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out * @param {Array} start array of pointers * @param {Array} end array of pointers * @return {Number} scale */ function getScale(start, end) { return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT_XY); } var MOUSE_INPUT_MAP = { mousedown: INPUT_START, mousemove: INPUT_MOVE, mouseup: INPUT_END }; var MOUSE_ELEMENT_EVENTS = 'mousedown'; var MOUSE_WINDOW_EVENTS = 'mousemove mouseup'; /** * Mouse events input * @constructor * @extends Input */ function MouseInput() { this.evEl = MOUSE_ELEMENT_EVENTS; this.evWin = MOUSE_WINDOW_EVENTS; this.pressed = false; // mousedown state Input.apply(this, arguments); } inherit(MouseInput, Input, { /** * handle mouse events * @param {Object} ev */ handler: function MEhandler(ev) { var eventType = MOUSE_INPUT_MAP[ev.type]; // on start we want to have the left mouse button down if (eventType & INPUT_START && ev.button === 0) { this.pressed = true; } if (eventType & INPUT_MOVE && ev.which !== 1) { eventType = INPUT_END; } // mouse must be down if (!this.pressed) { return; } if (eventType & INPUT_END) { this.pressed = false; } this.callback(this.manager, eventType, { pointers: [ev], changedPointers: [ev], pointerType: INPUT_TYPE_MOUSE, srcEvent: ev }); } }); var POINTER_INPUT_MAP = { pointerdown: INPUT_START, pointermove: INPUT_MOVE, pointerup: INPUT_END, pointercancel: INPUT_CANCEL, pointerout: INPUT_CANCEL }; // in IE10 the pointer types is defined as an enum var IE10_POINTER_TYPE_ENUM = { 2: INPUT_TYPE_TOUCH, 3: INPUT_TYPE_PEN, 4: INPUT_TYPE_MOUSE, 5: INPUT_TYPE_KINECT // see https://twitter.com/jacobrossi/status/480596438489890816 }; var POINTER_ELEMENT_EVENTS = 'pointerdown'; var POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel'; // IE10 has prefixed support, and case-sensitive if (window.MSPointerEvent && !window.PointerEvent) { POINTER_ELEMENT_EVENTS = 'MSPointerDown'; POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel'; } /** * Pointer events input * @constructor * @extends Input */ function PointerEventInput() { this.evEl = POINTER_ELEMENT_EVENTS; this.evWin = POINTER_WINDOW_EVENTS; Input.apply(this, arguments); this.store = (this.manager.session.pointerEvents = []); } inherit(PointerEventInput, Input, { /** * handle mouse events * @param {Object} ev */ handler: function PEhandler(ev) { var store = this.store; var removePointer = false; var eventTypeNormalized = ev.type.toLowerCase().replace('ms', ''); var eventType = POINTER_INPUT_MAP[eventTypeNormalized]; var pointerType = IE10_POINTER_TYPE_ENUM[ev.pointerType] || ev.pointerType; var isTouch = (pointerType == INPUT_TYPE_TOUCH); // get index of the event in the store var storeIndex = inArray(store, ev.pointerId, 'pointerId'); // start and mouse must be down if (eventType & INPUT_START && (ev.button === 0 || isTouch)) { if (storeIndex < 0) { store.push(ev); storeIndex = store.length - 1; } } else if (eventType & (INPUT_END | INPUT_CANCEL)) { removePointer = true; } // it not found, so the pointer hasn't been down (so it's probably a hover) if (storeIndex < 0) { return; } // update the event in the store store[storeIndex] = ev; this.callback(this.manager, eventType, { pointers: store, changedPointers: [ev], pointerType: pointerType, srcEvent: ev }); if (removePointer) { // remove from the store store.splice(storeIndex, 1); } } }); var SINGLE_TOUCH_INPUT_MAP = { touchstart: INPUT_START, touchmove: INPUT_MOVE, touchend: INPUT_END, touchcancel: INPUT_CANCEL }; var SINGLE_TOUCH_TARGET_EVENTS = 'touchstart'; var SINGLE_TOUCH_WINDOW_EVENTS = 'touchstart touchmove touchend touchcancel'; /** * Touch events input * @constructor * @extends Input */ function SingleTouchInput() { this.evTarget = SINGLE_TOUCH_TARGET_EVENTS; this.evWin = SINGLE_TOUCH_WINDOW_EVENTS; this.started = false; Input.apply(this, arguments); } inherit(SingleTouchInput, Input, { handler: function TEhandler(ev) { var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; // should we handle the touch events? if (type === INPUT_START) { this.started = true; } if (!this.started) { return; } var touches = normalizeSingleTouches.call(this, ev, type); // when done, reset the started state if (type & (INPUT_END | INPUT_CANCEL) && touches[0].length - touches[1].length === 0) { this.started = false; } this.callback(this.manager, type, { pointers: touches[0], changedPointers: touches[1], pointerType: INPUT_TYPE_TOUCH, srcEvent: ev }); } }); /** * @this {TouchInput} * @param {Object} ev * @param {Number} type flag * @returns {undefined|Array} [all, changed] */ function normalizeSingleTouches(ev, type) { var all = toArray(ev.touches); var changed = toArray(ev.changedTouches); if (type & (INPUT_END | INPUT_CANCEL)) { all = uniqueArray(all.concat(changed), 'identifier', true); } return [all, changed]; } var TOUCH_INPUT_MAP = { touchstart: INPUT_START, touchmove: INPUT_MOVE, touchend: INPUT_END, touchcancel: INPUT_CANCEL }; var TOUCH_TARGET_EVENTS = 'touchstart touchmove touchend touchcancel'; /** * Multi-user touch events input * @constructor * @extends Input */ function TouchInput() { this.evTarget = TOUCH_TARGET_EVENTS; this.targetIds = {}; Input.apply(this, arguments); } inherit(TouchInput, Input, { handler: function MTEhandler(ev) { var type = TOUCH_INPUT_MAP[ev.type]; var touches = getTouches.call(this, ev, type); if (!touches) { return; } this.callback(this.manager, type, { pointers: touches[0], changedPointers: touches[1], pointerType: INPUT_TYPE_TOUCH, srcEvent: ev }); } }); /** * @this {TouchInput} * @param {Object} ev * @param {Number} type flag * @returns {undefined|Array} [all, changed] */ function getTouches(ev, type) { var allTouches = toArray(ev.touches); var targetIds = this.targetIds; // when there is only one touch, the process can be simplified if (type & (INPUT_START | INPUT_MOVE) && allTouches.length === 1) { targetIds[allTouches[0].identifier] = true; return [allTouches, allTouches]; } var i, targetTouches, changedTouches = toArray(ev.changedTouches), changedTargetTouches = [], target = this.target; // get target touches from touches targetTouches = allTouches.filter(function(touch) { return hasParent(touch.target, target); }); // collect touches if (type === INPUT_START) { i = 0; while (i < targetTouches.length) { targetIds[targetTouches[i].identifier] = true; i++; } } // filter changed touches to only contain touches that exist in the collected target ids i = 0; while (i < changedTouches.length) { if (targetIds[changedTouches[i].identifier]) { changedTargetTouches.push(changedTouches[i]); } // cleanup removed touches if (type & (INPUT_END | INPUT_CANCEL)) { delete targetIds[changedTouches[i].identifier]; } i++; } if (!changedTargetTouches.length) { return; } return [ // merge targetTouches with changedTargetTouches so it contains ALL touches, including 'end' and 'cancel' uniqueArray(targetTouches.concat(changedTargetTouches), 'identifier', true), changedTargetTouches ]; } /** * Combined touch and mouse input * * Touch has a higher priority then mouse, and while touching no mouse events are allowed. * This because touch devices also emit mouse events while doing a touch. * * @constructor * @extends Input */ var DEDUP_TIMEOUT = 2500; var DEDUP_DISTANCE = 25; function TouchMouseInput() { Input.apply(this, arguments); var handler = bindFn(this.handler, this); this.touch = new TouchInput(this.manager, handler); this.mouse = new MouseInput(this.manager, handler); this.primaryTouch = null; this.lastTouches = []; } inherit(TouchMouseInput, Input, { /** * handle mouse and touch events * @param {Hammer} manager * @param {String} inputEvent * @param {Object} inputData */ handler: function TMEhandler(manager, inputEvent, inputData) { var isTouch = (inputData.pointerType == INPUT_TYPE_TOUCH), isMouse = (inputData.pointerType == INPUT_TYPE_MOUSE); if (isMouse && inputData.sourceCapabilities && inputData.sourceCapabilities.firesTouchEvents) { return; } // when we're in a touch event, record touches to de-dupe synthetic mouse event if (isTouch) { recordTouches.call(this, inputEvent, inputData); } else if (isMouse && isSyntheticEvent.call(this, inputData)) { return; } this.callback(manager, inputEvent, inputData); }, /** * remove the event listeners */ destroy: function destroy() { this.touch.destroy(); this.mouse.destroy(); } }); function recordTouches(eventType, eventData) { if (eventType & INPUT_START) { this.primaryTouch = eventData.changedPointers[0].identifier; setLastTouch.call(this, eventData); } else if (eventType & (INPUT_END | INPUT_CANCEL)) { setLastTouch.call(this, eventData); } } function setLastTouch(eventData) { var touch = eventData.changedPointers[0]; if (touch.identifier === this.primaryTouch) { var lastTouch = {x: touch.clientX, y: touch.clientY}; this.lastTouches.push(lastTouch); var lts = this.lastTouches; var removeLastTouch = function() { var i = lts.indexOf(lastTouch); if (i > -1) { lts.splice(i, 1); } }; setTimeout(removeLastTouch, DEDUP_TIMEOUT); } } function isSyntheticEvent(eventData) { var x = eventData.srcEvent.clientX, y = eventData.srcEvent.clientY; for (var i = 0; i < this.lastTouches.length; i++) { var t = this.lastTouches[i]; var dx = Math.abs(x - t.x), dy = Math.abs(y - t.y); if (dx <= DEDUP_DISTANCE && dy <= DEDUP_DISTANCE) { return true; } } return false; } var PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction'); var NATIVE_TOUCH_ACTION = PREFIXED_TOUCH_ACTION !== undefined; // magical touchAction value var TOUCH_ACTION_COMPUTE = 'compute'; var TOUCH_ACTION_AUTO = 'auto'; var TOUCH_ACTION_MANIPULATION = 'manipulation'; // not implemented var TOUCH_ACTION_NONE = 'none'; var TOUCH_ACTION_PAN_X = 'pan-x'; var TOUCH_ACTION_PAN_Y = 'pan-y'; var TOUCH_ACTION_MAP = getTouchActionProps(); /** * Touch Action * sets the touchAction property or uses the js alternative * @param {Manager} manager * @param {String} value * @constructor */ function TouchAction(manager, value) { this.manager = manager; this.set(value); } TouchAction.prototype = { /** * set the touchAction value on the element or enable the polyfill * @param {String} value */ set: function(value) { // find out the touch-action by the event handlers if (value == TOUCH_ACTION_COMPUTE) { value = this.compute(); } if (NATIVE_TOUCH_ACTION && this.manager.element.style && TOUCH_ACTION_MAP[value]) { this.manager.element.style[PREFIXED_TOUCH_ACTION] = value; } this.actions = value.toLowerCase().trim(); }, /** * just re-set the touchAction value */ update: function() { this.set(this.manager.options.touchAction); }, /** * compute the value for the touchAction property based on the recognizer's settings * @returns {String} value */ compute: function() { var actions = []; each(this.manager.recognizers, function(recognizer) { if (boolOrFn(recognizer.options.enable, [recognizer])) { actions = actions.concat(recognizer.getTouchAction()); } }); return cleanTouchActions(actions.join(' ')); }, /** * this method is called on each input cycle and provides the preventing of the browser behavior * @param {Object} input */ preventDefaults: function(input) { var srcEvent = input.srcEvent; var direction = input.offsetDirection; // if the touch action did prevented once this session if (this.manager.session.prevented) { srcEvent.preventDefault(); return; } var actions = this.actions; var hasNone = inStr(actions, TOUCH_ACTION_NONE) && !TOUCH_ACTION_MAP[TOUCH_ACTION_NONE]; var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_Y]; var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_X]; if (hasNone) { //do not prevent defaults if this is a tap gesture var isTapPointer = input.pointers.length === 1; var isTapMovement = input.distance < 2; var isTapTouchTime = input.deltaTime < 250; if (isTapPointer && isTapMovement && isTapTouchTime) { return; } } if (hasPanX && hasPanY) { // `pan-x pan-y` means browser handles all scrolling/panning, do not prevent return; } if (hasNone || (hasPanY && direction & DIRECTION_HORIZONTAL) || (hasPanX && direction & DIRECTION_VERTICAL)) { return this.preventSrc(srcEvent); } }, /** * call preventDefault to prevent the browser's default behavior (scrolling in most cases) * @param {Object} srcEvent */ preventSrc: function(srcEvent) { this.manager.session.prevented = true; srcEvent.preventDefault(); } }; /** * when the touchActions are collected they are not a valid value, so we need to clean things up. * * @param {String} actions * @returns {*} */ function cleanTouchActions(actions) { // none if (inStr(actions, TOUCH_ACTION_NONE)) { return TOUCH_ACTION_NONE; } var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); // if both pan-x and pan-y are set (different recognizers // for different directions, e.g. horizontal pan but vertical swipe?) // we need none (as otherwise with pan-x pan-y combined none of these // recognizers will work, since the browser would handle all panning if (hasPanX && hasPanY) { return TOUCH_ACTION_NONE; } // pan-x OR pan-y if (hasPanX || hasPanY) { return hasPanX ? TOUCH_ACTION_PAN_X : TOUCH_ACTION_PAN_Y; } // manipulation if (inStr(actions, TOUCH_ACTION_MANIPULATION)) { return TOUCH_ACTION_MANIPULATION; } return TOUCH_ACTION_AUTO; } function getTouchActionProps() { if (!NATIVE_TOUCH_ACTION) { return false; } var touchMap = {}; var cssSupports = window.CSS && window.CSS.supports; ['auto', 'manipulation', 'pan-y', 'pan-x', 'pan-x pan-y', 'none'].forEach(function(val) { // If css.supports is not supported but there is native touch-action assume it supports // all values. This is the case for IE 10 and 11. touchMap[val] = cssSupports ? window.CSS.supports('touch-action', val) : true; }); return touchMap; } /** * Recognizer flow explained; * * All recognizers have the initial state of POSSIBLE when a input session starts. * The definition of a input session is from the first input until the last input, with all it's movement in it. * * Example session for mouse-input: mousedown -> mousemove -> mouseup * * On each recognizing cycle (see Manager.recognize) the .recognize() method is executed * which determines with state it should be. * * If the recognizer has the state FAILED, CANCELLED or RECOGNIZED (equals ENDED), it is reset to * POSSIBLE to give it another change on the next cycle. * * Possible * | * +-----+---------------+ * | | * +-----+-----+ | * | | | * Failed Cancelled | * +-------+------+ * | | * Recognized Began * | * Changed * | * Ended/Recognized */ var STATE_POSSIBLE = 1; var STATE_BEGAN = 2; var STATE_CHANGED = 4; var STATE_ENDED = 8; var STATE_RECOGNIZED = STATE_ENDED; var STATE_CANCELLED = 16; var STATE_FAILED = 32; /** * Recognizer * Every recognizer needs to extend from this class. * @constructor * @param {Object} options */ function Recognizer(options) { this.options = assign({}, this.defaults, options || {}); this.id = uniqueId(); this.manager = null; // default is enable true this.options.enable = ifUndefined(this.options.enable, true); this.state = STATE_POSSIBLE; this.simultaneous = {}; this.requireFail = []; } Recognizer.prototype = { /** * @virtual * @type {Object} */ defaults: {}, /** * set options * @param {Object} options * @return {Recognizer} */ set: function(options) { assign(this.options, options); // also update the touchAction, in case something changed about the directions/enabled state this.manager && this.manager.touchAction.update(); return this; }, /** * recognize simultaneous with an other recognizer. * @param {Recognizer} otherRecognizer * @returns {Recognizer} this */ recognizeWith: function(otherRecognizer) { if (invokeArrayArg(otherRecognizer, 'recognizeWith', this)) { return this; } var simultaneous = this.simultaneous; otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); if (!simultaneous[otherRecognizer.id]) { simultaneous[otherRecognizer.id] = otherRecognizer; otherRecognizer.recognizeWith(this); } return this; }, /** * drop the simultaneous link. it doesnt remove the link on the other recognizer. * @param {Recognizer} otherRecognizer * @returns {Recognizer} this */ dropRecognizeWith: function(otherRecognizer) { if (invokeArrayArg(otherRecognizer, 'dropRecognizeWith', this)) { return this; } otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); delete this.simultaneous[otherRecognizer.id]; return this; }, /** * recognizer can only run when an other is failing * @param {Recognizer} otherRecognizer * @returns {Recognizer} this */ requireFailure: function(otherRecognizer) { if (invokeArrayArg(otherRecognizer, 'requireFailure', this)) { return this; } var requireFail = this.requireFail; otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); if (inArray(requireFail, otherRecognizer) === -1) { requireFail.push(otherRecognizer); otherRecognizer.requireFailure(this); } return this; }, /** * drop the requireFailure link. it does not remove the link on the other recognizer. * @param {Recognizer} otherRecognizer * @returns {Recognizer} this */ dropRequireFailure: function(otherRecognizer) { if (invokeArrayArg(otherRecognizer, 'dropRequireFailure', this)) { return this; } otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); var index = inArray(this.requireFail, otherRecognizer); if (index > -1) { this.requireFail.splice(index, 1); } return this; }, /** * has require failures boolean * @returns {boolean} */ hasRequireFailures: function() { return this.requireFail.length > 0; }, /** * if the recognizer can recognize simultaneous with an other recognizer * @param {Recognizer} otherRecognizer * @returns {Boolean} */ canRecognizeWith: function(otherRecognizer) { return !!this.simultaneous[otherRecognizer.id]; }, /** * You should use `tryEmit` instead of `emit` directly to check * that all the needed recognizers has failed before emitting. * @param {Object} input */ emit: function(input) { var self = this; var state = this.state; function emit(event) { self.manager.emit(event, input); } // 'panstart' and 'panmove' if (state < STATE_ENDED) { emit(self.options.event + stateStr(state)); } emit(self.options.event); // simple 'eventName' events if (input.additionalEvent) { // additional event(panleft, panright, pinchin, pinchout...) emit(input.additionalEvent); } // panend and pancancel if (state >= STATE_ENDED) { emit(self.options.event + stateStr(state)); } }, /** * Check that all the require failure recognizers has failed, * if true, it emits a gesture event, * otherwise, setup the state to FAILED. * @param {Object} input */ tryEmit: function(input) { if (this.canEmit()) { return this.emit(input); } // it's failing anyway this.state = STATE_FAILED; }, /** * can we emit? * @returns {boolean} */ canEmit: function() { var i = 0; while (i < this.requireFail.length) { if (!(this.requireFail[i].state & (STATE_FAILED | STATE_POSSIBLE))) { return false; } i++; } return true; }, /** * update the recognizer * @param {Object} inputData */ recognize: function(inputData) { // make a new copy of the inputData // so we can change the inputData without messing up the other recognizers var inputDataClone = assign({}, inputData); // is is enabled and allow recognizing? if (!boolOrFn(this.options.enable, [this, inputDataClone])) { this.reset(); this.state = STATE_FAILED; return; } // reset when we've reached the end if (this.state & (STATE_RECOGNIZED | STATE_CANCELLED | STATE_FAILED)) { this.state = STATE_POSSIBLE; } this.state = this.process(inputDataClone); // the recognizer has recognized a gesture // so trigger an event if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) { this.tryEmit(inputDataClone); } }, /** * return the state of the recognizer * the actual recognizing happens in this method * @virtual * @param {Object} inputData * @returns {Const} STATE */ process: function(inputData) { }, // jshint ignore:line /** * return the preferred touch-action * @virtual * @returns {Array} */ getTouchAction: function() { }, /** * called when the gesture isn't allowed to recognize * like when another is being recognized or it is disabled * @virtual */ reset: function() { } }; /** * get a usable string, used as event postfix * @param {Const} state * @returns {String} state */ function stateStr(state) { if (state & STATE_CANCELLED) { return 'cancel'; } else if (state & STATE_ENDED) { return 'end'; } else if (state & STATE_CHANGED) { return 'move'; } else if (state & STATE_BEGAN) { return 'start'; } return ''; } /** * direction cons to string * @param {Const} direction * @returns {String} */ function directionStr(direction) { if (direction == DIRECTION_DOWN) { return 'down'; } else if (direction == DIRECTION_UP) { return 'up'; } else if (direction == DIRECTION_LEFT) { return 'left'; } else if (direction == DIRECTION_RIGHT) { return 'right'; } return ''; } /** * get a recognizer by name if it is bound to a manager * @param {Recognizer|String} otherRecognizer * @param {Recognizer} recognizer * @returns {Recognizer} */ function getRecognizerByNameIfManager(otherRecognizer, recognizer) { var manager = recognizer.manager; if (manager) { return manager.get(otherRecognizer); } return otherRecognizer; } /** * This recognizer is just used as a base for the simple attribute recognizers. * @constructor * @extends Recognizer */ function AttrRecognizer() { Recognizer.apply(this, arguments); } inherit(AttrRecognizer, Recognizer, { /** * @namespace * @memberof AttrRecognizer */ defaults: { /** * @type {Number} * @default 1 */ pointers: 1 }, /** * Used to check if it the recognizer receives valid input, like input.distance > 10. * @memberof AttrRecognizer * @param {Object} input * @returns {Boolean} recognized */ attrTest: function(input) { var optionPointers = this.options.pointers; return optionPointers === 0 || input.pointers.length === optionPointers; }, /** * Process the input and return the state for the recognizer * @memberof AttrRecognizer * @param {Object} input * @returns {*} State */ process: function(input) { var state = this.state; var eventType = input.eventType; var isRecognized = state & (STATE_BEGAN | STATE_CHANGED); var isValid = this.attrTest(input); // on cancel input and we've recognized before, return STATE_CANCELLED if (isRecognized && (eventType & INPUT_CANCEL || !isValid)) { return state | STATE_CANCELLED; } else if (isRecognized || isValid) { if (eventType & INPUT_END) { return state | STATE_ENDED; } else if (!(state & STATE_BEGAN)) { return STATE_BEGAN; } return state | STATE_CHANGED; } return STATE_FAILED; } }); /** * Pan * Recognized when the pointer is down and moved in the allowed direction. * @constructor * @extends AttrRecognizer */ function PanRecognizer() { AttrRecognizer.apply(this, arguments); this.pX = null; this.pY = null; } inherit(PanRecognizer, AttrRecognizer, { /** * @namespace * @memberof PanRecognizer */ defaults: { event: 'pan', threshold: 10, pointers: 1, direction: DIRECTION_ALL }, getTouchAction: function() { var direction = this.options.direction; var actions = []; if (direction & DIRECTION_HORIZONTAL) { actions.push(TOUCH_ACTION_PAN_Y); } if (direction & DIRECTION_VERTICAL) { actions.push(TOUCH_ACTION_PAN_X); } return actions; }, directionTest: function(input) { var options = this.options; var hasMoved = true; var distance = input.distance; var direction = input.direction; var x = input.deltaX; var y = input.deltaY; // lock to axis? if (!(direction & options.direction)) { if (options.direction & DIRECTION_HORIZONTAL) { direction = (x === 0) ? DIRECTION_NONE : (x < 0) ? DIRECTION_LEFT : DIRECTION_RIGHT; hasMoved = x != this.pX; distance = Math.abs(input.deltaX); } else { direction = (y === 0) ? DIRECTION_NONE : (y < 0) ? DIRECTION_UP : DIRECTION_DOWN; hasMoved = y != this.pY; distance = Math.abs(input.deltaY); } } input.direction = direction; return hasMoved && distance > options.threshold && direction & options.direction; }, attrTest: function(input) { return AttrRecognizer.prototype.attrTest.call(this, input) && (this.state & STATE_BEGAN || (!(this.state & STATE_BEGAN) && this.directionTest(input))); }, emit: function(input) { this.pX = input.deltaX; this.pY = input.deltaY; var direction = directionStr(input.direction); if (direction) { input.additionalEvent = this.options.event + direction; } this._super.emit.call(this, input); } }); /** * Pinch * Recognized when two or more pointers are moving toward (zoom-in) or away from each other (zoom-out). * @constructor * @extends AttrRecognizer */ function PinchRecognizer() { AttrRecognizer.apply(this, arguments); } inherit(PinchRecognizer, AttrRecognizer, { /** * @namespace * @memberof PinchRecognizer */ defaults: { event: 'pinch', threshold: 0, pointers: 2 }, getTouchAction: function() { return [TOUCH_ACTION_NONE]; }, attrTest: function(input) { return this._super.attrTest.call(this, input) && (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN); }, emit: function(input) { if (input.scale !== 1) { var inOut = input.scale < 1 ? 'in' : 'out'; input.additionalEvent = this.options.event + inOut; } this._super.emit.call(this, input); } }); /** * Press * Recognized when the pointer is down for x ms without any movement. * @constructor * @extends Recognizer */ function PressRecognizer() { Recognizer.apply(this, arguments); this._timer = null; this._input = null; } inherit(PressRecognizer, Recognizer, { /** * @namespace * @memberof PressRecognizer */ defaults: { event: 'press', pointers: 1, time: 251, // minimal time of the pointer to be pressed threshold: 9 // a minimal movement is ok, but keep it low }, getTouchAction: function() { return [TOUCH_ACTION_AUTO]; }, process: function(input) { var options = this.options; var validPointers = input.pointers.length === options.pointers; var validMovement = input.distance < options.threshold; var validTime = input.deltaTime > options.time; this._input = input; // we only allow little movement // and we've reached an end event, so a tap is possible if (!validMovement || !validPointers || (input.eventType & (INPUT_END | INPUT_CANCEL) && !validTime)) { this.reset(); } else if (input.eventType & INPUT_START) { this.reset(); this._timer = setTimeoutContext(function() { this.state = STATE_RECOGNIZED; this.tryEmit(); }, options.time, this); } else if (input.eventType & INPUT_END) { return STATE_RECOGNIZED; } return STATE_FAILED; }, reset: function() { clearTimeout(this._timer); }, emit: function(input) { if (this.state !== STATE_RECOGNIZED) { return; } if (input && (input.eventType & INPUT_END)) { this.manager.emit(this.options.event + 'up', input); } else { this._input.timeStamp = now(); this.manager.emit(this.options.event, this._input); } } }); /** * Rotate * Recognized when two or more pointer are moving in a circular motion. * @constructor * @extends AttrRecognizer */ function RotateRecognizer() { AttrRecognizer.apply(this, arguments); } inherit(RotateRecognizer, AttrRecognizer, { /** * @namespace * @memberof RotateRecognizer */ defaults: { event: 'rotate', threshold: 0, pointers: 2 }, getTouchAction: function() { return [TOUCH_ACTION_NONE]; }, attrTest: function(input) { return this._super.attrTest.call(this, input) && (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN); } }); /** * Swipe * Recognized when the pointer is moving fast (velocity), with enough distance in the allowed direction. * @constructor * @extends AttrRecognizer */ function SwipeRecognizer() { AttrRecognizer.apply(this, arguments); } inherit(SwipeRecognizer, AttrRecognizer, { /** * @namespace * @memberof SwipeRecognizer */ defaults: { event: 'swipe', threshold: 10, velocity: 0.3, direction: DIRECTION_HORIZONTAL | DIRECTION_VERTICAL, pointers: 1 }, getTouchAction: function() { return PanRecognizer.prototype.getTouchAction.call(this); }, attrTest: function(input) { var direction = this.options.direction; var velocity; if (direction & (DIRECTION_HORIZONTAL | DIRECTION_VERTICAL)) { velocity = input.overallVelocity; } else if (direction & DIRECTION_HORIZONTAL) { velocity = input.overallVelocityX; } else if (direction & DIRECTION_VERTICAL) { velocity = input.overallVelocityY; } return this._super.attrTest.call(this, input) && direction & input.offsetDirection && input.distance > this.options.threshold && input.maxPointers == this.options.pointers && abs(velocity) > this.options.velocity && input.eventType & INPUT_END; }, emit: function(input) { var direction = directionStr(input.offsetDirection); if (direction) { this.manager.emit(this.options.event + direction, input); } this.manager.emit(this.options.event, input); } }); /** * A tap is ecognized when the pointer is doing a small tap/click. Multiple taps are recognized if they occur * between the given interval and position. The delay option can be used to recognize multi-taps without firing * a single tap. * * The eventData from the emitted event contains the property `tapCount`, which contains the amount of * multi-taps being recognized. * @constructor * @extends Recognizer */ function TapRecognizer() { Recognizer.apply(this, arguments); // previous time and center, // used for tap counting this.pTime = false; this.pCenter = false; this._timer = null; this._input = null; this.count = 0; } inherit(TapRecognizer, Recognizer, { /** * @namespace * @memberof PinchRecognizer */ defaults: { event: 'tap', pointers: 1, taps: 1, interval: 300, // max time between the multi-tap taps time: 250, // max time of the pointer to be down (like finger on the screen) threshold: 9, // a minimal movement is ok, but keep it low posThreshold: 10 // a multi-tap can be a bit off the initial position }, getTouchAction: function() { return [TOUCH_ACTION_MANIPULATION]; }, process: function(input) { var options = this.options; var validPointers = input.pointers.length === options.pointers; var validMovement = input.distance < options.threshold; var validTouchTime = input.deltaTime < options.time; this.reset(); if ((input.eventType & INPUT_START) && (this.count === 0)) { return this.failTimeout(); } // we only allow little movement // and we've reached an end event, so a tap is possible if (validMovement && validTouchTime && validPointers) { if (input.eventType != INPUT_END) { return this.failTimeout(); } var validInterval = this.pTime ? (input.timeStamp - this.pTime < options.interval) : true; var validMultiTap = !this.pCenter || getDistance(this.pCenter, input.center) < options.posThreshold; this.pTime = input.timeStamp; this.pCenter = input.center; if (!validMultiTap || !validInterval) { this.count = 1; } else { this.count += 1; } this._input = input; // if tap count matches we have recognized it, // else it has began recognizing... var tapCount = this.count % options.taps; if (tapCount === 0) { // no failing requirements, immediately trigger the tap event // or wait as long as the multitap interval to trigger if (!this.hasRequireFailures()) { return STATE_RECOGNIZED; } else { this._timer = setTimeoutContext(function() { this.state = STATE_RECOGNIZED; this.tryEmit(); }, options.interval, this); return STATE_BEGAN; } } } return STATE_FAILED; }, failTimeout: function() { this._timer = setTimeoutContext(function() { this.state = STATE_FAILED; }, this.options.interval, this); return STATE_FAILED; }, reset: function() { clearTimeout(this._timer); }, emit: function() { if (this.state == STATE_RECOGNIZED) { this._input.tapCount = this.count; this.manager.emit(this.options.event, this._input); } } }); /** * Simple way to create a manager with a default set of recognizers. * @param {HTMLElement} element * @param {Object} [options] * @constructor */ function Hammer(element, options) { options = options || {}; options.recognizers = ifUndefined(options.recognizers, Hammer.defaults.preset); return new Manager(element, options); } /** * @const {string} */ Hammer.VERSION = '2.0.7'; /** * default settings * @namespace */ Hammer.defaults = { /** * set if DOM events are being triggered. * But this is slower and unused by simple implementations, so disabled by default. * @type {Boolean} * @default false */ domEvents: false, /** * The value for the touchAction property/fallback. * When set to `compute` it will magically set the correct value based on the added recognizers. * @type {String} * @default compute */ touchAction: TOUCH_ACTION_COMPUTE, /** * @type {Boolean} * @default true */ enable: true, /** * EXPERIMENTAL FEATURE -- can be removed/changed * Change the parent input target element. * If Null, then it is being set the to main element. * @type {Null|EventTarget} * @default null */ inputTarget: null, /** * force an input class * @type {Null|Function} * @default null */ inputClass: null, /** * Default recognizer setup when calling `Hammer()` * When creating a new Manager these will be skipped. * @type {Array} */ preset: [ // RecognizerClass, options, [recognizeWith, ...], [requireFailure, ...] [RotateRecognizer, {enable: false}], [PinchRecognizer, {enable: false}, ['rotate']], [SwipeRecognizer, {direction: DIRECTION_HORIZONTAL}], [PanRecognizer, {direction: DIRECTION_HORIZONTAL}, ['swipe']], [TapRecognizer], [TapRecognizer, {event: 'doubletap', taps: 2}, ['tap']], [PressRecognizer] ], /** * Some CSS properties can be used to improve the working of Hammer. * Add them to this method and they will be set when creating a new Manager. * @namespace */ cssProps: { /** * Disables text selection to improve the dragging gesture. Mainly for desktop browsers. * @type {String} * @default 'none' */ userSelect: 'none', /** * Disable the Windows Phone grippers when pressing an element. * @type {String} * @default 'none' */ touchSelect: 'none', /** * Disables the default callout shown when you touch and hold a touch target. * On iOS, when you touch and hold a touch target such as a link, Safari displays * a callout containing information about the link. This property allows you to disable that callout. * @type {String} * @default 'none' */ touchCallout: 'none', /** * Specifies whether zooming is enabled. Used by IE10> * @type {String} * @default 'none' */ contentZooming: 'none', /** * Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers. * @type {String} * @default 'none' */ userDrag: 'none', /** * Overrides the highlight color shown when the user taps a link or a JavaScript * clickable element in iOS. This property obeys the alpha value, if specified. * @type {String} * @default 'rgba(0,0,0,0)' */ tapHighlightColor: 'rgba(0,0,0,0)' } }; var STOP = 1; var FORCED_STOP = 2; /** * Manager * @param {HTMLElement} element * @param {Object} [options] * @constructor */ function Manager(element, options) { this.options = assign({}, Hammer.defaults, options || {}); this.options.inputTarget = this.options.inputTarget || element; this.handlers = {}; this.session = {}; this.recognizers = []; this.oldCssProps = {}; this.element = element; this.input = createInputInstance(this); this.touchAction = new TouchAction(this, this.options.touchAction); toggleCssProps(this, true); each(this.options.recognizers, function(item) { var recognizer = this.add(new (item[0])(item[1])); item[2] && recognizer.recognizeWith(item[2]); item[3] && recognizer.requireFailure(item[3]); }, this); } Manager.prototype = { /** * set options * @param {Object} options * @returns {Manager} */ set: function(options) { assign(this.options, options); // Options that need a little more setup if (options.touchAction) { this.touchAction.update(); } if (options.inputTarget) { // Clean up existing event listeners and reinitialize this.input.destroy(); this.input.target = options.inputTarget; this.input.init(); } return this; }, /** * stop recognizing for this session. * This session will be discarded, when a new [input]start event is fired. * When forced, the recognizer cycle is stopped immediately. * @param {Boolean} [force] */ stop: function(force) { this.session.stopped = force ? FORCED_STOP : STOP; }, /** * run the recognizers! * called by the inputHandler function on every movement of the pointers (touches) * it walks through all the recognizers and tries to detect the gesture that is being made * @param {Object} inputData */ recognize: function(inputData) { var session = this.session; if (session.stopped) { return; } // run the touch-action polyfill this.touchAction.preventDefaults(inputData); var recognizer; var recognizers = this.recognizers; // this holds the recognizer that is being recognized. // so the recognizer's state needs to be BEGAN, CHANGED, ENDED or RECOGNIZED // if no recognizer is detecting a thing, it is set to `null` var curRecognizer = session.curRecognizer; // reset when the last recognizer is recognized // or when we're in a new session if (!curRecognizer || (curRecognizer && curRecognizer.state & STATE_RECOGNIZED)) { curRecognizer = session.curRecognizer = null; } var i = 0; while (i < recognizers.length) { recognizer = recognizers[i]; // find out if we are allowed try to recognize the input for this one. // 1. allow if the session is NOT forced stopped (see the .stop() method) // 2. allow if we still haven't recognized a gesture in this session, or the this recognizer is the one // that is being recognized. // 3. allow if the recognizer is allowed to run simultaneous with the current recognized recognizer. // this can be setup with the `recognizeWith()` method on the recognizer. if (session.stopped !== FORCED_STOP && ( // 1 !curRecognizer || recognizer == curRecognizer || // 2 recognizer.canRecognizeWith(curRecognizer))) { // 3 recognizer.recognize(inputData); } else { recognizer.reset(); } // if the recognizer has been recognizing the input as a valid gesture, we want to store this one as the // current active recognizer. but only if we don't already have an active recognizer if (!curRecognizer && recognizer.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED)) { curRecognizer = session.curRecognizer = recognizer; } i++; } }, /** * get a recognizer by its event name. * @param {Recognizer|String} recognizer * @returns {Recognizer|Null} */ get: function(recognizer) { if (recognizer instanceof Recognizer) { return recognizer; } var recognizers = this.recognizers; for (var i = 0; i < recognizers.length; i++) { if (recognizers[i].options.event == recognizer) { return recognizers[i]; } } return null; }, /** * add a recognizer to the manager * existing recognizers with the same event name will be removed * @param {Recognizer} recognizer * @returns {Recognizer|Manager} */ add: function(recognizer) { if (invokeArrayArg(recognizer, 'add', this)) { return this; } // remove existing var existing = this.get(recognizer.options.event); if (existing) { this.remove(existing); } this.recognizers.push(recognizer); recognizer.manager = this; this.touchAction.update(); return recognizer; }, /** * remove a recognizer by name or instance * @param {Recognizer|String} recognizer * @returns {Manager} */ remove: function(recognizer) { if (invokeArrayArg(recognizer, 'remove', this)) { return this; } recognizer = this.get(recognizer); // let's make sure this recognizer exists if (recognizer) { var recognizers = this.recognizers; var index = inArray(recognizers, recognizer); if (index !== -1) { recognizers.splice(index, 1); this.touchAction.update(); } } return this; }, /** * bind event * @param {String} events * @param {Function} handler * @returns {EventEmitter} this */ on: function(events, handler) { if (events === undefined) { return; } if (handler === undefined) { return; } var handlers = this.handlers; each(splitStr(events), function(event) { handlers[event] = handlers[event] || []; handlers[event].push(handler); }); return this; }, /** * unbind event, leave emit blank to remove all handlers * @param {String} events * @param {Function} [handler] * @returns {EventEmitter} this */ off: function(events, handler) { if (events === undefined) { return; } var handlers = this.handlers; each(splitStr(events), function(event) { if (!handler) { delete handlers[event]; } else { handlers[event] && handlers[event].splice(inArray(handlers[event], handler), 1); } }); return this; }, /** * emit event to the listeners * @param {String} event * @param {Object} data */ emit: function(event, data) { // we also want to trigger dom events if (this.options.domEvents) { triggerDomEvent(event, data); } // no handlers, so skip it all var handlers = this.handlers[event] && this.handlers[event].slice(); if (!handlers || !handlers.length) { return; } data.type = event; data.preventDefault = function() { data.srcEvent.preventDefault(); }; var i = 0; while (i < handlers.length) { handlers[i](data); i++; } }, /** * destroy the manager and unbinds all events * it doesn't unbind dom events, that is the user own responsibility */ destroy: function() { this.element && toggleCssProps(this, false); this.handlers = {}; this.session = {}; this.input.destroy(); this.element = null; } }; /** * add/remove the css properties as defined in manager.options.cssProps * @param {Manager} manager * @param {Boolean} add */ function toggleCssProps(manager, add) { var element = manager.element; if (!element.style) { return; } var prop; each(manager.options.cssProps, function(value, name) { prop = prefixed(element.style, name); if (add) { manager.oldCssProps[prop] = element.style[prop]; element.style[prop] = value; } else { element.style[prop] = manager.oldCssProps[prop] || ''; } }); if (!add) { manager.oldCssProps = {}; } } /** * trigger dom event * @param {String} event * @param {Object} data */ function triggerDomEvent(event, data) { var gestureEvent = document.createEvent('Event'); gestureEvent.initEvent(event, true, true); gestureEvent.gesture = data; data.target.dispatchEvent(gestureEvent); } assign(Hammer, { INPUT_START: INPUT_START, INPUT_MOVE: INPUT_MOVE, INPUT_END: INPUT_END, INPUT_CANCEL: INPUT_CANCEL, STATE_POSSIBLE: STATE_POSSIBLE, STATE_BEGAN: STATE_BEGAN, STATE_CHANGED: STATE_CHANGED, STATE_ENDED: STATE_ENDED, STATE_RECOGNIZED: STATE_RECOGNIZED, STATE_CANCELLED: STATE_CANCELLED, STATE_FAILED: STATE_FAILED, DIRECTION_NONE: DIRECTION_NONE, DIRECTION_LEFT: DIRECTION_LEFT, DIRECTION_RIGHT: DIRECTION_RIGHT, DIRECTION_UP: DIRECTION_UP, DIRECTION_DOWN: DIRECTION_DOWN, DIRECTION_HORIZONTAL: DIRECTION_HORIZONTAL, DIRECTION_VERTICAL: DIRECTION_VERTICAL, DIRECTION_ALL: DIRECTION_ALL, Manager: Manager, Input: Input, TouchAction: TouchAction, TouchInput: TouchInput, MouseInput: MouseInput, PointerEventInput: PointerEventInput, TouchMouseInput: TouchMouseInput, SingleTouchInput: SingleTouchInput, Recognizer: Recognizer, AttrRecognizer: AttrRecognizer, Tap: TapRecognizer, Pan: PanRecognizer, Swipe: SwipeRecognizer, Pinch: PinchRecognizer, Rotate: RotateRecognizer, Press: PressRecognizer, on: addEventListeners, off: removeEventListeners, each: each, merge: merge, extend: extend, assign: assign, inherit: inherit, bindFn: bindFn, prefixed: prefixed }); // this prevents errors when Hammer is loaded in the presence of an AMD // style loader but by script tag, not by the loader. var freeGlobal = (typeof window !== 'undefined' ? window : (typeof self !== 'undefined' ? self : {})); // jshint ignore:line freeGlobal.Hammer = Hammer; if (typeof define === 'function' && define.amd) { define(function() { return Hammer; }); } else if (typeof module != 'undefined' && module.exports) { module.exports = Hammer; } else { window[exportName] = Hammer; } })(window, document, 'Hammer'); },{}],287:[function(_dereq_,module,exports){ var hat = module.exports = function (bits, base) { if (!base) base = 16; if (bits === undefined) bits = 128; if (bits <= 0) return '0'; var digits = Math.log(Math.pow(2, bits)) / Math.log(base); for (var i = 2; digits === Infinity; i *= 2) { digits = Math.log(Math.pow(2, bits / i)) / Math.log(base) * i; } var rem = digits - Math.floor(digits); var res = ''; for (var i = 0; i < Math.floor(digits); i++) { var x = Math.floor(Math.random() * base).toString(base); res = x + res; } if (rem) { var b = Math.pow(base, rem); var x = Math.floor(Math.random() * b).toString(base); res = x + res; } var parsed = parseInt(res, base); if (parsed !== Infinity && parsed >= Math.pow(2, bits)) { return hat(bits, base) } else return res; }; hat.rack = function (bits, base, expandBy) { var fn = function (data) { var iters = 0; do { if (iters ++ > 10) { if (expandBy) bits += expandBy; else throw new Error('too many ID collisions, use more bits') } var id = hat(bits, base); } while (Object.hasOwnProperty.call(hats, id)); hats[id] = data; return id; }; var hats = fn.hats = {}; fn.get = function (id) { return fn.hats[id]; }; fn.set = function (id, value) { fn.hats[id] = value; return fn; }; fn.bits = bits || 128; fn.base = base || 16; return fn; }; },{}],288:[function(_dereq_,module,exports){ 'use strict'; var hat = _dereq_(287); /** * Create a new id generator / cache instance. * * You may optionally provide a seed that is used internally. * * @param {Seed} seed */ function Ids(seed) { if (!(this instanceof Ids)) { return new Ids(seed); } seed = seed || [ 128, 36, 1 ]; this._seed = seed.length ? hat.rack(seed[0], seed[1], seed[2]) : seed; } module.exports = Ids; /** * Generate a next id. * * @param {Object} [element] element to bind the id to * * @return {String} id */ Ids.prototype.next = function(element) { return this._seed(element || true); }; /** * Generate a next id with a given prefix. * * @param {Object} [element] element to bind the id to * * @return {String} id */ Ids.prototype.nextPrefixed = function(prefix, element) { var id; do { id = prefix + this.next(true); } while (this.assigned(id)); // claim {prefix}{random} this.claim(id, element); // return return id; }; /** * Manually claim an existing id. * * @param {String} id * @param {String} [element] element the id is claimed by */ Ids.prototype.claim = function(id, element) { this._seed.set(id, element || true); }; /** * Returns true if the given id has already been assigned. * * @param {String} id * @return {Boolean} */ Ids.prototype.assigned = function(id) { return this._seed.get(id) || false; }; /** * Unclaim an id. * * @param {String} id the id to unclaim */ Ids.prototype.unclaim = function(id) { delete this._seed.hats[id]; }; /** * Clear all claimed ids. */ Ids.prototype.clear = function() { var hats = this._seed.hats, id; for (id in hats) { this.unclaim(id); } }; },{"287":287}],289:[function(_dereq_,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); }; } else { // old school shim for old browsers module.exports = function inherits(ctor, superCtor) { ctor.super_ = superCtor var TempCtor = function () {} TempCtor.prototype = superCtor.prototype ctor.prototype = new TempCtor() ctor.prototype.constructor = ctor } } },{}],290:[function(_dereq_,module,exports){ var createFindIndex = _dereq_(381); /** * This method is like `_.find` except that it returns the index of the first * element `predicate` returns truthy for instead of the element itself. * * If a property name is provided for `predicate` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `predicate` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @category Array * @param {Array} array The array to search. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {number} Returns the index of the found element, else `-1`. * @example * * var users = [ * { 'user': 'barney', 'active': false }, * { 'user': 'fred', 'active': false }, * { 'user': 'pebbles', 'active': true } * ]; * * _.findIndex(users, function(chr) { * return chr.user == 'barney'; * }); * // => 0 * * // using the `_.matches` callback shorthand * _.findIndex(users, { 'user': 'fred', 'active': false }); * // => 1 * * // using the `_.matchesProperty` callback shorthand * _.findIndex(users, 'active', false); * // => 0 * * // using the `_.property` callback shorthand * _.findIndex(users, 'active'); * // => 2 */ var findIndex = createFindIndex(); module.exports = findIndex; },{"381":381}],291:[function(_dereq_,module,exports){ var baseFlatten = _dereq_(341), isIterateeCall = _dereq_(401); /** * Flattens a nested array. If `isDeep` is `true` the array is recursively * flattened, otherwise it's only flattened a single level. * * @static * @memberOf _ * @category Array * @param {Array} array The array to flatten. * @param {boolean} [isDeep] Specify a deep flatten. * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. * @returns {Array} Returns the new flattened array. * @example * * _.flatten([1, [2, 3, [4]]]); * // => [1, 2, 3, [4]] * * // using `isDeep` * _.flatten([1, [2, 3, [4]]], true); * // => [1, 2, 3, 4] */ function flatten(array, isDeep, guard) { var length = array ? array.length : 0; if (guard && isIterateeCall(array, isDeep, guard)) { isDeep = false; } return length ? baseFlatten(array, isDeep) : []; } module.exports = flatten; },{"341":341,"401":401}],292:[function(_dereq_,module,exports){ var baseIndexOf = _dereq_(346), cacheIndexOf = _dereq_(368), createCache = _dereq_(378), isArrayLike = _dereq_(399), restParam = _dereq_(315); /** * Creates an array of unique values that are included in all of the provided * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons. * * @static * @memberOf _ * @category Array * @param {...Array} [arrays] The arrays to inspect. * @returns {Array} Returns the new array of shared values. * @example * _.intersection([1, 2], [4, 2], [2, 1]); * // => [2] */ var intersection = restParam(function(arrays) { var othLength = arrays.length, othIndex = othLength, caches = Array(length), indexOf = baseIndexOf, isCommon = true, result = []; while (othIndex--) { var value = arrays[othIndex] = isArrayLike(value = arrays[othIndex]) ? value : []; caches[othIndex] = (isCommon && value.length >= 120) ? createCache(othIndex && value) : null; } var array = arrays[0], index = -1, length = array ? array.length : 0, seen = caches[0]; outer: while (++index < length) { value = array[index]; if ((seen ? cacheIndexOf(seen, value) : indexOf(result, value, 0)) < 0) { var othIndex = othLength; while (--othIndex) { var cache = caches[othIndex]; if ((cache ? cacheIndexOf(cache, value) : indexOf(arrays[othIndex], value, 0)) < 0) { continue outer; } } if (seen) { seen.push(value); } result.push(value); } } return result; }); module.exports = intersection; },{"315":315,"346":346,"368":368,"378":378,"399":399}],293:[function(_dereq_,module,exports){ /** * Gets the last element of `array`. * * @static * @memberOf _ * @category Array * @param {Array} array The array to query. * @returns {*} Returns the last element of `array`. * @example * * _.last([1, 2, 3]); * // => 3 */ function last(array) { var length = array ? array.length : 0; return length ? array[length - 1] : undefined; } module.exports = last; },{}],294:[function(_dereq_,module,exports){ var baseFlatten = _dereq_(341), baseUniq = _dereq_(364), restParam = _dereq_(315); /** * Creates an array of unique values, in order, from all of the provided arrays * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons. * * @static * @memberOf _ * @category Array * @param {...Array} [arrays] The arrays to inspect. * @returns {Array} Returns the new array of combined values. * @example * * _.union([1, 2], [4, 2], [2, 1]); * // => [1, 2, 4] */ var union = restParam(function(arrays) { return baseUniq(baseFlatten(arrays, false, true)); }); module.exports = union; },{"315":315,"341":341,"364":364}],295:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseUniq = _dereq_(364), isIterateeCall = _dereq_(401), sortedUniq = _dereq_(416); /** * Creates a duplicate-free version of an array, using * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons, in which only the first occurence of each element * is kept. Providing `true` for `isSorted` performs a faster search algorithm * for sorted arrays. If an iteratee function is provided it's invoked for * each element in the array to generate the criterion by which uniqueness * is computed. The `iteratee` is bound to `thisArg` and invoked with three * arguments: (value, index, array). * * If a property name is provided for `iteratee` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `iteratee` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @alias unique * @category Array * @param {Array} array The array to inspect. * @param {boolean} [isSorted] Specify the array is sorted. * @param {Function|Object|string} [iteratee] The function invoked per iteration. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {Array} Returns the new duplicate-value-free array. * @example * * _.uniq([2, 1, 2]); * // => [2, 1] * * // using `isSorted` * _.uniq([1, 1, 2], true); * // => [1, 2] * * // using an iteratee function * _.uniq([1, 2.5, 1.5, 2], function(n) { * return this.floor(n); * }, Math); * // => [1, 2.5] * * // using the `_.property` callback shorthand * _.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); * // => [{ 'x': 1 }, { 'x': 2 }] */ function uniq(array, isSorted, iteratee, thisArg) { var length = array ? array.length : 0; if (!length) { return []; } if (isSorted != null && typeof isSorted != 'boolean') { thisArg = iteratee; iteratee = isIterateeCall(array, isSorted, thisArg) ? undefined : isSorted; isSorted = false; } iteratee = iteratee == null ? iteratee : baseCallback(iteratee, thisArg, 3); return (isSorted) ? sortedUniq(array, iteratee) : baseUniq(array, iteratee); } module.exports = uniq; },{"329":329,"364":364,"401":401,"416":416}],296:[function(_dereq_,module,exports){ module.exports = _dereq_(295); },{"295":295}],297:[function(_dereq_,module,exports){ var baseDifference = _dereq_(335), isArrayLike = _dereq_(399), restParam = _dereq_(315); /** * Creates an array excluding all provided values using * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons. * * @static * @memberOf _ * @category Array * @param {Array} array The array to filter. * @param {...*} [values] The values to exclude. * @returns {Array} Returns the new array of filtered values. * @example * * _.without([1, 2, 1, 3], 1, 2); * // => [3] */ var without = restParam(function(array, values) { return isArrayLike(array) ? baseDifference(array, values) : []; }); module.exports = without; },{"315":315,"335":335,"399":399}],298:[function(_dereq_,module,exports){ var LazyWrapper = _dereq_(316), LodashWrapper = _dereq_(317), baseLodash = _dereq_(350), isArray = _dereq_(422), isObjectLike = _dereq_(405), wrapperClone = _dereq_(419); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Creates a `lodash` object which wraps `value` to enable implicit chaining. * Methods that operate on and return arrays, collections, and functions can * be chained together. Methods that retrieve a single value or may return a * primitive value will automatically end the chain returning the unwrapped * value. Explicit chaining may be enabled using `_.chain`. The execution of * chained methods is lazy, that is, execution is deferred until `_#value` * is implicitly or explicitly called. * * Lazy evaluation allows several methods to support shortcut fusion. Shortcut * fusion is an optimization strategy which merge iteratee calls; this can help * to avoid the creation of intermediate data structures and greatly reduce the * number of iteratee executions. * * Chaining is supported in custom builds as long as the `_#value` method is * directly or indirectly included in the build. * * In addition to lodash methods, wrappers have `Array` and `String` methods. * * The wrapper `Array` methods are: * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, * `splice`, and `unshift` * * The wrapper `String` methods are: * `replace` and `split` * * The wrapper methods that support shortcut fusion are: * `compact`, `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`, * `first`, `initial`, `last`, `map`, `pluck`, `reject`, `rest`, `reverse`, * `slice`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, `toArray`, * and `where` * * The chainable wrapper methods are: * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`, * `callback`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`, * `countBy`, `create`, `curry`, `debounce`, `defaults`, `defaultsDeep`, * `defer`, `delay`, `difference`, `drop`, `dropRight`, `dropRightWhile`, * `dropWhile`, `fill`, `filter`, `flatten`, `flattenDeep`, `flow`, `flowRight`, * `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`, `forOwnRight`, * `functions`, `groupBy`, `indexBy`, `initial`, `intersection`, `invert`, * `invoke`, `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, * `matchesProperty`, `memoize`, `merge`, `method`, `methodOf`, `mixin`, * `modArgs`, `negate`, `omit`, `once`, `pairs`, `partial`, `partialRight`, * `partition`, `pick`, `plant`, `pluck`, `property`, `propertyOf`, `pull`, * `pullAt`, `push`, `range`, `rearg`, `reject`, `remove`, `rest`, `restParam`, * `reverse`, `set`, `shuffle`, `slice`, `sort`, `sortBy`, `sortByAll`, * `sortByOrder`, `splice`, `spread`, `take`, `takeRight`, `takeRightWhile`, * `takeWhile`, `tap`, `throttle`, `thru`, `times`, `toArray`, `toPlainObject`, * `transform`, `union`, `uniq`, `unshift`, `unzip`, `unzipWith`, `values`, * `valuesIn`, `where`, `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith` * * The wrapper methods that are **not** chainable by default are: * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`, * `deburr`, `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, * `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `findWhere`, `first`, * `floor`, `get`, `gt`, `gte`, `has`, `identity`, `includes`, `indexOf`, * `inRange`, `isArguments`, `isArray`, `isBoolean`, `isDate`, `isElement`, * `isEmpty`, `isEqual`, `isError`, `isFinite` `isFunction`, `isMatch`, * `isNative`, `isNaN`, `isNull`, `isNumber`, `isObject`, `isPlainObject`, * `isRegExp`, `isString`, `isUndefined`, `isTypedArray`, `join`, `kebabCase`, * `last`, `lastIndexOf`, `lt`, `lte`, `max`, `min`, `noConflict`, `noop`, * `now`, `pad`, `padLeft`, `padRight`, `parseInt`, `pop`, `random`, `reduce`, * `reduceRight`, `repeat`, `result`, `round`, `runInContext`, `shift`, `size`, * `snakeCase`, `some`, `sortedIndex`, `sortedLastIndex`, `startCase`, * `startsWith`, `sum`, `template`, `trim`, `trimLeft`, `trimRight`, `trunc`, * `unescape`, `uniqueId`, `value`, and `words` * * The wrapper method `sample` will return a wrapped value when `n` is provided, * otherwise an unwrapped value is returned. * * @name _ * @constructor * @category Chain * @param {*} value The value to wrap in a `lodash` instance. * @returns {Object} Returns the new `lodash` wrapper instance. * @example * * var wrapped = _([1, 2, 3]); * * // returns an unwrapped value * wrapped.reduce(function(total, n) { * return total + n; * }); * // => 6 * * // returns a wrapped value * var squares = wrapped.map(function(n) { * return n * n; * }); * * _.isArray(squares); * // => false * * _.isArray(squares.value()); * // => true */ function lodash(value) { if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { if (value instanceof LodashWrapper) { return value; } if (hasOwnProperty.call(value, '__chain__') && hasOwnProperty.call(value, '__wrapped__')) { return wrapperClone(value); } } return new LodashWrapper(value); } // Ensure wrappers are instances of `baseLodash`. lodash.prototype = baseLodash.prototype; module.exports = lodash; },{"316":316,"317":317,"350":350,"405":405,"419":419,"422":422}],299:[function(_dereq_,module,exports){ module.exports = _dereq_(309); },{"309":309}],300:[function(_dereq_,module,exports){ var arrayEvery = _dereq_(321), baseCallback = _dereq_(329), baseEvery = _dereq_(337), isArray = _dereq_(422), isIterateeCall = _dereq_(401); /** * Checks if `predicate` returns truthy for **all** elements of `collection`. * The predicate is bound to `thisArg` and invoked with three arguments: * (value, index|key, collection). * * If a property name is provided for `predicate` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `predicate` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @alias all * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {boolean} Returns `true` if all elements pass the predicate check, * else `false`. * @example * * _.every([true, 1, null, 'yes'], Boolean); * // => false * * var users = [ * { 'user': 'barney', 'active': false }, * { 'user': 'fred', 'active': false } * ]; * * // using the `_.matches` callback shorthand * _.every(users, { 'user': 'barney', 'active': false }); * // => false * * // using the `_.matchesProperty` callback shorthand * _.every(users, 'active', false); * // => true * * // using the `_.property` callback shorthand * _.every(users, 'active'); * // => false */ function every(collection, predicate, thisArg) { var func = isArray(collection) ? arrayEvery : baseEvery; if (thisArg && isIterateeCall(collection, predicate, thisArg)) { predicate = undefined; } if (typeof predicate != 'function' || thisArg !== undefined) { predicate = baseCallback(predicate, thisArg, 3); } return func(collection, predicate); } module.exports = every; },{"321":321,"329":329,"337":337,"401":401,"422":422}],301:[function(_dereq_,module,exports){ var arrayFilter = _dereq_(322), baseCallback = _dereq_(329), baseFilter = _dereq_(338), isArray = _dereq_(422); /** * Iterates over elements of `collection`, returning an array of all elements * `predicate` returns truthy for. The predicate is bound to `thisArg` and * invoked with three arguments: (value, index|key, collection). * * If a property name is provided for `predicate` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `predicate` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @alias select * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {Array} Returns the new filtered array. * @example * * _.filter([4, 5, 6], function(n) { * return n % 2 == 0; * }); * // => [4, 6] * * var users = [ * { 'user': 'barney', 'age': 36, 'active': true }, * { 'user': 'fred', 'age': 40, 'active': false } * ]; * * // using the `_.matches` callback shorthand * _.pluck(_.filter(users, { 'age': 36, 'active': true }), 'user'); * // => ['barney'] * * // using the `_.matchesProperty` callback shorthand * _.pluck(_.filter(users, 'active', false), 'user'); * // => ['fred'] * * // using the `_.property` callback shorthand * _.pluck(_.filter(users, 'active'), 'user'); * // => ['barney'] */ function filter(collection, predicate, thisArg) { var func = isArray(collection) ? arrayFilter : baseFilter; predicate = baseCallback(predicate, thisArg, 3); return func(collection, predicate); } module.exports = filter; },{"322":322,"329":329,"338":338,"422":422}],302:[function(_dereq_,module,exports){ var baseEach = _dereq_(336), createFind = _dereq_(380); /** * Iterates over elements of `collection`, returning the first element * `predicate` returns truthy for. The predicate is bound to `thisArg` and * invoked with three arguments: (value, index|key, collection). * * If a property name is provided for `predicate` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `predicate` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @alias detect * @category Collection * @param {Array|Object|string} collection The collection to search. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {*} Returns the matched element, else `undefined`. * @example * * var users = [ * { 'user': 'barney', 'age': 36, 'active': true }, * { 'user': 'fred', 'age': 40, 'active': false }, * { 'user': 'pebbles', 'age': 1, 'active': true } * ]; * * _.result(_.find(users, function(chr) { * return chr.age < 40; * }), 'user'); * // => 'barney' * * // using the `_.matches` callback shorthand * _.result(_.find(users, { 'age': 1, 'active': true }), 'user'); * // => 'pebbles' * * // using the `_.matchesProperty` callback shorthand * _.result(_.find(users, 'active', false), 'user'); * // => 'fred' * * // using the `_.property` callback shorthand * _.result(_.find(users, 'active'), 'user'); * // => 'barney' */ var find = createFind(baseEach); module.exports = find; },{"336":336,"380":380}],303:[function(_dereq_,module,exports){ var arrayEach = _dereq_(320), baseEach = _dereq_(336), createForEach = _dereq_(382); /** * Iterates over elements of `collection` invoking `iteratee` for each element. * The `iteratee` is bound to `thisArg` and invoked with three arguments: * (value, index|key, collection). Iteratee functions may exit iteration early * by explicitly returning `false`. * * **Note:** As with other "Collections" methods, objects with a "length" property * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn` * may be used for object iteration. * * @static * @memberOf _ * @alias each * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {Array|Object|string} Returns `collection`. * @example * * _([1, 2]).forEach(function(n) { * console.log(n); * }).value(); * // => logs each value from left to right and returns the array * * _.forEach({ 'a': 1, 'b': 2 }, function(n, key) { * console.log(n, key); * }); * // => logs each value-key pair and returns the object (iteration order is not guaranteed) */ var forEach = createForEach(arrayEach, baseEach); module.exports = forEach; },{"320":320,"336":336,"382":382}],304:[function(_dereq_,module,exports){ var createAggregator = _dereq_(373); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Creates an object composed of keys generated from the results of running * each element of `collection` through `iteratee`. The corresponding value * of each key is an array of the elements responsible for generating the key. * The `iteratee` is bound to `thisArg` and invoked with three arguments: * (value, index|key, collection). * * If a property name is provided for `iteratee` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `iteratee` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [iteratee=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {Object} Returns the composed aggregate object. * @example * * _.groupBy([4.2, 6.1, 6.4], function(n) { * return Math.floor(n); * }); * // => { '4': [4.2], '6': [6.1, 6.4] } * * _.groupBy([4.2, 6.1, 6.4], function(n) { * return this.floor(n); * }, Math); * // => { '4': [4.2], '6': [6.1, 6.4] } * * // using the `_.property` callback shorthand * _.groupBy(['one', 'two', 'three'], 'length'); * // => { '3': ['one', 'two'], '5': ['three'] } */ var groupBy = createAggregator(function(result, value, key) { if (hasOwnProperty.call(result, key)) { result[key].push(value); } else { result[key] = [value]; } }); module.exports = groupBy; },{"373":373}],305:[function(_dereq_,module,exports){ var arrayMap = _dereq_(323), baseCallback = _dereq_(329), baseMap = _dereq_(351), isArray = _dereq_(422); /** * Creates an array of values by running each element in `collection` through * `iteratee`. The `iteratee` is bound to `thisArg` and invoked with three * arguments: (value, index|key, collection). * * If a property name is provided for `iteratee` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `iteratee` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * Many lodash methods are guarded to work as iteratees for methods like * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. * * The guarded methods are: * `ary`, `callback`, `chunk`, `clone`, `create`, `curry`, `curryRight`, * `drop`, `dropRight`, `every`, `fill`, `flatten`, `invert`, `max`, `min`, * `parseInt`, `slice`, `sortBy`, `take`, `takeRight`, `template`, `trim`, * `trimLeft`, `trimRight`, `trunc`, `random`, `range`, `sample`, `some`, * `sum`, `uniq`, and `words` * * @static * @memberOf _ * @alias collect * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [iteratee=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {Array} Returns the new mapped array. * @example * * function timesThree(n) { * return n * 3; * } * * _.map([1, 2], timesThree); * // => [3, 6] * * _.map({ 'a': 1, 'b': 2 }, timesThree); * // => [3, 6] (iteration order is not guaranteed) * * var users = [ * { 'user': 'barney' }, * { 'user': 'fred' } * ]; * * // using the `_.property` callback shorthand * _.map(users, 'user'); * // => ['barney', 'fred'] */ function map(collection, iteratee, thisArg) { var func = isArray(collection) ? arrayMap : baseMap; iteratee = baseCallback(iteratee, thisArg, 3); return func(collection, iteratee); } module.exports = map; },{"323":323,"329":329,"351":351,"422":422}],306:[function(_dereq_,module,exports){ var arrayReduce = _dereq_(325), baseEach = _dereq_(336), createReduce = _dereq_(385); /** * Reduces `collection` to a value which is the accumulated result of running * each element in `collection` through `iteratee`, where each successive * invocation is supplied the return value of the previous. If `accumulator` * is not provided the first element of `collection` is used as the initial * value. The `iteratee` is bound to `thisArg` and invoked with four arguments: * (accumulator, value, index|key, collection). * * Many lodash methods are guarded to work as iteratees for methods like * `_.reduce`, `_.reduceRight`, and `_.transform`. * * The guarded methods are: * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `sortByAll`, * and `sortByOrder` * * @static * @memberOf _ * @alias foldl, inject * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @param {*} [accumulator] The initial value. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {*} Returns the accumulated value. * @example * * _.reduce([1, 2], function(total, n) { * return total + n; * }); * // => 3 * * _.reduce({ 'a': 1, 'b': 2 }, function(result, n, key) { * result[key] = n * 3; * return result; * }, {}); * // => { 'a': 3, 'b': 6 } (iteration order is not guaranteed) */ var reduce = createReduce(arrayReduce, baseEach); module.exports = reduce; },{"325":325,"336":336,"385":385}],307:[function(_dereq_,module,exports){ var arrayFilter = _dereq_(322), baseCallback = _dereq_(329), baseFilter = _dereq_(338), isArray = _dereq_(422); /** * The opposite of `_.filter`; this method returns the elements of `collection` * that `predicate` does **not** return truthy for. * * @static * @memberOf _ * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {Array} Returns the new filtered array. * @example * * _.reject([1, 2, 3, 4], function(n) { * return n % 2 == 0; * }); * // => [1, 3] * * var users = [ * { 'user': 'barney', 'age': 36, 'active': false }, * { 'user': 'fred', 'age': 40, 'active': true } * ]; * * // using the `_.matches` callback shorthand * _.pluck(_.reject(users, { 'age': 40, 'active': true }), 'user'); * // => ['barney'] * * // using the `_.matchesProperty` callback shorthand * _.pluck(_.reject(users, 'active', false), 'user'); * // => ['fred'] * * // using the `_.property` callback shorthand * _.pluck(_.reject(users, 'active'), 'user'); * // => ['barney'] */ function reject(collection, predicate, thisArg) { var func = isArray(collection) ? arrayFilter : baseFilter; predicate = baseCallback(predicate, thisArg, 3); return func(collection, function(value, index, collection) { return !predicate(value, index, collection); }); } module.exports = reject; },{"322":322,"329":329,"338":338,"422":422}],308:[function(_dereq_,module,exports){ var getLength = _dereq_(392), isLength = _dereq_(404), keys = _dereq_(433); /** * Gets the size of `collection` by returning its length for array-like * values or the number of own enumerable properties for objects. * * @static * @memberOf _ * @category Collection * @param {Array|Object|string} collection The collection to inspect. * @returns {number} Returns the size of `collection`. * @example * * _.size([1, 2, 3]); * // => 3 * * _.size({ 'a': 1, 'b': 2 }); * // => 2 * * _.size('pebbles'); * // => 7 */ function size(collection) { var length = collection ? getLength(collection) : 0; return isLength(length) ? length : keys(collection).length; } module.exports = size; },{"392":392,"404":404,"433":433}],309:[function(_dereq_,module,exports){ var arraySome = _dereq_(326), baseCallback = _dereq_(329), baseSome = _dereq_(361), isArray = _dereq_(422), isIterateeCall = _dereq_(401); /** * Checks if `predicate` returns truthy for **any** element of `collection`. * The function returns as soon as it finds a passing value and does not iterate * over the entire collection. The predicate is bound to `thisArg` and invoked * with three arguments: (value, index|key, collection). * * If a property name is provided for `predicate` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `predicate` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @alias any * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {boolean} Returns `true` if any element passes the predicate check, * else `false`. * @example * * _.some([null, 0, 'yes', false], Boolean); * // => true * * var users = [ * { 'user': 'barney', 'active': true }, * { 'user': 'fred', 'active': false } * ]; * * // using the `_.matches` callback shorthand * _.some(users, { 'user': 'barney', 'active': false }); * // => false * * // using the `_.matchesProperty` callback shorthand * _.some(users, 'active', false); * // => true * * // using the `_.property` callback shorthand * _.some(users, 'active'); * // => true */ function some(collection, predicate, thisArg) { var func = isArray(collection) ? arraySome : baseSome; if (thisArg && isIterateeCall(collection, predicate, thisArg)) { predicate = undefined; } if (typeof predicate != 'function' || thisArg !== undefined) { predicate = baseCallback(predicate, thisArg, 3); } return func(collection, predicate); } module.exports = some; },{"326":326,"329":329,"361":361,"401":401,"422":422}],310:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseMap = _dereq_(351), baseSortBy = _dereq_(362), compareAscending = _dereq_(370), isIterateeCall = _dereq_(401); /** * Creates an array of elements, sorted in ascending order by the results of * running each element in a collection through `iteratee`. This method performs * a stable sort, that is, it preserves the original sort order of equal elements. * The `iteratee` is bound to `thisArg` and invoked with three arguments: * (value, index|key, collection). * * If a property name is provided for `iteratee` the created `_.property` * style callback returns the property value of the given element. * * If a value is also provided for `thisArg` the created `_.matchesProperty` * style callback returns `true` for elements that have a matching property * value, else `false`. * * If an object is provided for `iteratee` the created `_.matches` style * callback returns `true` for elements that have the properties of the given * object, else `false`. * * @static * @memberOf _ * @category Collection * @param {Array|Object|string} collection The collection to iterate over. * @param {Function|Object|string} [iteratee=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {Array} Returns the new sorted array. * @example * * _.sortBy([1, 2, 3], function(n) { * return Math.sin(n); * }); * // => [3, 1, 2] * * _.sortBy([1, 2, 3], function(n) { * return this.sin(n); * }, Math); * // => [3, 1, 2] * * var users = [ * { 'user': 'fred' }, * { 'user': 'pebbles' }, * { 'user': 'barney' } * ]; * * // using the `_.property` callback shorthand * _.pluck(_.sortBy(users, 'user'), 'user'); * // => ['barney', 'fred', 'pebbles'] */ function sortBy(collection, iteratee, thisArg) { if (collection == null) { return []; } if (thisArg && isIterateeCall(collection, iteratee, thisArg)) { iteratee = undefined; } var index = -1; iteratee = baseCallback(iteratee, thisArg, 3); var result = baseMap(collection, function(value, key, collection) { return { 'criteria': iteratee(value, key, collection), 'index': ++index, 'value': value }; }); return baseSortBy(result, compareAscending); } module.exports = sortBy; },{"329":329,"351":351,"362":362,"370":370,"401":401}],311:[function(_dereq_,module,exports){ var getNative = _dereq_(394); /* Native method references for those with the same name as other `lodash` methods. */ var nativeNow = getNative(Date, 'now'); /** * Gets the number of milliseconds that have elapsed since the Unix epoch * (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ * @category Date * @example * * _.defer(function(stamp) { * console.log(_.now() - stamp); * }, _.now()); * // => logs the number of milliseconds it took for the deferred function to be invoked */ var now = nativeNow || function() { return new Date().getTime(); }; module.exports = now; },{"394":394}],312:[function(_dereq_,module,exports){ var createWrapper = _dereq_(386), replaceHolders = _dereq_(413), restParam = _dereq_(315); /** Used to compose bitmasks for wrapper metadata. */ var BIND_FLAG = 1, PARTIAL_FLAG = 32; /** * Creates a function that invokes `func` with the `this` binding of `thisArg` * and prepends any additional `_.bind` arguments to those provided to the * bound function. * * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, * may be used as a placeholder for partially applied arguments. * * **Note:** Unlike native `Function#bind` this method does not set the "length" * property of bound functions. * * @static * @memberOf _ * @category Function * @param {Function} func The function to bind. * @param {*} thisArg The `this` binding of `func`. * @param {...*} [partials] The arguments to be partially applied. * @returns {Function} Returns the new bound function. * @example * * var greet = function(greeting, punctuation) { * return greeting + ' ' + this.user + punctuation; * }; * * var object = { 'user': 'fred' }; * * var bound = _.bind(greet, object, 'hi'); * bound('!'); * // => 'hi fred!' * * // using placeholders * var bound = _.bind(greet, object, _, '!'); * bound('hi'); * // => 'hi fred!' */ var bind = restParam(function(func, thisArg, partials) { var bitmask = BIND_FLAG; if (partials.length) { var holders = replaceHolders(partials, bind.placeholder); bitmask |= PARTIAL_FLAG; } return createWrapper(func, bitmask, thisArg, partials, holders); }); // Assign default placeholders. bind.placeholder = {}; module.exports = bind; },{"315":315,"386":386,"413":413}],313:[function(_dereq_,module,exports){ var isObject = _dereq_(426), now = _dereq_(311); /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates a debounced function that delays invoking `func` until after `wait` * milliseconds have elapsed since the last time the debounced function was * invoked. The debounced function comes with a `cancel` method to cancel * delayed invocations. Provide an options object to indicate that `func` * should be invoked on the leading and/or trailing edge of the `wait` timeout. * Subsequent calls to the debounced function return the result of the last * `func` invocation. * * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked * on the trailing edge of the timeout only if the the debounced function is * invoked more than once during the `wait` timeout. * * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation) * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ * @category Function * @param {Function} func The function to debounce. * @param {number} [wait=0] The number of milliseconds to delay. * @param {Object} [options] The options object. * @param {boolean} [options.leading=false] Specify invoking on the leading * edge of the timeout. * @param {number} [options.maxWait] The maximum time `func` is allowed to be * delayed before it's invoked. * @param {boolean} [options.trailing=true] Specify invoking on the trailing * edge of the timeout. * @returns {Function} Returns the new debounced function. * @example * * // avoid costly calculations while the window size is in flux * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); * * // invoke `sendMail` when the click event is fired, debouncing subsequent calls * jQuery('#postbox').on('click', _.debounce(sendMail, 300, { * 'leading': true, * 'trailing': false * })); * * // ensure `batchLog` is invoked once after 1 second of debounced calls * var source = new EventSource('/stream'); * jQuery(source).on('message', _.debounce(batchLog, 250, { * 'maxWait': 1000 * })); * * // cancel a debounced call * var todoChanges = _.debounce(batchLog, 1000); * Object.observe(models.todo, todoChanges); * * Object.observe(models, function(changes) { * if (_.find(changes, { 'user': 'todo', 'type': 'delete'})) { * todoChanges.cancel(); * } * }, ['delete']); * * // ...at some point `models.todo` is changed * models.todo.completed = true; * * // ...before 1 second has passed `models.todo` is deleted * // which cancels the debounced `todoChanges` call * delete models.todo; */ function debounce(func, wait, options) { var args, maxTimeoutId, result, stamp, thisArg, timeoutId, trailingCall, lastCalled = 0, maxWait = false, trailing = true; if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } wait = wait < 0 ? 0 : (+wait || 0); if (options === true) { var leading = true; trailing = false; } else if (isObject(options)) { leading = !!options.leading; maxWait = 'maxWait' in options && nativeMax(+options.maxWait || 0, wait); trailing = 'trailing' in options ? !!options.trailing : trailing; } function cancel() { if (timeoutId) { clearTimeout(timeoutId); } if (maxTimeoutId) { clearTimeout(maxTimeoutId); } lastCalled = 0; maxTimeoutId = timeoutId = trailingCall = undefined; } function complete(isCalled, id) { if (id) { clearTimeout(id); } maxTimeoutId = timeoutId = trailingCall = undefined; if (isCalled) { lastCalled = now(); result = func.apply(thisArg, args); if (!timeoutId && !maxTimeoutId) { args = thisArg = undefined; } } } function delayed() { var remaining = wait - (now() - stamp); if (remaining <= 0 || remaining > wait) { complete(trailingCall, maxTimeoutId); } else { timeoutId = setTimeout(delayed, remaining); } } function maxDelayed() { complete(trailing, timeoutId); } function debounced() { args = arguments; stamp = now(); thisArg = this; trailingCall = trailing && (timeoutId || !leading); if (maxWait === false) { var leadingCall = leading && !timeoutId; } else { if (!maxTimeoutId && !leading) { lastCalled = stamp; } var remaining = maxWait - (stamp - lastCalled), isCalled = remaining <= 0 || remaining > maxWait; if (isCalled) { if (maxTimeoutId) { maxTimeoutId = clearTimeout(maxTimeoutId); } lastCalled = stamp; result = func.apply(thisArg, args); } else if (!maxTimeoutId) { maxTimeoutId = setTimeout(maxDelayed, remaining); } } if (isCalled && timeoutId) { timeoutId = clearTimeout(timeoutId); } else if (!timeoutId && wait !== maxWait) { timeoutId = setTimeout(delayed, wait); } if (leadingCall) { isCalled = true; result = func.apply(thisArg, args); } if (isCalled && !timeoutId && !maxTimeoutId) { args = thisArg = undefined; } return result; } debounced.cancel = cancel; return debounced; } module.exports = debounce; },{"311":311,"426":426}],314:[function(_dereq_,module,exports){ var baseDelay = _dereq_(334), restParam = _dereq_(315); /** * Defers invoking the `func` until the current call stack has cleared. Any * additional arguments are provided to `func` when it's invoked. * * @static * @memberOf _ * @category Function * @param {Function} func The function to defer. * @param {...*} [args] The arguments to invoke the function with. * @returns {number} Returns the timer id. * @example * * _.defer(function(text) { * console.log(text); * }, 'deferred'); * // logs 'deferred' after one or more milliseconds */ var defer = restParam(function(func, args) { return baseDelay(func, 1, args); }); module.exports = defer; },{"315":315,"334":334}],315:[function(_dereq_,module,exports){ /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates a function that invokes `func` with the `this` binding of the * created function and arguments from `start` and beyond provided as an array. * * **Note:** This method is based on the [rest parameter](https://developer.mozilla.org/Web/JavaScript/Reference/Functions/rest_parameters). * * @static * @memberOf _ * @category Function * @param {Function} func The function to apply a rest parameter to. * @param {number} [start=func.length-1] The start position of the rest parameter. * @returns {Function} Returns the new function. * @example * * var say = _.restParam(function(what, names) { * return what + ' ' + _.initial(names).join(', ') + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); * }); * * say('hello', 'fred', 'barney', 'pebbles'); * // => 'hello fred, barney, & pebbles' */ function restParam(func, start) { if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } start = nativeMax(start === undefined ? (func.length - 1) : (+start || 0), 0); return function() { var args = arguments, index = -1, length = nativeMax(args.length - start, 0), rest = Array(length); while (++index < length) { rest[index] = args[start + index]; } switch (start) { case 0: return func.call(this, rest); case 1: return func.call(this, args[0], rest); case 2: return func.call(this, args[0], args[1], rest); } var otherArgs = Array(start + 1); index = -1; while (++index < start) { otherArgs[index] = args[index]; } otherArgs[start] = rest; return func.apply(this, otherArgs); }; } module.exports = restParam; },{}],316:[function(_dereq_,module,exports){ var baseCreate = _dereq_(333), baseLodash = _dereq_(350); /** Used as references for `-Infinity` and `Infinity`. */ var POSITIVE_INFINITY = Number.POSITIVE_INFINITY; /** * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. * * @private * @param {*} value The value to wrap. */ function LazyWrapper(value) { this.__wrapped__ = value; this.__actions__ = []; this.__dir__ = 1; this.__filtered__ = false; this.__iteratees__ = []; this.__takeCount__ = POSITIVE_INFINITY; this.__views__ = []; } LazyWrapper.prototype = baseCreate(baseLodash.prototype); LazyWrapper.prototype.constructor = LazyWrapper; module.exports = LazyWrapper; },{"333":333,"350":350}],317:[function(_dereq_,module,exports){ var baseCreate = _dereq_(333), baseLodash = _dereq_(350); /** * The base constructor for creating `lodash` wrapper objects. * * @private * @param {*} value The value to wrap. * @param {boolean} [chainAll] Enable chaining for all wrapper methods. * @param {Array} [actions=[]] Actions to peform to resolve the unwrapped value. */ function LodashWrapper(value, chainAll, actions) { this.__wrapped__ = value; this.__actions__ = actions || []; this.__chain__ = !!chainAll; } LodashWrapper.prototype = baseCreate(baseLodash.prototype); LodashWrapper.prototype.constructor = LodashWrapper; module.exports = LodashWrapper; },{"333":333,"350":350}],318:[function(_dereq_,module,exports){ (function (global){ var cachePush = _dereq_(369), getNative = _dereq_(394); /** Native method references. */ var Set = getNative(global, 'Set'); /* Native method references for those with the same name as other `lodash` methods. */ var nativeCreate = getNative(Object, 'create'); /** * * Creates a cache object to store unique values. * * @private * @param {Array} [values] The values to cache. */ function SetCache(values) { var length = values ? values.length : 0; this.data = { 'hash': nativeCreate(null), 'set': new Set }; while (length--) { this.push(values[length]); } } // Add functions to the `Set` cache. SetCache.prototype.push = cachePush; module.exports = SetCache; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"369":369,"394":394}],319:[function(_dereq_,module,exports){ /** * Copies the values of `source` to `array`. * * @private * @param {Array} source The array to copy values from. * @param {Array} [array=[]] The array to copy values to. * @returns {Array} Returns `array`. */ function arrayCopy(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } module.exports = arrayCopy; },{}],320:[function(_dereq_,module,exports){ /** * A specialized version of `_.forEach` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns `array`. */ function arrayEach(array, iteratee) { var index = -1, length = array.length; while (++index < length) { if (iteratee(array[index], index, array) === false) { break; } } return array; } module.exports = arrayEach; },{}],321:[function(_dereq_,module,exports){ /** * A specialized version of `_.every` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if all elements pass the predicate check, * else `false`. */ function arrayEvery(array, predicate) { var index = -1, length = array.length; while (++index < length) { if (!predicate(array[index], index, array)) { return false; } } return true; } module.exports = arrayEvery; },{}],322:[function(_dereq_,module,exports){ /** * A specialized version of `_.filter` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {Array} Returns the new filtered array. */ function arrayFilter(array, predicate) { var index = -1, length = array.length, resIndex = -1, result = []; while (++index < length) { var value = array[index]; if (predicate(value, index, array)) { result[++resIndex] = value; } } return result; } module.exports = arrayFilter; },{}],323:[function(_dereq_,module,exports){ /** * A specialized version of `_.map` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function arrayMap(array, iteratee) { var index = -1, length = array.length, result = Array(length); while (++index < length) { result[index] = iteratee(array[index], index, array); } return result; } module.exports = arrayMap; },{}],324:[function(_dereq_,module,exports){ /** * Appends the elements of `values` to `array`. * * @private * @param {Array} array The array to modify. * @param {Array} values The values to append. * @returns {Array} Returns `array`. */ function arrayPush(array, values) { var index = -1, length = values.length, offset = array.length; while (++index < length) { array[offset + index] = values[index]; } return array; } module.exports = arrayPush; },{}],325:[function(_dereq_,module,exports){ /** * A specialized version of `_.reduce` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} [accumulator] The initial value. * @param {boolean} [initFromArray] Specify using the first element of `array` * as the initial value. * @returns {*} Returns the accumulated value. */ function arrayReduce(array, iteratee, accumulator, initFromArray) { var index = -1, length = array.length; if (initFromArray && length) { accumulator = array[++index]; } while (++index < length) { accumulator = iteratee(accumulator, array[index], index, array); } return accumulator; } module.exports = arrayReduce; },{}],326:[function(_dereq_,module,exports){ /** * A specialized version of `_.some` for arrays without support for callback * shorthands and `this` binding. * * @private * @param {Array} array The array to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if any element passes the predicate check, * else `false`. */ function arraySome(array, predicate) { var index = -1, length = array.length; while (++index < length) { if (predicate(array[index], index, array)) { return true; } } return false; } module.exports = arraySome; },{}],327:[function(_dereq_,module,exports){ var keys = _dereq_(433); /** * A specialized version of `_.assign` for customizing assigned values without * support for argument juggling, multiple sources, and `this` binding `customizer` * functions. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @param {Function} customizer The function to customize assigned values. * @returns {Object} Returns `object`. */ function assignWith(object, source, customizer) { var index = -1, props = keys(source), length = props.length; while (++index < length) { var key = props[index], value = object[key], result = customizer(value, source[key], key, object, source); if ((result === result ? (result !== value) : (value === value)) || (value === undefined && !(key in object))) { object[key] = result; } } return object; } module.exports = assignWith; },{"433":433}],328:[function(_dereq_,module,exports){ var baseCopy = _dereq_(332), keys = _dereq_(433); /** * The base implementation of `_.assign` without support for argument juggling, * multiple sources, and `customizer` functions. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @returns {Object} Returns `object`. */ function baseAssign(object, source) { return source == null ? object : baseCopy(source, keys(source), object); } module.exports = baseAssign; },{"332":332,"433":433}],329:[function(_dereq_,module,exports){ var baseMatches = _dereq_(352), baseMatchesProperty = _dereq_(353), bindCallback = _dereq_(366), identity = _dereq_(441), property = _dereq_(443); /** * The base implementation of `_.callback` which supports specifying the * number of arguments to provide to `func`. * * @private * @param {*} [func=_.identity] The value to convert to a callback. * @param {*} [thisArg] The `this` binding of `func`. * @param {number} [argCount] The number of arguments to provide to `func`. * @returns {Function} Returns the callback. */ function baseCallback(func, thisArg, argCount) { var type = typeof func; if (type == 'function') { return thisArg === undefined ? func : bindCallback(func, thisArg, argCount); } if (func == null) { return identity; } if (type == 'object') { return baseMatches(func); } return thisArg === undefined ? property(func) : baseMatchesProperty(func, thisArg); } module.exports = baseCallback; },{"352":352,"353":353,"366":366,"441":441,"443":443}],330:[function(_dereq_,module,exports){ var arrayCopy = _dereq_(319), arrayEach = _dereq_(320), baseAssign = _dereq_(328), baseForOwn = _dereq_(344), initCloneArray = _dereq_(396), initCloneByTag = _dereq_(397), initCloneObject = _dereq_(398), isArray = _dereq_(422), isObject = _dereq_(426); /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', funcTag = '[object Function]', mapTag = '[object Map]', numberTag = '[object Number]', objectTag = '[object Object]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', weakMapTag = '[object WeakMap]'; var arrayBufferTag = '[object ArrayBuffer]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** Used to identify `toStringTag` values supported by `_.clone`. */ var cloneableTags = {}; cloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[stringTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; cloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[mapTag] = cloneableTags[setTag] = cloneableTags[weakMapTag] = false; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * The base implementation of `_.clone` without support for argument juggling * and `this` binding `customizer` functions. * * @private * @param {*} value The value to clone. * @param {boolean} [isDeep] Specify a deep clone. * @param {Function} [customizer] The function to customize cloning values. * @param {string} [key] The key of `value`. * @param {Object} [object] The object `value` belongs to. * @param {Array} [stackA=[]] Tracks traversed source objects. * @param {Array} [stackB=[]] Associates clones with source counterparts. * @returns {*} Returns the cloned value. */ function baseClone(value, isDeep, customizer, key, object, stackA, stackB) { var result; if (customizer) { result = object ? customizer(value, key, object) : customizer(value); } if (result !== undefined) { return result; } if (!isObject(value)) { return value; } var isArr = isArray(value); if (isArr) { result = initCloneArray(value); if (!isDeep) { return arrayCopy(value, result); } } else { var tag = objToString.call(value), isFunc = tag == funcTag; if (tag == objectTag || tag == argsTag || (isFunc && !object)) { result = initCloneObject(isFunc ? {} : value); if (!isDeep) { return baseAssign(result, value); } } else { return cloneableTags[tag] ? initCloneByTag(value, tag, isDeep) : (object ? value : {}); } } // Check for circular references and return its corresponding clone. stackA || (stackA = []); stackB || (stackB = []); var length = stackA.length; while (length--) { if (stackA[length] == value) { return stackB[length]; } } // Add the source value to the stack of traversed objects and associate it with its clone. stackA.push(value); stackB.push(result); // Recursively populate clone (susceptible to call stack limits). (isArr ? arrayEach : baseForOwn)(value, function(subValue, key) { result[key] = baseClone(subValue, isDeep, customizer, key, value, stackA, stackB); }); return result; } module.exports = baseClone; },{"319":319,"320":320,"328":328,"344":344,"396":396,"397":397,"398":398,"422":422,"426":426}],331:[function(_dereq_,module,exports){ /** * The base implementation of `compareAscending` which compares values and * sorts them in ascending order without guaranteeing a stable sort. * * @private * @param {*} value The value to compare. * @param {*} other The other value to compare. * @returns {number} Returns the sort order indicator for `value`. */ function baseCompareAscending(value, other) { if (value !== other) { var valIsNull = value === null, valIsUndef = value === undefined, valIsReflexive = value === value; var othIsNull = other === null, othIsUndef = other === undefined, othIsReflexive = other === other; if ((value > other && !othIsNull) || !valIsReflexive || (valIsNull && !othIsUndef && othIsReflexive) || (valIsUndef && othIsReflexive)) { return 1; } if ((value < other && !valIsNull) || !othIsReflexive || (othIsNull && !valIsUndef && valIsReflexive) || (othIsUndef && valIsReflexive)) { return -1; } } return 0; } module.exports = baseCompareAscending; },{}],332:[function(_dereq_,module,exports){ /** * Copies properties of `source` to `object`. * * @private * @param {Object} source The object to copy properties from. * @param {Array} props The property names to copy. * @param {Object} [object={}] The object to copy properties to. * @returns {Object} Returns `object`. */ function baseCopy(source, props, object) { object || (object = {}); var index = -1, length = props.length; while (++index < length) { var key = props[index]; object[key] = source[key]; } return object; } module.exports = baseCopy; },{}],333:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** * The base implementation of `_.create` without support for assigning * properties to the created object. * * @private * @param {Object} prototype The object to inherit from. * @returns {Object} Returns the new object. */ var baseCreate = (function() { function object() {} return function(prototype) { if (isObject(prototype)) { object.prototype = prototype; var result = new object; object.prototype = undefined; } return result || {}; }; }()); module.exports = baseCreate; },{"426":426}],334:[function(_dereq_,module,exports){ /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; /** * The base implementation of `_.delay` and `_.defer` which accepts an index * of where to slice the arguments to provide to `func`. * * @private * @param {Function} func The function to delay. * @param {number} wait The number of milliseconds to delay invocation. * @param {Object} args The arguments provide to `func`. * @returns {number} Returns the timer id. */ function baseDelay(func, wait, args) { if (typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } return setTimeout(function() { func.apply(undefined, args); }, wait); } module.exports = baseDelay; },{}],335:[function(_dereq_,module,exports){ var baseIndexOf = _dereq_(346), cacheIndexOf = _dereq_(368), createCache = _dereq_(378); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; /** * The base implementation of `_.difference` which accepts a single array * of values to exclude. * * @private * @param {Array} array The array to inspect. * @param {Array} values The values to exclude. * @returns {Array} Returns the new array of filtered values. */ function baseDifference(array, values) { var length = array ? array.length : 0, result = []; if (!length) { return result; } var index = -1, indexOf = baseIndexOf, isCommon = true, cache = (isCommon && values.length >= LARGE_ARRAY_SIZE) ? createCache(values) : null, valuesLength = values.length; if (cache) { indexOf = cacheIndexOf; isCommon = false; values = cache; } outer: while (++index < length) { var value = array[index]; if (isCommon && value === value) { var valuesIndex = valuesLength; while (valuesIndex--) { if (values[valuesIndex] === value) { continue outer; } } result.push(value); } else if (indexOf(values, value, 0) < 0) { result.push(value); } } return result; } module.exports = baseDifference; },{"346":346,"368":368,"378":378}],336:[function(_dereq_,module,exports){ var baseForOwn = _dereq_(344), createBaseEach = _dereq_(375); /** * The base implementation of `_.forEach` without support for callback * shorthands and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array|Object|string} Returns `collection`. */ var baseEach = createBaseEach(baseForOwn); module.exports = baseEach; },{"344":344,"375":375}],337:[function(_dereq_,module,exports){ var baseEach = _dereq_(336); /** * The base implementation of `_.every` without support for callback * shorthands and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if all elements pass the predicate check, * else `false` */ function baseEvery(collection, predicate) { var result = true; baseEach(collection, function(value, index, collection) { result = !!predicate(value, index, collection); return result; }); return result; } module.exports = baseEvery; },{"336":336}],338:[function(_dereq_,module,exports){ var baseEach = _dereq_(336); /** * The base implementation of `_.filter` without support for callback * shorthands and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {Array} Returns the new filtered array. */ function baseFilter(collection, predicate) { var result = []; baseEach(collection, function(value, index, collection) { if (predicate(value, index, collection)) { result.push(value); } }); return result; } module.exports = baseFilter; },{"336":336}],339:[function(_dereq_,module,exports){ /** * The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`, * without support for callback shorthands and `this` binding, which iterates * over `collection` using the provided `eachFunc`. * * @private * @param {Array|Object|string} collection The collection to search. * @param {Function} predicate The function invoked per iteration. * @param {Function} eachFunc The function to iterate over `collection`. * @param {boolean} [retKey] Specify returning the key of the found element * instead of the element itself. * @returns {*} Returns the found element or its key, else `undefined`. */ function baseFind(collection, predicate, eachFunc, retKey) { var result; eachFunc(collection, function(value, key, collection) { if (predicate(value, key, collection)) { result = retKey ? key : value; return false; } }); return result; } module.exports = baseFind; },{}],340:[function(_dereq_,module,exports){ /** * The base implementation of `_.findIndex` and `_.findLastIndex` without * support for callback shorthands and `this` binding. * * @private * @param {Array} array The array to search. * @param {Function} predicate The function invoked per iteration. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {number} Returns the index of the matched value, else `-1`. */ function baseFindIndex(array, predicate, fromRight) { var length = array.length, index = fromRight ? length : -1; while ((fromRight ? index-- : ++index < length)) { if (predicate(array[index], index, array)) { return index; } } return -1; } module.exports = baseFindIndex; },{}],341:[function(_dereq_,module,exports){ var arrayPush = _dereq_(324), isArguments = _dereq_(421), isArray = _dereq_(422), isArrayLike = _dereq_(399), isObjectLike = _dereq_(405); /** * The base implementation of `_.flatten` with added support for restricting * flattening and specifying the start index. * * @private * @param {Array} array The array to flatten. * @param {boolean} [isDeep] Specify a deep flatten. * @param {boolean} [isStrict] Restrict flattening to arrays-like objects. * @param {Array} [result=[]] The initial result value. * @returns {Array} Returns the new flattened array. */ function baseFlatten(array, isDeep, isStrict, result) { result || (result = []); var index = -1, length = array.length; while (++index < length) { var value = array[index]; if (isObjectLike(value) && isArrayLike(value) && (isStrict || isArray(value) || isArguments(value))) { if (isDeep) { // Recursively flatten arrays (susceptible to call stack limits). baseFlatten(value, isDeep, isStrict, result); } else { arrayPush(result, value); } } else if (!isStrict) { result[result.length] = value; } } return result; } module.exports = baseFlatten; },{"324":324,"399":399,"405":405,"421":421,"422":422}],342:[function(_dereq_,module,exports){ var createBaseFor = _dereq_(376); /** * The base implementation of `baseForIn` and `baseForOwn` which iterates * over `object` properties returned by `keysFunc` invoking `iteratee` for * each property. Iteratee functions may exit iteration early by explicitly * returning `false`. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {Function} keysFunc The function to get the keys of `object`. * @returns {Object} Returns `object`. */ var baseFor = createBaseFor(); module.exports = baseFor; },{"376":376}],343:[function(_dereq_,module,exports){ var baseFor = _dereq_(342), keysIn = _dereq_(434); /** * The base implementation of `_.forIn` without support for callback * shorthands and `this` binding. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Object} Returns `object`. */ function baseForIn(object, iteratee) { return baseFor(object, iteratee, keysIn); } module.exports = baseForIn; },{"342":342,"434":434}],344:[function(_dereq_,module,exports){ var baseFor = _dereq_(342), keys = _dereq_(433); /** * The base implementation of `_.forOwn` without support for callback * shorthands and `this` binding. * * @private * @param {Object} object The object to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Object} Returns `object`. */ function baseForOwn(object, iteratee) { return baseFor(object, iteratee, keys); } module.exports = baseForOwn; },{"342":342,"433":433}],345:[function(_dereq_,module,exports){ var toObject = _dereq_(417); /** * The base implementation of `get` without support for string paths * and default values. * * @private * @param {Object} object The object to query. * @param {Array} path The path of the property to get. * @param {string} [pathKey] The key representation of path. * @returns {*} Returns the resolved value. */ function baseGet(object, path, pathKey) { if (object == null) { return; } if (pathKey !== undefined && pathKey in toObject(object)) { path = [pathKey]; } var index = 0, length = path.length; while (object != null && index < length) { object = object[path[index++]]; } return (index && index == length) ? object : undefined; } module.exports = baseGet; },{"417":417}],346:[function(_dereq_,module,exports){ var indexOfNaN = _dereq_(395); /** * The base implementation of `_.indexOf` without support for binary searches. * * @private * @param {Array} array The array to search. * @param {*} value The value to search for. * @param {number} fromIndex The index to search from. * @returns {number} Returns the index of the matched value, else `-1`. */ function baseIndexOf(array, value, fromIndex) { if (value !== value) { return indexOfNaN(array, fromIndex); } var index = fromIndex - 1, length = array.length; while (++index < length) { if (array[index] === value) { return index; } } return -1; } module.exports = baseIndexOf; },{"395":395}],347:[function(_dereq_,module,exports){ var baseIsEqualDeep = _dereq_(348), isObject = _dereq_(426), isObjectLike = _dereq_(405); /** * The base implementation of `_.isEqual` without support for `this` binding * `customizer` functions. * * @private * @param {*} value The value to compare. * @param {*} other The other value to compare. * @param {Function} [customizer] The function to customize comparing values. * @param {boolean} [isLoose] Specify performing partial comparisons. * @param {Array} [stackA] Tracks traversed `value` objects. * @param {Array} [stackB] Tracks traversed `other` objects. * @returns {boolean} Returns `true` if the values are equivalent, else `false`. */ function baseIsEqual(value, other, customizer, isLoose, stackA, stackB) { if (value === other) { return true; } if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) { return value !== value && other !== other; } return baseIsEqualDeep(value, other, baseIsEqual, customizer, isLoose, stackA, stackB); } module.exports = baseIsEqual; },{"348":348,"405":405,"426":426}],348:[function(_dereq_,module,exports){ var equalArrays = _dereq_(387), equalByTag = _dereq_(388), equalObjects = _dereq_(389), isArray = _dereq_(422), isTypedArray = _dereq_(429); /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', objectTag = '[object Object]'; /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * A specialized version of `baseIsEqual` for arrays and objects which performs * deep comparisons and tracks traversed objects enabling objects with circular * references to be compared. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Function} [customizer] The function to customize comparing objects. * @param {boolean} [isLoose] Specify performing partial comparisons. * @param {Array} [stackA=[]] Tracks traversed `value` objects. * @param {Array} [stackB=[]] Tracks traversed `other` objects. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function baseIsEqualDeep(object, other, equalFunc, customizer, isLoose, stackA, stackB) { var objIsArr = isArray(object), othIsArr = isArray(other), objTag = arrayTag, othTag = arrayTag; if (!objIsArr) { objTag = objToString.call(object); if (objTag == argsTag) { objTag = objectTag; } else if (objTag != objectTag) { objIsArr = isTypedArray(object); } } if (!othIsArr) { othTag = objToString.call(other); if (othTag == argsTag) { othTag = objectTag; } else if (othTag != objectTag) { othIsArr = isTypedArray(other); } } var objIsObj = objTag == objectTag, othIsObj = othTag == objectTag, isSameTag = objTag == othTag; if (isSameTag && !(objIsArr || objIsObj)) { return equalByTag(object, other, objTag); } if (!isLoose) { var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); if (objIsWrapped || othIsWrapped) { return equalFunc(objIsWrapped ? object.value() : object, othIsWrapped ? other.value() : other, customizer, isLoose, stackA, stackB); } } if (!isSameTag) { return false; } // Assume cyclic values are equal. // For more information on detecting circular references see https://es5.github.io/#JO. stackA || (stackA = []); stackB || (stackB = []); var length = stackA.length; while (length--) { if (stackA[length] == object) { return stackB[length] == other; } } // Add `object` and `other` to the stack of traversed objects. stackA.push(object); stackB.push(other); var result = (objIsArr ? equalArrays : equalObjects)(object, other, equalFunc, customizer, isLoose, stackA, stackB); stackA.pop(); stackB.pop(); return result; } module.exports = baseIsEqualDeep; },{"387":387,"388":388,"389":389,"422":422,"429":429}],349:[function(_dereq_,module,exports){ var baseIsEqual = _dereq_(347), toObject = _dereq_(417); /** * The base implementation of `_.isMatch` without support for callback * shorthands and `this` binding. * * @private * @param {Object} object The object to inspect. * @param {Array} matchData The propery names, values, and compare flags to match. * @param {Function} [customizer] The function to customize comparing objects. * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ function baseIsMatch(object, matchData, customizer) { var index = matchData.length, length = index, noCustomizer = !customizer; if (object == null) { return !length; } object = toObject(object); while (index--) { var data = matchData[index]; if ((noCustomizer && data[2]) ? data[1] !== object[data[0]] : !(data[0] in object) ) { return false; } } while (++index < length) { data = matchData[index]; var key = data[0], objValue = object[key], srcValue = data[1]; if (noCustomizer && data[2]) { if (objValue === undefined && !(key in object)) { return false; } } else { var result = customizer ? customizer(objValue, srcValue, key) : undefined; if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true) : result)) { return false; } } } return true; } module.exports = baseIsMatch; },{"347":347,"417":417}],350:[function(_dereq_,module,exports){ /** * The function whose prototype all chaining wrappers inherit from. * * @private */ function baseLodash() { // No operation performed. } module.exports = baseLodash; },{}],351:[function(_dereq_,module,exports){ var baseEach = _dereq_(336), isArrayLike = _dereq_(399); /** * The base implementation of `_.map` without support for callback shorthands * and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @returns {Array} Returns the new mapped array. */ function baseMap(collection, iteratee) { var index = -1, result = isArrayLike(collection) ? Array(collection.length) : []; baseEach(collection, function(value, key, collection) { result[++index] = iteratee(value, key, collection); }); return result; } module.exports = baseMap; },{"336":336,"399":399}],352:[function(_dereq_,module,exports){ var baseIsMatch = _dereq_(349), getMatchData = _dereq_(393), toObject = _dereq_(417); /** * The base implementation of `_.matches` which does not clone `source`. * * @private * @param {Object} source The object of property values to match. * @returns {Function} Returns the new function. */ function baseMatches(source) { var matchData = getMatchData(source); if (matchData.length == 1 && matchData[0][2]) { var key = matchData[0][0], value = matchData[0][1]; return function(object) { if (object == null) { return false; } return object[key] === value && (value !== undefined || (key in toObject(object))); }; } return function(object) { return baseIsMatch(object, matchData); }; } module.exports = baseMatches; },{"349":349,"393":393,"417":417}],353:[function(_dereq_,module,exports){ var baseGet = _dereq_(345), baseIsEqual = _dereq_(347), baseSlice = _dereq_(360), isArray = _dereq_(422), isKey = _dereq_(402), isStrictComparable = _dereq_(406), last = _dereq_(293), toObject = _dereq_(417), toPath = _dereq_(418); /** * The base implementation of `_.matchesProperty` which does not clone `srcValue`. * * @private * @param {string} path The path of the property to get. * @param {*} srcValue The value to compare. * @returns {Function} Returns the new function. */ function baseMatchesProperty(path, srcValue) { var isArr = isArray(path), isCommon = isKey(path) && isStrictComparable(srcValue), pathKey = (path + ''); path = toPath(path); return function(object) { if (object == null) { return false; } var key = pathKey; object = toObject(object); if ((isArr || !isCommon) && !(key in object)) { object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); if (object == null) { return false; } key = last(path); object = toObject(object); } return object[key] === srcValue ? (srcValue !== undefined || (key in object)) : baseIsEqual(srcValue, object[key], undefined, true); }; } module.exports = baseMatchesProperty; },{"293":293,"345":345,"347":347,"360":360,"402":402,"406":406,"417":417,"418":418,"422":422}],354:[function(_dereq_,module,exports){ var arrayEach = _dereq_(320), baseMergeDeep = _dereq_(355), isArray = _dereq_(422), isArrayLike = _dereq_(399), isObject = _dereq_(426), isObjectLike = _dereq_(405), isTypedArray = _dereq_(429), keys = _dereq_(433); /** * The base implementation of `_.merge` without support for argument juggling, * multiple sources, and `this` binding `customizer` functions. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @param {Function} [customizer] The function to customize merged values. * @param {Array} [stackA=[]] Tracks traversed source objects. * @param {Array} [stackB=[]] Associates values with source counterparts. * @returns {Object} Returns `object`. */ function baseMerge(object, source, customizer, stackA, stackB) { if (!isObject(object)) { return object; } var isSrcArr = isArrayLike(source) && (isArray(source) || isTypedArray(source)), props = isSrcArr ? undefined : keys(source); arrayEach(props || source, function(srcValue, key) { if (props) { key = srcValue; srcValue = source[key]; } if (isObjectLike(srcValue)) { stackA || (stackA = []); stackB || (stackB = []); baseMergeDeep(object, source, key, baseMerge, customizer, stackA, stackB); } else { var value = object[key], result = customizer ? customizer(value, srcValue, key, object, source) : undefined, isCommon = result === undefined; if (isCommon) { result = srcValue; } if ((result !== undefined || (isSrcArr && !(key in object))) && (isCommon || (result === result ? (result !== value) : (value === value)))) { object[key] = result; } } }); return object; } module.exports = baseMerge; },{"320":320,"355":355,"399":399,"405":405,"422":422,"426":426,"429":429,"433":433}],355:[function(_dereq_,module,exports){ var arrayCopy = _dereq_(319), isArguments = _dereq_(421), isArray = _dereq_(422), isArrayLike = _dereq_(399), isPlainObject = _dereq_(427), isTypedArray = _dereq_(429), toPlainObject = _dereq_(430); /** * A specialized version of `baseMerge` for arrays and objects which performs * deep merges and tracks traversed objects enabling objects with circular * references to be merged. * * @private * @param {Object} object The destination object. * @param {Object} source The source object. * @param {string} key The key of the value to merge. * @param {Function} mergeFunc The function to merge values. * @param {Function} [customizer] The function to customize merged values. * @param {Array} [stackA=[]] Tracks traversed source objects. * @param {Array} [stackB=[]] Associates values with source counterparts. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function baseMergeDeep(object, source, key, mergeFunc, customizer, stackA, stackB) { var length = stackA.length, srcValue = source[key]; while (length--) { if (stackA[length] == srcValue) { object[key] = stackB[length]; return; } } var value = object[key], result = customizer ? customizer(value, srcValue, key, object, source) : undefined, isCommon = result === undefined; if (isCommon) { result = srcValue; if (isArrayLike(srcValue) && (isArray(srcValue) || isTypedArray(srcValue))) { result = isArray(value) ? value : (isArrayLike(value) ? arrayCopy(value) : []); } else if (isPlainObject(srcValue) || isArguments(srcValue)) { result = isArguments(value) ? toPlainObject(value) : (isPlainObject(value) ? value : {}); } else { isCommon = false; } } // Add the source value to the stack of traversed objects and associate // it with its merged value. stackA.push(srcValue); stackB.push(result); if (isCommon) { // Recursively merge objects and arrays (susceptible to call stack limits). object[key] = mergeFunc(result, srcValue, customizer, stackA, stackB); } else if (result === result ? (result !== value) : (value === value)) { object[key] = result; } } module.exports = baseMergeDeep; },{"319":319,"399":399,"421":421,"422":422,"427":427,"429":429,"430":430}],356:[function(_dereq_,module,exports){ /** * The base implementation of `_.property` without support for deep paths. * * @private * @param {string} key The key of the property to get. * @returns {Function} Returns the new function. */ function baseProperty(key) { return function(object) { return object == null ? undefined : object[key]; }; } module.exports = baseProperty; },{}],357:[function(_dereq_,module,exports){ var baseGet = _dereq_(345), toPath = _dereq_(418); /** * A specialized version of `baseProperty` which supports deep paths. * * @private * @param {Array|string} path The path of the property to get. * @returns {Function} Returns the new function. */ function basePropertyDeep(path) { var pathKey = (path + ''); path = toPath(path); return function(object) { return baseGet(object, path, pathKey); }; } module.exports = basePropertyDeep; },{"345":345,"418":418}],358:[function(_dereq_,module,exports){ /** * The base implementation of `_.reduce` and `_.reduceRight` without support * for callback shorthands and `this` binding, which iterates over `collection` * using the provided `eachFunc`. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} accumulator The initial value. * @param {boolean} initFromCollection Specify using the first or last element * of `collection` as the initial value. * @param {Function} eachFunc The function to iterate over `collection`. * @returns {*} Returns the accumulated value. */ function baseReduce(collection, iteratee, accumulator, initFromCollection, eachFunc) { eachFunc(collection, function(value, index, collection) { accumulator = initFromCollection ? (initFromCollection = false, value) : iteratee(accumulator, value, index, collection); }); return accumulator; } module.exports = baseReduce; },{}],359:[function(_dereq_,module,exports){ var identity = _dereq_(441), metaMap = _dereq_(408); /** * The base implementation of `setData` without support for hot loop detection. * * @private * @param {Function} func The function to associate metadata with. * @param {*} data The metadata. * @returns {Function} Returns `func`. */ var baseSetData = !metaMap ? identity : function(func, data) { metaMap.set(func, data); return func; }; module.exports = baseSetData; },{"408":408,"441":441}],360:[function(_dereq_,module,exports){ /** * The base implementation of `_.slice` without an iteratee call guard. * * @private * @param {Array} array The array to slice. * @param {number} [start=0] The start position. * @param {number} [end=array.length] The end position. * @returns {Array} Returns the slice of `array`. */ function baseSlice(array, start, end) { var index = -1, length = array.length; start = start == null ? 0 : (+start || 0); if (start < 0) { start = -start > length ? 0 : (length + start); } end = (end === undefined || end > length) ? length : (+end || 0); if (end < 0) { end += length; } length = start > end ? 0 : ((end - start) >>> 0); start >>>= 0; var result = Array(length); while (++index < length) { result[index] = array[index + start]; } return result; } module.exports = baseSlice; },{}],361:[function(_dereq_,module,exports){ var baseEach = _dereq_(336); /** * The base implementation of `_.some` without support for callback shorthands * and `this` binding. * * @private * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} predicate The function invoked per iteration. * @returns {boolean} Returns `true` if any element passes the predicate check, * else `false`. */ function baseSome(collection, predicate) { var result; baseEach(collection, function(value, index, collection) { result = predicate(value, index, collection); return !result; }); return !!result; } module.exports = baseSome; },{"336":336}],362:[function(_dereq_,module,exports){ /** * The base implementation of `_.sortBy` which uses `comparer` to define * the sort order of `array` and replaces criteria objects with their * corresponding values. * * @private * @param {Array} array The array to sort. * @param {Function} comparer The function to define sort order. * @returns {Array} Returns `array`. */ function baseSortBy(array, comparer) { var length = array.length; array.sort(comparer); while (length--) { array[length] = array[length].value; } return array; } module.exports = baseSortBy; },{}],363:[function(_dereq_,module,exports){ /** * Converts `value` to a string if it's not one. An empty string is returned * for `null` or `undefined` values. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ function baseToString(value) { return value == null ? '' : (value + ''); } module.exports = baseToString; },{}],364:[function(_dereq_,module,exports){ var baseIndexOf = _dereq_(346), cacheIndexOf = _dereq_(368), createCache = _dereq_(378); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; /** * The base implementation of `_.uniq` without support for callback shorthands * and `this` binding. * * @private * @param {Array} array The array to inspect. * @param {Function} [iteratee] The function invoked per iteration. * @returns {Array} Returns the new duplicate free array. */ function baseUniq(array, iteratee) { var index = -1, indexOf = baseIndexOf, length = array.length, isCommon = true, isLarge = isCommon && length >= LARGE_ARRAY_SIZE, seen = isLarge ? createCache() : null, result = []; if (seen) { indexOf = cacheIndexOf; isCommon = false; } else { isLarge = false; seen = iteratee ? [] : result; } outer: while (++index < length) { var value = array[index], computed = iteratee ? iteratee(value, index, array) : value; if (isCommon && value === value) { var seenIndex = seen.length; while (seenIndex--) { if (seen[seenIndex] === computed) { continue outer; } } if (iteratee) { seen.push(computed); } result.push(value); } else if (indexOf(seen, computed, 0) < 0) { if (iteratee || isLarge) { seen.push(computed); } result.push(value); } } return result; } module.exports = baseUniq; },{"346":346,"368":368,"378":378}],365:[function(_dereq_,module,exports){ /** * The base implementation of `_.values` and `_.valuesIn` which creates an * array of `object` property values corresponding to the property names * of `props`. * * @private * @param {Object} object The object to query. * @param {Array} props The property names to get values for. * @returns {Object} Returns the array of property values. */ function baseValues(object, props) { var index = -1, length = props.length, result = Array(length); while (++index < length) { result[index] = object[props[index]]; } return result; } module.exports = baseValues; },{}],366:[function(_dereq_,module,exports){ var identity = _dereq_(441); /** * A specialized version of `baseCallback` which only supports `this` binding * and specifying the number of arguments to provide to `func`. * * @private * @param {Function} func The function to bind. * @param {*} thisArg The `this` binding of `func`. * @param {number} [argCount] The number of arguments to provide to `func`. * @returns {Function} Returns the callback. */ function bindCallback(func, thisArg, argCount) { if (typeof func != 'function') { return identity; } if (thisArg === undefined) { return func; } switch (argCount) { case 1: return function(value) { return func.call(thisArg, value); }; case 3: return function(value, index, collection) { return func.call(thisArg, value, index, collection); }; case 4: return function(accumulator, value, index, collection) { return func.call(thisArg, accumulator, value, index, collection); }; case 5: return function(value, other, key, object, source) { return func.call(thisArg, value, other, key, object, source); }; } return function() { return func.apply(thisArg, arguments); }; } module.exports = bindCallback; },{"441":441}],367:[function(_dereq_,module,exports){ (function (global){ /** Native method references. */ var ArrayBuffer = global.ArrayBuffer, Uint8Array = global.Uint8Array; /** * Creates a clone of the given array buffer. * * @private * @param {ArrayBuffer} buffer The array buffer to clone. * @returns {ArrayBuffer} Returns the cloned array buffer. */ function bufferClone(buffer) { var result = new ArrayBuffer(buffer.byteLength), view = new Uint8Array(result); view.set(new Uint8Array(buffer)); return result; } module.exports = bufferClone; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{}],368:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** * Checks if `value` is in `cache` mimicking the return signature of * `_.indexOf` by returning `0` if the value is found, else `-1`. * * @private * @param {Object} cache The cache to search. * @param {*} value The value to search for. * @returns {number} Returns `0` if `value` is found, else `-1`. */ function cacheIndexOf(cache, value) { var data = cache.data, result = (typeof value == 'string' || isObject(value)) ? data.set.has(value) : data.hash[value]; return result ? 0 : -1; } module.exports = cacheIndexOf; },{"426":426}],369:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** * Adds `value` to the cache. * * @private * @name push * @memberOf SetCache * @param {*} value The value to cache. */ function cachePush(value) { var data = this.data; if (typeof value == 'string' || isObject(value)) { data.set.add(value); } else { data.hash[value] = true; } } module.exports = cachePush; },{"426":426}],370:[function(_dereq_,module,exports){ var baseCompareAscending = _dereq_(331); /** * Used by `_.sortBy` to compare transformed elements of a collection and stable * sort them in ascending order. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @returns {number} Returns the sort order indicator for `object`. */ function compareAscending(object, other) { return baseCompareAscending(object.criteria, other.criteria) || (object.index - other.index); } module.exports = compareAscending; },{"331":331}],371:[function(_dereq_,module,exports){ /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates an array that is the composition of partially applied arguments, * placeholders, and provided arguments into a single array of arguments. * * @private * @param {Array|Object} args The provided arguments. * @param {Array} partials The arguments to prepend to those provided. * @param {Array} holders The `partials` placeholder indexes. * @returns {Array} Returns the new array of composed arguments. */ function composeArgs(args, partials, holders) { var holdersLength = holders.length, argsIndex = -1, argsLength = nativeMax(args.length - holdersLength, 0), leftIndex = -1, leftLength = partials.length, result = Array(leftLength + argsLength); while (++leftIndex < leftLength) { result[leftIndex] = partials[leftIndex]; } while (++argsIndex < holdersLength) { result[holders[argsIndex]] = args[argsIndex]; } while (argsLength--) { result[leftIndex++] = args[argsIndex++]; } return result; } module.exports = composeArgs; },{}],372:[function(_dereq_,module,exports){ /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * This function is like `composeArgs` except that the arguments composition * is tailored for `_.partialRight`. * * @private * @param {Array|Object} args The provided arguments. * @param {Array} partials The arguments to append to those provided. * @param {Array} holders The `partials` placeholder indexes. * @returns {Array} Returns the new array of composed arguments. */ function composeArgsRight(args, partials, holders) { var holdersIndex = -1, holdersLength = holders.length, argsIndex = -1, argsLength = nativeMax(args.length - holdersLength, 0), rightIndex = -1, rightLength = partials.length, result = Array(argsLength + rightLength); while (++argsIndex < argsLength) { result[argsIndex] = args[argsIndex]; } var offset = argsIndex; while (++rightIndex < rightLength) { result[offset + rightIndex] = partials[rightIndex]; } while (++holdersIndex < holdersLength) { result[offset + holders[holdersIndex]] = args[argsIndex++]; } return result; } module.exports = composeArgsRight; },{}],373:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseEach = _dereq_(336), isArray = _dereq_(422); /** * Creates a `_.countBy`, `_.groupBy`, `_.indexBy`, or `_.partition` function. * * @private * @param {Function} setter The function to set keys and values of the accumulator object. * @param {Function} [initializer] The function to initialize the accumulator object. * @returns {Function} Returns the new aggregator function. */ function createAggregator(setter, initializer) { return function(collection, iteratee, thisArg) { var result = initializer ? initializer() : {}; iteratee = baseCallback(iteratee, thisArg, 3); if (isArray(collection)) { var index = -1, length = collection.length; while (++index < length) { var value = collection[index]; setter(result, value, iteratee(value, index, collection), collection); } } else { baseEach(collection, function(value, key, collection) { setter(result, value, iteratee(value, key, collection), collection); }); } return result; }; } module.exports = createAggregator; },{"329":329,"336":336,"422":422}],374:[function(_dereq_,module,exports){ var bindCallback = _dereq_(366), isIterateeCall = _dereq_(401), restParam = _dereq_(315); /** * Creates a `_.assign`, `_.defaults`, or `_.merge` function. * * @private * @param {Function} assigner The function to assign values. * @returns {Function} Returns the new assigner function. */ function createAssigner(assigner) { return restParam(function(object, sources) { var index = -1, length = object == null ? 0 : sources.length, customizer = length > 2 ? sources[length - 2] : undefined, guard = length > 2 ? sources[2] : undefined, thisArg = length > 1 ? sources[length - 1] : undefined; if (typeof customizer == 'function') { customizer = bindCallback(customizer, thisArg, 5); length -= 2; } else { customizer = typeof thisArg == 'function' ? thisArg : undefined; length -= (customizer ? 1 : 0); } if (guard && isIterateeCall(sources[0], sources[1], guard)) { customizer = length < 3 ? undefined : customizer; length = 1; } while (++index < length) { var source = sources[index]; if (source) { assigner(object, source, customizer); } } return object; }); } module.exports = createAssigner; },{"315":315,"366":366,"401":401}],375:[function(_dereq_,module,exports){ var getLength = _dereq_(392), isLength = _dereq_(404), toObject = _dereq_(417); /** * Creates a `baseEach` or `baseEachRight` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new base function. */ function createBaseEach(eachFunc, fromRight) { return function(collection, iteratee) { var length = collection ? getLength(collection) : 0; if (!isLength(length)) { return eachFunc(collection, iteratee); } var index = fromRight ? length : -1, iterable = toObject(collection); while ((fromRight ? index-- : ++index < length)) { if (iteratee(iterable[index], index, iterable) === false) { break; } } return collection; }; } module.exports = createBaseEach; },{"392":392,"404":404,"417":417}],376:[function(_dereq_,module,exports){ var toObject = _dereq_(417); /** * Creates a base function for `_.forIn` or `_.forInRight`. * * @private * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new base function. */ function createBaseFor(fromRight) { return function(object, iteratee, keysFunc) { var iterable = toObject(object), props = keysFunc(object), length = props.length, index = fromRight ? length : -1; while ((fromRight ? index-- : ++index < length)) { var key = props[index]; if (iteratee(iterable[key], key, iterable) === false) { break; } } return object; }; } module.exports = createBaseFor; },{"417":417}],377:[function(_dereq_,module,exports){ (function (global){ var createCtorWrapper = _dereq_(379); /** * Creates a function that wraps `func` and invokes it with the `this` * binding of `thisArg`. * * @private * @param {Function} func The function to bind. * @param {*} [thisArg] The `this` binding of `func`. * @returns {Function} Returns the new bound function. */ function createBindWrapper(func, thisArg) { var Ctor = createCtorWrapper(func); function wrapper() { var fn = (this && this !== global && this instanceof wrapper) ? Ctor : func; return fn.apply(thisArg, arguments); } return wrapper; } module.exports = createBindWrapper; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"379":379}],378:[function(_dereq_,module,exports){ (function (global){ var SetCache = _dereq_(318), getNative = _dereq_(394); /** Native method references. */ var Set = getNative(global, 'Set'); /* Native method references for those with the same name as other `lodash` methods. */ var nativeCreate = getNative(Object, 'create'); /** * Creates a `Set` cache object to optimize linear searches of large arrays. * * @private * @param {Array} [values] The values to cache. * @returns {null|Object} Returns the new cache object if `Set` is supported, else `null`. */ function createCache(values) { return (nativeCreate && Set) ? new SetCache(values) : null; } module.exports = createCache; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"318":318,"394":394}],379:[function(_dereq_,module,exports){ var baseCreate = _dereq_(333), isObject = _dereq_(426); /** * Creates a function that produces an instance of `Ctor` regardless of * whether it was invoked as part of a `new` expression or by `call` or `apply`. * * @private * @param {Function} Ctor The constructor to wrap. * @returns {Function} Returns the new wrapped function. */ function createCtorWrapper(Ctor) { return function() { // Use a `switch` statement to work with class constructors. // See http://ecma-international.org/ecma-262/6.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist // for more details. var args = arguments; switch (args.length) { case 0: return new Ctor; case 1: return new Ctor(args[0]); case 2: return new Ctor(args[0], args[1]); case 3: return new Ctor(args[0], args[1], args[2]); case 4: return new Ctor(args[0], args[1], args[2], args[3]); case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); } var thisBinding = baseCreate(Ctor.prototype), result = Ctor.apply(thisBinding, args); // Mimic the constructor's `return` behavior. // See https://es5.github.io/#x13.2.2 for more details. return isObject(result) ? result : thisBinding; }; } module.exports = createCtorWrapper; },{"333":333,"426":426}],380:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseFind = _dereq_(339), baseFindIndex = _dereq_(340), isArray = _dereq_(422); /** * Creates a `_.find` or `_.findLast` function. * * @private * @param {Function} eachFunc The function to iterate over a collection. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new find function. */ function createFind(eachFunc, fromRight) { return function(collection, predicate, thisArg) { predicate = baseCallback(predicate, thisArg, 3); if (isArray(collection)) { var index = baseFindIndex(collection, predicate, fromRight); return index > -1 ? collection[index] : undefined; } return baseFind(collection, predicate, eachFunc); }; } module.exports = createFind; },{"329":329,"339":339,"340":340,"422":422}],381:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseFindIndex = _dereq_(340); /** * Creates a `_.findIndex` or `_.findLastIndex` function. * * @private * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Function} Returns the new find function. */ function createFindIndex(fromRight) { return function(array, predicate, thisArg) { if (!(array && array.length)) { return -1; } predicate = baseCallback(predicate, thisArg, 3); return baseFindIndex(array, predicate, fromRight); }; } module.exports = createFindIndex; },{"329":329,"340":340}],382:[function(_dereq_,module,exports){ var bindCallback = _dereq_(366), isArray = _dereq_(422); /** * Creates a function for `_.forEach` or `_.forEachRight`. * * @private * @param {Function} arrayFunc The function to iterate over an array. * @param {Function} eachFunc The function to iterate over a collection. * @returns {Function} Returns the new each function. */ function createForEach(arrayFunc, eachFunc) { return function(collection, iteratee, thisArg) { return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection)) ? arrayFunc(collection, iteratee) : eachFunc(collection, bindCallback(iteratee, thisArg, 3)); }; } module.exports = createForEach; },{"366":366,"422":422}],383:[function(_dereq_,module,exports){ (function (global){ var arrayCopy = _dereq_(319), composeArgs = _dereq_(371), composeArgsRight = _dereq_(372), createCtorWrapper = _dereq_(379), isLaziable = _dereq_(403), reorder = _dereq_(412), replaceHolders = _dereq_(413), setData = _dereq_(414); /** Used to compose bitmasks for wrapper metadata. */ var BIND_FLAG = 1, BIND_KEY_FLAG = 2, CURRY_BOUND_FLAG = 4, CURRY_FLAG = 8, CURRY_RIGHT_FLAG = 16, PARTIAL_FLAG = 32, PARTIAL_RIGHT_FLAG = 64, ARY_FLAG = 128; /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates a function that wraps `func` and invokes it with optional `this` * binding of, partial application, and currying. * * @private * @param {Function|string} func The function or method name to reference. * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details. * @param {*} [thisArg] The `this` binding of `func`. * @param {Array} [partials] The arguments to prepend to those provided to the new function. * @param {Array} [holders] The `partials` placeholder indexes. * @param {Array} [partialsRight] The arguments to append to those provided to the new function. * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. * @param {Array} [argPos] The argument positions of the new function. * @param {number} [ary] The arity cap of `func`. * @param {number} [arity] The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createHybridWrapper(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { var isAry = bitmask & ARY_FLAG, isBind = bitmask & BIND_FLAG, isBindKey = bitmask & BIND_KEY_FLAG, isCurry = bitmask & CURRY_FLAG, isCurryBound = bitmask & CURRY_BOUND_FLAG, isCurryRight = bitmask & CURRY_RIGHT_FLAG, Ctor = isBindKey ? undefined : createCtorWrapper(func); function wrapper() { // Avoid `arguments` object use disqualifying optimizations by // converting it to an array before providing it to other functions. var length = arguments.length, index = length, args = Array(length); while (index--) { args[index] = arguments[index]; } if (partials) { args = composeArgs(args, partials, holders); } if (partialsRight) { args = composeArgsRight(args, partialsRight, holdersRight); } if (isCurry || isCurryRight) { var placeholder = wrapper.placeholder, argsHolders = replaceHolders(args, placeholder); length -= argsHolders.length; if (length < arity) { var newArgPos = argPos ? arrayCopy(argPos) : undefined, newArity = nativeMax(arity - length, 0), newsHolders = isCurry ? argsHolders : undefined, newHoldersRight = isCurry ? undefined : argsHolders, newPartials = isCurry ? args : undefined, newPartialsRight = isCurry ? undefined : args; bitmask |= (isCurry ? PARTIAL_FLAG : PARTIAL_RIGHT_FLAG); bitmask &= ~(isCurry ? PARTIAL_RIGHT_FLAG : PARTIAL_FLAG); if (!isCurryBound) { bitmask &= ~(BIND_FLAG | BIND_KEY_FLAG); } var newData = [func, bitmask, thisArg, newPartials, newsHolders, newPartialsRight, newHoldersRight, newArgPos, ary, newArity], result = createHybridWrapper.apply(undefined, newData); if (isLaziable(func)) { setData(result, newData); } result.placeholder = placeholder; return result; } } var thisBinding = isBind ? thisArg : this, fn = isBindKey ? thisBinding[func] : func; if (argPos) { args = reorder(args, argPos); } if (isAry && ary < args.length) { args.length = ary; } if (this && this !== global && this instanceof wrapper) { fn = Ctor || createCtorWrapper(func); } return fn.apply(thisBinding, args); } return wrapper; } module.exports = createHybridWrapper; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"319":319,"371":371,"372":372,"379":379,"403":403,"412":412,"413":413,"414":414}],384:[function(_dereq_,module,exports){ (function (global){ var createCtorWrapper = _dereq_(379); /** Used to compose bitmasks for wrapper metadata. */ var BIND_FLAG = 1; /** * Creates a function that wraps `func` and invokes it with the optional `this` * binding of `thisArg` and the `partials` prepended to those provided to * the wrapper. * * @private * @param {Function} func The function to partially apply arguments to. * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details. * @param {*} thisArg The `this` binding of `func`. * @param {Array} partials The arguments to prepend to those provided to the new function. * @returns {Function} Returns the new bound function. */ function createPartialWrapper(func, bitmask, thisArg, partials) { var isBind = bitmask & BIND_FLAG, Ctor = createCtorWrapper(func); function wrapper() { // Avoid `arguments` object use disqualifying optimizations by // converting it to an array before providing it `func`. var argsIndex = -1, argsLength = arguments.length, leftIndex = -1, leftLength = partials.length, args = Array(leftLength + argsLength); while (++leftIndex < leftLength) { args[leftIndex] = partials[leftIndex]; } while (argsLength--) { args[leftIndex++] = arguments[++argsIndex]; } var fn = (this && this !== global && this instanceof wrapper) ? Ctor : func; return fn.apply(isBind ? thisArg : this, args); } return wrapper; } module.exports = createPartialWrapper; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"379":379}],385:[function(_dereq_,module,exports){ var baseCallback = _dereq_(329), baseReduce = _dereq_(358), isArray = _dereq_(422); /** * Creates a function for `_.reduce` or `_.reduceRight`. * * @private * @param {Function} arrayFunc The function to iterate over an array. * @param {Function} eachFunc The function to iterate over a collection. * @returns {Function} Returns the new each function. */ function createReduce(arrayFunc, eachFunc) { return function(collection, iteratee, accumulator, thisArg) { var initFromArray = arguments.length < 3; return (typeof iteratee == 'function' && thisArg === undefined && isArray(collection)) ? arrayFunc(collection, iteratee, accumulator, initFromArray) : baseReduce(collection, baseCallback(iteratee, thisArg, 4), accumulator, initFromArray, eachFunc); }; } module.exports = createReduce; },{"329":329,"358":358,"422":422}],386:[function(_dereq_,module,exports){ var baseSetData = _dereq_(359), createBindWrapper = _dereq_(377), createHybridWrapper = _dereq_(383), createPartialWrapper = _dereq_(384), getData = _dereq_(390), mergeData = _dereq_(407), setData = _dereq_(414); /** Used to compose bitmasks for wrapper metadata. */ var BIND_FLAG = 1, BIND_KEY_FLAG = 2, PARTIAL_FLAG = 32, PARTIAL_RIGHT_FLAG = 64; /** Used as the `TypeError` message for "Functions" methods. */ var FUNC_ERROR_TEXT = 'Expected a function'; /* Native method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max; /** * Creates a function that either curries or invokes `func` with optional * `this` binding and partially applied arguments. * * @private * @param {Function|string} func The function or method name to reference. * @param {number} bitmask The bitmask of flags. * The bitmask may be composed of the following flags: * 1 - `_.bind` * 2 - `_.bindKey` * 4 - `_.curry` or `_.curryRight` of a bound function * 8 - `_.curry` * 16 - `_.curryRight` * 32 - `_.partial` * 64 - `_.partialRight` * 128 - `_.rearg` * 256 - `_.ary` * @param {*} [thisArg] The `this` binding of `func`. * @param {Array} [partials] The arguments to be partially applied. * @param {Array} [holders] The `partials` placeholder indexes. * @param {Array} [argPos] The argument positions of the new function. * @param {number} [ary] The arity cap of `func`. * @param {number} [arity] The arity of `func`. * @returns {Function} Returns the new wrapped function. */ function createWrapper(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { var isBindKey = bitmask & BIND_KEY_FLAG; if (!isBindKey && typeof func != 'function') { throw new TypeError(FUNC_ERROR_TEXT); } var length = partials ? partials.length : 0; if (!length) { bitmask &= ~(PARTIAL_FLAG | PARTIAL_RIGHT_FLAG); partials = holders = undefined; } length -= (holders ? holders.length : 0); if (bitmask & PARTIAL_RIGHT_FLAG) { var partialsRight = partials, holdersRight = holders; partials = holders = undefined; } var data = isBindKey ? undefined : getData(func), newData = [func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity]; if (data) { mergeData(newData, data); bitmask = newData[1]; arity = newData[9]; } newData[9] = arity == null ? (isBindKey ? 0 : func.length) : (nativeMax(arity - length, 0) || 0); if (bitmask == BIND_FLAG) { var result = createBindWrapper(newData[0], newData[2]); } else if ((bitmask == PARTIAL_FLAG || bitmask == (BIND_FLAG | PARTIAL_FLAG)) && !newData[4].length) { result = createPartialWrapper.apply(undefined, newData); } else { result = createHybridWrapper.apply(undefined, newData); } var setter = data ? baseSetData : setData; return setter(result, newData); } module.exports = createWrapper; },{"359":359,"377":377,"383":383,"384":384,"390":390,"407":407,"414":414}],387:[function(_dereq_,module,exports){ var arraySome = _dereq_(326); /** * A specialized version of `baseIsEqualDeep` for arrays with support for * partial deep comparisons. * * @private * @param {Array} array The array to compare. * @param {Array} other The other array to compare. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Function} [customizer] The function to customize comparing arrays. * @param {boolean} [isLoose] Specify performing partial comparisons. * @param {Array} [stackA] Tracks traversed `value` objects. * @param {Array} [stackB] Tracks traversed `other` objects. * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. */ function equalArrays(array, other, equalFunc, customizer, isLoose, stackA, stackB) { var index = -1, arrLength = array.length, othLength = other.length; if (arrLength != othLength && !(isLoose && othLength > arrLength)) { return false; } // Ignore non-index properties. while (++index < arrLength) { var arrValue = array[index], othValue = other[index], result = customizer ? customizer(isLoose ? othValue : arrValue, isLoose ? arrValue : othValue, index) : undefined; if (result !== undefined) { if (result) { continue; } return false; } // Recursively compare arrays (susceptible to call stack limits). if (isLoose) { if (!arraySome(other, function(othValue) { return arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB); })) { return false; } } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, customizer, isLoose, stackA, stackB))) { return false; } } return true; } module.exports = equalArrays; },{"326":326}],388:[function(_dereq_,module,exports){ /** `Object#toString` result references. */ var boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', numberTag = '[object Number]', regexpTag = '[object RegExp]', stringTag = '[object String]'; /** * A specialized version of `baseIsEqualDeep` for comparing objects of * the same `toStringTag`. * * **Note:** This function only supports comparing values with tags of * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {string} tag The `toStringTag` of the objects to compare. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function equalByTag(object, other, tag) { switch (tag) { case boolTag: case dateTag: // Coerce dates and booleans to numbers, dates to milliseconds and booleans // to `1` or `0` treating invalid dates coerced to `NaN` as not equal. return +object == +other; case errorTag: return object.name == other.name && object.message == other.message; case numberTag: // Treat `NaN` vs. `NaN` as equal. return (object != +object) ? other != +other : object == +other; case regexpTag: case stringTag: // Coerce regexes to strings and treat strings primitives and string // objects as equal. See https://es5.github.io/#x15.10.6.4 for more details. return object == (other + ''); } return false; } module.exports = equalByTag; },{}],389:[function(_dereq_,module,exports){ var keys = _dereq_(433); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * A specialized version of `baseIsEqualDeep` for objects with support for * partial deep comparisons. * * @private * @param {Object} object The object to compare. * @param {Object} other The other object to compare. * @param {Function} equalFunc The function to determine equivalents of values. * @param {Function} [customizer] The function to customize comparing values. * @param {boolean} [isLoose] Specify performing partial comparisons. * @param {Array} [stackA] Tracks traversed `value` objects. * @param {Array} [stackB] Tracks traversed `other` objects. * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ function equalObjects(object, other, equalFunc, customizer, isLoose, stackA, stackB) { var objProps = keys(object), objLength = objProps.length, othProps = keys(other), othLength = othProps.length; if (objLength != othLength && !isLoose) { return false; } var index = objLength; while (index--) { var key = objProps[index]; if (!(isLoose ? key in other : hasOwnProperty.call(other, key))) { return false; } } var skipCtor = isLoose; while (++index < objLength) { key = objProps[index]; var objValue = object[key], othValue = other[key], result = customizer ? customizer(isLoose ? othValue : objValue, isLoose? objValue : othValue, key) : undefined; // Recursively compare objects (susceptible to call stack limits). if (!(result === undefined ? equalFunc(objValue, othValue, customizer, isLoose, stackA, stackB) : result)) { return false; } skipCtor || (skipCtor = key == 'constructor'); } if (!skipCtor) { var objCtor = object.constructor, othCtor = other.constructor; // Non `Object` object instances with different constructors are not equal. if (objCtor != othCtor && ('constructor' in object && 'constructor' in other) && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) { return false; } } return true; } module.exports = equalObjects; },{"433":433}],390:[function(_dereq_,module,exports){ var metaMap = _dereq_(408), noop = _dereq_(442); /** * Gets metadata for `func`. * * @private * @param {Function} func The function to query. * @returns {*} Returns the metadata for `func`. */ var getData = !metaMap ? noop : function(func) { return metaMap.get(func); }; module.exports = getData; },{"408":408,"442":442}],391:[function(_dereq_,module,exports){ var realNames = _dereq_(411); /** * Gets the name of `func`. * * @private * @param {Function} func The function to query. * @returns {string} Returns the function name. */ function getFuncName(func) { var result = (func.name + ''), array = realNames[result], length = array ? array.length : 0; while (length--) { var data = array[length], otherFunc = data.func; if (otherFunc == null || otherFunc == func) { return data.name; } } return result; } module.exports = getFuncName; },{"411":411}],392:[function(_dereq_,module,exports){ var baseProperty = _dereq_(356); /** * Gets the "length" property value of `object`. * * **Note:** This function is used to avoid a [JIT bug](https://bugs.webkit.org/show_bug.cgi?id=142792) * that affects Safari on at least iOS 8.1-8.3 ARM64. * * @private * @param {Object} object The object to query. * @returns {*} Returns the "length" value. */ var getLength = baseProperty('length'); module.exports = getLength; },{"356":356}],393:[function(_dereq_,module,exports){ var isStrictComparable = _dereq_(406), pairs = _dereq_(437); /** * Gets the propery names, values, and compare flags of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the match data of `object`. */ function getMatchData(object) { var result = pairs(object), length = result.length; while (length--) { result[length][2] = isStrictComparable(result[length][1]); } return result; } module.exports = getMatchData; },{"406":406,"437":437}],394:[function(_dereq_,module,exports){ var isNative = _dereq_(424); /** * Gets the native function at `key` of `object`. * * @private * @param {Object} object The object to query. * @param {string} key The key of the method to get. * @returns {*} Returns the function if it's native, else `undefined`. */ function getNative(object, key) { var value = object == null ? undefined : object[key]; return isNative(value) ? value : undefined; } module.exports = getNative; },{"424":424}],395:[function(_dereq_,module,exports){ /** * Gets the index at which the first occurrence of `NaN` is found in `array`. * * @private * @param {Array} array The array to search. * @param {number} fromIndex The index to search from. * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {number} Returns the index of the matched `NaN`, else `-1`. */ function indexOfNaN(array, fromIndex, fromRight) { var length = array.length, index = fromIndex + (fromRight ? 0 : -1); while ((fromRight ? index-- : ++index < length)) { var other = array[index]; if (other !== other) { return index; } } return -1; } module.exports = indexOfNaN; },{}],396:[function(_dereq_,module,exports){ /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Initializes an array clone. * * @private * @param {Array} array The array to clone. * @returns {Array} Returns the initialized clone. */ function initCloneArray(array) { var length = array.length, result = new array.constructor(length); // Add array properties assigned by `RegExp#exec`. if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { result.index = array.index; result.input = array.input; } return result; } module.exports = initCloneArray; },{}],397:[function(_dereq_,module,exports){ var bufferClone = _dereq_(367); /** `Object#toString` result references. */ var boolTag = '[object Boolean]', dateTag = '[object Date]', numberTag = '[object Number]', regexpTag = '[object RegExp]', stringTag = '[object String]'; var arrayBufferTag = '[object ArrayBuffer]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** Used to match `RegExp` flags from their coerced string values. */ var reFlags = /\w*$/; /** * Initializes an object clone based on its `toStringTag`. * * **Note:** This function only supports cloning values with tags of * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. * * @private * @param {Object} object The object to clone. * @param {string} tag The `toStringTag` of the object to clone. * @param {boolean} [isDeep] Specify a deep clone. * @returns {Object} Returns the initialized clone. */ function initCloneByTag(object, tag, isDeep) { var Ctor = object.constructor; switch (tag) { case arrayBufferTag: return bufferClone(object); case boolTag: case dateTag: return new Ctor(+object); case float32Tag: case float64Tag: case int8Tag: case int16Tag: case int32Tag: case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: var buffer = object.buffer; return new Ctor(isDeep ? bufferClone(buffer) : buffer, object.byteOffset, object.length); case numberTag: case stringTag: return new Ctor(object); case regexpTag: var result = new Ctor(object.source, reFlags.exec(object)); result.lastIndex = object.lastIndex; } return result; } module.exports = initCloneByTag; },{"367":367}],398:[function(_dereq_,module,exports){ /** * Initializes an object clone. * * @private * @param {Object} object The object to clone. * @returns {Object} Returns the initialized clone. */ function initCloneObject(object) { var Ctor = object.constructor; if (!(typeof Ctor == 'function' && Ctor instanceof Ctor)) { Ctor = Object; } return new Ctor; } module.exports = initCloneObject; },{}],399:[function(_dereq_,module,exports){ var getLength = _dereq_(392), isLength = _dereq_(404); /** * Checks if `value` is array-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is array-like, else `false`. */ function isArrayLike(value) { return value != null && isLength(getLength(value)); } module.exports = isArrayLike; },{"392":392,"404":404}],400:[function(_dereq_,module,exports){ /** Used to detect unsigned integer values. */ var reIsUint = /^\d+$/; /** * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer) * of an array-like value. */ var MAX_SAFE_INTEGER = 9007199254740991; /** * Checks if `value` is a valid array-like index. * * @private * @param {*} value The value to check. * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ function isIndex(value, length) { value = (typeof value == 'number' || reIsUint.test(value)) ? +value : -1; length = length == null ? MAX_SAFE_INTEGER : length; return value > -1 && value % 1 == 0 && value < length; } module.exports = isIndex; },{}],401:[function(_dereq_,module,exports){ var isArrayLike = _dereq_(399), isIndex = _dereq_(400), isObject = _dereq_(426); /** * Checks if the provided arguments are from an iteratee call. * * @private * @param {*} value The potential iteratee value argument. * @param {*} index The potential iteratee index or key argument. * @param {*} object The potential iteratee object argument. * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`. */ function isIterateeCall(value, index, object) { if (!isObject(object)) { return false; } var type = typeof index; if (type == 'number' ? (isArrayLike(object) && isIndex(index, object.length)) : (type == 'string' && index in object)) { var other = object[index]; return value === value ? (value === other) : (other !== other); } return false; } module.exports = isIterateeCall; },{"399":399,"400":400,"426":426}],402:[function(_dereq_,module,exports){ var isArray = _dereq_(422), toObject = _dereq_(417); /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\n\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/; /** * Checks if `value` is a property name and not a property path. * * @private * @param {*} value The value to check. * @param {Object} [object] The object to query keys on. * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ function isKey(value, object) { var type = typeof value; if ((type == 'string' && reIsPlainProp.test(value)) || type == 'number') { return true; } if (isArray(value)) { return false; } var result = !reIsDeepProp.test(value); return result || (object != null && value in toObject(object)); } module.exports = isKey; },{"417":417,"422":422}],403:[function(_dereq_,module,exports){ var LazyWrapper = _dereq_(316), getData = _dereq_(390), getFuncName = _dereq_(391), lodash = _dereq_(298); /** * Checks if `func` has a lazy counterpart. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` has a lazy counterpart, else `false`. */ function isLaziable(func) { var funcName = getFuncName(func), other = lodash[funcName]; if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { return false; } if (func === other) { return true; } var data = getData(other); return !!data && func === data[0]; } module.exports = isLaziable; },{"298":298,"316":316,"390":390,"391":391}],404:[function(_dereq_,module,exports){ /** * Used as the [maximum length](http://ecma-international.org/ecma-262/6.0/#sec-number.max_safe_integer) * of an array-like value. */ var MAX_SAFE_INTEGER = 9007199254740991; /** * Checks if `value` is a valid array-like length. * * **Note:** This function is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. */ function isLength(value) { return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } module.exports = isLength; },{}],405:[function(_dereq_,module,exports){ /** * Checks if `value` is object-like. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is object-like, else `false`. */ function isObjectLike(value) { return !!value && typeof value == 'object'; } module.exports = isObjectLike; },{}],406:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` if suitable for strict * equality comparisons, else `false`. */ function isStrictComparable(value) { return value === value && !isObject(value); } module.exports = isStrictComparable; },{"426":426}],407:[function(_dereq_,module,exports){ var arrayCopy = _dereq_(319), composeArgs = _dereq_(371), composeArgsRight = _dereq_(372), replaceHolders = _dereq_(413); /** Used to compose bitmasks for wrapper metadata. */ var BIND_FLAG = 1, CURRY_BOUND_FLAG = 4, CURRY_FLAG = 8, ARY_FLAG = 128, REARG_FLAG = 256; /** Used as the internal argument placeholder. */ var PLACEHOLDER = '__lodash_placeholder__'; /* Native method references for those with the same name as other `lodash` methods. */ var nativeMin = Math.min; /** * Merges the function metadata of `source` into `data`. * * Merging metadata reduces the number of wrappers required to invoke a function. * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` * may be applied regardless of execution order. Methods like `_.ary` and `_.rearg` * augment function arguments, making the order in which they are executed important, * preventing the merging of metadata. However, we make an exception for a safe * common case where curried functions have `_.ary` and or `_.rearg` applied. * * @private * @param {Array} data The destination metadata. * @param {Array} source The source metadata. * @returns {Array} Returns `data`. */ function mergeData(data, source) { var bitmask = data[1], srcBitmask = source[1], newBitmask = bitmask | srcBitmask, isCommon = newBitmask < ARY_FLAG; var isCombo = (srcBitmask == ARY_FLAG && bitmask == CURRY_FLAG) || (srcBitmask == ARY_FLAG && bitmask == REARG_FLAG && data[7].length <= source[8]) || (srcBitmask == (ARY_FLAG | REARG_FLAG) && bitmask == CURRY_FLAG); // Exit early if metadata can't be merged. if (!(isCommon || isCombo)) { return data; } // Use source `thisArg` if available. if (srcBitmask & BIND_FLAG) { data[2] = source[2]; // Set when currying a bound function. newBitmask |= (bitmask & BIND_FLAG) ? 0 : CURRY_BOUND_FLAG; } // Compose partial arguments. var value = source[3]; if (value) { var partials = data[3]; data[3] = partials ? composeArgs(partials, value, source[4]) : arrayCopy(value); data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : arrayCopy(source[4]); } // Compose partial right arguments. value = source[5]; if (value) { partials = data[5]; data[5] = partials ? composeArgsRight(partials, value, source[6]) : arrayCopy(value); data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : arrayCopy(source[6]); } // Use source `argPos` if available. value = source[7]; if (value) { data[7] = arrayCopy(value); } // Use source `ary` if it's smaller. if (srcBitmask & ARY_FLAG) { data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); } // Use source `arity` if one is not provided. if (data[9] == null) { data[9] = source[9]; } // Use source `func` and merge bitmasks. data[0] = source[0]; data[1] = newBitmask; return data; } module.exports = mergeData; },{"319":319,"371":371,"372":372,"413":413}],408:[function(_dereq_,module,exports){ (function (global){ var getNative = _dereq_(394); /** Native method references. */ var WeakMap = getNative(global, 'WeakMap'); /** Used to store function metadata. */ var metaMap = WeakMap && new WeakMap; module.exports = metaMap; }).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) },{"394":394}],409:[function(_dereq_,module,exports){ var toObject = _dereq_(417); /** * A specialized version of `_.pick` which picks `object` properties specified * by `props`. * * @private * @param {Object} object The source object. * @param {string[]} props The property names to pick. * @returns {Object} Returns the new object. */ function pickByArray(object, props) { object = toObject(object); var index = -1, length = props.length, result = {}; while (++index < length) { var key = props[index]; if (key in object) { result[key] = object[key]; } } return result; } module.exports = pickByArray; },{"417":417}],410:[function(_dereq_,module,exports){ var baseForIn = _dereq_(343); /** * A specialized version of `_.pick` which picks `object` properties `predicate` * returns truthy for. * * @private * @param {Object} object The source object. * @param {Function} predicate The function invoked per iteration. * @returns {Object} Returns the new object. */ function pickByCallback(object, predicate) { var result = {}; baseForIn(object, function(value, key, object) { if (predicate(value, key, object)) { result[key] = value; } }); return result; } module.exports = pickByCallback; },{"343":343}],411:[function(_dereq_,module,exports){ /** Used to lookup unminified function names. */ var realNames = {}; module.exports = realNames; },{}],412:[function(_dereq_,module,exports){ var arrayCopy = _dereq_(319), isIndex = _dereq_(400); /* Native method references for those with the same name as other `lodash` methods. */ var nativeMin = Math.min; /** * Reorder `array` according to the specified indexes where the element at * the first index is assigned as the first element, the element at * the second index is assigned as the second element, and so on. * * @private * @param {Array} array The array to reorder. * @param {Array} indexes The arranged array indexes. * @returns {Array} Returns `array`. */ function reorder(array, indexes) { var arrLength = array.length, length = nativeMin(indexes.length, arrLength), oldArray = arrayCopy(array); while (length--) { var index = indexes[length]; array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; } return array; } module.exports = reorder; },{"319":319,"400":400}],413:[function(_dereq_,module,exports){ /** Used as the internal argument placeholder. */ var PLACEHOLDER = '__lodash_placeholder__'; /** * Replaces all `placeholder` elements in `array` with an internal placeholder * and returns an array of their indexes. * * @private * @param {Array} array The array to modify. * @param {*} placeholder The placeholder to replace. * @returns {Array} Returns the new array of placeholder indexes. */ function replaceHolders(array, placeholder) { var index = -1, length = array.length, resIndex = -1, result = []; while (++index < length) { if (array[index] === placeholder) { array[index] = PLACEHOLDER; result[++resIndex] = index; } } return result; } module.exports = replaceHolders; },{}],414:[function(_dereq_,module,exports){ var baseSetData = _dereq_(359), now = _dereq_(311); /** Used to detect when a function becomes hot. */ var HOT_COUNT = 150, HOT_SPAN = 16; /** * Sets metadata for `func`. * * **Note:** If this function becomes hot, i.e. is invoked a lot in a short * period of time, it will trip its breaker and transition to an identity function * to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070) * for more details. * * @private * @param {Function} func The function to associate metadata with. * @param {*} data The metadata. * @returns {Function} Returns `func`. */ var setData = (function() { var count = 0, lastCalled = 0; return function(key, value) { var stamp = now(), remaining = HOT_SPAN - (stamp - lastCalled); lastCalled = stamp; if (remaining > 0) { if (++count >= HOT_COUNT) { return key; } } else { count = 0; } return baseSetData(key, value); }; }()); module.exports = setData; },{"311":311,"359":359}],415:[function(_dereq_,module,exports){ var isArguments = _dereq_(421), isArray = _dereq_(422), isIndex = _dereq_(400), isLength = _dereq_(404), keysIn = _dereq_(434); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * A fallback implementation of `Object.keys` which creates an array of the * own enumerable property names of `object`. * * @private * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. */ function shimKeys(object) { var props = keysIn(object), propsLength = props.length, length = propsLength && object.length; var allowIndexes = !!length && isLength(length) && (isArray(object) || isArguments(object)); var index = -1, result = []; while (++index < propsLength) { var key = props[index]; if ((allowIndexes && isIndex(key, length)) || hasOwnProperty.call(object, key)) { result.push(key); } } return result; } module.exports = shimKeys; },{"400":400,"404":404,"421":421,"422":422,"434":434}],416:[function(_dereq_,module,exports){ /** * An implementation of `_.uniq` optimized for sorted arrays without support * for callback shorthands and `this` binding. * * @private * @param {Array} array The array to inspect. * @param {Function} [iteratee] The function invoked per iteration. * @returns {Array} Returns the new duplicate free array. */ function sortedUniq(array, iteratee) { var seen, index = -1, length = array.length, resIndex = -1, result = []; while (++index < length) { var value = array[index], computed = iteratee ? iteratee(value, index, array) : value; if (!index || seen !== computed) { seen = computed; result[++resIndex] = value; } } return result; } module.exports = sortedUniq; },{}],417:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** * Converts `value` to an object if it's not one. * * @private * @param {*} value The value to process. * @returns {Object} Returns the object. */ function toObject(value) { return isObject(value) ? value : Object(value); } module.exports = toObject; },{"426":426}],418:[function(_dereq_,module,exports){ var baseToString = _dereq_(363), isArray = _dereq_(422); /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\n\\]|\\.)*?)\2)\]/g; /** Used to match backslashes in property paths. */ var reEscapeChar = /\\(\\)?/g; /** * Converts `value` to property path array if it's not one. * * @private * @param {*} value The value to process. * @returns {Array} Returns the property path array. */ function toPath(value) { if (isArray(value)) { return value; } var result = []; baseToString(value).replace(rePropName, function(match, number, quote, string) { result.push(quote ? string.replace(reEscapeChar, '$1') : (number || match)); }); return result; } module.exports = toPath; },{"363":363,"422":422}],419:[function(_dereq_,module,exports){ var LazyWrapper = _dereq_(316), LodashWrapper = _dereq_(317), arrayCopy = _dereq_(319); /** * Creates a clone of `wrapper`. * * @private * @param {Object} wrapper The wrapper to clone. * @returns {Object} Returns the cloned wrapper. */ function wrapperClone(wrapper) { return wrapper instanceof LazyWrapper ? wrapper.clone() : new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__, arrayCopy(wrapper.__actions__)); } module.exports = wrapperClone; },{"316":316,"317":317,"319":319}],420:[function(_dereq_,module,exports){ var baseClone = _dereq_(330), bindCallback = _dereq_(366), isIterateeCall = _dereq_(401); /** * Creates a clone of `value`. If `isDeep` is `true` nested objects are cloned, * otherwise they are assigned by reference. If `customizer` is provided it's * invoked to produce the cloned values. If `customizer` returns `undefined` * cloning is handled by the method instead. The `customizer` is bound to * `thisArg` and invoked with up to three argument; (value [, index|key, object]). * * **Note:** This method is loosely based on the * [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm). * The enumerable properties of `arguments` objects and objects created by * constructors other than `Object` are cloned to plain `Object` objects. An * empty object is returned for uncloneable values such as functions, DOM nodes, * Maps, Sets, and WeakMaps. * * @static * @memberOf _ * @category Lang * @param {*} value The value to clone. * @param {boolean} [isDeep] Specify a deep clone. * @param {Function} [customizer] The function to customize cloning values. * @param {*} [thisArg] The `this` binding of `customizer`. * @returns {*} Returns the cloned value. * @example * * var users = [ * { 'user': 'barney' }, * { 'user': 'fred' } * ]; * * var shallow = _.clone(users); * shallow[0] === users[0]; * // => true * * var deep = _.clone(users, true); * deep[0] === users[0]; * // => false * * // using a customizer callback * var el = _.clone(document.body, function(value) { * if (_.isElement(value)) { * return value.cloneNode(false); * } * }); * * el === document.body * // => false * el.nodeName * // => BODY * el.childNodes.length; * // => 0 */ function clone(value, isDeep, customizer, thisArg) { if (isDeep && typeof isDeep != 'boolean' && isIterateeCall(value, isDeep, customizer)) { isDeep = false; } else if (typeof isDeep == 'function') { thisArg = customizer; customizer = isDeep; isDeep = false; } return typeof customizer == 'function' ? baseClone(value, isDeep, bindCallback(customizer, thisArg, 3)) : baseClone(value, isDeep); } module.exports = clone; },{"330":330,"366":366,"401":401}],421:[function(_dereq_,module,exports){ var isArrayLike = _dereq_(399), isObjectLike = _dereq_(405); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** Native method references. */ var propertyIsEnumerable = objectProto.propertyIsEnumerable; /** * Checks if `value` is classified as an `arguments` object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isArguments(function() { return arguments; }()); * // => true * * _.isArguments([1, 2, 3]); * // => false */ function isArguments(value) { return isObjectLike(value) && isArrayLike(value) && hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee'); } module.exports = isArguments; },{"399":399,"405":405}],422:[function(_dereq_,module,exports){ var getNative = _dereq_(394), isLength = _dereq_(404), isObjectLike = _dereq_(405); /** `Object#toString` result references. */ var arrayTag = '[object Array]'; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /* Native method references for those with the same name as other `lodash` methods. */ var nativeIsArray = getNative(Array, 'isArray'); /** * Checks if `value` is classified as an `Array` object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isArray([1, 2, 3]); * // => true * * _.isArray(function() { return arguments; }()); * // => false */ var isArray = nativeIsArray || function(value) { return isObjectLike(value) && isLength(value.length) && objToString.call(value) == arrayTag; }; module.exports = isArray; },{"394":394,"404":404,"405":405}],423:[function(_dereq_,module,exports){ var isObject = _dereq_(426); /** `Object#toString` result references. */ var funcTag = '[object Function]'; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isFunction(_); * // => true * * _.isFunction(/abc/); * // => false */ function isFunction(value) { // The use of `Object#toString` avoids issues with the `typeof` operator // in older versions of Chrome and Safari which return 'function' for regexes // and Safari 8 which returns 'object' for typed array constructors. return isObject(value) && objToString.call(value) == funcTag; } module.exports = isFunction; },{"426":426}],424:[function(_dereq_,module,exports){ var isFunction = _dereq_(423), isObjectLike = _dereq_(405); /** Used to detect host constructors (Safari > 5). */ var reIsHostCtor = /^\[object .+?Constructor\]$/; /** Used for native method references. */ var objectProto = Object.prototype; /** Used to resolve the decompiled source of functions. */ var fnToString = Function.prototype.toString; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** Used to detect if a method is native. */ var reIsNative = RegExp('^' + fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' ); /** * Checks if `value` is a native function. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a native function, else `false`. * @example * * _.isNative(Array.prototype.push); * // => true * * _.isNative(_); * // => false */ function isNative(value) { if (value == null) { return false; } if (isFunction(value)) { return reIsNative.test(fnToString.call(value)); } return isObjectLike(value) && reIsHostCtor.test(value); } module.exports = isNative; },{"405":405,"423":423}],425:[function(_dereq_,module,exports){ var isObjectLike = _dereq_(405); /** `Object#toString` result references. */ var numberTag = '[object Number]'; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * Checks if `value` is classified as a `Number` primitive or object. * * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are classified * as numbers, use the `_.isFinite` method. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isNumber(8.4); * // => true * * _.isNumber(NaN); * // => true * * _.isNumber('8.4'); * // => false */ function isNumber(value) { return typeof value == 'number' || (isObjectLike(value) && objToString.call(value) == numberTag); } module.exports = isNumber; },{"405":405}],426:[function(_dereq_,module,exports){ /** * Checks if `value` is the [language type](https://es5.github.io/#x8) of `Object`. * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * * _.isObject({}); * // => true * * _.isObject([1, 2, 3]); * // => true * * _.isObject(1); * // => false */ function isObject(value) { // Avoid a V8 JIT bug in Chrome 19-20. // See https://code.google.com/p/v8/issues/detail?id=2291 for more details. var type = typeof value; return !!value && (type == 'object' || type == 'function'); } module.exports = isObject; },{}],427:[function(_dereq_,module,exports){ var baseForIn = _dereq_(343), isArguments = _dereq_(421), isObjectLike = _dereq_(405); /** `Object#toString` result references. */ var objectTag = '[object Object]'; /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * Checks if `value` is a plain object, that is, an object created by the * `Object` constructor or one with a `[[Prototype]]` of `null`. * * **Note:** This method assumes objects created by the `Object` constructor * have no inherited enumerable properties. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. * @example * * function Foo() { * this.a = 1; * } * * _.isPlainObject(new Foo); * // => false * * _.isPlainObject([1, 2, 3]); * // => false * * _.isPlainObject({ 'x': 0, 'y': 0 }); * // => true * * _.isPlainObject(Object.create(null)); * // => true */ function isPlainObject(value) { var Ctor; // Exit early for non `Object` objects. if (!(isObjectLike(value) && objToString.call(value) == objectTag && !isArguments(value)) || (!hasOwnProperty.call(value, 'constructor') && (Ctor = value.constructor, typeof Ctor == 'function' && !(Ctor instanceof Ctor)))) { return false; } // IE < 9 iterates inherited properties before own properties. If the first // iterated property is an object's own property then there are no inherited // enumerable properties. var result; // In most environments an object's own properties are iterated before // its inherited properties. If the last iterated property is an object's // own property then there are no inherited enumerable properties. baseForIn(value, function(subValue, key) { result = key; }); return result === undefined || hasOwnProperty.call(value, result); } module.exports = isPlainObject; },{"343":343,"405":405,"421":421}],428:[function(_dereq_,module,exports){ var isObjectLike = _dereq_(405); /** `Object#toString` result references. */ var stringTag = '[object String]'; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * Checks if `value` is classified as a `String` primitive or object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isString('abc'); * // => true * * _.isString(1); * // => false */ function isString(value) { return typeof value == 'string' || (isObjectLike(value) && objToString.call(value) == stringTag); } module.exports = isString; },{"405":405}],429:[function(_dereq_,module,exports){ var isLength = _dereq_(404), isObjectLike = _dereq_(405); /** `Object#toString` result references. */ var argsTag = '[object Arguments]', arrayTag = '[object Array]', boolTag = '[object Boolean]', dateTag = '[object Date]', errorTag = '[object Error]', funcTag = '[object Function]', mapTag = '[object Map]', numberTag = '[object Number]', objectTag = '[object Object]', regexpTag = '[object RegExp]', setTag = '[object Set]', stringTag = '[object String]', weakMapTag = '[object WeakMap]'; var arrayBufferTag = '[object ArrayBuffer]', float32Tag = '[object Float32Array]', float64Tag = '[object Float64Array]', int8Tag = '[object Int8Array]', int16Tag = '[object Int16Array]', int32Tag = '[object Int32Array]', uint8Tag = '[object Uint8Array]', uint8ClampedTag = '[object Uint8ClampedArray]', uint16Tag = '[object Uint16Array]', uint32Tag = '[object Uint32Array]'; /** Used to identify `toStringTag` values of typed arrays. */ var typedArrayTags = {}; typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true; typedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false; /** Used for native method references. */ var objectProto = Object.prototype; /** * Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) * of values. */ var objToString = objectProto.toString; /** * Checks if `value` is classified as a typed array. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isTypedArray(new Uint8Array); * // => true * * _.isTypedArray([]); * // => false */ function isTypedArray(value) { return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[objToString.call(value)]; } module.exports = isTypedArray; },{"404":404,"405":405}],430:[function(_dereq_,module,exports){ var baseCopy = _dereq_(332), keysIn = _dereq_(434); /** * Converts `value` to a plain object flattening inherited enumerable * properties of `value` to own properties of the plain object. * * @static * @memberOf _ * @category Lang * @param {*} value The value to convert. * @returns {Object} Returns the converted plain object. * @example * * function Foo() { * this.b = 2; * } * * Foo.prototype.c = 3; * * _.assign({ 'a': 1 }, new Foo); * // => { 'a': 1, 'b': 2 } * * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); * // => { 'a': 1, 'b': 2, 'c': 3 } */ function toPlainObject(value) { return baseCopy(value, keysIn(value)); } module.exports = toPlainObject; },{"332":332,"434":434}],431:[function(_dereq_,module,exports){ var assignWith = _dereq_(327), baseAssign = _dereq_(328), createAssigner = _dereq_(374); /** * Assigns own enumerable properties of source object(s) to the destination * object. Subsequent sources overwrite property assignments of previous sources. * If `customizer` is provided it's invoked to produce the assigned values. * The `customizer` is bound to `thisArg` and invoked with five arguments: * (objectValue, sourceValue, key, object, source). * * **Note:** This method mutates `object` and is based on * [`Object.assign`](http://ecma-international.org/ecma-262/6.0/#sec-object.assign). * * @static * @memberOf _ * @alias extend * @category Object * @param {Object} object The destination object. * @param {...Object} [sources] The source objects. * @param {Function} [customizer] The function to customize assigned values. * @param {*} [thisArg] The `this` binding of `customizer`. * @returns {Object} Returns `object`. * @example * * _.assign({ 'user': 'barney' }, { 'age': 40 }, { 'user': 'fred' }); * // => { 'user': 'fred', 'age': 40 } * * // using a customizer callback * var defaults = _.partialRight(_.assign, function(value, other) { * return _.isUndefined(value) ? other : value; * }); * * defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' }); * // => { 'user': 'barney', 'age': 36 } */ var assign = createAssigner(function(object, source, customizer) { return customizer ? assignWith(object, source, customizer) : baseAssign(object, source); }); module.exports = assign; },{"327":327,"328":328,"374":374}],432:[function(_dereq_,module,exports){ var baseGet = _dereq_(345), baseSlice = _dereq_(360), isArguments = _dereq_(421), isArray = _dereq_(422), isIndex = _dereq_(400), isKey = _dereq_(402), isLength = _dereq_(404), last = _dereq_(293), toPath = _dereq_(418); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Checks if `path` is a direct property. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @param {Array|string} path The path to check. * @returns {boolean} Returns `true` if `path` is a direct property, else `false`. * @example * * var object = { 'a': { 'b': { 'c': 3 } } }; * * _.has(object, 'a'); * // => true * * _.has(object, 'a.b.c'); * // => true * * _.has(object, ['a', 'b', 'c']); * // => true */ function has(object, path) { if (object == null) { return false; } var result = hasOwnProperty.call(object, path); if (!result && !isKey(path)) { path = toPath(path); object = path.length == 1 ? object : baseGet(object, baseSlice(path, 0, -1)); if (object == null) { return false; } path = last(path); result = hasOwnProperty.call(object, path); } return result || (isLength(object.length) && isIndex(path, object.length) && (isArray(object) || isArguments(object))); } module.exports = has; },{"293":293,"345":345,"360":360,"400":400,"402":402,"404":404,"418":418,"421":421,"422":422}],433:[function(_dereq_,module,exports){ var getNative = _dereq_(394), isArrayLike = _dereq_(399), isObject = _dereq_(426), shimKeys = _dereq_(415); /* Native method references for those with the same name as other `lodash` methods. */ var nativeKeys = getNative(Object, 'keys'); /** * Creates an array of the own enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. See the * [ES spec](http://ecma-international.org/ecma-262/6.0/#sec-object.keys) * for more details. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.keys(new Foo); * // => ['a', 'b'] (iteration order is not guaranteed) * * _.keys('hi'); * // => ['0', '1'] */ var keys = !nativeKeys ? shimKeys : function(object) { var Ctor = object == null ? undefined : object.constructor; if ((typeof Ctor == 'function' && Ctor.prototype === object) || (typeof object != 'function' && isArrayLike(object))) { return shimKeys(object); } return isObject(object) ? nativeKeys(object) : []; }; module.exports = keys; },{"394":394,"399":399,"415":415,"426":426}],434:[function(_dereq_,module,exports){ var isArguments = _dereq_(421), isArray = _dereq_(422), isIndex = _dereq_(400), isLength = _dereq_(404), isObject = _dereq_(426); /** Used for native method references. */ var objectProto = Object.prototype; /** Used to check objects for own properties. */ var hasOwnProperty = objectProto.hasOwnProperty; /** * Creates an array of the own and inherited enumerable property names of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property names. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.keysIn(new Foo); * // => ['a', 'b', 'c'] (iteration order is not guaranteed) */ function keysIn(object) { if (object == null) { return []; } if (!isObject(object)) { object = Object(object); } var length = object.length; length = (length && isLength(length) && (isArray(object) || isArguments(object)) && length) || 0; var Ctor = object.constructor, index = -1, isProto = typeof Ctor == 'function' && Ctor.prototype === object, result = Array(length), skipIndexes = length > 0; while (++index < length) { result[index] = (index + ''); } for (var key in object) { if (!(skipIndexes && isIndex(key, length)) && !(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { result.push(key); } } return result; } module.exports = keysIn; },{"400":400,"404":404,"421":421,"422":422,"426":426}],435:[function(_dereq_,module,exports){ var baseMerge = _dereq_(354), createAssigner = _dereq_(374); /** * Recursively merges own enumerable properties of the source object(s), that * don't resolve to `undefined` into the destination object. Subsequent sources * overwrite property assignments of previous sources. If `customizer` is * provided it's invoked to produce the merged values of the destination and * source properties. If `customizer` returns `undefined` merging is handled * by the method instead. The `customizer` is bound to `thisArg` and invoked * with five arguments: (objectValue, sourceValue, key, object, source). * * @static * @memberOf _ * @category Object * @param {Object} object The destination object. * @param {...Object} [sources] The source objects. * @param {Function} [customizer] The function to customize assigned values. * @param {*} [thisArg] The `this` binding of `customizer`. * @returns {Object} Returns `object`. * @example * * var users = { * 'data': [{ 'user': 'barney' }, { 'user': 'fred' }] * }; * * var ages = { * 'data': [{ 'age': 36 }, { 'age': 40 }] * }; * * _.merge(users, ages); * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] } * * // using a customizer callback * var object = { * 'fruits': ['apple'], * 'vegetables': ['beet'] * }; * * var other = { * 'fruits': ['banana'], * 'vegetables': ['carrot'] * }; * * _.merge(object, other, function(a, b) { * if (_.isArray(a)) { * return a.concat(b); * } * }); * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] } */ var merge = createAssigner(baseMerge); module.exports = merge; },{"354":354,"374":374}],436:[function(_dereq_,module,exports){ var arrayMap = _dereq_(323), baseDifference = _dereq_(335), baseFlatten = _dereq_(341), bindCallback = _dereq_(366), keysIn = _dereq_(434), pickByArray = _dereq_(409), pickByCallback = _dereq_(410), restParam = _dereq_(315); /** * The opposite of `_.pick`; this method creates an object composed of the * own and inherited enumerable properties of `object` that are not omitted. * * @static * @memberOf _ * @category Object * @param {Object} object The source object. * @param {Function|...(string|string[])} [predicate] The function invoked per * iteration or property names to omit, specified as individual property * names or arrays of property names. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {Object} Returns the new object. * @example * * var object = { 'user': 'fred', 'age': 40 }; * * _.omit(object, 'age'); * // => { 'user': 'fred' } * * _.omit(object, _.isNumber); * // => { 'user': 'fred' } */ var omit = restParam(function(object, props) { if (object == null) { return {}; } if (typeof props[0] != 'function') { var props = arrayMap(baseFlatten(props), String); return pickByArray(object, baseDifference(keysIn(object), props)); } var predicate = bindCallback(props[0], props[1], 3); return pickByCallback(object, function(value, key, object) { return !predicate(value, key, object); }); }); module.exports = omit; },{"315":315,"323":323,"335":335,"341":341,"366":366,"409":409,"410":410,"434":434}],437:[function(_dereq_,module,exports){ var keys = _dereq_(433), toObject = _dereq_(417); /** * Creates a two dimensional array of the key-value pairs for `object`, * e.g. `[[key1, value1], [key2, value2]]`. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the new array of key-value pairs. * @example * * _.pairs({ 'barney': 36, 'fred': 40 }); * // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed) */ function pairs(object) { object = toObject(object); var index = -1, props = keys(object), length = props.length, result = Array(length); while (++index < length) { var key = props[index]; result[index] = [key, object[key]]; } return result; } module.exports = pairs; },{"417":417,"433":433}],438:[function(_dereq_,module,exports){ var baseFlatten = _dereq_(341), bindCallback = _dereq_(366), pickByArray = _dereq_(409), pickByCallback = _dereq_(410), restParam = _dereq_(315); /** * Creates an object composed of the picked `object` properties. Property * names may be specified as individual arguments or as arrays of property * names. If `predicate` is provided it's invoked for each property of `object` * picking the properties `predicate` returns truthy for. The predicate is * bound to `thisArg` and invoked with three arguments: (value, key, object). * * @static * @memberOf _ * @category Object * @param {Object} object The source object. * @param {Function|...(string|string[])} [predicate] The function invoked per * iteration or property names to pick, specified as individual property * names or arrays of property names. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {Object} Returns the new object. * @example * * var object = { 'user': 'fred', 'age': 40 }; * * _.pick(object, 'user'); * // => { 'user': 'fred' } * * _.pick(object, _.isString); * // => { 'user': 'fred' } */ var pick = restParam(function(object, props) { if (object == null) { return {}; } return typeof props[0] == 'function' ? pickByCallback(object, bindCallback(props[0], props[1], 3)) : pickByArray(object, baseFlatten(props)); }); module.exports = pick; },{"315":315,"341":341,"366":366,"409":409,"410":410}],439:[function(_dereq_,module,exports){ var arrayEach = _dereq_(320), baseCallback = _dereq_(329), baseCreate = _dereq_(333), baseForOwn = _dereq_(344), isArray = _dereq_(422), isFunction = _dereq_(423), isObject = _dereq_(426), isTypedArray = _dereq_(429); /** * An alternative to `_.reduce`; this method transforms `object` to a new * `accumulator` object which is the result of running each of its own enumerable * properties through `iteratee`, with each invocation potentially mutating * the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked * with four arguments: (accumulator, value, key, object). Iteratee functions * may exit iteration early by explicitly returning `false`. * * @static * @memberOf _ * @category Object * @param {Array|Object} object The object to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. * @param {*} [accumulator] The custom accumulator value. * @param {*} [thisArg] The `this` binding of `iteratee`. * @returns {*} Returns the accumulated value. * @example * * _.transform([2, 3, 4], function(result, n) { * result.push(n *= n); * return n % 2 == 0; * }); * // => [4, 9] * * _.transform({ 'a': 1, 'b': 2 }, function(result, n, key) { * result[key] = n * 3; * }); * // => { 'a': 3, 'b': 6 } */ function transform(object, iteratee, accumulator, thisArg) { var isArr = isArray(object) || isTypedArray(object); iteratee = baseCallback(iteratee, thisArg, 4); if (accumulator == null) { if (isArr || isObject(object)) { var Ctor = object.constructor; if (isArr) { accumulator = isArray(object) ? new Ctor : []; } else { accumulator = baseCreate(isFunction(Ctor) ? Ctor.prototype : undefined); } } else { accumulator = {}; } } (isArr ? arrayEach : baseForOwn)(object, function(value, index, object) { return iteratee(accumulator, value, index, object); }); return accumulator; } module.exports = transform; },{"320":320,"329":329,"333":333,"344":344,"422":422,"423":423,"426":426,"429":429}],440:[function(_dereq_,module,exports){ var baseValues = _dereq_(365), keys = _dereq_(433); /** * Creates an array of the own enumerable property values of `object`. * * **Note:** Non-object values are coerced to objects. * * @static * @memberOf _ * @category Object * @param {Object} object The object to query. * @returns {Array} Returns the array of property values. * @example * * function Foo() { * this.a = 1; * this.b = 2; * } * * Foo.prototype.c = 3; * * _.values(new Foo); * // => [1, 2] (iteration order is not guaranteed) * * _.values('hi'); * // => ['h', 'i'] */ function values(object) { return baseValues(object, keys(object)); } module.exports = values; },{"365":365,"433":433}],441:[function(_dereq_,module,exports){ /** * This method returns the first argument provided to it. * * @static * @memberOf _ * @category Utility * @param {*} value Any value. * @returns {*} Returns `value`. * @example * * var object = { 'user': 'fred' }; * * _.identity(object) === object; * // => true */ function identity(value) { return value; } module.exports = identity; },{}],442:[function(_dereq_,module,exports){ /** * A no-operation function that returns `undefined` regardless of the * arguments it receives. * * @static * @memberOf _ * @category Utility * @example * * var object = { 'user': 'fred' }; * * _.noop(object) === undefined; * // => true */ function noop() { // No operation performed. } module.exports = noop; },{}],443:[function(_dereq_,module,exports){ var baseProperty = _dereq_(356), basePropertyDeep = _dereq_(357), isKey = _dereq_(402); /** * Creates a function that returns the property value at `path` on a * given object. * * @static * @memberOf _ * @category Utility * @param {Array|string} path The path of the property to get. * @returns {Function} Returns the new function. * @example * * var objects = [ * { 'a': { 'b': { 'c': 2 } } }, * { 'a': { 'b': { 'c': 1 } } } * ]; * * _.map(objects, _.property('a.b.c')); * // => [2, 1] * * _.pluck(_.sortBy(objects, _.property(['a', 'b', 'c'])), 'a.b.c'); * // => [1, 2] */ function property(path) { return isKey(path) ? baseProperty(path) : basePropertyDeep(path); } module.exports = property; },{"356":356,"357":357,"402":402}],444:[function(_dereq_,module,exports){ /** * Set attribute `name` to `val`, or get attr `name`. * * @param {Element} el * @param {String} name * @param {String} [val] * @api public */ module.exports = function(el, name, val) { // get if (arguments.length == 2) { return el.getAttribute(name); } // remove if (val === null) { return el.removeAttribute(name); } // set el.setAttribute(name, val); return el; }; },{}],445:[function(_dereq_,module,exports){ module.exports = _dereq_(107); },{"107":107}],446:[function(_dereq_,module,exports){ module.exports = function(el) { var c; while (el.childNodes.length) { c = el.childNodes[0]; el.removeChild(c); } return el; }; },{}],447:[function(_dereq_,module,exports){ module.exports = _dereq_(108); },{"108":108}],448:[function(_dereq_,module,exports){ module.exports = _dereq_(109); },{"109":109}],449:[function(_dereq_,module,exports){ module.exports = _dereq_(285); },{"285":285}],450:[function(_dereq_,module,exports){ module.exports = _dereq_(110); },{"110":110}],451:[function(_dereq_,module,exports){ module.exports = _dereq_(112); },{"112":112}],452:[function(_dereq_,module,exports){ module.exports = _dereq_(113); },{"113":113}],453:[function(_dereq_,module,exports){ module.exports = function(el) { el.parentNode && el.parentNode.removeChild(el); }; },{}],454:[function(_dereq_,module,exports){ 'use strict'; function hasLowerCaseAlias(pkg) { return pkg.xml && pkg.xml.tagAlias === 'lowerCase'; } module.exports.hasLowerCaseAlias = hasLowerCaseAlias; module.exports.DEFAULT_NS_MAP = { 'xsi': 'http://www.w3.org/2001/XMLSchema-instance' }; var XSI_TYPE = module.exports.XSI_TYPE = 'xsi:type'; function serializeFormat(element) { return element.xml && element.xml.serialize; } module.exports.serializeAsType = function(element) { return serializeFormat(element) === XSI_TYPE; }; module.exports.serializeAsProperty = function(element) { return serializeFormat(element) === 'property'; }; },{}],455:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303), find = _dereq_(302), assign = _dereq_(431), defer = _dereq_(314); var Stack = _dereq_(471), SaxParser = _dereq_(470), Moddle = _dereq_(457), parseNameNs = _dereq_(462).parseName, Types = _dereq_(465), coerceType = Types.coerceType, isSimpleType = Types.isSimple, common = _dereq_(454), XSI_TYPE = common.XSI_TYPE, serializeAsType = common.serializeAsType, hasLowerCaseAlias = common.hasLowerCaseAlias; function capitalize(str) { return str.charAt(0).toUpperCase() + str.slice(1); } function aliasToName(aliasNs, pkg) { if (!hasLowerCaseAlias(pkg)) { return aliasNs.name; } return aliasNs.prefix + ':' + capitalize(aliasNs.localName); } function prefixedToName(nameNs, pkg) { var name = nameNs.name, localName = nameNs.localName; var typePrefix = pkg.xml && pkg.xml.typePrefix; if (typePrefix && localName.indexOf(typePrefix) === 0) { return nameNs.prefix + ':' + localName.slice(typePrefix.length); } else { return name; } } function normalizeXsiTypeName(name, model) { var nameNs = parseNameNs(name); var pkg = model.getPackage(nameNs.prefix); return prefixedToName(nameNs, pkg); } function error(message) { return new Error(message); } /** * Get the moddle descriptor for a given instance or type. * * @param {ModdleElement|Function} element * * @return {Object} the moddle descriptor */ function getModdleDescriptor(element) { return element.$descriptor; } /** * A parse context. * * @class * * @param {Object} options * @param {ElementHandler} options.rootHandler the root handler for parsing a document * @param {boolean} [options.lax=false] whether or not to ignore invalid elements */ function Context(options) { /** * @property {ElementHandler} rootHandler */ /** * @property {Boolean} lax */ assign(this, options); this.elementsById = {}; this.references = []; this.warnings = []; /** * Add an unresolved reference. * * @param {Object} reference */ this.addReference = function(reference) { this.references.push(reference); }; /** * Add a processed element. * * @param {ModdleElement} element */ this.addElement = function(element) { if (!element) { throw error('expected element'); } var elementsById = this.elementsById; var descriptor = getModdleDescriptor(element); var idProperty = descriptor.idProperty, id; if (idProperty) { id = element.get(idProperty.name); if (id) { if (elementsById[id]) { throw error('duplicate ID <' + id + '>'); } elementsById[id] = element; } } }; /** * Add an import warning. * * @param {Object} warning * @param {String} warning.message * @param {Error} [warning.error] */ this.addWarning = function(warning) { this.warnings.push(warning); }; } function BaseHandler() {} BaseHandler.prototype.handleEnd = function() {}; BaseHandler.prototype.handleText = function() {}; BaseHandler.prototype.handleNode = function() {}; /** * A simple pass through handler that does nothing except for * ignoring all input it receives. * * This is used to ignore unknown elements and * attributes. */ function NoopHandler() { } NoopHandler.prototype = Object.create(BaseHandler.prototype); NoopHandler.prototype.handleNode = function() { return this; }; function BodyHandler() {} BodyHandler.prototype = Object.create(BaseHandler.prototype); BodyHandler.prototype.handleText = function(text) { this.body = (this.body || '') + text; }; function ReferenceHandler(property, context) { this.property = property; this.context = context; } ReferenceHandler.prototype = Object.create(BodyHandler.prototype); ReferenceHandler.prototype.handleNode = function(node) { if (this.element) { throw error('expected no sub nodes'); } else { this.element = this.createReference(node); } return this; }; ReferenceHandler.prototype.handleEnd = function() { this.element.id = this.body; }; ReferenceHandler.prototype.createReference = function(node) { return { property: this.property.ns.name, id: '' }; }; function ValueHandler(propertyDesc, element) { this.element = element; this.propertyDesc = propertyDesc; } ValueHandler.prototype = Object.create(BodyHandler.prototype); ValueHandler.prototype.handleEnd = function() { var value = this.body || '', element = this.element, propertyDesc = this.propertyDesc; value = coerceType(propertyDesc.type, value); if (propertyDesc.isMany) { element.get(propertyDesc.name).push(value); } else { element.set(propertyDesc.name, value); } }; function BaseElementHandler() {} BaseElementHandler.prototype = Object.create(BodyHandler.prototype); BaseElementHandler.prototype.handleNode = function(node) { var parser = this, element = this.element; if (!element) { element = this.element = this.createElement(node); this.context.addElement(element); } else { parser = this.handleChild(node); } return parser; }; /** * @class XMLReader.ElementHandler * */ function ElementHandler(model, typeName, context) { this.model = model; this.type = model.getType(typeName); this.context = context; } ElementHandler.prototype = Object.create(BaseElementHandler.prototype); ElementHandler.prototype.addReference = function(reference) { this.context.addReference(reference); }; ElementHandler.prototype.handleEnd = function() { var value = this.body, element = this.element, descriptor = getModdleDescriptor(element), bodyProperty = descriptor.bodyProperty; if (bodyProperty && value !== undefined) { value = coerceType(bodyProperty.type, value); element.set(bodyProperty.name, value); } }; /** * Create an instance of the model from the given node. * * @param {Element} node the xml node */ ElementHandler.prototype.createElement = function(node) { var attributes = node.attributes, Type = this.type, descriptor = getModdleDescriptor(Type), context = this.context, instance = new Type({}); forEach(attributes, function(value, name) { var prop = descriptor.propertiesByName[name], values; if (prop && prop.isReference) { if (!prop.isMany) { context.addReference({ element: instance, property: prop.ns.name, id: value }); } else { // IDREFS: parse references as whitespace-separated list values = value.split(' '); forEach(values, function(v) { context.addReference({ element: instance, property: prop.ns.name, id: v }); }); } } else { if (prop) { value = coerceType(prop.type, value); } instance.set(name, value); } }); return instance; }; ElementHandler.prototype.getPropertyForNode = function(node) { var name = node.name; var nameNs = parseNameNs(name); var type = this.type, model = this.model, descriptor = getModdleDescriptor(type); var propertyName = nameNs.name, property = descriptor.propertiesByName[propertyName], elementTypeName, elementType; // search for properties by name first if (property) { if (serializeAsType(property)) { elementTypeName = node.attributes[XSI_TYPE]; // xsi type is optional, if it does not exists the // default type is assumed if (elementTypeName) { // take possible type prefixes from XML // into account, i.e.: xsi:type="t{ActualType}" elementTypeName = normalizeXsiTypeName(elementTypeName, model); elementType = model.getType(elementTypeName); return assign({}, property, { effectiveType: getModdleDescriptor(elementType).name }); } } // search for properties by name first return property; } var pkg = model.getPackage(nameNs.prefix); if (pkg) { elementTypeName = aliasToName(nameNs, pkg); elementType = model.getType(elementTypeName); // search for collection members later property = find(descriptor.properties, function(p) { return !p.isVirtual && !p.isReference && !p.isAttribute && elementType.hasType(p.type); }); if (property) { return assign({}, property, { effectiveType: getModdleDescriptor(elementType).name }); } } else { // parse unknown element (maybe extension) property = find(descriptor.properties, function(p) { return !p.isReference && !p.isAttribute && p.type === 'Element'; }); if (property) { return property; } } throw error('unrecognized element <' + nameNs.name + '>'); }; ElementHandler.prototype.toString = function() { return 'ElementDescriptor[' + getModdleDescriptor(this.type).name + ']'; }; ElementHandler.prototype.valueHandler = function(propertyDesc, element) { return new ValueHandler(propertyDesc, element); }; ElementHandler.prototype.referenceHandler = function(propertyDesc) { return new ReferenceHandler(propertyDesc, this.context); }; ElementHandler.prototype.handler = function(type) { if (type === 'Element') { return new GenericElementHandler(this.model, type, this.context); } else { return new ElementHandler(this.model, type, this.context); } }; /** * Handle the child element parsing * * @param {Element} node the xml node */ ElementHandler.prototype.handleChild = function(node) { var propertyDesc, type, element, childHandler; propertyDesc = this.getPropertyForNode(node); element = this.element; type = propertyDesc.effectiveType || propertyDesc.type; if (isSimpleType(type)) { return this.valueHandler(propertyDesc, element); } if (propertyDesc.isReference) { childHandler = this.referenceHandler(propertyDesc).handleNode(node); } else { childHandler = this.handler(type).handleNode(node); } var newElement = childHandler.element; // child handles may decide to skip elements // by not returning anything if (newElement !== undefined) { if (propertyDesc.isMany) { element.get(propertyDesc.name).push(newElement); } else { element.set(propertyDesc.name, newElement); } if (propertyDesc.isReference) { assign(newElement, { element: element }); this.context.addReference(newElement); } else { // establish child -> parent relationship newElement.$parent = element; } } return childHandler; }; /** * An element handler that performs special validation * to ensure the node it gets initialized with matches * the handlers type (namespace wise). * * @param {Moddle} model * @param {String} typeName * @param {Context} context */ function RootElementHandler(model, typeName, context) { ElementHandler.call(this, model, typeName, context); } RootElementHandler.prototype = Object.create(ElementHandler.prototype); RootElementHandler.prototype.createElement = function(node) { var name = node.name, nameNs = parseNameNs(name), model = this.model, type = this.type, pkg = model.getPackage(nameNs.prefix), typeName = pkg && aliasToName(nameNs, pkg) || name; // verify the correct namespace if we parse // the first element in the handler tree // // this ensures we don't mistakenly import wrong namespace elements if (!type.hasType(typeName)) { throw error('unexpected element <' + node.originalName + '>'); } return ElementHandler.prototype.createElement.call(this, node); }; function GenericElementHandler(model, typeName, context) { this.model = model; this.context = context; } GenericElementHandler.prototype = Object.create(BaseElementHandler.prototype); GenericElementHandler.prototype.createElement = function(node) { var name = node.name, ns = parseNameNs(name), prefix = ns.prefix, uri = node.ns[prefix + '$uri'], attributes = node.attributes; return this.model.createAny(name, uri, attributes); }; GenericElementHandler.prototype.handleChild = function(node) { var handler = new GenericElementHandler(this.model, 'Element', this.context).handleNode(node), element = this.element; var newElement = handler.element, children; if (newElement !== undefined) { children = element.$children = element.$children || []; children.push(newElement); // establish child -> parent relationship newElement.$parent = element; } return handler; }; GenericElementHandler.prototype.handleText = function(text) { this.body = this.body || '' + text; }; GenericElementHandler.prototype.handleEnd = function() { if (this.body) { this.element.$body = this.body; } }; /** * A reader for a meta-model * * @param {Object} options * @param {Model} options.model used to read xml files * @param {Boolean} options.lax whether to make parse errors warnings */ function XMLReader(options) { if (options instanceof Moddle) { options = { model: options }; } assign(this, { lax: false }, options); } /** * Parse the given XML into a moddle document tree. * * @param {String} xml * @param {ElementHandler|Object} options or rootHandler * @param {Function} done */ XMLReader.prototype.fromXML = function(xml, options, done) { var rootHandler = options.rootHandler; if (options instanceof ElementHandler) { // root handler passed via (xml, { rootHandler: ElementHandler }, ...) rootHandler = options; options = {}; } else { if (typeof options === 'string') { // rootHandler passed via (xml, 'someString', ...) rootHandler = this.handler(options); options = {}; } else if (typeof rootHandler === 'string') { // rootHandler passed via (xml, { rootHandler: 'someString' }, ...) rootHandler = this.handler(rootHandler); } } var model = this.model, lax = this.lax; var context = new Context(assign({}, options, { rootHandler: rootHandler })), parser = new SaxParser({ proxy: true }), stack = new Stack(); rootHandler.context = context; // push root handler stack.push(rootHandler); /** * Handle error. * * @param {Error} err * @param {Function} getContext * @param {boolean} lax * * @return {boolean} true if handled */ function handleError(err, getContext, lax) { var ctx = getContext(); var line = ctx.line, column = ctx.column, data = ctx.data; // we receive the full context data here, // for elements trim down the information // to the tag name, only if (data.charAt(0) === '<' && data.indexOf(' ') !== -1) { data = data.slice(0, data.indexOf(' ')) + '>'; } var message = 'unparsable content ' + (data ? data + ' ' : '') + 'detected\n\t' + 'line: ' + line + '\n\t' + 'column: ' + column + '\n\t' + 'nested error: ' + err.message; if (lax) { context.addWarning({ message: message, error: err }); console.warn('could not parse node'); console.warn(err); return true; } else { console.error('could not parse document'); console.error(err); throw error(message); } } function handleWarning(err, getContext) { // just like handling errors in mode return handleError(err, getContext, true); } /** * Resolve collected references on parse end. */ function resolveReferences() { var elementsById = context.elementsById; var references = context.references; var i, r; for (i = 0; (r = references[i]); i++) { var element = r.element; var reference = elementsById[r.id]; var property = getModdleDescriptor(element).propertiesByName[r.property]; if (!reference) { context.addWarning({ message: 'unresolved reference <' + r.id + '>', element: r.element, property: r.property, value: r.id }); } if (property.isMany) { var collection = element.get(property.name), idx = collection.indexOf(r); // we replace an existing place holder (idx != -1) or // append to the collection instead if (idx === -1) { idx = collection.length; } if (!reference) { // remove unresolvable reference collection.splice(idx, 1); } else { // add or update reference in collection collection[idx] = reference; } } else { element.set(property.name, reference); } } } function handleClose() { stack.pop().handleEnd(); } function handleOpen(node, getContext) { var handler = stack.peek(); try { stack.push(handler.handleNode(node)); } catch (err) { if (handleError(err, getContext, lax)) { stack.push(new NoopHandler()); } } } function handleCData(text) { stack.peek().handleText(text); } function handleText(text) { // strip whitespace only nodes, i.e. before // sections and in between tags text = text.trim(); if (!text) { return; } stack.peek().handleText(text); } var uriMap = model.getPackages().reduce(function(uriMap, p) { uriMap[p.uri] = p.prefix; return uriMap; }, {}); parser .ns(uriMap) .on('openTag', function(obj, decodeStr, selfClosing, getContext) { // gracefully handle unparsable attributes (attrs=false) var attrs = obj.attrs || {}; var decodedAttrs = Object.keys(attrs).reduce(function(d, key) { var value = decodeStr(attrs[key]); d[key] = value; return d; }, {}); var node = { name: obj.name, originalName: obj.originalName, attributes: decodedAttrs, ns: obj.ns }; handleOpen(node, getContext); }) .on('closeTag', handleClose) .on('cdata', handleCData) .on('text', handleText) .on('error', handleError) .on('warn', handleWarning); // deferred parse XML to make loading really ascnchronous // this ensures the execution environment (node or browser) // is kept responsive and that certain optimization strategies // can kick in defer(function() { var err; try { parser.parse(xml); resolveReferences(); } catch (e) { err = e; } var element = rootHandler.element; // handle the situation that we could not extract // the desired root element from the document if (!err && !element) { err = error('failed to parse document as <' + rootHandler.type.$descriptor.name + '>'); } done(err, err ? undefined : element, context); }); }; XMLReader.prototype.handler = function(name) { return new RootElementHandler(this.model, name); }; module.exports = XMLReader; module.exports.ElementHandler = ElementHandler; },{"302":302,"303":303,"314":314,"431":431,"454":454,"457":457,"462":462,"465":465,"470":470,"471":471}],456:[function(_dereq_,module,exports){ 'use strict'; var map = _dereq_(305), forEach = _dereq_(303), isString = _dereq_(428), filter = _dereq_(301), assign = _dereq_(431); var Types = _dereq_(465), parseNameNs = _dereq_(462).parseName, common = _dereq_(454), hasLowerCaseAlias = common.hasLowerCaseAlias, serializeAsType = common.serializeAsType, serializeAsProperty = common.serializeAsProperty; var XML_PREAMBLE = '\n', ESCAPE_CHARS = /(<|>|'|"|&|\n\r|\n)/g, DEFAULT_NS_MAP = common.DEFAULT_NS_MAP, XSI_TYPE = common.XSI_TYPE; function lower(string) { return string.charAt(0).toLowerCase() + string.slice(1); } function nameToAlias(name, pkg) { if (hasLowerCaseAlias(pkg)) { return lower(name); } else { return name; } } function inherits(ctor, superCtor) { ctor.super_ = superCtor; ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true } }); } function nsName(ns) { if (isString(ns)) { return ns; } else { return (ns.prefix ? ns.prefix + ':' : '') + ns.localName; } } function getNsAttrs(namespaces) { function isUsed(ns) { return namespaces.used[ns.uri]; } function toAttr(ns) { var name = 'xmlns' + (ns.prefix ? ':' + ns.prefix : ''); return { name: name, value: ns.uri }; } var allNs = [].concat(namespaces.wellknown, namespaces.custom); return map(filter(allNs, isUsed), toAttr); } function getElementNs(ns, descriptor) { if (descriptor.isGeneric) { return assign({ localName: descriptor.ns.localName }, ns); } else { return assign({ localName: nameToAlias(descriptor.ns.localName, descriptor.$pkg) }, ns); } } function getPropertyNs(ns, descriptor) { return assign({ localName: descriptor.ns.localName }, ns); } function getSerializableProperties(element) { var descriptor = element.$descriptor; return filter(descriptor.properties, function(p) { var name = p.name; if (p.isVirtual) { return false; } // do not serialize defaults if (!element.hasOwnProperty(name)) { return false; } var value = element[name]; // do not serialize default equals if (value === p.default) { return false; } // do not serialize null properties if (value === null) { return false; } return p.isMany ? value.length : true; }); } var ESCAPE_MAP = { '\n': '10', '\n\r': '10', '"': '34', '\'': '39', '<': '60', '>': '62', '&': '38' }; /** * Escape a string attribute to not contain any bad values (line breaks, '"', ...) * * @param {String} str the string to escape * @return {String} the escaped string */ function escapeAttr(str) { // ensure we are handling strings here str = isString(str) ? str : '' + str; return str.replace(ESCAPE_CHARS, function(str) { return '&#' + ESCAPE_MAP[str] + ';'; }); } function filterAttributes(props) { return filter(props, function(p) { return p.isAttr; }); } function filterContained(props) { return filter(props, function(p) { return !p.isAttr; }); } function ReferenceSerializer(parent, ns) { this.ns = ns; } ReferenceSerializer.prototype.build = function(element) { this.element = element; return this; }; ReferenceSerializer.prototype.serializeTo = function(writer) { writer .appendIndent() .append('<' + nsName(this.ns) + '>' + this.element.id + '') .appendNewLine(); }; function BodySerializer() {} BodySerializer.prototype.serializeValue = BodySerializer.prototype.serializeTo = function(writer) { var escape = this.escape; if (escape) { writer.append(''); } }; BodySerializer.prototype.build = function(prop, value) { this.value = value; if (prop.type === 'String' && value.search(ESCAPE_CHARS) !== -1) { this.escape = true; } return this; }; function ValueSerializer(ns) { this.ns = ns; } inherits(ValueSerializer, BodySerializer); ValueSerializer.prototype.serializeTo = function(writer) { writer .appendIndent() .append('<' + nsName(this.ns) + '>'); this.serializeValue(writer); writer .append('') .appendNewLine(); }; function ElementSerializer(parent, ns) { this.body = []; this.attrs = []; this.parent = parent; this.ns = ns; } ElementSerializer.prototype.build = function(element) { this.element = element; var otherAttrs = this.parseNsAttributes(element); if (!this.ns) { this.ns = this.nsTagName(element.$descriptor); } if (element.$descriptor.isGeneric) { this.parseGeneric(element); } else { var properties = getSerializableProperties(element); this.parseAttributes(filterAttributes(properties)); this.parseContainments(filterContained(properties)); this.parseGenericAttributes(element, otherAttrs); } return this; }; ElementSerializer.prototype.nsTagName = function(descriptor) { var effectiveNs = this.logNamespaceUsed(descriptor.ns); return getElementNs(effectiveNs, descriptor); }; ElementSerializer.prototype.nsPropertyTagName = function(descriptor) { var effectiveNs = this.logNamespaceUsed(descriptor.ns); return getPropertyNs(effectiveNs, descriptor); }; ElementSerializer.prototype.isLocalNs = function(ns) { return ns.uri === this.ns.uri; }; /** * Get the actual ns attribute name for the given element. * * @param {Object} element * @param {Boolean} [inherited=false] * * @return {Object} nsName */ ElementSerializer.prototype.nsAttributeName = function(element) { var ns; if (isString(element)) { ns = parseNameNs(element); } else { ns = element.ns; } // return just local name for inherited attributes if (element.inherited) { return { localName: ns.localName }; } // parse + log effective ns var effectiveNs = this.logNamespaceUsed(ns); // strip prefix if same namespace like parent if (this.isLocalNs(effectiveNs)) { return { localName: ns.localName }; } else { return assign({ localName: ns.localName }, effectiveNs); } }; ElementSerializer.prototype.parseGeneric = function(element) { var self = this, body = this.body, attrs = this.attrs; forEach(element, function(val, key) { if (key === '$body') { body.push(new BodySerializer().build({ type: 'String' }, val)); } else if (key === '$children') { forEach(val, function(child) { body.push(new ElementSerializer(self).build(child)); }); } else if (key.indexOf('$') !== 0) { attrs.push({ name: key, value: escapeAttr(val) }); } }); }; /** * Parse namespaces and return a list of left over generic attributes * * @param {Object} element * @return {Array} */ ElementSerializer.prototype.parseNsAttributes = function(element) { var self = this; var genericAttrs = element.$attrs; var model = element.$model; var attributes = []; // parse namespace attributes first // and log them. push non namespace attributes to a list // and process them later forEach(genericAttrs, function(value, name) { var nameNs = parseNameNs(name); var ns; // parse xmlns:foo="http://foo.bar" if (nameNs.prefix === 'xmlns') { ns = { prefix: nameNs.localName, uri: value }; } // parse xmlns="http://foo.bar" if (!nameNs.prefix && nameNs.localName === 'xmlns') { ns = { uri: value }; } if (ns) { if (model.getPackage(value)) { // register well known namespace self.logNamespace(ns, true); } else { // log custom namespace directly as used self.logNamespaceUsed(ns); } } else { attributes.push({ name: name, value: value }); } }); return attributes; }; ElementSerializer.prototype.parseGenericAttributes = function(element, attributes) { var self = this; forEach(attributes, function(attr) { // do not serialize xsi:type attribute // it is set manually based on the actual implementation type if (attr.name === XSI_TYPE) { return; } try { self.addAttribute(self.nsAttributeName(attr.name), attr.value); } catch (e) { console.warn( 'missing namespace information for ', attr.name, '=', attr.value, 'on', element, e); } }); }; ElementSerializer.prototype.parseContainments = function(properties) { var self = this, body = this.body, element = this.element; forEach(properties, function(p) { var value = element.get(p.name), isReference = p.isReference, isMany = p.isMany; var ns = self.nsPropertyTagName(p); if (!isMany) { value = [ value ]; } if (p.isBody) { body.push(new BodySerializer().build(p, value[0])); } else if (Types.isSimple(p.type)) { forEach(value, function(v) { body.push(new ValueSerializer(ns).build(p, v)); }); } else if (isReference) { forEach(value, function(v) { body.push(new ReferenceSerializer(self, ns).build(v)); }); } else { // allow serialization via type // rather than element name var asType = serializeAsType(p), asProperty = serializeAsProperty(p); forEach(value, function(v) { var serializer; if (asType) { serializer = new TypeSerializer(self, ns); } else if (asProperty) { serializer = new ElementSerializer(self, ns); } else { serializer = new ElementSerializer(self); } body.push(serializer.build(v)); }); } }); }; ElementSerializer.prototype.getNamespaces = function() { var namespaces = this.namespaces, parent = this.parent; if (!namespaces) { namespaces = this.namespaces = parent ? parent.getNamespaces() : { prefixMap: {}, uriMap: {}, used: {}, wellknown: [], custom: [] }; } return namespaces; }; ElementSerializer.prototype.logNamespace = function(ns, wellknown) { var namespaces = this.getNamespaces(); var nsUri = ns.uri; var existing = namespaces.uriMap[nsUri]; if (!existing) { namespaces.uriMap[nsUri] = ns; if (wellknown) { namespaces.wellknown.push(ns); } else { namespaces.custom.push(ns); } } namespaces.prefixMap[ns.prefix] = nsUri; return ns; }; ElementSerializer.prototype.logNamespaceUsed = function(ns) { var element = this.element, model = element.$model, namespaces = this.getNamespaces(); // ns may be // // * prefix only // * prefix:uri // * localName only var prefix = ns.prefix, uri = ns.uri, newPrefix, idx, wellknownUri; // handle anonymous namespaces (elementForm=unqualified), cf. #23 if (!prefix && !uri) { return { localName: ns.localName }; } wellknownUri = DEFAULT_NS_MAP[prefix] || model && (model.getPackage(prefix) || {}).uri; uri = uri || wellknownUri || namespaces.prefixMap[prefix]; if (!uri) { throw new Error('no namespace uri given for prefix <' + prefix + '>'); } ns = namespaces.uriMap[uri]; if (!ns) { newPrefix = prefix; idx = 1; // find a prefix that is not mapped yet while (namespaces.prefixMap[newPrefix]) { newPrefix = prefix + '_' + idx++; } ns = this.logNamespace({ prefix: newPrefix, uri: uri }, wellknownUri === uri); } if (!namespaces.used[ns.uri]) { namespaces.used[ns.uri] = ns; } return ns; }; ElementSerializer.prototype.parseAttributes = function(properties) { var self = this, element = this.element; forEach(properties, function(p) { var value = element.get(p.name); if (p.isReference) { if (!p.isMany) { value = value.id; } else { var values = []; forEach(value, function(v) { values.push(v.id); }); // IDREFS is a whitespace-separated list of references. value = values.join(' '); } } self.addAttribute(self.nsAttributeName(p), value); }); }; ElementSerializer.prototype.addAttribute = function(name, value) { var attrs = this.attrs; if (isString(value)) { value = escapeAttr(value); } attrs.push({ name: name, value: value }); }; ElementSerializer.prototype.serializeAttributes = function(writer) { var attrs = this.attrs, root = !this.parent; if (root) { attrs = getNsAttrs(this.namespaces).concat(attrs); } forEach(attrs, function(a) { writer .append(' ') .append(nsName(a.name)).append('="').append(a.value).append('"'); }); }; ElementSerializer.prototype.serializeTo = function(writer) { var firstBody = this.body[0], indent = firstBody && firstBody.constructor !== BodySerializer; writer .appendIndent() .append('<' + nsName(this.ns)); this.serializeAttributes(writer); writer.append(firstBody ? '>' : ' />'); if (firstBody) { if (indent) { writer .appendNewLine() .indent(); } forEach(this.body, function(b) { b.serializeTo(writer); }); if (indent) { writer .unindent() .appendIndent(); } writer.append(''); } writer.appendNewLine(); }; /** * A serializer for types that handles serialization of data types */ function TypeSerializer(parent, ns) { ElementSerializer.call(this, parent, ns); } inherits(TypeSerializer, ElementSerializer); TypeSerializer.prototype.build = function(element) { var descriptor = element.$descriptor; this.element = element; this.typeNs = this.nsTagName(descriptor); // add xsi:type attribute to represent the elements // actual type var typeNs = this.typeNs, pkg = element.$model.getPackage(typeNs.uri), typePrefix = (pkg.xml && pkg.xml.typePrefix) || ''; this.addAttribute(this.nsAttributeName(XSI_TYPE), (typeNs.prefix ? typeNs.prefix + ':' : '') + typePrefix + descriptor.ns.localName); // do the usual stuff return ElementSerializer.prototype.build.call(this, element); }; TypeSerializer.prototype.isLocalNs = function(ns) { return ns.uri === this.typeNs.uri; }; function SavingWriter() { this.value = ''; this.write = function(str) { this.value += str; }; } function FormatingWriter(out, format) { var indent = ['']; this.append = function(str) { out.write(str); return this; }; this.appendNewLine = function() { if (format) { out.write('\n'); } return this; }; this.appendIndent = function() { if (format) { out.write(indent.join(' ')); } return this; }; this.indent = function() { indent.push(''); return this; }; this.unindent = function() { indent.pop(); return this; }; } /** * A writer for meta-model backed document trees * * @param {Object} options output options to pass into the writer */ function XMLWriter(options) { options = assign({ format: false, preamble: true }, options || {}); function toXML(tree, writer) { var internalWriter = writer || new SavingWriter(); var formatingWriter = new FormatingWriter(internalWriter, options.format); if (options.preamble) { formatingWriter.append(XML_PREAMBLE); } new ElementSerializer().build(tree).serializeTo(formatingWriter); if (!writer) { return internalWriter.value; } } return { toXML: toXML }; } module.exports = XMLWriter; },{"301":301,"303":303,"305":305,"428":428,"431":431,"454":454,"462":462,"465":465}],457:[function(_dereq_,module,exports){ module.exports = _dereq_(461); },{"461":461}],458:[function(_dereq_,module,exports){ 'use strict'; function Base() { } Base.prototype.get = function(name) { return this.$model.properties.get(this, name); }; Base.prototype.set = function(name, value) { this.$model.properties.set(this, name, value); }; module.exports = Base; },{}],459:[function(_dereq_,module,exports){ 'use strict'; var pick = _dereq_(438), assign = _dereq_(431), forEach = _dereq_(303); var parseNameNs = _dereq_(462).parseName; function DescriptorBuilder(nameNs) { this.ns = nameNs; this.name = nameNs.name; this.allTypes = []; this.allTypesByName = {}; this.properties = []; this.propertiesByName = {}; } module.exports = DescriptorBuilder; DescriptorBuilder.prototype.build = function() { return pick(this, [ 'ns', 'name', 'allTypes', 'allTypesByName', 'properties', 'propertiesByName', 'bodyProperty', 'idProperty' ]); }; /** * Add property at given index. * * @param {Object} p * @param {Number} [idx] * @param {Boolean} [validate=true] */ DescriptorBuilder.prototype.addProperty = function(p, idx, validate) { if (typeof idx === 'boolean') { validate = idx; idx = undefined; } this.addNamedProperty(p, validate !== false); var properties = this.properties; if (idx !== undefined) { properties.splice(idx, 0, p); } else { properties.push(p); } }; DescriptorBuilder.prototype.replaceProperty = function(oldProperty, newProperty, replace) { var oldNameNs = oldProperty.ns; var props = this.properties, propertiesByName = this.propertiesByName, rename = oldProperty.name !== newProperty.name; if (oldProperty.isId) { if (!newProperty.isId) { throw new Error( 'property <' + newProperty.ns.name + '> must be id property ' + 'to refine <' + oldProperty.ns.name + '>'); } this.setIdProperty(newProperty, false); } if (oldProperty.isBody) { if (!newProperty.isBody) { throw new Error( 'property <' + newProperty.ns.name + '> must be body property ' + 'to refine <' + oldProperty.ns.name + '>'); } // TODO: Check compatibility this.setBodyProperty(newProperty, false); } // validate existence and get location of old property var idx = props.indexOf(oldProperty); if (idx === -1) { throw new Error('property <' + oldNameNs.name + '> not found in property list'); } // remove old property props.splice(idx, 1); // replacing the named property is intentional // // * validate only if this is a "rename" operation // * add at specific index unless we "replace" // this.addProperty(newProperty, replace ? undefined : idx, rename); // make new property available under old name propertiesByName[oldNameNs.name] = propertiesByName[oldNameNs.localName] = newProperty; }; DescriptorBuilder.prototype.redefineProperty = function(p, targetPropertyName, replace) { var nsPrefix = p.ns.prefix; var parts = targetPropertyName.split('#'); var name = parseNameNs(parts[0], nsPrefix); var attrName = parseNameNs(parts[1], name.prefix).name; var redefinedProperty = this.propertiesByName[attrName]; if (!redefinedProperty) { throw new Error('refined property <' + attrName + '> not found'); } else { this.replaceProperty(redefinedProperty, p, replace); } delete p.redefines; }; DescriptorBuilder.prototype.addNamedProperty = function(p, validate) { var ns = p.ns, propsByName = this.propertiesByName; if (validate) { this.assertNotDefined(p, ns.name); this.assertNotDefined(p, ns.localName); } propsByName[ns.name] = propsByName[ns.localName] = p; }; DescriptorBuilder.prototype.removeNamedProperty = function(p) { var ns = p.ns, propsByName = this.propertiesByName; delete propsByName[ns.name]; delete propsByName[ns.localName]; }; DescriptorBuilder.prototype.setBodyProperty = function(p, validate) { if (validate && this.bodyProperty) { throw new Error( 'body property defined multiple times ' + '(<' + this.bodyProperty.ns.name + '>, <' + p.ns.name + '>)'); } this.bodyProperty = p; }; DescriptorBuilder.prototype.setIdProperty = function(p, validate) { if (validate && this.idProperty) { throw new Error( 'id property defined multiple times ' + '(<' + this.idProperty.ns.name + '>, <' + p.ns.name + '>)'); } this.idProperty = p; }; DescriptorBuilder.prototype.assertNotDefined = function(p, name) { var propertyName = p.name, definedProperty = this.propertiesByName[propertyName]; if (definedProperty) { throw new Error( 'property <' + propertyName + '> already defined; ' + 'override of <' + definedProperty.definedBy.ns.name + '#' + definedProperty.ns.name + '> by ' + '<' + p.definedBy.ns.name + '#' + p.ns.name + '> not allowed without redefines'); } }; DescriptorBuilder.prototype.hasProperty = function(name) { return this.propertiesByName[name]; }; DescriptorBuilder.prototype.addTrait = function(t, inherited) { var typesByName = this.allTypesByName, types = this.allTypes; var typeName = t.name; if (typeName in typesByName) { return; } forEach(t.properties, function(p) { // clone property to allow extensions p = assign({}, p, { name: p.ns.localName, inherited: inherited }); Object.defineProperty(p, 'definedBy', { value: t }); var replaces = p.replaces, redefines = p.redefines; // add replace/redefine support if (replaces || redefines) { this.redefineProperty(p, replaces || redefines, replaces); } else { if (p.isBody) { this.setBodyProperty(p); } if (p.isId) { this.setIdProperty(p); } this.addProperty(p); } }, this); types.push(t); typesByName[typeName] = t; }; },{"303":303,"431":431,"438":438,"462":462}],460:[function(_dereq_,module,exports){ 'use strict'; var forEach = _dereq_(303); var Base = _dereq_(458); function Factory(model, properties) { this.model = model; this.properties = properties; } module.exports = Factory; Factory.prototype.createType = function(descriptor) { var model = this.model; var props = this.properties, prototype = Object.create(Base.prototype); // initialize default values forEach(descriptor.properties, function(p) { if (!p.isMany && p.default !== undefined) { prototype[p.name] = p.default; } }); props.defineModel(prototype, model); props.defineDescriptor(prototype, descriptor); var name = descriptor.ns.name; /** * The new type constructor */ function ModdleElement(attrs) { props.define(this, '$type', { value: name, enumerable: true }); props.define(this, '$attrs', { value: {} }); props.define(this, '$parent', { writable: true }); forEach(attrs, function(val, key) { this.set(key, val); }, this); } ModdleElement.prototype = prototype; ModdleElement.hasType = prototype.$instanceOf = this.model.hasType; // static links props.defineModel(ModdleElement, model); props.defineDescriptor(ModdleElement, descriptor); return ModdleElement; }; },{"303":303,"458":458}],461:[function(_dereq_,module,exports){ 'use strict'; var isString = _dereq_(428), isObject = _dereq_(426), forEach = _dereq_(303); var Factory = _dereq_(460), Registry = _dereq_(464), Properties = _dereq_(463); var parseNameNs = _dereq_(462).parseName; //// Moddle implementation ///////////////////////////////////////////////// /** * @class Moddle * * A model that can be used to create elements of a specific type. * * @example * * var Moddle = require('moddle'); * * var pkg = { * name: 'mypackage', * prefix: 'my', * types: [ * { name: 'Root' } * ] * }; * * var moddle = new Moddle([pkg]); * * @param {Array} packages the packages to contain */ function Moddle(packages) { this.properties = new Properties(this); this.factory = new Factory(this, this.properties); this.registry = new Registry(packages, this.properties); this.typeCache = {}; } module.exports = Moddle; /** * Create an instance of the specified type. * * @method Moddle#create * * @example * * var foo = moddle.create('my:Foo'); * var bar = moddle.create('my:Bar', { id: 'BAR_1' }); * * @param {String|Object} descriptor the type descriptor or name know to the model * @param {Object} attrs a number of attributes to initialize the model instance with * @return {Object} model instance */ Moddle.prototype.create = function(descriptor, attrs) { var Type = this.getType(descriptor); if (!Type) { throw new Error('unknown type <' + descriptor + '>'); } return new Type(attrs); }; /** * Returns the type representing a given descriptor * * @method Moddle#getType * * @example * * var Foo = moddle.getType('my:Foo'); * var foo = new Foo({ 'id' : 'FOO_1' }); * * @param {String|Object} descriptor the type descriptor or name know to the model * @return {Object} the type representing the descriptor */ Moddle.prototype.getType = function(descriptor) { var cache = this.typeCache; var name = isString(descriptor) ? descriptor : descriptor.ns.name; var type = cache[name]; if (!type) { descriptor = this.registry.getEffectiveDescriptor(name); type = cache[name] = this.factory.createType(descriptor); } return type; }; /** * Creates an any-element type to be used within model instances. * * This can be used to create custom elements that lie outside the meta-model. * The created element contains all the meta-data required to serialize it * as part of meta-model elements. * * @method Moddle#createAny * * @example * * var foo = moddle.createAny('vendor:Foo', 'http://vendor', { * value: 'bar' * }); * * var container = moddle.create('my:Container', 'http://my', { * any: [ foo ] * }); * * // go ahead and serialize the stuff * * * @param {String} name the name of the element * @param {String} nsUri the namespace uri of the element * @param {Object} [properties] a map of properties to initialize the instance with * @return {Object} the any type instance */ Moddle.prototype.createAny = function(name, nsUri, properties) { var nameNs = parseNameNs(name); var element = { $type: name, $instanceOf: function(type) { return type === this.$type; } }; var descriptor = { name: name, isGeneric: true, ns: { prefix: nameNs.prefix, localName: nameNs.localName, uri: nsUri } }; this.properties.defineDescriptor(element, descriptor); this.properties.defineModel(element, this); this.properties.define(element, '$parent', { enumerable: false, writable: true }); forEach(properties, function(a, key) { if (isObject(a) && a.value !== undefined) { element[a.name] = a.value; } else { element[key] = a; } }); return element; }; /** * Returns a registered package by uri or prefix * * @return {Object} the package */ Moddle.prototype.getPackage = function(uriOrPrefix) { return this.registry.getPackage(uriOrPrefix); }; /** * Returns a snapshot of all known packages * * @return {Object} the package */ Moddle.prototype.getPackages = function() { return this.registry.getPackages(); }; /** * Returns the descriptor for an element */ Moddle.prototype.getElementDescriptor = function(element) { return element.$descriptor; }; /** * Returns true if the given descriptor or instance * represents the given type. * * May be applied to this, if element is omitted. */ Moddle.prototype.hasType = function(element, type) { if (type === undefined) { type = element; element = this; } var descriptor = element.$model.getElementDescriptor(element); return (type in descriptor.allTypesByName); }; /** * Returns the descriptor of an elements named property */ Moddle.prototype.getPropertyDescriptor = function(element, property) { return this.getElementDescriptor(element).propertiesByName[property]; }; /** * Returns a mapped type's descriptor */ Moddle.prototype.getTypeDescriptor = function(type) { return this.registry.typeMap[type]; }; },{"303":303,"426":426,"428":428,"460":460,"462":462,"463":463,"464":464}],462:[function(_dereq_,module,exports){ 'use strict'; /** * Parses a namespaced attribute name of the form (ns:)localName to an object, * given a default prefix to assume in case no explicit namespace is given. * * @param {String} name * @param {String} [defaultPrefix] the default prefix to take, if none is present. * * @return {Object} the parsed name */ module.exports.parseName = function(name, defaultPrefix) { var parts = name.split(/:/), localName, prefix; // no prefix (i.e. only local name) if (parts.length === 1) { localName = name; prefix = defaultPrefix; } else // prefix + local name if (parts.length === 2) { localName = parts[1]; prefix = parts[0]; } else { throw new Error('expected or , got ' + name); } name = (prefix ? prefix + ':' : '') + localName; return { name: name, prefix: prefix, localName: localName }; }; },{}],463:[function(_dereq_,module,exports){ 'use strict'; /** * A utility that gets and sets properties of model elements. * * @param {Model} model */ function Properties(model) { this.model = model; } module.exports = Properties; /** * Sets a named property on the target element. * If the value is undefined, the property gets deleted. * * @param {Object} target * @param {String} name * @param {Object} value */ Properties.prototype.set = function(target, name, value) { var property = this.model.getPropertyDescriptor(target, name); var propertyName = property && property.name; if (isUndefined(value)) { // unset the property, if the specified value is undefined; // delete from $attrs (for extensions) or the target itself if (property) { delete target[propertyName]; } else { delete target.$attrs[name]; } } else { // set the property, defining well defined properties on the fly // or simply updating them in target.$attrs (for extensions) if (property) { if (propertyName in target) { target[propertyName] = value; } else { defineProperty(target, property, value); } } else { target.$attrs[name] = value; } } }; /** * Returns the named property of the given element * * @param {Object} target * @param {String} name * * @return {Object} */ Properties.prototype.get = function(target, name) { var property = this.model.getPropertyDescriptor(target, name); if (!property) { return target.$attrs[name]; } var propertyName = property.name; // check if access to collection property and lazily initialize it if (!target[propertyName] && property.isMany) { defineProperty(target, property, []); } return target[propertyName]; }; /** * Define a property on the target element * * @param {Object} target * @param {String} name * @param {Object} options */ Properties.prototype.define = function(target, name, options) { Object.defineProperty(target, name, options); }; /** * Define the descriptor for an element */ Properties.prototype.defineDescriptor = function(target, descriptor) { this.define(target, '$descriptor', { value: descriptor }); }; /** * Define the model for an element */ Properties.prototype.defineModel = function(target, model) { this.define(target, '$model', { value: model }); }; function isUndefined(val) { return typeof val === 'undefined'; } function defineProperty(target, property, value) { Object.defineProperty(target, property.name, { enumerable: !property.isReference, writable: true, value: value, configurable: true }); } },{}],464:[function(_dereq_,module,exports){ 'use strict'; var assign = _dereq_(431), forEach = _dereq_(303); var Types = _dereq_(465), DescriptorBuilder = _dereq_(459); var parseNameNs = _dereq_(462).parseName, isBuiltInType = Types.isBuiltIn; function Registry(packages, properties) { this.packageMap = {}; this.typeMap = {}; this.packages = []; this.properties = properties; forEach(packages, this.registerPackage, this); } module.exports = Registry; Registry.prototype.getPackage = function(uriOrPrefix) { return this.packageMap[uriOrPrefix]; }; Registry.prototype.getPackages = function() { return this.packages; }; Registry.prototype.registerPackage = function(pkg) { // copy package pkg = assign({}, pkg); var pkgMap = this.packageMap; ensureAvailable(pkgMap, pkg, 'prefix'); ensureAvailable(pkgMap, pkg, 'uri'); // register types forEach(pkg.types, function(descriptor) { this.registerType(descriptor, pkg); }, this); pkgMap[pkg.uri] = pkgMap[pkg.prefix] = pkg; this.packages.push(pkg); }; /** * Register a type from a specific package with us */ Registry.prototype.registerType = function(type, pkg) { type = assign({}, type, { superClass: (type.superClass || []).slice(), extends: (type.extends || []).slice(), properties: (type.properties || []).slice(), meta: assign(({}, type.meta || {})) }); var ns = parseNameNs(type.name, pkg.prefix), name = ns.name, propertiesByName = {}; // parse properties forEach(type.properties, function(p) { // namespace property names var propertyNs = parseNameNs(p.name, ns.prefix), propertyName = propertyNs.name; // namespace property types if (!isBuiltInType(p.type)) { p.type = parseNameNs(p.type, propertyNs.prefix).name; } assign(p, { ns: propertyNs, name: propertyName }); propertiesByName[propertyName] = p; }); // update ns + name assign(type, { ns: ns, name: name, propertiesByName: propertiesByName }); forEach(type.extends, function(extendsName) { var extended = this.typeMap[extendsName]; extended.traits = extended.traits || []; extended.traits.push(name); }, this); // link to package this.definePackage(type, pkg); // register this.typeMap[name] = type; }; /** * Traverse the type hierarchy from bottom to top, * calling iterator with (type, inherited) for all elements in * the inheritance chain. * * @param {Object} nsName * @param {Function} iterator * @param {Boolean} [trait=false] */ Registry.prototype.mapTypes = function(nsName, iterator, trait) { var type = isBuiltInType(nsName.name) ? { name: nsName.name } : this.typeMap[nsName.name]; var self = this; /** * Traverse the selected trait. * * @param {String} cls */ function traverseTrait(cls) { return traverseSuper(cls, true); } /** * Traverse the selected super type or trait * * @param {String} cls * @param {Boolean} [trait=false] */ function traverseSuper(cls, trait) { var parentNs = parseNameNs(cls, isBuiltInType(cls) ? '' : nsName.prefix); self.mapTypes(parentNs, iterator, trait); } if (!type) { throw new Error('unknown type <' + nsName.name + '>'); } forEach(type.superClass, trait ? traverseTrait : traverseSuper); // call iterator with (type, inherited=!trait) iterator(type, !trait); forEach(type.traits, traverseTrait); }; /** * Returns the effective descriptor for a type. * * @param {String} type the namespaced name (ns:localName) of the type * * @return {Descriptor} the resulting effective descriptor */ Registry.prototype.getEffectiveDescriptor = function(name) { var nsName = parseNameNs(name); var builder = new DescriptorBuilder(nsName); this.mapTypes(nsName, function(type, inherited) { builder.addTrait(type, inherited); }); var descriptor = builder.build(); // define package link this.definePackage(descriptor, descriptor.allTypes[descriptor.allTypes.length - 1].$pkg); return descriptor; }; Registry.prototype.definePackage = function(target, pkg) { this.properties.define(target, '$pkg', { value: pkg }); }; ///////// helpers //////////////////////////// function ensureAvailable(packageMap, pkg, identifierKey) { var value = pkg[identifierKey]; if (value in packageMap) { throw new Error('package with ' + identifierKey + ' <' + value + '> already defined'); } } },{"303":303,"431":431,"459":459,"462":462,"465":465}],465:[function(_dereq_,module,exports){ 'use strict'; /** * Built-in moddle types */ var BUILTINS = { String: true, Boolean: true, Integer: true, Real: true, Element: true }; /** * Converters for built in types from string representations */ var TYPE_CONVERTERS = { String: function(s) { return s; }, Boolean: function(s) { return s === 'true'; }, Integer: function(s) { return parseInt(s, 10); }, Real: function(s) { return parseFloat(s, 10); } }; /** * Convert a type to its real representation */ module.exports.coerceType = function(type, value) { var converter = TYPE_CONVERTERS[type]; if (converter) { return converter(value); } else { return value; } }; /** * Return whether the given type is built-in */ module.exports.isBuiltIn = function(type) { return !!BUILTINS[type]; }; /** * Return whether the given type is simple */ module.exports.isSimple = function(type) { return !!TYPE_CONVERTERS[type]; }; },{}],466:[function(_dereq_,module,exports){ module.exports = _dereq_(468); module.exports.Collection = _dereq_(467); },{"467":467,"468":468}],467:[function(_dereq_,module,exports){ 'use strict'; /** * An empty collection stub. Use {@link RefsCollection.extend} to extend a * collection with ref semantics. * * @class RefsCollection */ /** * Extends a collection with {@link Refs} aware methods * * @memberof RefsCollection * @static * * @param {Array} collection * @param {Refs} refs instance * @param {Object} property represented by the collection * @param {Object} target object the collection is attached to * * @return {RefsCollection} the extended array */ function extend(collection, refs, property, target) { var inverseProperty = property.inverse; /** * Removes the given element from the array and returns it. * * @method RefsCollection#remove * * @param {Object} element the element to remove */ Object.defineProperty(collection, 'remove', { value: function(element) { var idx = this.indexOf(element); if (idx !== -1) { this.splice(idx, 1); // unset inverse refs.unset(element, inverseProperty, target); } return element; } }); /** * Returns true if the collection contains the given element * * @method RefsCollection#contains * * @param {Object} element the element to check for */ Object.defineProperty(collection, 'contains', { value: function(element) { return this.indexOf(element) !== -1; } }); /** * Adds an element to the array, unless it exists already (set semantics). * * @method RefsCollection#add * * @param {Object} element the element to add */ Object.defineProperty(collection, 'add', { value: function(element) { if (!this.contains(element)) { this.push(element); // set inverse refs.set(element, inverseProperty, target); } } }); // a simple marker, identifying this element // as being a refs collection Object.defineProperty(collection, '__refs_collection', { value: true }); return collection; } function isExtended(collection) { return collection.__refs_collection === true; } module.exports.extend = extend; module.exports.isExtended = isExtended; },{}],468:[function(_dereq_,module,exports){ 'use strict'; var Collection = _dereq_(467); function hasOwnProperty(e, property) { return Object.prototype.hasOwnProperty.call(e, property.name || property); } function defineCollectionProperty(ref, property, target) { Object.defineProperty(target, property.name, { enumerable: property.enumerable, value: Collection.extend(target[property.name] || [], ref, property, target) }); } function defineProperty(ref, property, target) { var inverseProperty = property.inverse; var _value = target[property.name]; Object.defineProperty(target, property.name, { enumerable: property.enumerable, get: function() { return _value; }, set: function(value) { // return if we already performed all changes if (value === _value) { return; } var old = _value; // temporary set null _value = null; if (old) { ref.unset(old, inverseProperty, target); } // set new value _value = value; // set inverse value ref.set(_value, inverseProperty, target); } }); } /** * Creates a new references object defining two inversly related * attribute descriptors a and b. * *

* When bound to an object using {@link Refs#bind} the references * get activated and ensure that add and remove operations are applied * reversely, too. *

* *

* For attributes represented as collections {@link Refs} provides the * {@link RefsCollection#add}, {@link RefsCollection#remove} and {@link RefsCollection#contains} extensions * that must be used to properly hook into the inverse change mechanism. *

* * @class Refs * * @classdesc A bi-directional reference between two attributes. * * @param {Refs.AttributeDescriptor} a property descriptor * @param {Refs.AttributeDescriptor} b property descriptor * * @example * * var refs = Refs({ name: 'wheels', collection: true, enumerable: true }, { name: 'car' }); * * var car = { name: 'toyota' }; * var wheels = [{ pos: 'front-left' }, { pos: 'front-right' }]; * * refs.bind(car, 'wheels'); * * car.wheels // [] * car.wheels.add(wheels[0]); * car.wheels.add(wheels[1]); * * car.wheels // [{ pos: 'front-left' }, { pos: 'front-right' }] * * wheels[0].car // { name: 'toyota' }; * car.wheels.remove(wheels[0]); * * wheels[0].car // undefined */ function Refs(a, b) { if (!(this instanceof Refs)) { return new Refs(a, b); } // link a.inverse = b; b.inverse = a; this.props = {}; this.props[a.name] = a; this.props[b.name] = b; } /** * Binds one side of a bi-directional reference to a * target object. * * @memberOf Refs * * @param {Object} target * @param {String} property */ Refs.prototype.bind = function(target, property) { if (typeof property === 'string') { if (!this.props[property]) { throw new Error('no property <' + property + '> in ref'); } property = this.props[property]; } if (property.collection) { defineCollectionProperty(this, property, target); } else { defineProperty(this, property, target); } }; Refs.prototype.ensureRefsCollection = function(target, property) { var collection = target[property.name]; if (!Collection.isExtended(collection)) { defineCollectionProperty(this, property, target); } return collection; }; Refs.prototype.ensureBound = function(target, property) { if (!hasOwnProperty(target, property)) { this.bind(target, property); } }; Refs.prototype.unset = function(target, property, value) { if (target) { this.ensureBound(target, property); if (property.collection) { this.ensureRefsCollection(target, property).remove(value); } else { target[property.name] = undefined; } } }; Refs.prototype.set = function(target, property, value) { if (target) { this.ensureBound(target, property); if (property.collection) { this.ensureRefsCollection(target, property).add(value); } else { target[property.name] = value; } } }; module.exports = Refs; /** * An attribute descriptor to be used specify an attribute in a {@link Refs} instance * * @typedef {Object} Refs.AttributeDescriptor * @property {String} name * @property {boolean} [collection=false] * @property {boolean} [enumerable=false] */ },{"467":467}],469:[function(_dereq_,module,exports){ 'use strict'; module['exports'] = decodeEntities; var fromCharCode = String.fromCharCode; var hasOwnProperty = Object.prototype.hasOwnProperty; var ENTITY_PATTERN = /&#(\d+);|&#x([0-9a-f]+);|&(\w+);/ig; var ENTITY_MAPPING = { 'amp': '&', 'apos': '\'', 'gt': '>', 'lt': '<', 'quot': '"' }; // map UPPERCASE variants of supported special chars Object.keys(ENTITY_MAPPING).forEach(function(k) { ENTITY_MAPPING[k.toUpperCase()] = ENTITY_MAPPING[k]; }); function replaceEntities(_, d, x, z) { // reserved names, i.e.   if (z) { if (hasOwnProperty.call(ENTITY_MAPPING, z)) { return ENTITY_MAPPING[z]; } else { // fall back to original value return '&' + z + ';'; } } // decimal encoded char if (d) { return fromCharCode(d); } // hex encoded char return fromCharCode(parseInt(x, 16)); } /** * A basic entity decoder that can decode a minimal * sub-set of reserved names (&) as well as * hex (ય) and decimal (ӏ) encoded characters. * * @param {string} str * * @return {string} decoded string */ function decodeEntities(s) { if (s.length > 3 && s.indexOf('&') !== -1) { return s.replace(ENTITY_PATTERN, replaceEntities); } return s; } },{}],470:[function(_dereq_,module,exports){ 'use strict'; module['exports'] = Saxen; var decodeEntities = _dereq_(469); var XSI_URI = 'http://www.w3.org/2001/XMLSchema-instance'; var XSI_PREFIX = 'xsi'; var XSI_TYPE = 'xsi:type'; function error(msg) { return new Error(msg); } function missingNamespaceForPrefix(prefix) { return 'missing namespace for prefix <' + prefix + '>'; } function getter(getFn) { return { 'get': getFn, 'enumerable': true }; } function cloneNsMatrix(nsMatrix) { var clone = {}, key; for (key in nsMatrix) { clone[key] = nsMatrix[key]; } return clone; } function uriPrefix(prefix) { return prefix + '$uri'; } function buildNsMatrix(nsUriToPrefix) { var nsMatrix = {}, uri, prefix; for (uri in nsUriToPrefix) { prefix = nsUriToPrefix[uri]; nsMatrix[prefix] = prefix; nsMatrix[uriPrefix(prefix)] = uri; } return nsMatrix; } function noopGetContext() { return { 'line': 0, 'column': 0 }; } function throwFunc(err) { throw err; } /** * Creates a new parser with the given options. * * @constructor * * @param {!Object=} options */ function Saxen(options) { if (!this) { return new Saxen(options); } var proxy = options && options['proxy']; var onText, onOpenTag, onCloseTag, onCDATA, onError = throwFunc, onWarning, onComment, onQuestion, onAttention; var getContext = noopGetContext; /** * Do we need to parse the current elements attributes for namespaces? * * @type {boolean} */ var maybeNS = false; /** * Do we process namespaces at all? * * @type {boolean} */ var isNamespace = false; /** * The caught error returned on parse end * * @type {Error} */ var returnError = null; /** * Should we stop parsing? * * @type {boolean} */ var parseStop = false; /** * A map of { uri: prefix } used by the parser. * * This map will ensure we can normalize prefixes during processing; * for each uri, only one prefix will be exposed to the handlers. * * @type {!Object}} */ var nsUriToPrefix; /** * Handle parse error. * * @param {string|Error} err */ function handleError(err) { if (!(err instanceof Error)) { err = error(err); } returnError = err; onError(err, getContext); } /** * Handle parse error. * * @param {string|Error} err */ function handleWarning(err) { if (!onWarning) { return; } if (!(err instanceof Error)) { err = error(err); } onWarning(err, getContext); } /** * Register parse listener. * * @param {string} name * @param {Function} cb * * @return {Saxen} */ this['on'] = function(name, cb) { if (typeof cb !== 'function') { throw error('required args '); } switch (name) { case 'openTag': onOpenTag = cb; break; case 'text': onText = cb; break; case 'closeTag': onCloseTag = cb; break; case 'error': onError = cb; break; case 'warn': onWarning = cb; break; case 'cdata': onCDATA = cb; break; case 'attention': onAttention = cb; break; // case 'question': onQuestion = cb; break; // case 'comment': onComment = cb; break; default: throw error('unsupported event: ' + name); } return this; }; /** * Set the namespace to prefix mapping. * * @example * * parser.ns({ * 'http://foo': 'foo', * 'http://bar': 'bar' * }); * * @param {!Object} nsMap * * @return {Saxen} */ this['ns'] = function(nsMap) { if (typeof nsMap === 'undefined') { nsMap = {}; } if (typeof nsMap !== 'object') { throw error('required args '); } var _nsUriToPrefix = {}, k; for (k in nsMap) { _nsUriToPrefix[k] = nsMap[k]; } // FORCE default mapping for schema instance _nsUriToPrefix[XSI_URI] = XSI_PREFIX; isNamespace = true; nsUriToPrefix = _nsUriToPrefix; return this; }; /** * Parse xml string. * * @param {string} xml * * @return {Error} returnError, if not thrown */ this['parse'] = function(xml) { if (typeof xml !== 'string') { throw error('required args '); } returnError = null; parse(xml); getContext = noopGetContext; parseStop = false; return returnError; }; /** * Stop parsing. */ this['stop'] = function() { parseStop = true; }; /** * Parse string, invoking configured listeners on element. * * @param {string} xml */ function parse(xml) { var nsMatrixStack = isNamespace ? [] : null, nsMatrix = isNamespace ? buildNsMatrix(nsUriToPrefix) : null, _nsMatrix, nodeStack = [], anonymousNsCount = 0, tagStart = false, tagEnd = false, i = 0, j = 0, x, y, q, w, xmlns, elementName, _elementName, elementProxy ; var attrsString = '', attrsStart = 0, cachedAttrs // false = parsed with errors, null = needs parsing ; /** * Parse attributes on demand and returns the parsed attributes. * * Return semantics: (1) `false` on attribute parse error, * (2) object hash on extracted attrs. * * @return {boolean|Object} */ function getAttrs() { if (cachedAttrs !== null) { return cachedAttrs; } var nsUri, nsUriPrefix, nsName, defaultAlias = isNamespace && nsMatrix['xmlns'], attrList = isNamespace && maybeNS ? [] : null, i = attrsStart, s = attrsString, l = s.length, hasNewMatrix, newalias, value, alias, name, attrs = {}, w, j; for (; i < l; i++) { w = s.charCodeAt(i); if (w === 32 || (w < 14 && w > 8) ) { // \f\n\r\t\v continue; } // wait for non whitespace character if (w < 65 || w > 122 || (w > 90 && w < 97) ) { if (w !== 95 && w !== 58) { // char 95"_" 58":" handleWarning('illegal first char attribute name'); return cachedAttrs = false; } } // parse attribute name for (j = i + 1; j < l; j++) { w = s.charCodeAt(j); if ( w > 96 && w < 123 || w > 64 && w < 91 || w > 47 && w < 59 || w === 45 || w === 95) { continue; } if (w !== 61) { // "=" == 61 // expected "=" handleWarning('missing attribute value'); return cachedAttrs = false; } break; } name = s.substring(i, j); if (name === 'xmlns:xmlns') { handleWarning('illegal declaration of xmlns'); return cachedAttrs = false; // error. invalid name } w = s.charCodeAt(j + 1); if (w === 34) { // '"' j = s.indexOf('"', i = j + 2 ); } else { if (w !== 39) { // "'" handleWarning('missing attribute value quotes'); return cachedAttrs = false; // error. invalid char } j = s.indexOf('\'', i = j + 2 ); } if (j === -1) { handleWarning('attribute value quote missmatch'); return cachedAttrs = false; // error. invalid char } if (j + 1 < l) { w = s.charCodeAt(j + 1); if (w > 32 || w < 9 || (w < 32 && w > 13)) { // error. invalid char handleWarning('illegal character after attribute end'); return cachedAttrs = false; } } value = s.substring(i, j); // advance cursor to next attribute i = j + 1; if (!isNamespace) { attrs[name] = value; continue; } // try to extract namespace information if (maybeNS) { newalias = ( name === 'xmlns' ? 'xmlns' : (name.charCodeAt(0) === 120 && name.substr(0, 6) === 'xmlns:') ? name.substr(6) : null ); // handle xmlns(:alias) assignment if (newalias !== null) { nsUri = decodeEntities(value); nsUriPrefix = uriPrefix(newalias); alias = nsUriToPrefix[nsUri]; if (!alias) { // no prefix defined or prefix collision if ( (newalias === 'xmlns') || (nsUriPrefix in nsMatrix && nsMatrix[nsUriPrefix] !== nsUri) ) { // alocate free ns prefix do { alias = 'ns' + (anonymousNsCount++); } while (typeof nsMatrix[alias] !== 'undefined'); } else { alias = newalias; } nsUriToPrefix[nsUri] = alias; } if (nsMatrix[newalias] !== alias) { if (!hasNewMatrix) { nsMatrix = cloneNsMatrix(nsMatrix); hasNewMatrix = true; } nsMatrix[newalias] = alias; if (newalias === 'xmlns') { nsMatrix[uriPrefix(alias)] = nsUri; defaultAlias = alias; } nsMatrix[nsUriPrefix] = nsUri; } // expose xmlns(:asd)="..." in attributes attrs[name] = value; continue; } // collect attributes until all namespace // declarations are processed attrList.push(name, value); continue; } /** end if (maybeNs) */ // handle attributes on element without // namespace declarations w = name.indexOf(':'); if (w === -1) { attrs[name] = value; continue; } // normalize ns attribute name if (!(nsName = nsMatrix[name.substring(0, w)])) { handleWarning(missingNamespaceForPrefix(name.substring(0, w))); continue; } name = defaultAlias === nsName ? name.substr(w + 1) : nsName + name.substr(w); // end: normalize ns attribute name // normalize xsi:type ns attribute value if (name === XSI_TYPE) { w = value.indexOf(':'); if (w !== -1) { nsName = value.substring(0, w); // handle default prefixes, i.e. xs:String gracefully nsName = nsMatrix[nsName] || nsName; value = nsName + value.substring(w); } else { value = defaultAlias + ':' + value; } } // end: normalize xsi:type ns attribute value attrs[name] = value; } // handle deferred, possibly namespaced attributes if (maybeNS) { // normalize captured attributes for (i = 0, l = attrList.length; i < l; i++) { name = attrList[i++]; value = attrList[i]; w = name.indexOf(':'); if (w !== -1) { // normalize ns attribute name if (!(nsName = nsMatrix[name.substring(0, w)])) { handleWarning(missingNamespaceForPrefix(name.substring(0, w))); continue; } name = defaultAlias === nsName ? name.substr(w + 1) : nsName + name.substr(w); // end: normalize ns attribute name // normalize xsi:type ns attribute value if (name === XSI_TYPE) { w = value.indexOf(':'); if (w !== -1) { nsName = value.substring(0, w); // handle default prefixes, i.e. xs:String gracefully nsName = nsMatrix[nsName] || nsName; value = nsName + value.substring(w); } else { value = defaultAlias + ':' + value; } } // end: normalize xsi:type ns attribute value } attrs[name] = value; } // end: normalize captured attributes } return cachedAttrs = attrs; } /** * Extract the parse context { line, column, part } * from the current parser position. * * @return {Object} parse context */ function getParseContext() { var splitsRe = /(\r\n|\r|\n)/g; var line = 0; var column = 0; var startOfLine = 0; var endOfLine = j; var match; var data; while (i >= startOfLine) { match = splitsRe.exec(xml); if (!match) { break; } // end of line = (break idx + break chars) endOfLine = match[0].length + match.index; if (endOfLine > i) { break; } // advance to next line line += 1; startOfLine = endOfLine; } // EOF errors if (i == -1) { column = endOfLine; data = ''; } else { column = i - startOfLine; data = (j == -1 ? xml.substring(i) : xml.substring(i, j + 1)); } return { 'data': data, 'line': line, 'column': column }; } getContext = getParseContext; if (proxy) { elementProxy = Object.create({}, { 'name': getter(function() { return elementName; }), 'originalName': getter(function() { return _elementName; }), 'attrs': getter(getAttrs), 'ns': getter(function() { return nsMatrix; }) }); } // actual parse logic while (j !== -1) { if (xml.charCodeAt(j) === 60) { // "<" i = j; } else { i = xml.indexOf('<', j); } // parse end if (i === -1) { if (nodeStack.length) { return handleError('unexpected end of file'); } if (j === 0) { return handleError('missing start tag'); } return; } if (j !== i) { if (onText) { onText(xml.substring(j, i), decodeEntities); if (parseStop) { return; } } } w = xml.charCodeAt(i+1); // parse comments + CDATA if (w === 33) { // "!" w = xml.charCodeAt(i+2); if (w === 91 && xml.substr(i + 3, 6) === 'CDATA[') { // 91 == "[" j = xml.indexOf(']]>', i); if (j === -1) { return handleError('unclosed cdata'); } if (onCDATA) { onCDATA(xml.substring(i + 9, j)); if (parseStop) { return; } } j += 3; continue; } if (w === 45 && xml.charCodeAt(i + 3) === 45) { // 45 == "-" j = xml.indexOf('-->', i); if (j === -1) { return handleError('unclosed comment'); } if (onComment) { onComment(xml.substring(i + 4, j), decodeEntities); if (parseStop) { return; } } j += 3; continue; } j = xml.indexOf('>', i + 1); if (j === -1) { return handleError('unclosed tag'); } if (onAttention) { onAttention(xml.substring(i, j + 1), decodeEntities); if (parseStop) { return; } } j += 1; continue; } if (w === 63) { // "?" j = xml.indexOf('?>', i); if (j === -1) { // error return handleError('unclosed question'); } if (onQuestion) { onQuestion(xml.substring(i, j + 2)); if (parseStop) { return; } } j += 2; continue; } j = xml.indexOf('>', i + 1); if (j == -1) { // error return handleError('unclosed tag'); } // don't process attributes; // there are none cachedAttrs = {}; //if (xml.charCodeAt(i+1) === 47) { // close tag match x = elementName = nodeStack.pop(); q = i + 2 + x.length; if (xml.substring(i + 2, q) !== x) { return handleError('closing tag mismatch'); } // verify chars in close tag for (; q < j; q++) { w = xml.charCodeAt(q); if (w === 32 || (w > 8 && w < 14)) { // \f\n\r\t\v space continue; } return handleError('close tag'); } } else { if (xml.charCodeAt(j - 1) === 47) { // .../> x = elementName = xml.substring(i + 1, j - 1); tagStart = true; tagEnd = true; } else { x = elementName = xml.substring(i + 1, j); tagStart = true; tagEnd = false; } if (!(w > 96 && w < 123 || w > 64 && w < 91 || w === 95 || w === 58)) { // char 95"_" 58":" return handleError('illegal first char nodeName'); } for (q = 1, y = x.length; q < y; q++) { w = x.charCodeAt(q); if (w > 96 && w < 123 || w > 64 && w < 91 || w > 47 && w < 59 || w === 45 || w === 95) { continue; } if (w === 32 || (w < 14 && w > 8)) { // \f\n\r\t\v space elementName = x.substring(0, q); // maybe there are attributes cachedAttrs = null; break; } return handleError('invalid nodeName'); } if (!tagEnd) { nodeStack.push(elementName); } } if (isNamespace) { _nsMatrix = nsMatrix; if (tagStart) { // remember old namespace // unless we're self-closing if (!tagEnd) { nsMatrixStack.push(_nsMatrix); } if (cachedAttrs === null) { // quick check, whether there may be namespace // declarations on the node; if that is the case // we need to eagerly parse the node attributes if ((maybeNS = x.indexOf('xmlns', q) !== -1)) { attrsStart = q; attrsString = x; getAttrs(); maybeNS = false; } } } _elementName = elementName; w = elementName.indexOf(':'); if (w !== -1) { xmlns = nsMatrix[elementName.substring(0, w)]; // prefix given; namespace must exist if (!xmlns) { return handleError('missing namespace on <' + _elementName + '>'); } elementName = elementName.substr(w + 1); } else { xmlns = nsMatrix['xmlns']; // if no default namespace is defined, // we'll import the element as anonymous. // // it is up to users to correct that to the document defined // targetNamespace, or whatever their undersanding of the // XML spec mandates. } // adjust namespace prefixs as configured if (xmlns) { elementName = xmlns + ':' + elementName; } } if (tagStart) { attrsStart = q; attrsString = x; if (onOpenTag) { if (proxy) { onOpenTag(elementProxy, decodeEntities, tagEnd, getContext); } else { onOpenTag(elementName, getAttrs, decodeEntities, tagEnd, getContext); } if (parseStop) { return; } } } if (tagEnd) { if (onCloseTag) { onCloseTag(proxy ? elementProxy : elementName, decodeEntities, tagStart, getContext); if (parseStop) { return; } } // restore old namespace if (isNamespace) { if (!tagStart) { nsMatrix = nsMatrixStack.pop(); } else { nsMatrix = _nsMatrix; } } } j += 1; } } /** end parse */ } },{"469":469}],471:[function(_dereq_,module,exports){ /** * Tiny stack for browser or server * * @author Jason Mulligan * @copyright 2014 Jason Mulligan * @license BSD-3 * @link http://avoidwork.github.io/tiny-stack * @module tiny-stack * @version 0.1.0 */ ( function ( global ) { "use strict"; /** * TinyStack * * @constructor */ function TinyStack () { this.data = [null]; this.top = 0; } /** * Clears the stack * * @method clear * @memberOf TinyStack * @return {Object} {@link TinyStack} */ TinyStack.prototype.clear = function clear () { this.data = [null]; this.top = 0; return this; }; /** * Gets the size of the stack * * @method length * @memberOf TinyStack * @return {Number} Size of stack */ TinyStack.prototype.length = function length () { return this.top; }; /** * Gets the item at the top of the stack * * @method peek * @memberOf TinyStack * @return {Mixed} Item at the top of the stack */ TinyStack.prototype.peek = function peek () { return this.data[this.top]; }; /** * Gets & removes the item at the top of the stack * * @method pop * @memberOf TinyStack * @return {Mixed} Item at the top of the stack */ TinyStack.prototype.pop = function pop () { if ( this.top > 0 ) { this.top--; return this.data.pop(); } else { return undefined; } }; /** * Pushes an item onto the stack * * @method push * @memberOf TinyStack * @return {Object} {@link TinyStack} */ TinyStack.prototype.push = function push ( arg ) { this.data[++this.top] = arg; return this; }; /** * TinyStack factory * * @method factory * @return {Object} {@link TinyStack} */ function factory () { return new TinyStack(); } // Node, AMD & window supported if ( typeof exports != "undefined" ) { module.exports = factory; } else if ( typeof define == "function" ) { define( function () { return factory; } ); } else { global.stack = factory; } } )( this ); },{}],472:[function(_dereq_,module,exports){ /** * append utility */ module.exports = append; var appendTo = _dereq_(473); /** * Append a node to an element * * @param {SVGElement} element * @param {SVGElement} node * * @return {SVGElement} the element */ function append(element, node) { appendTo(node, element); return element; } },{"473":473}],473:[function(_dereq_,module,exports){ /** * appendTo utility */ module.exports = appendTo; var ensureImported = _dereq_(483); /** * Append a node to a target element and return the appended node. * * @param {SVGElement} element * @param {SVGElement} node * * @return {SVGElement} the appended node */ function appendTo(element, target) { target.appendChild(ensureImported(element, target)); return element; } },{"483":483}],474:[function(_dereq_,module,exports){ /** * attribute accessor utility */ module.exports = attr; var LENGTH_ATTR = 2; var CSS_PROPERTIES = { 'alignment-baseline': 1, 'baseline-shift': 1, 'clip': 1, 'clip-path': 1, 'clip-rule': 1, 'color': 1, 'color-interpolation': 1, 'color-interpolation-filters': 1, 'color-profile': 1, 'color-rendering': 1, 'cursor': 1, 'direction': 1, 'display': 1, 'dominant-baseline': 1, 'enable-background': 1, 'fill': 1, 'fill-opacity': 1, 'fill-rule': 1, 'filter': 1, 'flood-color': 1, 'flood-opacity': 1, 'font': 1, 'font-family': 1, 'font-size': LENGTH_ATTR, 'font-size-adjust': 1, 'font-stretch': 1, 'font-style': 1, 'font-variant': 1, 'font-weight': 1, 'glyph-orientation-horizontal': 1, 'glyph-orientation-vertical': 1, 'image-rendering': 1, 'kerning': 1, 'letter-spacing': 1, 'lighting-color': 1, 'marker': 1, 'marker-end': 1, 'marker-mid': 1, 'marker-start': 1, 'mask': 1, 'opacity': 1, 'overflow': 1, 'pointer-events': 1, 'shape-rendering': 1, 'stop-color': 1, 'stop-opacity': 1, 'stroke': 1, 'stroke-dasharray': 1, 'stroke-dashoffset': 1, 'stroke-linecap': 1, 'stroke-linejoin': 1, 'stroke-miterlimit': 1, 'stroke-opacity': 1, 'stroke-width': LENGTH_ATTR, 'text-anchor': 1, 'text-decoration': 1, 'text-rendering': 1, 'unicode-bidi': 1, 'visibility': 1, 'word-spacing': 1, 'writing-mode': 1 }; function getAttribute(node, name) { if (CSS_PROPERTIES[name]) { return node.style[name]; } else { return node.getAttributeNS(null, name); } } function setAttribute(node, name, value) { var hyphenated = name.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(); var type = CSS_PROPERTIES[hyphenated]; if (type) { // append pixel unit, unless present if (type === LENGTH_ATTR && typeof value === 'number') { value = String(value) + 'px'; } node.style[hyphenated] = value; } else { node.setAttributeNS(null, name, value); } } function setAttributes(node, attrs) { var names = Object.keys(attrs), i, name; for (i = 0, name; (name = names[i]); i++) { setAttribute(node, name, attrs[name]); } } /** * Gets or sets raw attributes on a node. * * @param {SVGElement} node * @param {Object} [attrs] * @param {String} [name] * @param {String} [value] * * @return {String} */ function attr(node, name, value) { if (typeof name === 'string') { if (value !== undefined) { setAttribute(node, name, value); } else { return getAttribute(node, name); } } else { setAttributes(node, name); } return node; } },{}],475:[function(_dereq_,module,exports){ /** * Clear utility */ module.exports = classes; var index = function(arr, obj) { if (arr.indexOf) { return arr.indexOf(obj); } for (var i = 0; i < arr.length; ++i) { if (arr[i] === obj) { return i; } } return -1; }; var re = /\s+/; var toString = Object.prototype.toString; function defined(o) { return typeof o !== 'undefined'; } /** * Wrap `el` in a `ClassList`. * * @param {Element} el * @return {ClassList} * @api public */ function classes(el) { return new ClassList(el); } function ClassList(el) { if (!el || !el.nodeType) { throw new Error('A DOM element reference is required'); } this.el = el; this.list = el.classList; } /** * Add class `name` if not already present. * * @param {String} name * @return {ClassList} * @api public */ ClassList.prototype.add = function(name) { // classList if (this.list) { this.list.add(name); return this; } // fallback var arr = this.array(); var i = index(arr, name); if (!~i) { arr.push(name); } if (defined(this.el.className.baseVal)) { this.el.className.baseVal = arr.join(' '); } else { this.el.className = arr.join(' '); } return this; }; /** * Remove class `name` when present, or * pass a regular expression to remove * any which match. * * @param {String|RegExp} name * @return {ClassList} * @api public */ ClassList.prototype.remove = function(name) { if ('[object RegExp]' === toString.call(name)) { return this.removeMatching(name); } // classList if (this.list) { this.list.remove(name); return this; } // fallback var arr = this.array(); var i = index(arr, name); if (~i) { arr.splice(i, 1); } this.el.className.baseVal = arr.join(' '); return this; }; /** * Remove all classes matching `re`. * * @param {RegExp} re * @return {ClassList} * @api private */ ClassList.prototype.removeMatching = function(re) { var arr = this.array(); for (var i = 0; i < arr.length; i++) { if (re.test(arr[i])) { this.remove(arr[i]); } } return this; }; /** * Toggle class `name`, can force state via `force`. * * For browsers that support classList, but do not support `force` yet, * the mistake will be detected and corrected. * * @param {String} name * @param {Boolean} force * @return {ClassList} * @api public */ ClassList.prototype.toggle = function(name, force) { // classList if (this.list) { if (defined(force)) { if (force !== this.list.toggle(name, force)) { this.list.toggle(name); // toggle again to correct } } else { this.list.toggle(name); } return this; } // fallback if (defined(force)) { if (!force) { this.remove(name); } else { this.add(name); } } else { if (this.has(name)) { this.remove(name); } else { this.add(name); } } return this; }; /** * Return an array of classes. * * @return {Array} * @api public */ ClassList.prototype.array = function() { var className = this.el.getAttribute('class') || ''; var str = className.replace(/^\s+|\s+$/g, ''); var arr = str.split(re); if ('' === arr[0]) { arr.shift(); } return arr; }; /** * Check if class `name` is present. * * @param {String} name * @return {ClassList} * @api public */ ClassList.prototype.has = ClassList.prototype.contains = function(name) { return ( this.list ? this.list.contains(name) : !! ~index(this.array(), name) ); }; },{}],476:[function(_dereq_,module,exports){ /** * Clear utility */ module.exports = clear; var remove = _dereq_(481); /** * Removes all children from the given element * * @param {DOMElement} element * @return {DOMElement} the element (for chaining) */ function clear(element) { var child; while ((child = element.firstChild)) { remove(child); } return element; } },{"481":481}],477:[function(_dereq_,module,exports){ module.exports = clone; function clone(element) { return element.cloneNode(true); } },{}],478:[function(_dereq_,module,exports){ /** * Create utility for SVG elements */ module.exports = create; var attr = _dereq_(474); var parse = _dereq_(485); var ns = _dereq_(484); /** * Create a specific type from name or SVG markup. * * @param {String} name the name or markup of the element * @param {Object} [attrs] attributes to set on the element * * @returns {SVGElement} */ function create(name, attrs) { var element; if (name.charAt(0) === '<') { element = parse(name).firstChild; element = document.importNode(element, true); } else { element = document.createElementNS(ns.svg, name); } if (attrs) { attr(element, attrs); } return element; } },{"474":474,"484":484,"485":485}],479:[function(_dereq_,module,exports){ /** * Geometry helpers */ var create = _dereq_(478); // fake node used to instantiate svg geometry elements var node = create('svg'); function extend(object, props) { var i, k, keys = Object.keys(props); for (i = 0; (k = keys[i]); i++) { object[k] = props[k]; } return object; } function createPoint(x, y) { var point = node.createSVGPoint(); switch (arguments.length) { case 0: return point; case 2: x = { x: x, y: y }; break; } return extend(point, x); } function createMatrix(a, b, c, d, e, f) { var matrix = node.createSVGMatrix(); switch (arguments.length) { case 0: return matrix; case 6: a = { a: a, b: b, c: c, d: d, e: e, f: f }; break; } return extend(matrix, a); } function createTransform(matrix) { if (matrix) { return node.createSVGTransformFromMatrix(matrix); } else { return node.createSVGTransform(); } } module.exports.createTransform = createTransform; module.exports.createMatrix = createMatrix; module.exports.createPoint = createPoint; },{"478":478}],480:[function(_dereq_,module,exports){ /** * innerHTML like functionality for SVG elements. * based on innerSVG (https://code.google.com/p/innersvg) */ module.exports = innerSVG; var clear = _dereq_(476); var appendTo = _dereq_(473); var parse = _dereq_(485); var serialize = _dereq_(486); function set(element, svg) { var node, documentElement = parse(svg).documentElement; // clear element contents clear(element); if (!svg) { return; } // import + append each node node = documentElement.firstChild; while (node) { appendTo(node, element); node = node.nextSibling; } } function get(element) { var child = element.firstChild, output = []; while (child) { serialize(child, output); child = child.nextSibling; } return output.join(''); } function innerSVG(element, svg) { if (svg !== undefined) { try { set(element, svg); } catch (e) { throw new Error('error parsing SVG: ' + e.message); } return element; } else { return get(element); } } },{"473":473,"476":476,"485":485,"486":486}],481:[function(_dereq_,module,exports){ module.exports = remove; function remove(element) { var parent = element.parentNode; if (parent) { parent.removeChild(element); } return element; } },{}],482:[function(_dereq_,module,exports){ /** * transform accessor utility */ module.exports = transform; function wrapMatrix(transformList, transform) { if (transform instanceof SVGMatrix) { return transformList.createSVGTransformFromMatrix(transform); } else { return transform; } } function setTransforms(transformList, transforms) { var i, t; transformList.clear(); for (i = 0; (t = transforms[i]); i++) { transformList.appendItem(wrapMatrix(transformList, t)); } transformList.consolidate(); } function transform(node, transforms) { var transformList = node.transform.baseVal; if (arguments.length === 1) { return transformList.consolidate(); } else { if (transforms.length) { setTransforms(transformList, transforms); } else { transformList.initialize(wrapMatrix(transformList, transforms)); } } } },{}],483:[function(_dereq_,module,exports){ module.exports = ensureImported; function ensureImported(element, target) { if (element.ownerDocument !== target.ownerDocument) { try { // may fail on webkit return target.ownerDocument.importNode(element, true); } catch (e) { // ignore } } return element; } },{}],484:[function(_dereq_,module,exports){ var ns = { svg: 'http://www.w3.org/2000/svg' }; module.exports = ns; },{}],485:[function(_dereq_,module,exports){ /** * DOM parsing utility */ module.exports = parse; var ns = _dereq_(484); var SVG_START = '' + svg + ''; } return parseDocument(svg); } function parseDocument(svg) { var parser; // parse parser = new DOMParser(); parser.async = false; return parser.parseFromString(svg, 'text/xml'); } },{"484":484}],486:[function(_dereq_,module,exports){ /** * Serialization util */ module.exports = serialize; var TEXT_ENTITIES = /([&<>]{1})/g; var ATTR_ENTITIES = /([\n\r"]{1})/g; var ENTITY_REPLACEMENT = { '&': '&', '<': '<', '>': '>', '"': '\'' }; function escape(str, pattern) { function replaceFn(match, entity) { return ENTITY_REPLACEMENT[entity] || entity; } return str.replace(pattern, replaceFn); } function serialize(node, output) { var i, len, attrMap, attrNode, childNodes; switch (node.nodeType) { // TEXT case 3: // replace special XML characters output.push(escape(node.textContent, TEXT_ENTITIES)); break; // ELEMENT case 1: output.push('<', node.tagName); if (node.hasAttributes()) { attrMap = node.attributes; for (i = 0, len = attrMap.length; i < len; ++i) { attrNode = attrMap.item(i); output.push(' ', attrNode.name, '="', escape(attrNode.value, ATTR_ENTITIES), '"'); } } if (node.hasChildNodes()) { output.push('>'); childNodes = node.childNodes; for (i = 0, len = childNodes.length; i < len; ++i) { serialize(childNodes.item(i), output); } output.push(''); } else { output.push('/>'); } break; // COMMENT case 8: output.push(''); break; // CDATA case 4: output.push(''); break; default: throw new Error('unable to handle node ' + node.nodeType); } return output; } },{}]},{},[1])(1) }); //# sourceMappingURL=./bpmn-modeler.js.map