Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
2a23f673
Commit
2a23f673
authored
4 years ago
by
Valentin Perrelle
Browse files
Options
Downloads
Patches
Plain Diff
[dive] improves layout animations
parent
2e4dd218
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/frama-c/dive/Dive.tsx
+28
-15
28 additions, 15 deletions
ivette/src/frama-c/dive/Dive.tsx
with
28 additions
and
15 deletions
ivette/src/frama-c/dive/Dive.tsx
+
28
−
15
View file @
2a23f673
...
@@ -233,7 +233,7 @@ class Dive {
...
@@ -233,7 +233,7 @@ class Dive {
/* eslint-disable no-restricted-syntax */
/* eslint-disable no-restricted-syntax */
receiveGraph
(
data
:
any
):
Cytoscape
.
CollectionReturnValue
{
receiveGraph
(
data
:
any
):
Cytoscape
.
CollectionReturnValue
{
let
new
El
es
=
this
.
cy
.
collection
();
let
new
Nod
es
=
this
.
cy
.
collection
();
for
(
const
node
of
data
.
nodes
)
for
(
const
node
of
data
.
nodes
)
{
{
...
@@ -255,7 +255,7 @@ class Dive {
...
@@ -255,7 +255,7 @@ class Dive {
ele
=
this
.
cy
.
add
({
group
:
'
nodes
'
,
data
:
{
...
node
,
parent
}
});
ele
=
this
.
cy
.
add
({
group
:
'
nodes
'
,
data
:
{
...
node
,
parent
}
});
this
.
addTips
(
ele
);
this
.
addTips
(
ele
);
new
El
es
=
ele
.
union
(
new
El
es
);
new
Nod
es
=
ele
.
union
(
new
Nod
es
);
}
}
// Add a node for the user to ask for more dependencies
// Add a node for the user to ask for more dependencies
...
@@ -267,26 +267,24 @@ class Dive {
...
@@ -267,26 +267,24 @@ class Dive {
data
:
{
id
:
idmore
,
parent
:
ele
.
data
(
'
parent
'
)
},
data
:
{
id
:
idmore
,
parent
:
ele
.
data
(
'
parent
'
)
},
classes
:
'
more
'
,
classes
:
'
more
'
,
});
});
new
El
es
=
elemore
.
union
(
new
El
es
);
new
Nod
es
=
elemore
.
union
(
new
Nod
es
);
const
depmore
=
this
.
cy
.
add
({
this
.
cy
.
add
({
group
:
'
edges
'
,
group
:
'
edges
'
,
data
:
{
source
:
idmore
,
target
:
node
.
id
},
data
:
{
source
:
idmore
,
target
:
node
.
id
},
});
});
newEles
=
this
.
cy
.
add
(
depmore
).
union
(
newEles
);
}
}
}
}
for
(
const
dep
of
data
.
deps
)
for
(
const
dep
of
data
.
deps
)
{
{
const
ele
=
this
.
cy
.
add
({
this
.
cy
.
add
({
data
:
{
...
dep
,
source
:
dep
.
src
,
target
:
dep
.
dst
},
data
:
{
...
dep
,
source
:
dep
.
src
,
target
:
dep
.
dst
},
group
:
'
edges
'
,
group
:
'
edges
'
,
classes
:
dep
.
kind
,
classes
:
dep
.
kind
,
});
});
newEles
=
this
.
cy
.
add
(
ele
).
union
(
newEles
);
}
}
return
new
El
es
;
return
new
Nod
es
;
}
}
receiveData
(
data
:
any
):
void
{
receiveData
(
data
:
any
):
void
{
...
@@ -295,14 +293,14 @@ class Dive {
...
@@ -295,14 +293,14 @@ class Dive {
for
(
const
id
of
data
.
sub
)
for
(
const
id
of
data
.
sub
)
this
.
remove
(
this
.
cy
.
$id
(
id
));
this
.
remove
(
this
.
cy
.
$id
(
id
));
const
new
El
es
=
this
.
receiveGraph
(
data
.
add
);
const
new
Nod
es
=
this
.
receiveGraph
(
data
.
add
);
this
.
cy
.
endBatch
();
this
.
cy
.
endBatch
();
this
.
selectNode
(
this
.
cy
.
$id
(
data
.
root
));
this
.
selectNode
(
this
.
cy
.
$id
(
data
.
root
));
if
(
new
El
es
)
if
(
new
Nod
es
)
this
.
recomputeLayout
();
this
.
recomputeLayout
(
newNodes
);
}
}
get
layout
():
string
{
get
layout
():
string
{
...
@@ -318,16 +316,31 @@ class Dive {
...
@@ -318,16 +316,31 @@ class Dive {
name
:
layout
,
name
:
layout
,
fit
:
true
,
fit
:
true
,
animate
:
true
,
animate
:
true
,
randomize
:
tru
e
,
/*
Not all
layout
s
supports
tha
t */
randomize
:
fals
e
,
/*
Keep previous positions if
layout supports
i
t */
...
extendedOptions
,
...
extendedOptions
,
};
};
this
.
recomputeLayout
();
this
.
recomputeLayout
();
}
}
recomputeLayout
():
void
{
recomputeLayout
(
newNodes
:
Cytoscape
.
Collection
=
this
.
cy
.
collection
()):
void
{
if
(
this
.
layoutOptions
&&
this
.
cy
.
container
())
if
(
this
.
layoutOptions
&&
this
.
cy
.
container
())
{
this
.
cy
.
layout
(
this
.
layoutOptions
).
run
();
/* Animate opacity from 0 to 100 for new elements */
const
newEles
=
newNodes
.
union
(
newNodes
.
neighborhood
(
'
edge
'
));
newEles
.
style
(
'
opacity
'
,
0
);
this
.
cy
.
layout
({
animationEasing
:
'
ease-in-out-quad
'
,
/* Do not move new nodes */
animateFilter
:
(
node
:
Cytoscape
.
Singular
)
=>
!
newNodes
.
contains
(
node
),
/* But make them appear slowly */
stop
:
()
=>
newEles
.
animate
({
style
:
{
opacity
:
1.0
},
duration
:
500
,
}),
...
this
.
layoutOptions
,
}
as
unknown
as
Cytoscape
.
LayoutOptions
).
run
();
}
}
}
async
exec
<
In
,
Out
>
(
async
exec
<
In
,
Out
>
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment