Skip to content

Commit aa27f8b

Browse files
Adding and removing nodes from tabular view
1 parent 5061946 commit aa27f8b

11 files changed

+80
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iknow-entity-browser",
3-
"version": "0.5.12",
3+
"version": "0.6.0",
44
"description": "Visualizer for iKnow entities",
55
"main": "gulpfile.babel.js",
66
"scripts": {
188 Bytes
Binary file not shown.

src/static/fonts/iknowentitybrowsericons.svg

+1
Loading
188 Bytes
Binary file not shown.
92 Bytes
Binary file not shown.

src/static/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
<th data-prop="entities.0.spread">Spread</th>
9797
<th data-prop="edgeType">Relation</th>
9898
<th data-prop="parent.label">Parent</th>
99+
<th></th>
99100
</tr>
100101
</thead>
101102
<tbody id="tabular-selected">

src/static/js/graph/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export function update (g = lastGraph, reset = false) {
221221
node = nodes.selectAll(".node").data(graph.nodes, function (d) { return this._id || d.id; });
222222
node.exit().remove();
223223
let nodeEnter = node.enter().append("g")
224-
.each(function (d) { this._id = d.id; })
224+
.each(function (d) { this._id = d.id; d.element = this; })
225225
.attr("class", d => `node${ d.id === 0 ? " root" : "" } ${ d.type || "unknown" }`)
226226
.classed("selected", (p) => p.selected)
227227
.call(dragger)

src/static/js/tabular/index.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ let sorter = (a, b) => {
1414
return a > b ? sorting.order : a === b ? 0 : -sorting.order;
1515
};
1616

17+
/**
18+
* this: node
19+
*/
20+
function switchSelected () {
21+
if (!this.element)
22+
return;
23+
d3.select(this.element).classed("selected", this.selected = !this.selected);
24+
updateSelection();
25+
}
26+
1727
function updateSelected () {
1828
let data = getSelection().filter(node => node.type === "entity").sort(sorter),
1929
table = document.querySelector("#tabular-selected");
@@ -30,6 +40,10 @@ function updateSelected () {
3040
(c = row.insertCell(5)).textContent = node.edgeType || "";
3141
c.className = `${ node.edgeType }Item`;
3242
row.insertCell(6).textContent = (node.parent || { label: "root" }).label || "?";
43+
let ee = document.createElement("i");
44+
ee.className = "icon-close";
45+
ee.addEventListener("click", switchSelected.bind(node));
46+
row.insertCell(7).appendChild(ee);
3347
}
3448
}
3549

@@ -49,6 +63,10 @@ function updateOthers () {
4963
(c = row.insertCell(5)).textContent = node.edgeType || "";
5064
c.className = `${ node.edgeType }Item`;
5165
row.insertCell(6).textContent = (node.parent || { label: "root" }).label || "?";
66+
let ee = document.createElement("i");
67+
ee.className = "icon-add";
68+
ee.addEventListener("click", switchSelected.bind(node));
69+
row.insertCell(7).appendChild(ee);
5270
}
5371
}
5472

@@ -96,7 +114,8 @@ export function init () {
96114
d.tabularToggled = !d.tabularToggled;
97115
d3.select(this).classed("toggled", d.tabularToggled);
98116
d3.select("#table").classed("active", d.tabularToggled);
99-
updateSelection();
117+
if (d.tabularToggled)
118+
updateAll();
100119
});
101120

102121
d3.select("#exportCSV").on("click", () => {

src/static/scss/basic.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ table {
99
box-shadow: $defaultShadow;
1010

1111
td, th {
12-
padding: 3px;
12+
padding: 1px 2px;
1313
}
1414

1515
td:not(:last-child), th:not(:last-child) {

src/static/scss/icons.scss

+3
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,6 @@
100100
.icon-undo:before {
101101
content: "\75";
102102
}
103+
.icon-add:before {
104+
content: "\62";
105+
}

src/static/scss/tabular.scss

+52
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ $headerHeight: 36px;
5555
content: "";
5656
}
5757

58+
&:last-child {
59+
border-left: none;
60+
}
61+
62+
&:nth-last-child(2) {
63+
border-right: none;
64+
}
65+
5866
}
5967

6068
#tabular td {
@@ -64,6 +72,46 @@ $headerHeight: 36px;
6472
text-overflow: ellipsis;
6573
}
6674

75+
#tabular {
76+
77+
td:last-child {
78+
79+
width: 15px;
80+
border-left: none;
81+
82+
}
83+
84+
tr td:last-child {
85+
overflow: visible;
86+
text-overflow: clip;
87+
& i {
88+
position: relative;
89+
top: 2px;
90+
font-size: 13px;
91+
height: 13px;
92+
display: none;
93+
@include transition(none);
94+
}
95+
}
96+
97+
tr:hover td:last-child i {
98+
display: inline-block;
99+
}
100+
101+
td:nth-last-child(2) {
102+
border-right: none;
103+
}
104+
105+
}
106+
107+
#tabular-selected {
108+
109+
tr td:last-child {
110+
color: red;
111+
}
112+
113+
}
114+
67115
#tabular-others {
68116

69117
opacity: 0.6;
@@ -72,4 +120,8 @@ $headerHeight: 36px;
72120
border-top: 1px solid black;
73121
}
74122

123+
tr td:last-child {
124+
color: green;
125+
}
126+
75127
}

0 commit comments

Comments
 (0)