-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
132 lines (113 loc) · 4.15 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
let chart;
let cabecera;
//Funcion para escribir correctamente el nombre:
function convertirNombre(name) {
if (name) {
const [apellido, nombre] = name.split(" ")
.map(
(word) =>
word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()
).join(" ").split(',')
return nombre + " " + apellido
} else {
return ""; //Si es null, devuelve null o lo que sea.
}
}
//Funcion de la barra de busqueda:
function filterChart(e) {
const value = e.srcElement.value;
// Limpia el previo borde rosado
chart.clearHighlighting();
// Obtiene los nodos.
const data = chart.data();
// Los colapsa a todos
data.forEach((d) => (d._expanded = false));
// Veririfica si el value matchea con algun nombre
data.forEach((d) => {
if (
value != "" &&
convertirNombre(d['apellido-nombre']).toString().toLowerCase().includes(value.toLowerCase())
) {
// If matches, mark node as highlighted
// document.addEventListener('DOMContentLoaded', function() {
// const card = document.getElementById(`id${d.id}`)
// card.style.border = '5px solid red !important';
// });
d._highlighted = true;
d._expanded = true;
}
});
// Lo renderiza
chart.data(data).render().fit();
}
//Funcion para abrir nodo:
const toggleNodeHighlight = (node) => {
// clearing prev selected node
// chart.render().clearHighlighting();
// reusing button click from org chart
chart.onButtonClick("", node);
// setting highlight for the actual node and render the chart
chart.setHighlighted(node.id || "").render();
};
//Get cantidad de childrens nodo:
function getNumberOfChildren(node) {
if (node.children) {
return node.children.length;
} else if (node._children) {
return node._children.length;
} else {
return '';
}
}
const horizontalSpacing = 350; // Espaciado horizontal entre nodos
const color = "#f5f9fc";
const imageDiffVert = 0; //Margin top de la imagen. (Para modificar su posición en eje x)
d3.json("./newCabecera.json").then((data) => {
chart = new d3.OrgChart()
// .nodeHeight((d) => 120) // Altura de cada nodo
// .nodeWidth((d) => 300) // Ancho de cada nodo
.childrenMargin((d) => 55) // Margin entre padre/hijo
.compactMarginBetween((d) => window.innerWidth < 900 ? 50 : 100) // margin top entre nodos
.compactMarginPair((d) => window.innerWidth < 900 ? 100 : 260) //margin sides
.neighbourMargin((a, b) => 70)
.nodeContent(function (d, i, arr, state) {
return `
<div
style=
'width:${d.width}px;
padding-top:${imageDiffVert - 2}px;
padding-left:1px;
padding-right:1px'
'
>
<div
class="card parent_${d.data.parentId}"
id="id${d.data.id}"
style="
background-color:${color};
">
<div class="body">
<div class="name" style="text-align: center; padding-top: 10px;"> ${convertirNombre(
d.data['apellido-nombre']
)} </div>
<div style="background-color:#e6f2f9;color:#716E7B;margin-top:3px;font-size:14px;box-shadow: 0 0 0 1px #007bc7;color:#38485c;border-radius: 0.5rem;padding: 0 0.4em; width: fit-content; font-weight: 700;">
${d.data['sigla']}
</div>
<div style="background-color:#e6f2f9;color:#716E7B;margin-top:3px;font-size:14px;box-shadow: 0 0 0 1px #007bc7;color:#38485c;border-radius: 0.5rem;padding: 0 0.4em; width: fit-content">
${d.data['descripcion-reparticion']}
</div>
<div style="background-color:#F3F6F9;color:#716E7B;margin-top:3px;font-size:14px;box-shadow: 0 0 0 1px #505E70;color:#505E70;border-radius: 0.5rem;padding: 0 0.4em; width: fit-content">
${getNumberOfChildren(d)}
</div>
</div>
</div>
</div>
`;
})
.container(".chart-container")
.data(data)
.onNodeClick((d) => {
toggleNodeHighlight(d)
})
.render()
});