Skip to content

Commit 9c6917b

Browse files
Select/deselect children from tabular view
1 parent aa27f8b commit 9c6917b

File tree

6 files changed

+55
-34
lines changed

6 files changed

+55
-34
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.6.0",
3+
"version": "0.6.1",
44
"description": "Visualizer for iKnow entities",
55
"main": "gulpfile.babel.js",
66
"scripts": {

src/static/js/graph/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ export function update (g = lastGraph, reset = false) {
245245
deselectAll(d);
246246
else
247247
selectAll(d);
248-
updateSelected();
249248
} else {
250249
d3.select(this).classed("selected", d.selected = !d.selected); // (!prevSel)
251250
}

src/static/js/selection.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,22 @@ export function getOthers () {
3232
return others;
3333
}
3434

35-
export function selectAll (node) {
35+
export function selectAll (node, nodeItself = true) {
3636
if (!node)
3737
return;
3838
if (node.children)
3939
node.children.forEach(c => selectAll(c));
40-
node.selected = true;
40+
if (nodeItself)
41+
d3.select(node.element).classed("selected", node.selected = true);
4142
}
4243

43-
export function deselectAll (node) {
44+
export function deselectAll (node, nodeItself = true) {
4445
if (!node)
4546
return;
4647
if (node.children)
4748
node.children.forEach(c => deselectAll(c));
48-
node.selected = false;
49+
if (nodeItself)
50+
d3.select(node.element).classed("selected", node.selected = false);
4951
}
5052

5153
/**

src/static/js/tabular/index.js

+41-25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { csv } from "./export";
22
import * as model from "../model";
3-
import { onSelectionUpdate, updateSelection, getSelection, getOthers } from "../selection";
3+
import {
4+
onSelectionUpdate, updateSelection, getSelection, getOthers, selectAll, deselectAll
5+
} from "../selection";
46

57
let sorting = {
68
properties: ["entities", "0", "score"],
@@ -20,14 +22,28 @@ let sorter = (a, b) => {
2022
function switchSelected () {
2123
if (!this.element)
2224
return;
25+
this.element.classList.remove("highlighted");
2326
d3.select(this.element).classed("selected", this.selected = !this.selected);
2427
updateSelection();
2528
}
2629

27-
function updateSelected () {
28-
let data = getSelection().filter(node => node.type === "entity").sort(sorter),
29-
table = document.querySelector("#tabular-selected");
30-
table.textContent = "";
30+
/**
31+
* this: node
32+
*/
33+
function toggleChildrenSelected (e) {
34+
let sel = false,
35+
el = e.target || e.srcElement;
36+
for (let o of this.children) { if (o.selected) { sel = true; break; } }
37+
if (sel)
38+
deselectAll(this, false);
39+
else
40+
selectAll(this, false);
41+
el.className = `icon-${ !sel ? "filled" : "outline" }`;
42+
this.element.classList.remove("highlighted");
43+
updateSelection();
44+
}
45+
46+
function insertRows (data, table, selected) {
3147
for (let i = 0; i < data.length; i++) {
3248
let row = table.insertRow(i),
3349
node = data[i],
@@ -40,34 +56,34 @@ function updateSelected () {
4056
(c = row.insertCell(5)).textContent = node.edgeType || "";
4157
c.className = `${ node.edgeType }Item`;
4258
row.insertCell(6).textContent = (node.parent || { label: "root" }).label || "?";
43-
let ee = document.createElement("i");
44-
ee.className = "icon-close";
59+
let ee = document.createElement("i"),
60+
ei = document.createElement("i"),
61+
sel = false,
62+
cell = row.insertCell(7);
63+
for (let o of node.children) { if (o.selected) { sel = true; break; } }
64+
ei.className = `icon-${ sel ? "filled" : "outline" }`;
65+
ei.addEventListener("click", toggleChildrenSelected.bind(node));
66+
ee.className = `icon-${ selected ? "close" : "add" }`;
4567
ee.addEventListener("click", switchSelected.bind(node));
46-
row.insertCell(7).appendChild(ee);
68+
cell.appendChild(ei);
69+
cell.appendChild(ee);
70+
row.addEventListener("mouseover", () => { node.element.classList.add("highlighted"); });
71+
row.addEventListener("mouseout", () => { node.element.classList.remove("highlighted"); });
4772
}
4873
}
4974

75+
function updateSelected () {
76+
let data = getSelection().filter(node => node.type === "entity").sort(sorter),
77+
table = document.querySelector("#tabular-selected");
78+
table.textContent = "";
79+
insertRows(data, table, true);
80+
}
81+
5082
function updateOthers () {
5183
let data = getOthers().filter(node => node.type === "entity").sort(sorter),
5284
table = document.querySelector("#tabular-others");
5385
table.textContent = "";
54-
for (let i = 0; i < data.length; i++) {
55-
let row = table.insertRow(i),
56-
node = data[i],
57-
c;
58-
row.insertCell(0).textContent = node.id;
59-
row.insertCell(1).textContent = node.label;
60-
row.insertCell(2).textContent = node.entities[0].score;
61-
row.insertCell(3).textContent = node.entities[0].frequency;
62-
row.insertCell(4).textContent = node.entities[0].spread;
63-
(c = row.insertCell(5)).textContent = node.edgeType || "";
64-
c.className = `${ node.edgeType }Item`;
65-
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);
70-
}
86+
insertRows(data, table, false);
7187
}
7288

7389
function updateAll () {

src/static/scss/graph.scss

+4
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353
fill: black;
5454
}
5555

56+
&.highlighted circle {
57+
fill: rgb(255, 245, 161);
58+
}
59+
5660
}
5761

5862
}

src/static/scss/tabular.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ $headerHeight: 36px;
7676

7777
td:last-child {
7878

79-
width: 15px;
79+
width: 30px;
8080
border-left: none;
8181

8282
}
@@ -106,7 +106,7 @@ $headerHeight: 36px;
106106

107107
#tabular-selected {
108108

109-
tr td:last-child {
109+
tr td:last-child .icon-close {
110110
color: red;
111111
}
112112

@@ -120,7 +120,7 @@ $headerHeight: 36px;
120120
border-top: 1px solid black;
121121
}
122122

123-
tr td:last-child {
123+
tr td:last-child .icon-add {
124124
color: green;
125125
}
126126

0 commit comments

Comments
 (0)