Skip to content

Commit 7ee6078

Browse files
authored
Release v3.5.4 (#1631)
1 parent ec24e91 commit 7ee6078

39 files changed

+255
-109
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
04-03-2022 (v3.5.4)
2+
* dia.Cell - fix `transition` events order
3+
* dia.Cell - support custom `idAttribute`
4+
15
21-02-2022 (v3.5.3)
26
* dia.attributes - prevent redundant network requests when `href` in use
37
* connectionStrategies.pinRelative - reduce rounding errors

demo/elements/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const namespace = {
99
Input,
1010
Mark,
1111
Actor,
12-
}
12+
};
1313

1414
const graph = new dia.Graph({}, { cellNamespace: namespace });
1515

@@ -29,7 +29,7 @@ const paper = new dia.Paper({
2929
}
3030
});
3131

32-
paper.el.style.border = `1px solid #e2e2e2`;
32+
paper.el.style.border = '1px solid #e2e2e2';
3333

3434
const MARGIN = 10;
3535
const COLUMNS_COUNT = 4;

demo/list/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ const shapeNamespace = {
297297
...shapes,
298298
ListElement,
299299
ListLink
300-
}
300+
};
301301

302302
const graph = new dia.Graph({}, { cellNamespace: shapeNamespace });
303303

dist/geometry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.5.3 (2022-02-21) - JavaScript diagramming library
1+
/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public

dist/geometry.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.core.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.core.js

+69-23
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.5.3 (2022-02-21) - JavaScript diagramming library
1+
/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library
22

33

44
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/.
1309813098

1309913099
initialize: function(options) {
1310013100

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 });
1310413104
}
1310513105

1310613106
this._transitionIds = {};
13107+
this._scheduledTransitionIds = {};
1310713108

1310813109
// Collect ports defined in `attrs` and keep collecting whenever `attrs` object changes.
1310913110
this.processPorts();
1311013111
this.on('change:attrs', this.processPorts, this);
1311113112
},
1311213113

13114+
getIdAttribute: function() {
13115+
return this.idAttribute || 'id';
13116+
},
13117+
1311313118
generateId: function() {
1311413119
return uuid();
1311513120
},
@@ -13467,7 +13472,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1346713472

1346813473
var clone = Backbone.Model.prototype.clone.apply(this, arguments);
1346913474
// 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());
1347113476
// A shallow cloned element does not carry over the original embeds.
1347213477
clone.unset('embeds');
1347313478
// And can not be embedded in any cell
@@ -13629,6 +13634,8 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1362913634
},
1363013635

1363113636
transition: function(path, value, opt, delim) {
13637+
var this$1 = this;
13638+
1363213639

1363313640
delim = delim || '/';
1363413641

@@ -13669,54 +13676,93 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
1366913676

1367013677
}.bind(this);
1367113678

13672-
var initiator = function(callback) {
13679+
var ref = this;
13680+
var _scheduledTransitionIds = ref._scheduledTransitionIds;
13681+
var initialId;
1367313682

13674-
this.stopTransitions(path);
13683+
var initiator = function (callback) {
1367513684

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+
}
1367713691

13678-
this._transitionIds[path] = nextFrame(callback);
13692+
this$1.stopPendingTransitions(path, delim);
1367913693

13680-
this.trigger('transition:start', this, path);
13694+
interpolatingFunction = opt.valueFunction(getByPath(this$1.attributes, path, delim), value);
1368113695

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);
1368313706

13684-
var initialId = setTimeout(initiator, opt.delay, setter);
13685-
this._transitionIds[path] = initialId;
1368613707
return initialId;
1368713708
},
1368813709

1368913710
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 = '/';
1369013719

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;
1369213737
},
1369313738

13694-
stopTransitions: function(path, delim) {
13739+
stopPendingTransitions: function stopPendingTransitions(path, delim) {
1369513740
var this$1 = this;
1369613741
if ( delim === void 0 ) delim = '/';
1369713742

13698-
1369913743
var ref = this;
13700-
var _transitionIds = ref._transitionIds;
13744+
var _transitionIds = ref._transitionIds; if ( _transitionIds === void 0 ) _transitionIds = {};
1370113745
var transitions = Object.keys(_transitionIds);
13702-
1370313746
if (path) {
1370413747
var pathArray = path.split(delim);
1370513748
transitions = transitions.filter(function (key) {
1370613749
return isEqual(pathArray, key.split(delim).slice(0, pathArray.length));
1370713750
});
1370813751
}
13709-
1371013752
transitions.forEach(function (key) {
1371113753
var transitionId = _transitionIds[key];
1371213754
// stop the setter
1371313755
cancelFrame(transitionId);
13714-
// or stop the initiator if the id belongs to it
13715-
clearTimeout(transitionId);
1371613756
delete _transitionIds[key];
13717-
this$1.trigger('transition:end', this$1, transitionId);
13757+
this$1.trigger('transition:end', this$1, key);
1371813758
});
13759+
},
13760+
13761+
stopTransitions: function(path, delim) {
13762+
if ( delim === void 0 ) delim = '/';
1371913763

13764+
this.stopScheduledTransitions(path, delim);
13765+
this.stopPendingTransitions(path, delim);
1372013766
return this;
1372113767
},
1372213768

@@ -31588,7 +31634,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/.
3158831634
Control: Control
3158931635
});
3159031636

31591-
var version = "3.5.3";
31637+
var version = "3.5.4";
3159231638

3159331639
var Vectorizer = V;
3159431640
var layout = { PortLabel: PortLabel, Port: Port };

dist/joint.core.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.core.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/joint.d.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! JointJS v3.5.3 (2022-02-21) - JavaScript diagramming library
1+
/*! JointJS v3.5.4 (2022-03-04) - JavaScript diagramming library
22
33
44
This Source Code Form is subject to the terms of the Mozilla Public
@@ -1473,6 +1473,10 @@ export namespace dia {
14731473

14741474
protected generateId(): string | number;
14751475

1476+
protected stopPendingTransitions(path?: string, delim?: string): void;
1477+
1478+
protected stopScheduledTransitions(path?: string, delim?: string): void;
1479+
14761480
toJSON(): Cell.JSON<any, A>;
14771481

14781482
remove(opt?: Cell.DisconnectableOptions): this;
@@ -4551,7 +4555,7 @@ export namespace connectors {
45514555
sourceDirection?: Curve.TangentDirections | dia.Point | number;
45524556
targetDirection?: Curve.TangentDirections | dia.Point | number;
45534557
sourceTangent?: dia.Point;
4554-
targetTangent?: dia.Point;
4558+
targetTangent?: dia.Point;
45554559
distanceCoefficient?: number;
45564560
angleTangentCoefficient?: number;
45574561
tension?: number;

0 commit comments

Comments
 (0)