forked from danvaros/visualizadorObjetivosV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusqueda.html
532 lines (465 loc) · 20.1 KB
/
busqueda.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Objetivos de Desarrollo Sostenible</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css">
<link rel="stylesheet" href="css/ffont-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700,800,300,600italic,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/home.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900" rel="stylesheet">
<style media="screen">
a.selected {
background-color:#1F75CC;
color:white;
z-index:100;
right:0;
bottom:15%;
position:absolute;
}
#contact{
position: absolute;
right: 0;
bottom: 15%;
background:#EFD331;
color:#ffffff;
padding:5px 10px;
text-decoration:none;
z-index: 99;
}
#contact img{
padding: 8px;
max-width: 64px;
}
.disclaimer {
background-color:#FFFFFF;
cursor:default;
display:none;
margin-top: 0px;
position:absolute;
text-align:left;
width:394px;
z-index:50;
padding: 15px 25px;
right:84px;
bottom:15%;
z-index: 99999;
}
label {
display: block;
margin-bottom: 3px;
padding-left: 15px;
text-indent: -15px;
}
.disclaimer p, .disclaimer.div {
margin: 8px 0;
padding-bottom: 8px;
font-family:'Helvetica';
font-weight:300;
text-align:justify;
}
.disclaimer h1{
font-size:30px;
font-family:'Helvetica';
font-weight:800;
}
.ns{
background-color: #afaaaa;
color: black;
border-radius: 5px;
}
.fond{
color: #afaaaa !important;
}
.fond_global{
color: #2d8670 !important;
font-weight: normal !important;
}
.borde_b{
border-bottom: solid 1px #afaaaa;
}
#loader {
display: block;
background: rgba(62, 60, 60, 0.6);
color: white;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 10000;
}
#loader p {
display: block;
font-size: 40px;
position: absolute;
top: -70px;
/* left: 0; */
bottom: 0;
right: 15px;
color: #fff !important /*margin: auto;*/;
text-align: right;
}
#loader p #tex{
width: 300px;
}
</style>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
<script src='js/config.js'></script>
<script src='js/funcionesAPI.js'></script>
<span id="loader">
<p style="color:#333; padding-top: 100px; ">Cargando<br>información</p>
</span>
<script>
$('#loader').show();
</script>
</head>
<body>
<!-- menu -->
<div class="navbar-fixed">
<nav>
<div class=" container nav-wrapper" style="margin-top:0px;">
<a href="index.html" class="brand-logo"><img src="img/icono_header.svg" alt="" /></a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down nav_sticky">
<li class="tam t_sm"><a class="t_sm" href="objetivos.html">Indicadores</a></li>
<li class="tam t_sm"><a href="estados.html" style="line-height: 21px; padding-top: 14px;"> Indicadores con<br>desglose geográfico</a></li>
<!--
<li class="tam t_sm"><a class="t_sm" href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li class="tam t_sm"><a class="t_sm" href="explora.html">Explora</a></li>
<!-- <li class="tam t_sm"><a class="t_sm" href="compara.html">Compara</a></li> -->
<li class="tamps">
<a id="buscar"><img src="img/search.png" alt="" /></a>
<input id="cam_bus" type="text" name="buscar" style="display: none; background-color: rgba(0, 0, 0, 0.4); background-position: 95% 50%; background-repeat: no-repeat;border-bottom: 0 none; border-radius: 8px;color: #ffffff !important;padding: 0 0px;height:35px;" onfocusout="esconder()"/>
</li>
<li class="tamps">
<a id="busca" href="calendario.html"><img data-position="bottom" data-tooltip="Ir al calendario de actualizaciones" class="tooltipped" src="img/calendario.png"
alt="" /></a>
</li>
<!-- <li class="tamps">
<a id="busca" href="exportacion.html"><img data-position="bottom" data-tooltip="Ir a la página de descargas masivas" class=" tooltipped" src="img/descarga.png"
alt="" /></a>
</li> -->
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="index.html">Inicio</a></li>
<li><a href="objetivos.html">Indicadores</a></li>
<!-- <li><a href="estados.html">Indicadores por unidad geográfica</a></li> -->
<!-- <li><a href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li><a href="explora.html">Explora</a></li>
<!-- <li><a href="compara.html">Compara</a></li> -->
<!-- <li class="tamps">
<a id="busca" href="calendario.html">Calendario</a>
</li> -->
</ul>
</div>
</nav>
</div>
<!-- menu -->
<div class="container" id="objetivo0">
<div class="row">
<div class="col s12">
<h3 class="fuerte t_principal">Resultado de busqueda</h3>
<li class="divider"></li>
</div>
<div class="col s12">
<br>
<div class="input-field col s4" style="margin-left:15px;">
<i class="material-icons prefix caja_i">search</i>
<input id="icon_prefix" type="text" class="validate caja_d autocomplete" placeholder=" Buscar indicadores" style="padding-left: 12px;">
</div>
</div>
</div>
<div class="row" >
<div id="noresultado">
</div>
<ul class="collection" id="resultado">
</ul>
</div>
</div>
<!-- footer -->
<footer class="page-footer id">
<div class="container">
<div class="row" id="fot">
<div class="col l3 s12">
<a href="home.html"><img src="img/logo_footer.svg" alt="" style="width: 60%;"/></a>
<br>
<br>
<!-- <div class="" style="display:inline;">
<a href="https://www.facebook.com" style="margin-right: 12%;"><img src="img/fill2.png" alt="" style="width:3%;"/></a>
<a href="https://twitter.com" style="margin-right: 12%;"><img src="img/fill1.png" alt="" style="width:7%;"/></a>
<a href="#"><img src="img/fill3.png" alt="" style="width:7%;"/></a>
</div>
--> </div>
<div class="col l3 s12">
<ul class="fuerte">
<li><a class="fuerte t_sm" href="objetivos.html">Indicadores</a></li>
<!-- <li><a class="fuerte t_sm" href="estados.html">Indicadores con desglose geográfico</a></li>
<li><a class="fuerte t_sm" href="como_vamos.html">¿Cómo vamos?</a></li> -->
<li><a class="fuerte t_sm" href="explora.html">Explora</a></li>
</ul>
</div>
<div class="col l3 s12">
<ul class="fuerte">
<!-- <li><a class="fuerte t_sm" href="compara.html">Compara</a></li> -->
<li><a class="fuerte t_sm" href="calendario.html">Calendario de actualizaciones</a></li>
<!-- <li><a class="fuerte t_sm" href="exportacion.html">Exportación masiva</a></li> -->
<li><a class="fuerte t_sm" href="acerca.html">Acerca de</a></li>
</ul>
</div>
<div class="col l3 s12" style="display:inline;">
<a href="https://www.gob.mx" target="_blank"><img src="img/logoPR.png" alt="" style="width: 45%; margin-right: 15%;"/></a>
<a href="http://www.inegi.org.mx" target="_blank"><img src="img/logoINEGI.png" alt="" style="width:25%;"/></a>
</div>
</div>
</div>
<!-- <div class="footer-copyright light-blue">
</div> -->
</footer>
<!-- footer -->
<div class="disclaimer pop">
<h1>Aviso</h1>
<p>Esta es una versión beta de la Plataforma Nacional para el seguimiento a los indicadores de los Objetivos de Desarrollo Sostenible, en donde podrás encontrar información de los indicadores. El INEGI y el Gobierno de la República trabajarán constantemente para actualizar la información disponible cuando ésta se genere.</p>
</div>
<a href="#" id="contact"> <img src="img/informacion.png" alt="" /> </a>
<script type="text/javascript">
jQuery.expr[":"].Contains = jQuery.expr.createPseudo(function(arg) {
return function( elem ) {
return jQuery(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0;
};
});
var objetivoId = getParameterByName('objetivoId');
var lupa = false;
var visibles = true;
$(document).ready(function(){
$('#noresultado').hide();
$('#cam_bus').keypress(function(e) {
if(e.which == 13) {
buscar($('#cam_bus').val());
}
});
$('#icon_prefix').keypress(function(e) {
if(e.which == 13) {
buscar($('#icon_prefix').val());
}
});
function deselect(e) {
$('.pop').slideFadeToggle(function() {
e.removeClass('selected');
});
}
$("#contact").hover(
function() {
if($(this).hasClass('selected')) {
deselect($(this));
} else {
$(this).addClass('selected');
$('.pop').slideFadeToggle();
}
return false;
}, function() {
deselect($('#contact'));
return false;
}
);
$.fn.slideFadeToggle = function(easing, callback) {
return this.animate({ opacity: 'toggle', height: 'toggle' }, 'fast', easing, callback);
};
$('.collapsible').collapsible({
accordion : true
});
console.log($('#objetivos').find('li.active').children().children());
$(".button-collapse").sideNav();
$("#sti").hide();
window.onload = function () {
$('#buscar').click(function () {
if(lupa) {
$('#cam_bus').hide();
lupa = false;
} else {
$('#cam_bus').show();
$('#buscar').hide();
document.getElementById("cam_bus").focus();
lupa = true;
}
});
}
llamada(27,99);
if(objetivoId != ''){
desplegar(objetivoId);
console.log('entro');
}
});
function buscar(busqueda){
$('.collection-item').hide();
if(busqueda != ''){
$('#noresultado').hide();
var res = busqueda.split(" ");
console.log(res);
for (var i = 0; i < res.length; i++) {
if($('.collection-item:Contains("'+ res[i] +'")').length > 0){
$('.collection-item:Contains("'+ res[i] +'")').show();
}else{
$('#noresultado').show();
$('#noresultado').html('<h3>No se encontró ninguna coincidencia</h3>');
}
}
}else{
//$('#resultado').html('No se encontraron coincidencias.');
$('.objetivos').show();
console.log('entrado');
$('#noresultado').show();
$('#noresultado').html('<h3>No se encontró ninguna coincidencia</h3>');
}
}
function llamada(indicador, ser){
var url = PathAPI + 'Tematica/Todos';
//var url = 'https://operativos.inegi.org.mx/datos/api/Valores/PorClaveSerie';
var parametros = {"PIdioma":"ES"}
//var parametros = {'PCveInd':indicador,'PAnoIni':'0', 'PAnoFin':'0', 'POrden':'DESC','PCveSer': ser , 'PIdioma':'ES'}
$.ajax({
type: 'POST',
url: url,
data: parametros,
success: function( data, textStatus, jqxhr ) {
console.log(data);
ponObjetivos(data);
var obj = getParameterByName("busqueda");
if(obj != null){
buscar(obj);
}else{
console.log('entrado');
$('#noresultado').show();
$('#noresultado').html('<h3>No se encontró ninguna coincidencia</h3>');
}
$('#loader').delay(2000).fadeOut("slow");
},
async:false
});
}
function ponObjetivos(datos){
var checar = 0;
for (var i = 0; i < datos.length; i++) {
var contenido='';
var lista_resultados = '';
console.log(datos[i]);
var codigo = datos[i].Codigo_des;
codigo = codigo.replace(".","");
lista_resultados = lista_resultados + '<li class="collection-item">' +
'<a href="objetivos.html?objetivoId='+ codigo +'">' + datos[i].Codigo_des + datos[i].Abrevia_des +' : <span class="descripcion"> '+datos[i].Descrip_des + '</span> </a></li>';
for (var j = 0; j < datos[i].Meta.length; j++) {
var clave_arb_meta = datos[i].Meta[j].Indicador[0].ClaveInd_arb;
if(true){
if(clave_arb_meta != 210){
lista_resultados = lista_resultados + '<li class="collection-item">' + datos[i].Meta[j].Codigo_des + ' <span class="descripcion"> '+datos[i].Meta[j].Descrip_des + '</span> </li>';
for (var k = 0; k < datos[i].Meta[j].Indicador.length; k++) {
var clave_arb = datos[i].Meta[j].Indicador[k].ClaveInd_arb;
var codigo_dg = datos[i].Meta[j].Indicador[k].DesGeo.Codigo_dg;
var descrip_des = datos[i].Meta[j].Indicador[k].Descrip_des;
var codigo_des = datos[i].Meta[j].Indicador[k].Codigo_des;
if( clave_arb == 210){
}else if(clave_arb == 333)
{
if(datos[i].Meta[j].Indicador[k].TieneValores){
lista_resultados = lista_resultados + '<li class="collection-item">' +
'<a class="buscar" href="indicadores333.html?objetivo='+datos[i].Codigo_des+'&meta='+datos[i].Meta[j].Clave_arb+'&indicador='+ clave_arb+'&codigo='+codigo_dg+'&obj='+datos[i].Clave_arb+'">'+
codigo_des +' '+ descrip_des +
'</a>'+
'<a class="buscar fond_global tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ ((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].DescripS_tatr : "n/A" )+'"> '+
((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].Cve_tatr : "n/A" )+
'</a>' +
' '+ '<a class="buscar ns tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ datos[i].Meta[j].Indicador[k].DesGeo.Descrip_dg +'">'+
' '+ datos[i].Meta[j].Indicador[k].DesGeo.Codigo_dg +' </a>'+
'</li>';
}else{
lista_resultados = lista_resultados + '<li class="collection-item">' + '<span class="buscar" >'+
codigo_des +' '+ descrip_des +
'</span>'+
'<a class="buscar fond_global tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ ((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].DescripS_tatr : "n/A" )+'"> '+
((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].Cve_tatr : "n/A" )+
'</a>' +
' '+
'<a class="buscar ns tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ datos[i].Meta[j].Indicador[k].DesGeo.Descrip_dg +'">'+
' '+ datos[i].Meta[j].Indicador[k].DesGeo.Codigo_dg +' </a>'+
'</li>';
}
}
else{
if(datos[i].Meta[j].Indicador[k].TieneValores){
lista_resultados = lista_resultados + '<li class="collection-item">' + '<span class="buscar" >'+ '<a class="buscar" href="indicadores.html?objetivo='+datos[i].Codigo_des+'&meta='+datos[i].Meta[j].Clave_arb+'&indicador='+ clave_arb+'&codigo='+codigo_dg+'&obj='+datos[i].Clave_arb+'">'+
codigo_des +' '+ descrip_des +
'</a>'+
'<a class="buscar fond_global tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ ((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].DescripS_tatr : "n/A" )+'"> '+
((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].Cve_tatr : "n/A" )+
'</a>' +
' '+
'<a class="buscar ns tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ datos[i].Meta[j].Indicador[k].DesGeo.Descrip_dg +'">'+
' '+ datos[i].Meta[j].Indicador[k].DesGeo.Codigo_dg +' </a>'+
'</li>';
}else{
lista_resultados = lista_resultados + '<li class="collection-item">' + '<span class="buscar" >'+
codigo_des +' '+ descrip_des +
'</span>'+
'<a class="buscar fond_global tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ ((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].DescripS_tatr : "n/A" )+'"> '+
((typeof datos[i].Meta[j].Indicador[k].TipoInd[0] != "undefined") ? datos[i].Meta[j].Indicador[k].TipoInd[0].Cve_tatr : "n/A" )+
'</a>' +
' '+
'<a class="buscar ns tooltipped" data-position="bottom" data-delay="50" data-tooltip="'+ datos[i].Meta[j].Indicador[k].DesGeo.Descrip_dg +'">'+
' '+ datos[i].Meta[j].Indicador[k].DesGeo.Codigo_dg +' </a>'+
'</li>';
}
}//fin for mas interno
}
}
}
}//despues de este cambia el indicador
$('#resultado').append(lista_resultados);
//if(lista_resultados != '' || lista_resultados != NULL){
//$('#resultado').append(lista_resultados);
//$('#noresultado').show();
//$('#noresultado').html('<h3>No se encontró ninguna coincidencia</h3>');
//}else{
//$('#resultado').append('No se encontraron resultados');
//$('#noresultado').show();
//$('#noresultado').html('<h3>No se encontró ninguna coincidencia</h3>');
//}
}//fin for mas externo
$('.tooltipped').tooltip({delay: 50});
}//fin de la función
function show_less()
{
if(visibles){
$('.ocultar').hide();
console.log('oculta');
visibles = false;
$('.mensaje').html('Ver más');
}
else{
$('.ocultar').show();
console.log('muetra');
visibles = true;
$('.mensaje').html('Ver menos');
}
}
function esconder() {
$('#cam_bus').hide();
$('#buscar').show();
lupa = false;
}
function desplegar(objetivoId)
{
$('#objetivo'+objetivoId+' > div').click();
window.location.href = '#objetivo'+ (objetivoId-1);
}
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</script>
</body>
</html>