-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
223 lines (172 loc) · 6.11 KB
/
index.html
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<html>
<head>
<meta charset="utf-8">
<title>GraficARG</title>
<script src="./js/papaparse.min.js"></script>
<link rel="stylesheet" href="css/materialize.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/jquery.playSound.js" type="text/javascript"></script>
<script src="js/jquery-ui.min.js" type="text/javascript"></script>
<script src="js/hammer.min.js" onload="window.Hammer = module.exports;"></script>
<script src="js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/ju/dt-1.10.15/b-1.3.1/r-2.1.1/datatables.min.css"/>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/comportamiento.js"></script>
</head>
<body>
<div class="navbar-fixed">
<nav class="nav-extended">
<div class="nav-wrapper white">
<a href="#" class="brand-logo green-text text-darken-2">GraficARG</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
</ul>
</div>
<div class="nav-content">
<a id="menu" class="dropdown-button btn-floating btn-large halfway-fab waves-effect waves-light green accent-1">
<i class="material-icons">assessment</i>
</a>
</div>
</nav>
</div>
<div class="row main">
<div class="col s6">
<div class="card white">
<div id="sideBar"class="card-content">
<p>Total de registros: <div class="chip" id="nroRegis">0</div></p>
<div class="chart-container" style="position: relative; height:40vh; width:40vw">
<canvas id="grafico1" width="50" height="50"></canvas>
</div>
</div>
</div>
</div>
<div class="col s6">
<div class="card white">
<div class="progress">
<div id="cargando" class="determinate" style="width: 0%"></div>
</div>
<div class="row">
<script>
// CODIGO PARA RENDERIZAR TABLA
$(document).ready(function() {
$('#example').DataTable( {
"ajax": "db/prueba8.json",
"columns": [
{ "data": "caracter" },
{ "data": "programa_desc" },
{ "data": "monto_presupuestado" }
],
scrollY: '55vh',
scrollCollapse: true,
language: {
"decimal": "",
"emptyTable": "No hay data disponible",
"info": "Mostrando _START_ to _END_ of _TOTAL_ registros",
"infoEmpty": "Mostrando 0 de 0 registros",
"infoFiltered": "(filtered from _MAX_ total entries)",
"infoPostFix": "",
"thousands": ",",
"lengthMenu": "Mostrando _MENU_ registros",
"loadingRecords": "Cargando...",
"processing": "Procesando...",
"search": "Buscar:",
"zeroRecords": "No se encontraron resultados",
"paginate": {
"first": "Primero",
"last": "Último",
"next": "Siguiente",
"previous": "Anterior"
},
"aria": {
"sortAscending": ": activar para ordenar ascendentemente",
"sortDescending": ": activar para ordenar descendentemente"
}
}
} );
} );
const {ipcRenderer} = require('electron')
//CODIGO PARA ENVIAR MENSAJES AL BACKEND (MAINJS)
document.getElementById("menu").onclick = function(){
ipcRenderer.send("mensaje", "hola");
};
// CODIGO PARA RECIBIR MENSAJES DEL BACKEND (MAINJS)
ipcRenderer.on('cantidadDocumentos', (event, arg, arg2) => {
console.log("Mensaje recibido:"+arg);
console.log("Mensaje recibido:"+arg2);
});
//CODIGO PARA RENDERIZAR GRAFICO
var ctx = document.getElementById("grafico1").getContext('2d');
var grafico1 = new Chart(ctx, {
type: 'bar',
data: {
labels: ["Administración Central", "Organismos Descentralizados", "Formacion y Sancion de Leyes Nacionales", "Asistencia a la Actividad Cooperativa y Mutual", "Control y Fiscalizacion de la Actividad Aseguradora y Reaseguradora", "Resolucion de Cuestiones Dudosas y Litigiosas"],
datasets: [{
label: '$ de monto presupuestado',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
</script>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Caracter</th>
<th>Programa</th>
<th>Presupuesto</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Caracter</th>
<th>Programa</th>
<th>Presupuesto</th>
</tr>
</tfoot>
</table>
</div>
</div>
<script type="text/javascript">
// Este código activa la consola de JS con el shortcut CTRL+F12, una vez terminada la APP hay que borrar este código. -->
var remote = require('electron').remote;
document.addEventListener('keydown', function (e) {
if (e.which === 123) {
remote.getCurrentWindow().webContents.openDevTools();
} else if (e.which === 116) {
location.reload();
}
});
</script>
</body>
</html>