Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
a2cee3f1
Commit
a2cee3f1
authored
10 years ago
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
diagnostics/d3: added # of conns
parent
dd409fb1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
diagnostics/d3/chord.html
diagnostics/d3/chord.html
+6
-3
diagnostics/d3/d3view
diagnostics/d3/d3view
+1
-1
No files found.
diagnostics/d3/chord.html
View file @
a2cee3f1
...
...
@@ -47,15 +47,15 @@ d3.json(hash, function(error, data) {
.
attr
(
"
transform
"
,
function
(
d
)
{
return
"
rotate(
"
+
(
d
.
x
-
90
+
rotate
)
+
"
)translate(
"
+
d
.
y
+
"
)
"
;
})
node
.
append
(
"
svg:circle
"
)
.
attr
(
"
r
"
,
function
(
d
)
{
return
4
;
})
.
style
(
"
fill
"
,
function
(
d
,
i
)
{
return
color
(
i
%
3
);
})
.
attr
(
"
r
"
,
function
(
d
)
{
return
6
;
})
.
style
(
"
fill
"
,
function
(
d
,
i
)
{
return
color
(
i
%
20
);
})
node
.
append
(
"
text
"
)
.
attr
(
"
dx
"
,
function
(
d
)
{
return
8
;
})
.
attr
(
"
dy
"
,
"
.31em
"
)
// .attr("text-anchor", function(d) { return d.x
<
180
?
"
start
"
:
"
end
"
;
})
// .attr("transform", function(d) { return d.x
<
180
?
null
:
"
rotate(180)
"
;
})
.
text
(
function
(
d
)
{
return
d
.
name
;
});
.
text
(
function
(
d
)
{
return
d
.
conns
+
"
-
"
+
d
.
name
;
});
var
p
=
projection
var
link
=
svg
.
selectAll
(
"
.link
"
)
...
...
@@ -99,6 +99,7 @@ function parseGraph(graph2) {
graph2
.
nodes
.
forEach
(
function
(
data
,
i
)
{
data
.
y
=
innerRadius
data
.
x
=
((
360
/
graph2
.
nodes
.
length
)
*
i
)
data
.
conns
=
0
graph
.
nodes
.
push
(
data
)
graph
.
byName
[
data
.
name
]
=
data
})
...
...
@@ -106,6 +107,8 @@ function parseGraph(graph2) {
graph2
.
links
.
forEach
(
function
(
link
)
{
var
source
=
graph2
.
nodes
[
link
.
source
]
var
target
=
graph2
.
nodes
[
link
.
target
]
source
.
conns
++
target
.
conns
++
var
mid
=
curveNode
(
source
,
target
)
graph
.
mids
.
push
(
mid
)
...
...
This diff is collapsed.
Click to expand it.
diagnostics/d3/d3view
View file @
a2cee3f1
...
...
@@ -9,7 +9,7 @@ hash=$(ipfs add -q "$file" </dev/null | tail -n1)
# this viewer is the hash of go-ipfs/diagnostics/d3/viewer.html
force
=
"QmaY6Lq9MEhDfWUc1VfHcu9aLWSyvi4VDLvWQXLoVZ4Mau"
chord
=
"Qm
VGcat7ieYqf8mwcvwACbJstCRH8m8k2Yyt2qhuFEMoAz
"
chord
=
"Qm
YWjPa736Bk7FhNEEtWLjaEdioSxXkYMhRT9tLi45ccm7
"
viewer
=
"
$chord
"
# the ipfs gateway to use
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment