This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard_backup.js
67 lines (52 loc) · 2.16 KB
/
dashboard_backup.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
function dashboard_backup(){
// Recibe un nodo padre y el div que se esta generando, y crea los divs de sus
// hijos recursivamente
function create_tree(father, father_div) {
// Comprobamos si hay mas hijos
if (father.children.length === 0) {
return;
}
// Recorremos los hijos para comprobar que no hay widgets entre ellos o no
// se ha terminado el arbol a copiar
for (var i = 0; i < father.children.length; i++) {
if ($(father.children[i]).hasClass("statusContainer")) {
return;
}
}
// Seguimos creando el arbol
for (var i = 0; i < father.children.length; i++) {
// Creamos el div de un hijo
var child_div = document.createElement(father.children[i].tagName.toLowerCase());
// Atributos de un hijo
var attributes = father.children[i].attributes;
// Copiamos los atributos en el nuevo arbol
for (var j = 0; j < attributes.length; j++) {
child_div.setAttribute(attributes[j].name, attributes[j].value);
}
// Aniadimos el hijo al arbol
father_div.appendChild(child_div);
// Llamamos recursivamente a create_tree()
create_tree(father.children[i], child_div);
}
return;
}
// Empezamos el arbol de divs en main-content
var main_content = document.getElementsByClassName("main-content")[0];
// Creamos la raiz del arbol copia
var main_root = document.createElement('div');
// Lista de atributos a copiar
var attributes = main_content.attributes
// Creamos el arbol
create_tree(main_content, main_root);
// Guardamos el html del arbol resultante
var text = main_root.innerHTML;
//Descargar archivo
var a = window.document.createElement('a');
a.href = window.URL.createObjectURL(new Blob([text], {type: 'text/txt'}));
a.download = 'dashboard_' + moment().format('YYYY-MM-DD_HH:mm:ss') + '.txt';
// Append anchor to body.
document.body.appendChild(a)
a.click();
// Remove anchor from body
document.body.removeChild(a)
}