Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CiS Projekt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ockenden, Samuel
CiS Projekt
Commits
c3b30044
Commit
c3b30044
authored
3 years ago
by
Stahl, Merle
Browse files
Options
Downloads
Patches
Plain Diff
Codestruktur verbessert
parent
77737514
No related branches found
Branches containing commit
No related tags found
2 merge requests
!10
Output
,
!9
Main
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Output/Graph/cn.js
+62
-79
62 additions, 79 deletions
Output/Graph/cn.js
Output/Graph/index.html
+25
-29
25 additions, 29 deletions
Output/Graph/index.html
Output/Graph_mit_Zeitstrahl/index_alt.html
+0
-0
0 additions, 0 deletions
Output/Graph_mit_Zeitstrahl/index_alt.html
with
87 additions
and
108 deletions
Output/Graph/cn.js
+
62
−
79
View file @
c3b30044
...
@@ -7,9 +7,6 @@ var zoom = d3.zoom().on("zoom", zoomHandler);
...
@@ -7,9 +7,6 @@ var zoom = d3.zoom().on("zoom", zoomHandler);
* creates svg object and associated attributes
* creates svg object and associated attributes
* applies the zoom behavior to svg
* applies the zoom behavior to svg
*/
*/
var
svg2
=
d3
.
select
(
"
svg.legendsvg
"
)
var
svg
=
d3
.
select
(
"
svg.graph
"
)
var
svg
=
d3
.
select
(
"
svg.graph
"
)
.
call
(
zoom
),
.
call
(
zoom
),
width
=
svg
.
attr
(
"
width
"
),
width
=
svg
.
attr
(
"
width
"
),
...
@@ -34,7 +31,7 @@ toRemove;
...
@@ -34,7 +31,7 @@ toRemove;
/**
/**
* creates link object
* creates link object
*/
*/
var
link
;
/**
/**
* creates a background
* creates a background
...
@@ -48,6 +45,59 @@ var rect = svg.append("rect")
...
@@ -48,6 +45,59 @@ var rect = svg.append("rect")
.
style
(
"
fill
"
,
'
white
'
)
.
style
(
"
fill
"
,
'
white
'
)
.
on
(
'
click
'
,
clickRect
);
.
on
(
'
click
'
,
clickRect
);
/**
* creates svg object (legend) and associated attributes
*/
var
svglegend
=
d3
.
select
(
"
svg.legendsvg
"
),
legendposition
=
[
65
,
95
,
125
],
arrowlegendposition
=
[
0
,
25
],
arrowgroupnames
=
[
"
citation
"
,
"
self-citation
"
],
groupnames
=
[
"
citing
"
,
"
input
"
,
"
cited
"
];
var
legend
=
svglegend
.
selectAll
(
"
.legend
"
)
.
data
(
legendposition
)
.
enter
()
.
append
(
"
g
"
)
.
attr
(
"
class
"
,
"
legend
"
)
.
attr
(
"
transform
"
,
function
(
d
,
i
)
{
return
"
translate(0,
"
+
d
+
"
)
"
;
});
legend
.
append
(
"
text
"
)
.
attr
(
"
x
"
,
80
)
.
attr
(
"
y
"
,
0
)
.
attr
(
"
dy
"
,
"
.35em
"
)
.
style
(
"
text-anchor
"
,
"
start
"
)
.
text
(
function
(
d
,
i
){
return
groupnames
[
i
]});
legend
.
append
(
"
circle
"
)
.
attr
(
"
r
"
,
r
)
.
attr
(
"
cx
"
,
30
-
r
)
.
style
(
"
fill
"
,
color
);
var
legendarrow
=
svglegend
.
selectAll
(
"
.legendarr
"
)
.
data
(
arrowlegendposition
)
.
enter
()
.
append
(
"
g
"
)
.
attr
(
"
class
"
,
"
legendarr
"
)
.
attr
(
"
transform
"
,
function
(
d
)
{
return
"
translate(0,
"
+
d
+
"
)
"
;
});
legendarrow
.
append
(
"
line
"
)
.
attr
(
"
x1
"
,
10
)
.
attr
(
"
x2
"
,
50
)
.
attr
(
"
y1
"
,
10
)
.
attr
(
"
y2
"
,
10
)
.
style
(
"
stroke-dasharray
"
,
linetype
)
.
style
(
"
stroke
"
,
'
#999
'
)
.
style
(
"
stroke-width
"
,
"
1px
"
)
.
style
(
'
pointer-events
'
,
'
none
'
)
.
attr
(
'
marker-end
'
,
updateMarker
(
'
#999
'
,
this
));
legendarrow
.
append
(
"
text
"
)
.
attr
(
"
x
"
,
80
)
.
attr
(
"
y
"
,
10
)
.
attr
(
"
dy
"
,
"
.35em
"
)
.
style
(
"
text-anchor
"
,
"
start
"
)
.
text
(
function
(
d
,
i
){
return
arrowgroupnames
[
i
]});
/**
/**
* creates a new simulation
* creates a new simulation
* updates the positions of the links and nodes when the
* updates the positions of the links and nodes when the
...
@@ -66,10 +116,6 @@ var simulation = d3.forceSimulation()
...
@@ -66,10 +116,6 @@ var simulation = d3.forceSimulation()
var
g
=
svg
.
append
(
"
g
"
)
var
g
=
svg
.
append
(
"
g
"
)
.
attr
(
"
class
"
,
"
everything
"
)
.
attr
(
"
class
"
,
"
everything
"
)
/**
/**
* loads JSON data and calls the update function
* loads JSON data and calls the update function
*/
*/
...
@@ -96,65 +142,6 @@ function update(links, nodes) {
...
@@ -96,65 +142,6 @@ function update(links, nodes) {
link
.
attr
(
'
marker-end
'
,
function
(
d
)
{
return
updateMarker
(
"
#999
"
,
d
.
target
);})
link
.
attr
(
'
marker-end
'
,
function
(
d
)
{
return
updateMarker
(
"
#999
"
,
d
.
target
);})
.
style
(
"
stroke-dasharray
"
,
function
(
d
){
return
self_cit
(
d
.
source
,
d
.
target
)?
(
"
8,8
"
):
(
"
1,0
"
)});
.
style
(
"
stroke-dasharray
"
,
function
(
d
){
return
self_cit
(
d
.
source
,
d
.
target
)?
(
"
8,8
"
):
(
"
1,0
"
)});
}
}
var
rect2
=
svg
.
append
(
"
rect
"
)
.
attr
(
"
x
"
,
0
)
.
attr
(
"
y
"
,
0
)
.
attr
(
"
height
"
,
180
)
.
attr
(
"
width
"
,
210
)
.
style
(
"
fill
"
,
'
white
'
);
legendposition
=
[
65
,
95
,
125
]
arrowlegendposition
=
[
0
,
25
]
arrowgroupnames
=
[
"
citation
"
,
"
self-citation
"
]
groupnames
=
[
"
citing
"
,
"
input
"
,
"
cited
"
]
var
legend
=
svg2
.
selectAll
(
"
.legend
"
)
.
data
(
legendposition
)
.
enter
()
.
append
(
"
g
"
)
.
attr
(
"
class
"
,
"
legend
"
)
.
attr
(
"
transform
"
,
function
(
d
,
i
)
{
return
"
translate(0,
"
+
d
+
"
)
"
;
});
legend
.
append
(
"
text
"
)
.
attr
(
"
x
"
,
80
)
.
attr
(
"
y
"
,
0
)
.
attr
(
"
dy
"
,
"
.35em
"
)
.
style
(
"
text-anchor
"
,
"
start
"
)
.
text
(
function
(
d
,
i
){
return
groupnames
[
i
]});
legend
.
append
(
"
circle
"
)
.
attr
(
"
r
"
,
r
)
.
attr
(
"
cx
"
,
30
-
r
)
.
style
(
"
fill
"
,
color
);
var
legendarrow
=
svg2
.
selectAll
(
"
.legendarr
"
)
.
data
(
arrowlegendposition
)
.
enter
()
.
append
(
"
g
"
)
.
attr
(
"
class
"
,
"
legendarr
"
)
.
attr
(
"
transform
"
,
function
(
d
)
{
return
"
translate(0,
"
+
d
+
"
)
"
;
});
legendarrow
.
append
(
"
line
"
)
.
attr
(
"
x1
"
,
10
)
.
attr
(
"
x2
"
,
50
)
.
attr
(
"
y1
"
,
10
)
.
attr
(
"
y2
"
,
10
)
.
style
(
"
stroke-dasharray
"
,
linetype
)
.
style
(
"
stroke
"
,
'
#999
'
)
.
style
(
"
stroke-width
"
,
"
1px
"
)
.
style
(
'
pointer-events
'
,
'
none
'
)
.
attr
(
'
marker-end
'
,
updateMarker
(
'
#999
'
,
this
));
legendarrow
.
append
(
"
text
"
)
.
attr
(
"
x
"
,
80
)
.
attr
(
"
y
"
,
10
)
.
attr
(
"
dy
"
,
"
.35em
"
)
.
style
(
"
text-anchor
"
,
"
start
"
)
.
text
(
function
(
d
,
i
){
return
arrowgroupnames
[
i
]});
/**
/**
* initializes and shows links
* initializes and shows links
...
@@ -211,7 +198,7 @@ function updateNodes(nodes) {
...
@@ -211,7 +198,7 @@ function updateNodes(nodes) {
*/
*/
function
updateMarker
(
color
,
target
)
{
function
updateMarker
(
color
,
target
)
{
var
radius
=
r
+
target
.
citations
*
0.1
;
var
radius
=
r
+
target
.
citations
*
0.1
;
svg
.
append
(
'
defs
'
).
append
(
'
marker
'
)
//arrowhead
svg
.
append
(
'
defs
'
).
append
(
'
marker
'
)
//arrowhead
.
attr
(
'
id
'
,
color
.
replace
(
"
#
"
,
""
)
+
radius
)
.
attr
(
'
id
'
,
color
.
replace
(
"
#
"
,
""
)
+
radius
)
.
attr
(
'
viewBox
'
,
'
-0 -5 10 10
'
)
.
attr
(
'
viewBox
'
,
'
-0 -5 10 10
'
)
.
attr
(
'
refX
'
,
radius
+
10
)
.
attr
(
'
refX
'
,
radius
+
10
)
...
@@ -222,7 +209,7 @@ function updateMarker(color, target) {
...
@@ -222,7 +209,7 @@ function updateMarker(color, target) {
.
attr
(
'
xoverflow
'
,
'
visible
'
)
.
attr
(
'
xoverflow
'
,
'
visible
'
)
.
append
(
'
svg:path
'
)
.
append
(
'
svg:path
'
)
.
attr
(
'
d
'
,
'
M 0,-5 L 10 ,0 L 0,5
'
)
.
attr
(
'
d
'
,
'
M 0,-5 L 10 ,0 L 0,5
'
)
.
attr
(
'
fill
'
,
color
)
//arrowhead color
.
attr
(
'
fill
'
,
color
)
//arrowhead color
.
style
(
'
stroke
'
,
'
none
'
);
.
style
(
'
stroke
'
,
'
none
'
);
return
"
url(
"
+
color
+
radius
+
"
)
"
;
return
"
url(
"
+
color
+
radius
+
"
)
"
;
};
};
...
@@ -253,14 +240,16 @@ function clickRect() {
...
@@ -253,14 +240,16 @@ function clickRect() {
}
}
function
create_author_array
(
authors
){
function
create_author_array
(
authors
){
authorarray
=
authors
.
split
(
"
,
"
)
authorarray
=
authors
.
split
(
"
,
"
)
authorarray
=
authorarray
.
map
(
elem
=>
{
return
elem
.
trim
();})
authorarray
=
authorarray
.
map
(
elem
=>
{
return
elem
.
trim
();})
return
authorarray
return
authorarray
}
}
function
self_cit
(
source
,
target
){
function
self_cit
(
source
,
target
){
sourceauthors
=
create_author_array
(
source
.
author
)
sourceauthors
=
create_author_array
(
source
.
author
)
targetauthors
=
create_author_array
(
target
.
author
)
targetauthors
=
create_author_array
(
target
.
author
)
return
sourceauthors
.
some
(
item
=>
targetauthors
.
includes
(
item
))
return
sourceauthors
.
some
(
item
=>
targetauthors
.
includes
(
item
))
}
}
...
@@ -286,10 +275,6 @@ function isLinkForNode(node, link){
...
@@ -286,10 +275,6 @@ function isLinkForNode(node, link){
return
link
.
source
.
index
==
node
.
index
||
link
.
target
.
index
==
node
.
index
;
return
link
.
source
.
index
==
node
.
index
||
link
.
target
.
index
==
node
.
index
;
}
}
/**
/**
* returns last name of first author
* returns last name of first author
* @param {string} authors - the comma-separated string of authors
* @param {string} authors - the comma-separated string of authors
...
@@ -379,8 +364,6 @@ function center() {
...
@@ -379,8 +364,6 @@ function center() {
.
call
(
zoom
.
translateTo
,
0.5
*
width
,
0.5
*
height
);
.
call
(
zoom
.
translateTo
,
0.5
*
width
,
0.5
*
height
);
}
}
function
savesvg
(){
function
savesvg
(){
var
svgString
=
getSVGString
(
svg
.
node
());
var
svgString
=
getSVGString
(
svg
.
node
());
svgString2Image
(
svgString
,
2
*
width
,
2
*
height
,
'
png
'
,
save
);
// passes Blob and filesize String to the callback
svgString2Image
(
svgString
,
2
*
width
,
2
*
height
,
'
png
'
,
save
);
// passes Blob and filesize String to the callback
...
...
This diff is collapsed.
Click to expand it.
Output/Graph/index.html
+
25
−
29
View file @
c3b30044
...
@@ -4,18 +4,6 @@
...
@@ -4,18 +4,6 @@
<meta
charset=
"utf-8"
>
<meta
charset=
"utf-8"
>
<style
type=
"text/css"
>
<style
type=
"text/css"
>
div
.legendbox
{
width
:
270px
;
height
:
170px
;
padding
:
10px
;
/*border: 1px solid #999;*/
position
:
absolute
;
top
:
10px
;
left
:
968px
;
display
:
inline-block
;
margin
:
0
;
}
button
{
button
{
width
:
100px
;
width
:
100px
;
height
:
20px
;
height
:
20px
;
...
@@ -26,9 +14,7 @@
...
@@ -26,9 +14,7 @@
top
:
575px
;
top
:
575px
;
}
}
button
.resetGraph
{
button
.resetGraph
{}
color
:
black
;
}
button
.resetZoom
{
button
.resetZoom
{
margin-left
:
110px
;
margin-left
:
110px
;
...
@@ -42,6 +28,18 @@
...
@@ -42,6 +28,18 @@
margin-left
:
330px
;
margin-left
:
330px
;
}
}
div
.legendbox
{
width
:
270px
;
height
:
170px
;
padding
:
10px
;
/*border: 1px solid #999;*/
position
:
absolute
;
top
:
10px
;
left
:
968px
;
display
:
inline-block
;
margin
:
0
;
}
div
.textbox
{
div
.textbox
{
width
:
270px
;
width
:
270px
;
min-height
:
200px
;
min-height
:
200px
;
...
@@ -55,9 +53,6 @@
...
@@ -55,9 +53,6 @@
overflow-y
:
scroll
;
overflow-y
:
scroll
;
margin
:
0
;
margin
:
0
;
}
}
/
textbox
*/
</style>
</style>
</head>
</head>
...
@@ -66,19 +61,20 @@
...
@@ -66,19 +61,20 @@
<p
id=
"id"
></p>
<!--for commenting with document.getElementById("id").innerHTML = "text"; -->
<p
id=
"id"
></p>
<!--for commenting with document.getElementById("id").innerHTML = "text"; -->
<!-- graph -->
<!-- graph -->
<svg
class=
"graph"
width=
"960"
height=
"560"
></svg>
<svg
class=
"graph"
width=
"960"
height=
"560"
></svg>
<div
class=
"legendbox"
>
<svg
class=
"legendsvg"
></svg>
</div>
<!-- textbox -->
<div
class=
"textbox"
id =
"textbox"
>
Click node
</div>
<!-- legend -->
<div
class=
"legendbox"
>
<svg
class=
"legendsvg"
></svg></div>
<!-- reset-buttons -->
<!-- textbox -->
<!-- <button onclick="javascript:location.reload();">Reload</button>-->
<div
class=
"textbox"
id =
"textbox"
>
Click node
</div>
<button
class=
"resetGraph"
onclick=
"resetGraph()"
>
Reset graph
</button>
<button
class=
"resetZoom"
onclick=
"resetZoom()"
>
Reset zoom
</button>
<!-- reset buttons -->
<button
class=
"center"
onclick=
"center()"
>
Center
</button>
<!-- <button onclick="javascript:location.reload();">Reload</button>-->
<button
class=
"save"
onclick=
"savesvg()"
>
Save
</button>
<button
class=
"resetGraph"
onclick=
"resetGraph()"
>
Reset graph
</button>
<button
class=
"resetZoom"
onclick=
"resetZoom()"
>
Reset zoom
</button>
<button
class=
"center"
onclick=
"center()"
>
Center
</button>
<button
class=
"save"
onclick=
"savesvg()"
>
Save
</button>
<!-- link D3 (version 5) -->
<!-- link D3 (version 5) -->
<script
src=
"https://d3js.org/d3.v5.min.js"
></script>
<script
src=
"https://d3js.org/d3.v5.min.js"
></script>
...
...
This diff is collapsed.
Click to expand it.
Output/Graph_mit_Zeitstrahl/index.html
→
Output/Graph_mit_Zeitstrahl/index
_alt
.html
+
0
−
0
View file @
c3b30044
File moved
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