Created
September 14, 2018 18:57
-
-
Save jbsarrodie/3cfe6ae90b29696c55550ce3d4b3a577 to your computer and use it in GitHub Desktop.
#jArchi script to remove bendpoints on selected relationships
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RemoveBentpoints | |
// | |
// Requires jArchi - https://www.archimatetool.com/blog/2018/07/02/jarchi/ | |
// | |
// This script takes a selection of visual objects as input, filter it to keep only relationships and remove all their bendpoints | |
// | |
// (c) 2018 Jean-Baptiste Sarrodie | |
$(selection).filter("relationship").filter(function(o) {return o.view}).each(function(o) { | |
var view = o.view; | |
var rel = o.concept; | |
var source = o.source; | |
var target = o.target; | |
o.delete(); | |
view.add(rel, source, target); | |
}) |
With the relative new method deleteAllBendpoints() you can keep the selected relations. No need to restore anything.
Combined with your line this script only removes the bendpoints of the selected relations:
$(selection).filter("relationship").filter(function(o) {return o.view!=undefined}).each(function(o) {
o.deleteAllBendpoints();
})
Well that's simpler.
I've been using the script a while and never noticed it had been incorporated into the language.
Thanks
(off to update some scripts now)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Similar to last comment but I have replaced
with
which seemed simpler.
Also made a couple more changes to preserve the label expression