|
1 |
| -/*! JointJS v3.5.3 (2022-02-21) - JavaScript diagramming library |
| 1 | +/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library |
2 | 2 |
|
3 | 3 |
|
4 | 4 | This Source Code Form is subject to the terms of the Mozilla Public
|
@@ -13098,18 +13098,23 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
13098 | 13098 |
|
13099 | 13099 | initialize: function(options) {
|
13100 | 13100 |
|
13101 |
| - if (!options || !options.id) { |
13102 |
| - |
13103 |
| - this.set('id', this.generateId(), { silent: true }); |
| 13101 | + var idAttribute = this.getIdAttribute(); |
| 13102 | + if (!options || !(idAttribute in options)) { |
| 13103 | + this.set(idAttribute, this.generateId(), { silent: true }); |
13104 | 13104 | }
|
13105 | 13105 |
|
13106 | 13106 | this._transitionIds = {};
|
| 13107 | + this._scheduledTransitionIds = {}; |
13107 | 13108 |
|
13108 | 13109 | // Collect ports defined in `attrs` and keep collecting whenever `attrs` object changes.
|
13109 | 13110 | this.processPorts();
|
13110 | 13111 | this.on('change:attrs', this.processPorts, this);
|
13111 | 13112 | },
|
13112 | 13113 |
|
| 13114 | + getIdAttribute: function() { |
| 13115 | + return this.idAttribute || 'id'; |
| 13116 | + }, |
| 13117 | + |
13113 | 13118 | generateId: function() {
|
13114 | 13119 | return uuid();
|
13115 | 13120 | },
|
@@ -13467,7 +13472,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
13467 | 13472 |
|
13468 | 13473 | var clone = Backbone.Model.prototype.clone.apply(this, arguments);
|
13469 | 13474 | // We don't want the clone to have the same ID as the original.
|
13470 |
| - clone.set('id', this.generateId()); |
| 13475 | + clone.set(this.getIdAttribute(), this.generateId()); |
13471 | 13476 | // A shallow cloned element does not carry over the original embeds.
|
13472 | 13477 | clone.unset('embeds');
|
13473 | 13478 | // And can not be embedded in any cell
|
@@ -13629,6 +13634,8 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
13629 | 13634 | },
|
13630 | 13635 |
|
13631 | 13636 | transition: function(path, value, opt, delim) {
|
| 13637 | + var this$1 = this; |
| 13638 | + |
13632 | 13639 |
|
13633 | 13640 | delim = delim || '/';
|
13634 | 13641 |
|
@@ -13669,54 +13676,93 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
13669 | 13676 |
|
13670 | 13677 | }.bind(this);
|
13671 | 13678 |
|
13672 |
| - var initiator = function(callback) { |
| 13679 | + var ref = this; |
| 13680 | + var _scheduledTransitionIds = ref._scheduledTransitionIds; |
| 13681 | + var initialId; |
13673 | 13682 |
|
13674 |
| - this.stopTransitions(path); |
| 13683 | + var initiator = function (callback) { |
13675 | 13684 |
|
13676 |
| - interpolatingFunction = opt.valueFunction(getByPath(this.attributes, path, delim), value); |
| 13685 | + if (_scheduledTransitionIds[path]) { |
| 13686 | + _scheduledTransitionIds[path] = without(_scheduledTransitionIds[path], initialId); |
| 13687 | + if (_scheduledTransitionIds[path].length === 0) { |
| 13688 | + delete _scheduledTransitionIds[path]; |
| 13689 | + } |
| 13690 | + } |
13677 | 13691 |
|
13678 |
| - this._transitionIds[path] = nextFrame(callback); |
| 13692 | + this$1.stopPendingTransitions(path, delim); |
13679 | 13693 |
|
13680 |
| - this.trigger('transition:start', this, path); |
| 13694 | + interpolatingFunction = opt.valueFunction(getByPath(this$1.attributes, path, delim), value); |
13681 | 13695 |
|
13682 |
| - }.bind(this); |
| 13696 | + this$1._transitionIds[path] = nextFrame(callback); |
| 13697 | + |
| 13698 | + this$1.trigger('transition:start', this$1, path); |
| 13699 | + |
| 13700 | + }; |
| 13701 | + |
| 13702 | + initialId = setTimeout(initiator, opt.delay, setter); |
| 13703 | + |
| 13704 | + _scheduledTransitionIds[path] || (_scheduledTransitionIds[path] = []); |
| 13705 | + _scheduledTransitionIds[path].push(initialId); |
13683 | 13706 |
|
13684 |
| - var initialId = setTimeout(initiator, opt.delay, setter); |
13685 |
| - this._transitionIds[path] = initialId; |
13686 | 13707 | return initialId;
|
13687 | 13708 | },
|
13688 | 13709 |
|
13689 | 13710 | getTransitions: function() {
|
| 13711 | + return union( |
| 13712 | + Object.keys(this._transitionIds), |
| 13713 | + Object.keys(this._scheduledTransitionIds) |
| 13714 | + ); |
| 13715 | + }, |
| 13716 | + |
| 13717 | + stopScheduledTransitions: function(path, delim) { |
| 13718 | + if ( delim === void 0 ) delim = '/'; |
13690 | 13719 |
|
13691 |
| - return Object.keys(this._transitionIds); |
| 13720 | + var ref = this; |
| 13721 | + var _scheduledTransitionIds = ref._scheduledTransitionIds; if ( _scheduledTransitionIds === void 0 ) _scheduledTransitionIds = {}; |
| 13722 | + var transitions = Object.keys(_scheduledTransitionIds); |
| 13723 | + if (path) { |
| 13724 | + var pathArray = path.split(delim); |
| 13725 | + transitions = transitions.filter(function (key) { |
| 13726 | + return isEqual(pathArray, key.split(delim).slice(0, pathArray.length)); |
| 13727 | + }); |
| 13728 | + } |
| 13729 | + transitions.forEach(function (key) { |
| 13730 | + var transitionIds = _scheduledTransitionIds[key]; |
| 13731 | + // stop the initiator |
| 13732 | + transitionIds.forEach(function (transitionId) { return clearTimeout(transitionId); }); |
| 13733 | + delete _scheduledTransitionIds[key]; |
| 13734 | + // Note: we could trigger transition:cancel` event here |
| 13735 | + }); |
| 13736 | + return this; |
13692 | 13737 | },
|
13693 | 13738 |
|
13694 |
| - stopTransitions: function(path, delim) { |
| 13739 | + stopPendingTransitions: function stopPendingTransitions(path, delim) { |
13695 | 13740 | var this$1 = this;
|
13696 | 13741 | if ( delim === void 0 ) delim = '/';
|
13697 | 13742 |
|
13698 |
| - |
13699 | 13743 | var ref = this;
|
13700 |
| - var _transitionIds = ref._transitionIds; |
| 13744 | + var _transitionIds = ref._transitionIds; if ( _transitionIds === void 0 ) _transitionIds = {}; |
13701 | 13745 | var transitions = Object.keys(_transitionIds);
|
13702 |
| - |
13703 | 13746 | if (path) {
|
13704 | 13747 | var pathArray = path.split(delim);
|
13705 | 13748 | transitions = transitions.filter(function (key) {
|
13706 | 13749 | return isEqual(pathArray, key.split(delim).slice(0, pathArray.length));
|
13707 | 13750 | });
|
13708 | 13751 | }
|
13709 |
| - |
13710 | 13752 | transitions.forEach(function (key) {
|
13711 | 13753 | var transitionId = _transitionIds[key];
|
13712 | 13754 | // stop the setter
|
13713 | 13755 | cancelFrame(transitionId);
|
13714 |
| - // or stop the initiator if the id belongs to it |
13715 |
| - clearTimeout(transitionId); |
13716 | 13756 | delete _transitionIds[key];
|
13717 |
| - this$1.trigger('transition:end', this$1, transitionId); |
| 13757 | + this$1.trigger('transition:end', this$1, key); |
13718 | 13758 | });
|
| 13759 | + }, |
| 13760 | + |
| 13761 | + stopTransitions: function(path, delim) { |
| 13762 | + if ( delim === void 0 ) delim = '/'; |
13719 | 13763 |
|
| 13764 | + this.stopScheduledTransitions(path, delim); |
| 13765 | + this.stopPendingTransitions(path, delim); |
13720 | 13766 | return this;
|
13721 | 13767 | },
|
13722 | 13768 |
|
@@ -31588,7 +31634,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
31588 | 31634 | Control: Control
|
31589 | 31635 | });
|
31590 | 31636 |
|
31591 |
| - var version = "3.5.3"; |
| 31637 | + var version = "3.5.4"; |
31592 | 31638 |
|
31593 | 31639 | var Vectorizer = V;
|
31594 | 31640 | var layout = { PortLabel: PortLabel, Port: Port };
|
|
0 commit comments