identifier
stringlengths 0
89
| parameters
stringlengths 0
399
| return_statement
stringlengths 0
982
⌀ | docstring
stringlengths 10
3.04k
| docstring_summary
stringlengths 0
3.04k
| function
stringlengths 13
25.8k
| function_tokens
sequence | start_point
sequence | end_point
sequence | argument_list
null | language
stringclasses 3
values | docstring_language
stringclasses 4
values | docstring_language_predictions
stringclasses 4
values | is_langid_reliable
stringclasses 2
values | is_langid_extra_reliable
bool 1
class | type
stringclasses 9
values |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Imagencheck | (img) | null | Script para sustituir imágenes rotas | Script para sustituir imágenes rotas | function Imagencheck(img) {
if (!img.complete) return false;
if (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) return false;
return true;
} | [
"function",
"Imagencheck",
"(",
"img",
")",
"{",
"if",
"(",
"!",
"img",
".",
"complete",
")",
"return",
"false",
";",
"if",
"(",
"typeof",
"img",
".",
"naturalWidth",
"!=",
"\"undefined\"",
"&&",
"img",
".",
"naturalWidth",
"==",
"0",
")",
"return",
"false",
";",
"return",
"true",
";",
"}"
] | [
1,
0
] | [
5,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
comentar_student | (key_msj) | null | funcion para la seccion de comentario del student | funcion para la seccion de comentario del student | function comentar_student(key_msj) {
var token = $("#token").val();
var curso_id = $("#course").val();
var section = $("#section").val();
var user_id = $("#user").val();
$.ajax({
url: "../../ajax/div_comentar",
headers: token,
data: {
_token: token,
key: key_msj,
curso: curso_id,
seccion: section,
usuario: user_id,
},
type: "POST",
datatype: "json",
success: function (data) {
//console.log(response);
$("#comentar_msj_" + key_msj)
.prepend(data)
.fadeIn(1000, function () {
$("#comentar_msj_" + key_msj).css({
border: "2px solid lightcoral",
"border-radius": "5px",
});
});
$("#comentar_" + key_msj).hide();
$("#comentario_" + key_msj).focus();
},
error: function (response) {
console.log(response);
},
});
} | [
"function",
"comentar_student",
"(",
"key_msj",
")",
"{",
"var",
"token",
"=",
"$",
"(",
"\"#token\"",
")",
".",
"val",
"(",
")",
";",
"var",
"curso_id",
"=",
"$",
"(",
"\"#course\"",
")",
".",
"val",
"(",
")",
";",
"var",
"section",
"=",
"$",
"(",
"\"#section\"",
")",
".",
"val",
"(",
")",
";",
"var",
"user_id",
"=",
"$",
"(",
"\"#user\"",
")",
".",
"val",
"(",
")",
";",
"$",
".",
"ajax",
"(",
"{",
"url",
":",
"\"../../ajax/div_comentar\"",
",",
"headers",
":",
"token",
",",
"data",
":",
"{",
"_token",
":",
"token",
",",
"key",
":",
"key_msj",
",",
"curso",
":",
"curso_id",
",",
"seccion",
":",
"section",
",",
"usuario",
":",
"user_id",
",",
"}",
",",
"type",
":",
"\"POST\"",
",",
"datatype",
":",
"\"json\"",
",",
"success",
":",
"function",
"(",
"data",
")",
"{",
"//console.log(response);",
"$",
"(",
"\"#comentar_msj_\"",
"+",
"key_msj",
")",
".",
"prepend",
"(",
"data",
")",
".",
"fadeIn",
"(",
"1000",
",",
"function",
"(",
")",
"{",
"$",
"(",
"\"#comentar_msj_\"",
"+",
"key_msj",
")",
".",
"css",
"(",
"{",
"border",
":",
"\"2px solid lightcoral\"",
",",
"\"border-radius\"",
":",
"\"5px\"",
",",
"}",
")",
";",
"}",
")",
";",
"$",
"(",
"\"#comentar_\"",
"+",
"key_msj",
")",
".",
"hide",
"(",
")",
";",
"$",
"(",
"\"#comentario_\"",
"+",
"key_msj",
")",
".",
"focus",
"(",
")",
";",
"}",
",",
"error",
":",
"function",
"(",
"response",
")",
"{",
"console",
".",
"log",
"(",
"response",
")",
";",
"}",
",",
"}",
")",
";",
"}"
] | [
638,
0
] | [
673,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
inverter | (quadro) | null | accion que se ejecuta al seleccionar el elemento que posse la accion inverter con con el argumento quadro -> this.form.caja2 = quadro | accion que se ejecuta al seleccionar el elemento que posse la accion inverter con con el argumento quadro -> this.form.caja2 = quadro | function inverter(quadro){
//tomma el valor segun el id en el documento en curso
variable1 = document.getElementById("caja1").value;
//convierte un elemento en arreglo segun la regla indicada entre las comillas
contrario = variable1.split("");
//invierte los elementos de un arreglo
mix = contrario.reverse();
//convierte un arreglo en un valor unico con el elemento entre las comillas
mixed = mix.join("");
//imprime en el cuadro de la derecha
quadro.value +=mixed;
//imprime en consola
console.log(contrario);
} | [
"function",
"inverter",
"(",
"quadro",
")",
"{",
"//tomma el valor segun el id en el documento en curso\t",
"variable1",
"=",
"document",
".",
"getElementById",
"(",
"\"caja1\"",
")",
".",
"value",
";",
"//convierte un elemento en arreglo segun la regla indicada entre las comillas",
"contrario",
"=",
"variable1",
".",
"split",
"(",
"\"\"",
")",
";",
"//invierte los elementos de un arreglo",
"mix",
"=",
"contrario",
".",
"reverse",
"(",
")",
";",
"//convierte un arreglo en un valor unico con el elemento entre las comillas",
"mixed",
"=",
"mix",
".",
"join",
"(",
"\"\"",
")",
";",
"//imprime en el cuadro de la derecha",
"quadro",
".",
"value",
"+=",
"mixed",
";",
"//imprime en consola",
"console",
".",
"log",
"(",
"contrario",
")",
";",
"}"
] | [
81,
0
] | [
100,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
selectedMarkerAndNearestStation | () | null | /*FIN CREAR PETICIÓN AJAX -------------------------------------------------- /*Mostrar marcador seleccionado y otro marcador con la estación más cercana ------------------ | /*FIN CREAR PETICIÓN AJAX -------------------------------------------------- /*Mostrar marcador seleccionado y otro marcador con la estación más cercana ------------------ | function selectedMarkerAndNearestStation() {
if(this.readyState == 4) {
if (this.status == 200) {
let responseJson = JSON.parse(this.responseText);
/*Agregando marcador en las coordenadas obtenidas.*/
let marker = L.marker([responseJson.result.latitud, responseJson.result.longitud],
{
icon: markerStation,
id: responseJson.result.id,
name: responseJson.result.nombre,
localidad: responseJson.result.localidad,
represents: "station"
});
/*Creando contenido de popup*/
const content =
'<div class="containerTitlePopup">' +
'<strong class="titlePopup">Estación más cercana</strong>' +
'</div>' +
'<h5 class="mt-3 text-break px-2">' + responseJson.result.nombre + '</h5>' +
'<p class="distanciaPopup text-break"><strong>Distancia desde la ubicación seleccionada:</strong></p>' +
'<p class="distanciaNumPopup">' + responseJson.result.distancia + ' ' + responseJson.result.unidadDistancia + '</p>' +
'<p class="text-muted coordenadasPopup">lat: ' + responseJson.result.latitud + ', lng: ' + responseJson.result.longitud +'</p>';
/*Agregando popup*/
marker.bindPopup(content, {
closeOnEscapeKey: false,
offset: L.point(0, -26),
closeButton: false,
className: 'popup'
});
marker.on('click', () => onClickMarkerStation(marker));
marker.addTo(layerGroup);
} else {
alert('El código de estado fue: ' + this.status);
}
}
} | [
"function",
"selectedMarkerAndNearestStation",
"(",
")",
"{",
"if",
"(",
"this",
".",
"readyState",
"==",
"4",
")",
"{",
"if",
"(",
"this",
".",
"status",
"==",
"200",
")",
"{",
"let",
"responseJson",
"=",
"JSON",
".",
"parse",
"(",
"this",
".",
"responseText",
")",
";",
"/*Agregando marcador en las coordenadas obtenidas.*/",
"let",
"marker",
"=",
"L",
".",
"marker",
"(",
"[",
"responseJson",
".",
"result",
".",
"latitud",
",",
"responseJson",
".",
"result",
".",
"longitud",
"]",
",",
"{",
"icon",
":",
"markerStation",
",",
"id",
":",
"responseJson",
".",
"result",
".",
"id",
",",
"name",
":",
"responseJson",
".",
"result",
".",
"nombre",
",",
"localidad",
":",
"responseJson",
".",
"result",
".",
"localidad",
",",
"represents",
":",
"\"station\"",
"}",
")",
";",
"/*Creando contenido de popup*/",
"const",
"content",
"=",
"'<div class=\"containerTitlePopup\">'",
"+",
"'<strong class=\"titlePopup\">Estación más cercana</strong>' +",
"",
"'</div>'",
"+",
"'<h5 class=\"mt-3 text-break px-2\">'",
"+",
"responseJson",
".",
"result",
".",
"nombre",
"+",
"'</h5>'",
"+",
"'<p class=\"distanciaPopup text-break\"><strong>Distancia desde la ubicación seleccionada:</strong></p>' ",
"",
"'<p class=\"distanciaNumPopup\">'",
"+",
"responseJson",
".",
"result",
".",
"distancia",
"+",
"' '",
"+",
"responseJson",
".",
"result",
".",
"unidadDistancia",
"+",
"'</p>'",
"+",
"'<p class=\"text-muted coordenadasPopup\">lat: '",
"+",
"responseJson",
".",
"result",
".",
"latitud",
"+",
"', lng: '",
"+",
"responseJson",
".",
"result",
".",
"longitud",
"+",
"'</p>'",
";",
"/*Agregando popup*/",
"marker",
".",
"bindPopup",
"(",
"content",
",",
"{",
"closeOnEscapeKey",
":",
"false",
",",
"offset",
":",
"L",
".",
"point",
"(",
"0",
",",
"-",
"26",
")",
",",
"closeButton",
":",
"false",
",",
"className",
":",
"'popup'",
"}",
")",
";",
"marker",
".",
"on",
"(",
"'click'",
",",
"(",
")",
"=>",
"onClickMarkerStation",
"(",
"marker",
")",
")",
";",
"marker",
".",
"addTo",
"(",
"layerGroup",
")",
";",
"}",
"else",
"{",
"alert",
"(",
"'El código de estado fue: ' ",
" ",
"his.",
"s",
"tatus)",
";",
"",
"}",
"}",
"}"
] | [
30,
0
] | [
66,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
select_card | (player_info) | null | Función para verificar que la carta que eligio la tenga en la mano | Función para verificar que la carta que eligio la tenga en la mano | function select_card(player_info) {
var cards_player = player_info.getCards();
var valid_card = false;
while (!(valid_card)) {
answer = prompt(printEstadoJuego(board, no_world)
+ "\nSus cartas son: " + cards_player
+ "\nEscriba su carta");
var letter_answer = answer.charAt(answer.length - 1);
var number_answer = answer.slice(0, answer.length - 1);
letter_answer = letter_answer.toUpperCase();
answer = number_answer + letter_answer;
var index_1 = void 0;
for (var element in cards_player) {
if (cards_player[element].toString() == answer) {
valid_card = true;
index_1 = element;
}
}
if (valid_card) {
return index_1;
}
else {
prompt("Elija una carta que tenga, eligio " + answer);
}
}
} | [
"function",
"select_card",
"(",
"player_info",
")",
"{",
"var",
"cards_player",
"=",
"player_info",
".",
"getCards",
"(",
")",
";",
"var",
"valid_card",
"=",
"false",
";",
"while",
"(",
"!",
"(",
"valid_card",
")",
")",
"{",
"answer",
"=",
"prompt",
"(",
"printEstadoJuego",
"(",
"board",
",",
"no_world",
")",
"+",
"\"\\nSus cartas son: \"",
"+",
"cards_player",
"+",
"\"\\nEscriba su carta\"",
")",
";",
"var",
"letter_answer",
"=",
"answer",
".",
"charAt",
"(",
"answer",
".",
"length",
"-",
"1",
")",
";",
"var",
"number_answer",
"=",
"answer",
".",
"slice",
"(",
"0",
",",
"answer",
".",
"length",
"-",
"1",
")",
";",
"letter_answer",
"=",
"letter_answer",
".",
"toUpperCase",
"(",
")",
";",
"answer",
"=",
"number_answer",
"+",
"letter_answer",
";",
"var",
"index_1",
"=",
"void",
"0",
";",
"for",
"(",
"var",
"element",
"in",
"cards_player",
")",
"{",
"if",
"(",
"cards_player",
"[",
"element",
"]",
".",
"toString",
"(",
")",
"==",
"answer",
")",
"{",
"valid_card",
"=",
"true",
";",
"index_1",
"=",
"element",
";",
"}",
"}",
"if",
"(",
"valid_card",
")",
"{",
"return",
"index_1",
";",
"}",
"else",
"{",
"prompt",
"(",
"\"Elija una carta que tenga, eligio \"",
"+",
"answer",
")",
";",
"}",
"}",
"}"
] | [
380,
0
] | [
405,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
cargarCategoria | (jsonConArticulos, categoria) | null | Le paso los valores a la función "mostrarDatosHtml" para que los inserte en los elementos html. | Le paso los valores a la función "mostrarDatosHtml" para que los inserte en los elementos html. | function cargarCategoria(jsonConArticulos, categoria) {
const LIMIT_ARTICULOS = 5;
for (let i = 0; i < LIMIT_ARTICULOS; i++) {
mostrarDatosHtml(i, jsonConArticulos[i].nombre, "nombre", categoria);
mostrarDatosHtml(i, jsonConArticulos[i].imagen_articulo[0].imagen, "img", categoria, true);
mostrarDatosHtml(i, `$${jsonConArticulos[i].precio}`, "precio", categoria);
mostrarDatosHtml(i, jsonConArticulos[i].financiacion, "financiacion", categoria);
cargarHref(categoria, i, jsonConArticulos[i].idArticulo);
}
} | [
"function",
"cargarCategoria",
"(",
"jsonConArticulos",
",",
"categoria",
")",
"{",
"const",
"LIMIT_ARTICULOS",
"=",
"5",
";",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"LIMIT_ARTICULOS",
";",
"i",
"++",
")",
"{",
"mostrarDatosHtml",
"(",
"i",
",",
"jsonConArticulos",
"[",
"i",
"]",
".",
"nombre",
",",
"\"nombre\"",
",",
"categoria",
")",
";",
"mostrarDatosHtml",
"(",
"i",
",",
"jsonConArticulos",
"[",
"i",
"]",
".",
"imagen_articulo",
"[",
"0",
"]",
".",
"imagen",
",",
"\"img\"",
",",
"categoria",
",",
"true",
")",
";",
"mostrarDatosHtml",
"(",
"i",
",",
"`",
"${",
"jsonConArticulos",
"[",
"i",
"]",
".",
"precio",
"}",
"`",
",",
"\"precio\"",
",",
"categoria",
")",
";",
"mostrarDatosHtml",
"(",
"i",
",",
"jsonConArticulos",
"[",
"i",
"]",
".",
"financiacion",
",",
"\"financiacion\"",
",",
"categoria",
")",
";",
"cargarHref",
"(",
"categoria",
",",
"i",
",",
"jsonConArticulos",
"[",
"i",
"]",
".",
"idArticulo",
")",
";",
"}",
"}"
] | [
10,
0
] | [
19,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
() | null | expresion de la funcion | expresion de la funcion | function() {
console.log(3 + 3);
} | [
"function",
"(",
")",
"{",
"console",
".",
"log",
"(",
"3",
"+",
"3",
")",
";",
"}"
] | [
9,
15
] | [
11,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | variable_declarator |
|
volumen | () | null | Funcion que activa/desactiva la musica en el juego | Funcion que activa/desactiva la musica en el juego | function volumen(){
if(!musicaAct){
musica.play();
musicaAct = true;
}else{
musica.pause();
musicaAct = false;
}
} | [
"function",
"volumen",
"(",
")",
"{",
"if",
"(",
"!",
"musicaAct",
")",
"{",
"musica",
".",
"play",
"(",
")",
";",
"musicaAct",
"=",
"true",
";",
"}",
"else",
"{",
"musica",
".",
"pause",
"(",
")",
";",
"musicaAct",
"=",
"false",
";",
"}",
"}"
] | [
522,
0
] | [
531,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Pelota | (radio, velocidadX, velocidadY, posicionX, posicionY) | null | ///////////////Clases///////////////////////// La clase pelota representara el objeto pelota del juego, que e a compuesta por los atributos aqui indicados | ///////////////Clases///////////////////////// La clase pelota representara el objeto pelota del juego, que e a compuesta por los atributos aqui indicados | function Pelota(radio, velocidadX, velocidadY, posicionX, posicionY){
this.radio = radio;
this.velocidadX = velocidadX;
this.velocidadY = velocidadY;
this.posicionX = posicionX;
this.posicionY = posicionY;
this.velocidadTotal = Math.abs(velocidadX) + Math.abs(velocidadY); //La velocida total es la suma de las velocidades en X y en Y, que se mantendra constante mientras no se altere con powerUps o cambios de nivel
} | [
"function",
"Pelota",
"(",
"radio",
",",
"velocidadX",
",",
"velocidadY",
",",
"posicionX",
",",
"posicionY",
")",
"{",
"this",
".",
"radio",
"=",
"radio",
";",
"this",
".",
"velocidadX",
"=",
"velocidadX",
";",
"this",
".",
"velocidadY",
"=",
"velocidadY",
";",
"this",
".",
"posicionX",
"=",
"posicionX",
";",
"this",
".",
"posicionY",
"=",
"posicionY",
";",
"this",
".",
"velocidadTotal",
"=",
"Math",
".",
"abs",
"(",
"velocidadX",
")",
"+",
"Math",
".",
"abs",
"(",
"velocidadY",
")",
";",
"//La velocida total es la suma de las velocidades en X y en Y, que se mantendra constante mientras no se altere con powerUps o cambios de nivel",
"}"
] | [
44,
0
] | [
53,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
y1 | (t) | null | función para cambiar la coordenada y inicial de la línea | función para cambiar la coordenada y inicial de la línea | function y1(t){
return cos(t/10)*125+cos(t/20)*125+cos(t/30)*125;
} | [
"function",
"y1",
"(",
"t",
")",
"{",
"return",
"cos",
"(",
"t",
"/",
"10",
")",
"*",
"125",
"+",
"cos",
"(",
"t",
"/",
"20",
")",
"*",
"125",
"+",
"cos",
"(",
"t",
"/",
"30",
")",
"*",
"125",
";",
"}"
] | [
32,
0
] | [
34,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
comprovarPosicion | () | null | Función que comprueba la posición actual del jugador y, si hay que hacer alguna acción especial, la hace | Función que comprueba la posición actual del jugador y, si hay que hacer alguna acción especial, la hace | function comprovarPosicion(){
var casilla = partida.mapas[partida.jugador.posicion.mapa].distribucion[partida.jugador.posicion.x][partida.jugador.posicion.y];
//si está en una casilla sin ninguna acción solo pintamos esta
if(casilla == 11 || casilla == 13){
pintaPosicion(partida.jugador.posicion.x, partida.jugador.posicion.y);
}
//si es otro tipo de casilla, realizaremos la acción pertinente a esa casilla.
if(casilla == 12){
//salida
subirPiso();
}
if(casilla == 14){
//puntos xp
sumXp(10);
partida.mapas[partida.jugador.posicion.mapa].distribucion[partida.jugador.posicion.x][partida.jugador.posicion.y] = 11;
messageToConsole('Has encontrado 10 puntos xp extras!');
pintaPosicion(partida.jugador.posicion.x, partida.jugador.posicion.y);
}
if (casilla == 15) {
//portal al primer piso
primerPiso();
}
if(casilla >= 20 && casilla <= 29){
//objeto
recogerObjeto(casilla);
pintaPosicion(partida.jugador.posicion.x, partida.jugador.posicion.y);
// Quitamos el objeto para que no lo pueda volver a coger. Ponemos suelo (11)
partida.mapas[partida.jugador.posicion.mapa].distribucion[partida.jugador.posicion.x][partida.jugador.posicion.y] = 11;
}
if(casilla >= 30 && casilla <= 39){
//enemigo
}
// Comprobamos si delante tenemos un enemigo (se está viendo un enemigo en el visor)
comprobarEnemigo();
} | [
"function",
"comprovarPosicion",
"(",
")",
"{",
"var",
"casilla",
"=",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"distribucion",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
"]",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
"]",
";",
"//si está en una casilla sin ninguna acción solo pintamos esta",
"if",
"(",
"casilla",
"==",
"11",
"||",
"casilla",
"==",
"13",
")",
"{",
"pintaPosicion",
"(",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
",",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
")",
";",
"}",
"//si es otro tipo de casilla, realizaremos la acción pertinente a esa casilla.",
"if",
"(",
"casilla",
"==",
"12",
")",
"{",
"//salida",
"subirPiso",
"(",
")",
";",
"}",
"if",
"(",
"casilla",
"==",
"14",
")",
"{",
"//puntos xp",
"sumXp",
"(",
"10",
")",
";",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"distribucion",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
"]",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
"]",
"=",
"11",
";",
"messageToConsole",
"(",
"'Has encontrado 10 puntos xp extras!'",
")",
";",
"pintaPosicion",
"(",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
",",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
")",
";",
"}",
"if",
"(",
"casilla",
"==",
"15",
")",
"{",
"//portal al primer piso",
"primerPiso",
"(",
")",
";",
"}",
"if",
"(",
"casilla",
">=",
"20",
"&&",
"casilla",
"<=",
"29",
")",
"{",
"//objeto",
"recogerObjeto",
"(",
"casilla",
")",
";",
"pintaPosicion",
"(",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
",",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
")",
";",
"// Quitamos el objeto para que no lo pueda volver a coger. Ponemos suelo (11)",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"distribucion",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
"]",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
"]",
"=",
"11",
";",
"}",
"if",
"(",
"casilla",
">=",
"30",
"&&",
"casilla",
"<=",
"39",
")",
"{",
"//enemigo",
"}",
"// Comprobamos si delante tenemos un enemigo (se está viendo un enemigo en el visor)",
"comprobarEnemigo",
"(",
")",
";",
"}"
] | [
178,
0
] | [
212,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
popularDistrito | () | null | Crea los distritos del cantón elegido | Crea los distritos del cantón elegido | function popularDistrito() {
document.querySelector('#txtHiddenCanton').value = document.querySelector('#inputCanton').value
$("#inputDistrito option").each(function () {
if (this.value !== '') {
$(this).remove();
}
});
let valorProvincia = selectProvincias.options[selectProvincias.selectedIndex].text;
let valorCanton = selectCantones.options[selectCantones.selectedIndex].text;
if (valorProvincia == 'San José') {
if (valorCanton == 'San José') {
for (let i = 0; i < 11; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Escazú') {
for (let i = 11; i < 14; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Desamparados') {
for (let i = 14; i < 27; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Puriscal') {
for (let i = 27; i < 36; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Tarrazú') {
for (let i = 36; i < 40; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Aserrí') {
for (let i = 40; i < 46; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Mora') {
for (let i = 46; i < 51; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Goicoechea') {
for (let i = 51; i < 58; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Santa Ana') {
for (let i = 58; i < 64; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Alajuelita') {
for (let i = 64; i < 69; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Vasquez de Coronado') {
for (let i = 69; i < 74; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Acosta') {
for (let i = 74; i < 79; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Tibás') {
for (let i = 79; i < 84; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Moravia') {
for (let i = 84; i < 87; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Montes de Oca') {
for (let i = 87; i < 91; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Turrubares') {
for (let i = 91; i < 96; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Dota') {
for (let i = 96; i < 99; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Curridabat') {
for (let i = 99; i < 103; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Pérez Zeledón') {
for (let i = 103; i < 114; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'León Cortés') {
for (let i = 114; i < 120; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Alajuela') {
if (valorCanton == 'Alajuela') {
for (let i = 120; i < 134; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Ramón') {
for (let i = 134; i < 147; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Grecia') {
for (let i = 147; i < 155; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Mateo') {
for (let i = 155; i < 158; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Atenas') {
for (let i = 158; i < 166; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Naranjo') {
for (let i = 166; i < 173; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Palmares') {
for (let i = 173; i < 180; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Poás') {
for (let i = 180; i < 185; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Orotina') {
for (let i = 185; i < 190; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Carlos') {
for (let i = 190; i < 203; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Alfaro Ruiz') {
for (let i = 203; i < 210; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Valverde Vega') {
for (let i = 210; i < 215; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Upala') {
for (let i = 215; i < 222; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Los Chiles') {
for (let i = 222; i < 226; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Guatuso') {
for (let i = 226; i < 229; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Cartago') {
if (valorCanton == 'Cartago') {
for (let i = 229; i < 240; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Paraíso') {
for (let i = 240; i < 245; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'La Unión') {
for (let i = 245; i < 253; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Jiménez') {
for (let i = 253; i < 256; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Turrialba') {
for (let i = 256; i < 268; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Alvarado') {
for (let i = 268; i < 271; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Oreamuno') {
for (let i = 271; i < 276; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'El Guarco') {
for (let i = 276; i < 280; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Heredia') {
if (valorCanton == 'Heredia') {
for (let i = 280; i < 285; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Barva') {
for (let i = 285; i < 291; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Santo Domingo') {
for (let i = 291; i < 299; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Santa Bárbara') {
for (let i = 299; i < 305; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Rafael') {
for (let i = 305; i < 310; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Isidro') {
for (let i = 310; i < 314; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Belén') {
for (let i = 314; i < 317; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Flores') {
for (let i = 317; i < 320; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'San Pablo') {
for (let i = 320; i < 321; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Sarapiquí') {
for (let i = 321; i < 326; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Guanacaste') {
if (valorCanton == 'Liberia') {
for (let i = 326; i < 331; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Nicoya') {
for (let i = 331; i < 338; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Santa Cruz') {
for (let i = 338; i < 347; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Bagaces') {
for (let i = 347; i < 351; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Carrillo') {
for (let i = 351; i < 355; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Cañas') {
for (let i = 355; i < 360; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Abangares') {
for (let i = 360; i < 364; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Tilarán') {
for (let i = 364; i < 371; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Nandayure') {
for (let i = 371; i < 377; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'La Cruz') {
for (let i = 377; i < 381; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Hojancha') {
for (let i = 381; i < 385; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Puntarenas') {
if (valorCanton == 'Puntarenas') {
for (let i = 385; i < 401; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Esparza') {
for (let i = 401; i < 406; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Buenos Aires') {
for (let i = 406; i < 415; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Montes de Oro') {
for (let i = 415; i < 418; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Osa') {
for (let i = 418; i < 423; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Quepos') {
for (let i = 423; i < 426; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Golfito') {
for (let i = 426; i < 430; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Coto Brus') {
for (let i = 430; i < 435; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Parrita') {
for (let i = 435; i < 436; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Corredores') {
for (let i = 436; i < 440; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Garabito') {
for (let i = 440; i < 442; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
if (valorProvincia == 'Limón') {
if (valorCanton == 'Limón') {
for (let i = 442; i < 446; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Pococí') {
for (let i = 446; i < 452; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Siquirres') {
for (let i = 452; i < 458; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Talamanca') {
for (let i = 458; i < 462; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Matina') {
for (let i = 462; i < 465; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
if (valorCanton == 'Guácimo') {
for (let i = 465; i < 470; i++) {
let opt = document.createElement('option');
opt.innerHTML = distritos[i];
opt.value = distritos[i];
selectDistrito.appendChild(opt);
}
}
}
} | [
"function",
"popularDistrito",
"(",
")",
"{",
"document",
".",
"querySelector",
"(",
"'#txtHiddenCanton'",
")",
".",
"value",
"=",
"document",
".",
"querySelector",
"(",
"'#inputCanton'",
")",
".",
"value",
"$",
"(",
"\"#inputDistrito option\"",
")",
".",
"each",
"(",
"function",
"(",
")",
"{",
"if",
"(",
"this",
".",
"value",
"!==",
"''",
")",
"{",
"$",
"(",
"this",
")",
".",
"remove",
"(",
")",
";",
"}",
"}",
")",
";",
"let",
"valorProvincia",
"=",
"selectProvincias",
".",
"options",
"[",
"selectProvincias",
".",
"selectedIndex",
"]",
".",
"text",
";",
"let",
"valorCanton",
"=",
"selectCantones",
".",
"options",
"[",
"selectCantones",
".",
"selectedIndex",
"]",
".",
"text",
";",
"if",
"(",
"valorProvincia",
"==",
"'San José')",
" ",
"",
"if",
"(",
"valorCanton",
"==",
"'San José')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"11",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Escazú')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"11",
";",
"i",
"<",
"14",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Desamparados'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"14",
";",
"i",
"<",
"27",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Puriscal'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"27",
";",
"i",
"<",
"36",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Tarrazú')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"36",
";",
"i",
"<",
"40",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Aserrí')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"40",
";",
"i",
"<",
"46",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Mora'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"46",
";",
"i",
"<",
"51",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Goicoechea'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"51",
";",
"i",
"<",
"58",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Santa Ana'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"58",
";",
"i",
"<",
"64",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Alajuelita'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"64",
";",
"i",
"<",
"69",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Vasquez de Coronado'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"69",
";",
"i",
"<",
"74",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Acosta'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"74",
";",
"i",
"<",
"79",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Tibás')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"79",
";",
"i",
"<",
"84",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Moravia'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"84",
";",
"i",
"<",
"87",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Montes de Oca'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"87",
";",
"i",
"<",
"91",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Turrubares'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"91",
";",
"i",
"<",
"96",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Dota'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"96",
";",
"i",
"<",
"99",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Curridabat'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"99",
";",
"i",
"<",
"103",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Pérez Zeledón') ",
"{",
"",
"for",
"(",
"let",
"i",
"=",
"103",
";",
"i",
"<",
"114",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'León Cortés') ",
"{",
"",
"for",
"(",
"let",
"i",
"=",
"114",
";",
"i",
"<",
"120",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Alajuela'",
")",
"{",
"if",
"(",
"valorCanton",
"==",
"'Alajuela'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"120",
";",
"i",
"<",
"134",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Ramón')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"134",
";",
"i",
"<",
"147",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Grecia'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"147",
";",
"i",
"<",
"155",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Mateo'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"155",
";",
"i",
"<",
"158",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Atenas'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"158",
";",
"i",
"<",
"166",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Naranjo'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"166",
";",
"i",
"<",
"173",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Palmares'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"173",
";",
"i",
"<",
"180",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Poás')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"180",
";",
"i",
"<",
"185",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Orotina'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"185",
";",
"i",
"<",
"190",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Carlos'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"190",
";",
"i",
"<",
"203",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Alfaro Ruiz'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"203",
";",
"i",
"<",
"210",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Valverde Vega'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"210",
";",
"i",
"<",
"215",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Upala'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"215",
";",
"i",
"<",
"222",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Los Chiles'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"222",
";",
"i",
"<",
"226",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Guatuso'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"226",
";",
"i",
"<",
"229",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Cartago'",
")",
"{",
"if",
"(",
"valorCanton",
"==",
"'Cartago'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"229",
";",
"i",
"<",
"240",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Paraíso')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"240",
";",
"i",
"<",
"245",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'La Unión')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"245",
";",
"i",
"<",
"253",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Jiménez')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"253",
";",
"i",
"<",
"256",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Turrialba'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"256",
";",
"i",
"<",
"268",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Alvarado'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"268",
";",
"i",
"<",
"271",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Oreamuno'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"271",
";",
"i",
"<",
"276",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'El Guarco'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"276",
";",
"i",
"<",
"280",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Heredia'",
")",
"{",
"if",
"(",
"valorCanton",
"==",
"'Heredia'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"280",
";",
"i",
"<",
"285",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Barva'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"285",
";",
"i",
"<",
"291",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Santo Domingo'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"291",
";",
"i",
"<",
"299",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Santa Bárbara')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"299",
";",
"i",
"<",
"305",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Rafael'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"305",
";",
"i",
"<",
"310",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Isidro'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"310",
";",
"i",
"<",
"314",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Belén')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"314",
";",
"i",
"<",
"317",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Flores'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"317",
";",
"i",
"<",
"320",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'San Pablo'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"320",
";",
"i",
"<",
"321",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Sarapiquí')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"321",
";",
"i",
"<",
"326",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Guanacaste'",
")",
"{",
"if",
"(",
"valorCanton",
"==",
"'Liberia'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"326",
";",
"i",
"<",
"331",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Nicoya'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"331",
";",
"i",
"<",
"338",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Santa Cruz'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"338",
";",
"i",
"<",
"347",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Bagaces'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"347",
";",
"i",
"<",
"351",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Carrillo'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"351",
";",
"i",
"<",
"355",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Cañas')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"355",
";",
"i",
"<",
"360",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Abangares'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"360",
";",
"i",
"<",
"364",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Tilarán')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"364",
";",
"i",
"<",
"371",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Nandayure'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"371",
";",
"i",
"<",
"377",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'La Cruz'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"377",
";",
"i",
"<",
"381",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Hojancha'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"381",
";",
"i",
"<",
"385",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Puntarenas'",
")",
"{",
"if",
"(",
"valorCanton",
"==",
"'Puntarenas'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"385",
";",
"i",
"<",
"401",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Esparza'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"401",
";",
"i",
"<",
"406",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Buenos Aires'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"406",
";",
"i",
"<",
"415",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Montes de Oro'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"415",
";",
"i",
"<",
"418",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Osa'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"418",
";",
"i",
"<",
"423",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Quepos'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"423",
";",
"i",
"<",
"426",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Golfito'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"426",
";",
"i",
"<",
"430",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Coto Brus'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"430",
";",
"i",
"<",
"435",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Parrita'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"435",
";",
"i",
"<",
"436",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Corredores'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"436",
";",
"i",
"<",
"440",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Garabito'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"440",
";",
"i",
"<",
"442",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"if",
"(",
"valorProvincia",
"==",
"'Limón')",
" ",
"",
"if",
"(",
"valorCanton",
"==",
"'Limón')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"442",
";",
"i",
"<",
"446",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Pococí')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"446",
";",
"i",
"<",
"452",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Siquirres'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"452",
";",
"i",
"<",
"458",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Talamanca'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"458",
";",
"i",
"<",
"462",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Matina'",
")",
"{",
"for",
"(",
"let",
"i",
"=",
"462",
";",
"i",
"<",
"465",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"if",
"(",
"valorCanton",
"==",
"'Guácimo')",
" ",
"",
"for",
"(",
"let",
"i",
"=",
"465",
";",
"i",
"<",
"470",
";",
"i",
"++",
")",
"{",
"let",
"opt",
"=",
"document",
".",
"createElement",
"(",
"'option'",
")",
";",
"opt",
".",
"innerHTML",
"=",
"distritos",
"[",
"i",
"]",
";",
"opt",
".",
"value",
"=",
"distritos",
"[",
"i",
"]",
";",
"selectDistrito",
".",
"appendChild",
"(",
"opt",
")",
";",
"}",
"}",
"}",
"}"
] | [
667,
0
] | [
1353,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
cargarHref | (categoria, index, idArticulo) | null | Le agrego el href a cada botón | Le agrego el href a cada botón | function cargarHref(categoria, index, idArticulo) {
let btn = document.querySelectorAll(`.articulo .button-articulo-${categoria}`);
btn[index].href = `http://localhost:3000/html/detalle_producto.html?categoria=${categoria}&index=${idArticulo}`;
} | [
"function",
"cargarHref",
"(",
"categoria",
",",
"index",
",",
"idArticulo",
")",
"{",
"let",
"btn",
"=",
"document",
".",
"querySelectorAll",
"(",
"`",
"${",
"categoria",
"}",
"`",
")",
";",
"btn",
"[",
"index",
"]",
".",
"href",
"=",
"`",
"${",
"categoria",
"}",
"${",
"idArticulo",
"}",
"`",
";",
"}"
] | [
34,
0
] | [
37,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
tramitarPedido | () | null | Recoge el id y la cantidad de los elemen tos de la lista de carrito y los envia al controlador de PHP para hacer el pedido | Recoge el id y la cantidad de los elemen tos de la lista de carrito y los envia al controlador de PHP para hacer el pedido | function tramitarPedido() {
var arrayPedido = [];
var fechaActual = new Date();
var fecha = new Date($('#fechaEntregaCliente').val());
var diaSemana = fecha.getDay();
fecha.setDate(fecha.getDate() - 4);
if (fecha.getTime()<=fechaActual.getTime() || (diaSemana==1 || diaSemana==2 || diaSemana==0)){
$('#errorFecha').text("Los pedidos se realizarán con un mínimo de 4 días lectivos de antelación."
+"\nY solo se podran recoger los Miércoles, Jueves, Viernes y Sábados."
+"\nPor favor elija otra fecha.");
return false;
}
else {
var c1 = new Cliente($('#nombreCliente').val(),$('#correoCliente').val(),$('#telefonoCliente').val(),$('#cometarioCliente').val(),fechaActual,$('#fechaEntregaCliente').val(),'P');
arrayPedido.push(c1);
$("span[id^='cambiar']").each(function () {
let producto = new ProductosCarrito($(this).attr("id").slice(7).trim(), $(this).text().trim());
arrayPedido.push(producto);
});
var pedidosJSON = "pedidos="+JSON.stringify(arrayPedido);
$.ajax({
data: pedidosJSON,
url: 'index.php?controller=Pedidos&action=realizarPedido',
type: 'post',
success: function (data) {
if (data === "bien"){
$("#modalPedido").modal('hide');
$('#pedidoRealizado').html("Pedido realizado con éxito.");
document.cookie = "productosCarrito=; expires=Thu, 01 Jan 1970 00:00:00 UTC;";
$("#centralModalSuccess").modal('show');
}
else {
alert("Error al realizar el pedido vuevla a intentarlo.");
}
},
error: function (data) {
alert(data);
}
});
return false;
}
} | [
"function",
"tramitarPedido",
"(",
")",
"{",
"var",
"arrayPedido",
"=",
"[",
"]",
";",
"var",
"fechaActual",
"=",
"new",
"Date",
"(",
")",
";",
"var",
"fecha",
"=",
"new",
"Date",
"(",
"$",
"(",
"'#fechaEntregaCliente'",
")",
".",
"val",
"(",
")",
")",
";",
"var",
"diaSemana",
"=",
"fecha",
".",
"getDay",
"(",
")",
";",
"fecha",
".",
"setDate",
"(",
"fecha",
".",
"getDate",
"(",
")",
"-",
"4",
")",
";",
"if",
"(",
"fecha",
".",
"getTime",
"(",
")",
"<=",
"fechaActual",
".",
"getTime",
"(",
")",
"||",
"(",
"diaSemana",
"==",
"1",
"||",
"diaSemana",
"==",
"2",
"||",
"diaSemana",
"==",
"0",
")",
")",
"{",
"$",
"(",
"'#errorFecha'",
")",
".",
"text",
"(",
"\"Los pedidos se realizarán con un mínimo de 4 días lectivos de antelación.\"",
"+",
"\"\\nY solo se podran recoger los Miércoles, Jueves, Viernes y Sábados.\"",
"+",
"\"\\nPor favor elija otra fecha.\"",
")",
";",
"return",
"false",
";",
"}",
"else",
"{",
"var",
"c1",
"=",
"new",
"Cliente",
"(",
"$",
"(",
"'#nombreCliente'",
")",
".",
"val",
"(",
")",
",",
"$",
"(",
"'#correoCliente'",
")",
".",
"val",
"(",
")",
",",
"$",
"(",
"'#telefonoCliente'",
")",
".",
"val",
"(",
")",
",",
"$",
"(",
"'#cometarioCliente'",
")",
".",
"val",
"(",
")",
",",
"fechaActual",
",",
"$",
"(",
"'#fechaEntregaCliente'",
")",
".",
"val",
"(",
")",
",",
"'P'",
")",
";",
"arrayPedido",
".",
"push",
"(",
"c1",
")",
";",
"$",
"(",
"\"span[id^='cambiar']\"",
")",
".",
"each",
"(",
"function",
"(",
")",
"{",
"let",
"producto",
"=",
"new",
"ProductosCarrito",
"(",
"$",
"(",
"this",
")",
".",
"attr",
"(",
"\"id\"",
")",
".",
"slice",
"(",
"7",
")",
".",
"trim",
"(",
")",
",",
"$",
"(",
"this",
")",
".",
"text",
"(",
")",
".",
"trim",
"(",
")",
")",
";",
"arrayPedido",
".",
"push",
"(",
"producto",
")",
";",
"}",
")",
";",
"var",
"pedidosJSON",
"=",
"\"pedidos=\"",
"+",
"JSON",
".",
"stringify",
"(",
"arrayPedido",
")",
";",
"$",
".",
"ajax",
"(",
"{",
"data",
":",
"pedidosJSON",
",",
"url",
":",
"'index.php?controller=Pedidos&action=realizarPedido'",
",",
"type",
":",
"'post'",
",",
"success",
":",
"function",
"(",
"data",
")",
"{",
"if",
"(",
"data",
"===",
"\"bien\"",
")",
"{",
"$",
"(",
"\"#modalPedido\"",
")",
".",
"modal",
"(",
"'hide'",
")",
";",
"$",
"(",
"'#pedidoRealizado'",
")",
".",
"html",
"(",
"\"Pedido realizado con éxito.\")",
";",
"",
"document",
".",
"cookie",
"=",
"\"productosCarrito=; expires=Thu, 01 Jan 1970 00:00:00 UTC;\"",
";",
"$",
"(",
"\"#centralModalSuccess\"",
")",
".",
"modal",
"(",
"'show'",
")",
";",
"}",
"else",
"{",
"alert",
"(",
"\"Error al realizar el pedido vuevla a intentarlo.\"",
")",
";",
"}",
"}",
",",
"error",
":",
"function",
"(",
"data",
")",
"{",
"alert",
"(",
"data",
")",
";",
"}",
"}",
")",
";",
"return",
"false",
";",
"}",
"}"
] | [
72,
0
] | [
128,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
consultarClasePanel | (ini, fin) | null | Consulta del Panel de Administración | Consulta del Panel de Administración | function consultarClasePanel(ini, fin) {
var init = ini;
if (!init) {
init = 0;
fin = 15;
}
con.query("SELECT * FROM clase ", function (err, result1, fields) {
var pag = Math.ceil(result1.length / 15);
con.query("SELECT * FROM clase LIMIT " + init + "," + fin, function (err, result, fields) {
if (err) console.log(err);
var tam = result.length;
var text, paginas = "";
text = "<tr>";
for (i = 0; i < tam; i++) {
text += "<td>";
text += result[i].cod_cla;
text += "</td>";
text += "\t\t";
text += "<td>";
text += result[i].nom_cla;
text += "</td>";
text += "\t\t";
text += "<td>";
text += result[i].est_cla;
text += "</td>";
text += "\t\t";
text += "<td>";
text += '<a type="button" rel="tooltip" title="Editar" onclick="formularioEditarClase(' + result[i].cod_cla + ')"><i class="material-icons text-info" data-toggle="modal">mode_edit</i></a>';
text += '<a type="button" rel="tooltip" title="Eliminar" onclick="avisoBorrarClase(' + result[i].cod_cla + ')"><i class="material-icons text-danger">delete_forever</i></a>';
text += "</td>";
text += "</tr>";
document.getElementById("tclase").innerHTML = text;
}
paginas += '<div align="center">'
for (i = 1; i <= pag; i++) {
var ini = i * 15 - 15;
var fin = ini + 14;
paginas += '<button id="piePag" onClick="paginadorCla(' + ini + ',' + fin + ')">' + i + '</button>';
}
paginas += '</div">'
document.getElementById("pagCla").innerHTML = paginas;
});
});
} | [
"function",
"consultarClasePanel",
"(",
"ini",
",",
"fin",
")",
"{",
"var",
"init",
"=",
"ini",
";",
"if",
"(",
"!",
"init",
")",
"{",
"init",
"=",
"0",
";",
"fin",
"=",
"15",
";",
"}",
"con",
".",
"query",
"(",
"\"SELECT * FROM clase \"",
",",
"function",
"(",
"err",
",",
"result1",
",",
"fields",
")",
"{",
"var",
"pag",
"=",
"Math",
".",
"ceil",
"(",
"result1",
".",
"length",
"/",
"15",
")",
";",
"con",
".",
"query",
"(",
"\"SELECT * FROM clase LIMIT \"",
"+",
"init",
"+",
"\",\"",
"+",
"fin",
",",
"function",
"(",
"err",
",",
"result",
",",
"fields",
")",
"{",
"if",
"(",
"err",
")",
"console",
".",
"log",
"(",
"err",
")",
";",
"var",
"tam",
"=",
"result",
".",
"length",
";",
"var",
"text",
",",
"paginas",
"=",
"\"\"",
";",
"text",
"=",
"\"<tr>\"",
";",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"tam",
";",
"i",
"++",
")",
"{",
"text",
"+=",
"\"<td>\"",
";",
"text",
"+=",
"result",
"[",
"i",
"]",
".",
"cod_cla",
";",
"text",
"+=",
"\"</td>\"",
";",
"text",
"+=",
"\"\\t\\t\"",
";",
"text",
"+=",
"\"<td>\"",
";",
"text",
"+=",
"result",
"[",
"i",
"]",
".",
"nom_cla",
";",
"text",
"+=",
"\"</td>\"",
";",
"text",
"+=",
"\"\\t\\t\"",
";",
"text",
"+=",
"\"<td>\"",
";",
"text",
"+=",
"result",
"[",
"i",
"]",
".",
"est_cla",
";",
"text",
"+=",
"\"</td>\"",
";",
"text",
"+=",
"\"\\t\\t\"",
";",
"text",
"+=",
"\"<td>\"",
";",
"text",
"+=",
"'<a type=\"button\" rel=\"tooltip\" title=\"Editar\" onclick=\"formularioEditarClase('",
"+",
"result",
"[",
"i",
"]",
".",
"cod_cla",
"+",
"')\"><i class=\"material-icons text-info\" data-toggle=\"modal\">mode_edit</i></a>'",
";",
"text",
"+=",
"'<a type=\"button\" rel=\"tooltip\" title=\"Eliminar\" onclick=\"avisoBorrarClase('",
"+",
"result",
"[",
"i",
"]",
".",
"cod_cla",
"+",
"')\"><i class=\"material-icons text-danger\">delete_forever</i></a>'",
";",
"text",
"+=",
"\"</td>\"",
";",
"text",
"+=",
"\"</tr>\"",
";",
"document",
".",
"getElementById",
"(",
"\"tclase\"",
")",
".",
"innerHTML",
"=",
"text",
";",
"}",
"paginas",
"+=",
"'<div align=\"center\">'",
"for",
"(",
"i",
"=",
"1",
";",
"i",
"<=",
"pag",
";",
"i",
"++",
")",
"{",
"var",
"ini",
"=",
"i",
"*",
"15",
"-",
"15",
";",
"var",
"fin",
"=",
"ini",
"+",
"14",
";",
"paginas",
"+=",
"'<button id=\"piePag\" onClick=\"paginadorCla('",
"+",
"ini",
"+",
"','",
"+",
"fin",
"+",
"')\">'",
"+",
"i",
"+",
"'</button>'",
";",
"}",
"paginas",
"+=",
"'</div\">'",
"document",
".",
"getElementById",
"(",
"\"pagCla\"",
")",
".",
"innerHTML",
"=",
"paginas",
";",
"}",
")",
";",
"}",
")",
";",
"}"
] | [
79,
0
] | [
125,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
createRouteVendor | () | null | crea url dinamicas por clave de provedores al crearlos | crea url dinamicas por clave de provedores al crearlos | function createRouteVendor(){
try{
KeyVendor.find().then(keys => {
console.log('keys',keys.length);
let stringkey= "";
var config_route ={};
//crea el objeto de claves por proveedor
for(var x= 0; x < keys.length; x++){
config_route[keys[x].key]= keys[x].id;
if((x+1) != keys.length){
stringkey+=keys[x].key+'|';
}else{
stringkey+=keys[x].key
}
}
//habilita las url de administracion de productos por proveedor
app.get('/:name('+stringkey+')?', function(req, res) {
var name = req.params.name;
console.log('config_route[name]',config_route[name]);
Vendor.findOne({id: parseInt(config_route[name])}).then(veendor => {
console.log('veendor',veendor);
Products.find({vendor:config_route[name]}).sort().then(products => {
console.log('products',products);
res.render('admincreatorskor',{
vendorid: config_route[name],
products: products||[],
vendor:veendor,
key:name
});
}).catch(err => {
res.status(400).send('Bad request');
});
}).catch(err => {
res.status(400).send('Bad request');
});
});
}).catch(err => {
res.status(400).send('Bad request');
});
}catch(err){
console.log("error creat key routes",err)
res.status(400).send('Bad request');
}
} | [
"function",
"createRouteVendor",
"(",
")",
"{",
"try",
"{",
"KeyVendor",
".",
"find",
"(",
")",
".",
"then",
"(",
"keys",
"=>",
"{",
"console",
".",
"log",
"(",
"'keys'",
",",
"keys",
".",
"length",
")",
";",
"let",
"stringkey",
"=",
"\"\"",
";",
"var",
"config_route",
"=",
"{",
"}",
";",
"//crea el objeto de claves por proveedor",
"for",
"(",
"var",
"x",
"=",
"0",
";",
"x",
"<",
"keys",
".",
"length",
";",
"x",
"++",
")",
"{",
"config_route",
"[",
"keys",
"[",
"x",
"]",
".",
"key",
"]",
"=",
"keys",
"[",
"x",
"]",
".",
"id",
";",
"if",
"(",
"(",
"x",
"+",
"1",
")",
"!=",
"keys",
".",
"length",
")",
"{",
"stringkey",
"+=",
"keys",
"[",
"x",
"]",
".",
"key",
"+",
"'|'",
";",
"}",
"else",
"{",
"stringkey",
"+=",
"keys",
"[",
"x",
"]",
".",
"key",
"}",
"}",
"//habilita las url de administracion de productos por proveedor",
"app",
".",
"get",
"(",
"'/:name('",
"+",
"stringkey",
"+",
"')?'",
",",
"function",
"(",
"req",
",",
"res",
")",
"{",
"var",
"name",
"=",
"req",
".",
"params",
".",
"name",
";",
"console",
".",
"log",
"(",
"'config_route[name]'",
",",
"config_route",
"[",
"name",
"]",
")",
";",
"Vendor",
".",
"findOne",
"(",
"{",
"id",
":",
"parseInt",
"(",
"config_route",
"[",
"name",
"]",
")",
"}",
")",
".",
"then",
"(",
"veendor",
"=>",
"{",
"console",
".",
"log",
"(",
"'veendor'",
",",
"veendor",
")",
";",
"Products",
".",
"find",
"(",
"{",
"vendor",
":",
"config_route",
"[",
"name",
"]",
"}",
")",
".",
"sort",
"(",
")",
".",
"then",
"(",
"products",
"=>",
"{",
"console",
".",
"log",
"(",
"'products'",
",",
"products",
")",
";",
"res",
".",
"render",
"(",
"'admincreatorskor'",
",",
"{",
"vendorid",
":",
"config_route",
"[",
"name",
"]",
",",
"products",
":",
"products",
"||",
"[",
"]",
",",
"vendor",
":",
"veendor",
",",
"key",
":",
"name",
"}",
")",
";",
"}",
")",
".",
"catch",
"(",
"err",
"=>",
"{",
"res",
".",
"status",
"(",
"400",
")",
".",
"send",
"(",
"'Bad request'",
")",
";",
"}",
")",
";",
"}",
")",
".",
"catch",
"(",
"err",
"=>",
"{",
"res",
".",
"status",
"(",
"400",
")",
".",
"send",
"(",
"'Bad request'",
")",
";",
"}",
")",
";",
"}",
")",
";",
"}",
")",
".",
"catch",
"(",
"err",
"=>",
"{",
"res",
".",
"status",
"(",
"400",
")",
".",
"send",
"(",
"'Bad request'",
")",
";",
"}",
")",
";",
"}",
"catch",
"(",
"err",
")",
"{",
"console",
".",
"log",
"(",
"\"error creat key routes\"",
",",
"err",
")",
"res",
".",
"status",
"(",
"400",
")",
".",
"send",
"(",
"'Bad request'",
")",
";",
"}",
"}"
] | [
346,
0
] | [
395,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
destroyImageCloud | (res, imagenDB ) | null | ============================================ Elimina la imagen en el servidor de imagenes =========================================== | ============================================ Elimina la imagen en el servidor de imagenes =========================================== | function destroyImageCloud(res, imagenDB ){
cloudinary.uploader.destroy( imagenDB.imagen )
.then( result => {
return res.json({
status: true,
imagen: imagenDB
})
})
.catch( err => {
return res.status(400).json({
status: false,
err
})
})
} | [
"function",
"destroyImageCloud",
"(",
"res",
",",
"imagenDB",
")",
"{",
"cloudinary",
".",
"uploader",
".",
"destroy",
"(",
"imagenDB",
".",
"imagen",
")",
".",
"then",
"(",
"result",
"=>",
"{",
"return",
"res",
".",
"json",
"(",
"{",
"status",
":",
"true",
",",
"imagen",
":",
"imagenDB",
"}",
")",
"}",
")",
".",
"catch",
"(",
"err",
"=>",
"{",
"return",
"res",
".",
"status",
"(",
"400",
")",
".",
"json",
"(",
"{",
"status",
":",
"false",
",",
"err",
"}",
")",
"}",
")",
"}"
] | [
74,
0
] | [
93,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
sumar | (x = 0, y = 0) | null | X y Y son parametros de la funcion | X y Y son parametros de la funcion | function sumar(x = 0, y = 0) {
console.log(x + y);
} | [
"function",
"sumar",
"(",
"x",
"=",
"0",
",",
"y",
"=",
"0",
")",
"{",
"console",
".",
"log",
"(",
"x",
"+",
"y",
")",
";",
"}"
] | [
1,
0
] | [
3,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
detect | (planet1,planet2) | null | funcion que detecta la colision entre dos cuerpos | funcion que detecta la colision entre dos cuerpos | function detect(planet1,planet2){
var dx = planet1.nextx - planet2.nextx;
var dy = planet1.nexty - planet2.nexty;
var distance =(dx*dx + dy*dy);
return(distance <= (planet1.r+planet2.r)*(planet1.r+planet2.r));
} | [
"function",
"detect",
"(",
"planet1",
",",
"planet2",
")",
"{",
"var",
"dx",
"=",
"planet1",
".",
"nextx",
"-",
"planet2",
".",
"nextx",
";",
"var",
"dy",
"=",
"planet1",
".",
"nexty",
"-",
"planet2",
".",
"nexty",
";",
"var",
"distance",
"=",
"(",
"dx",
"*",
"dx",
"+",
"dy",
"*",
"dy",
")",
";",
"return",
"(",
"distance",
"<=",
"(",
"planet1",
".",
"r",
"+",
"planet2",
".",
"r",
")",
"*",
"(",
"planet1",
".",
"r",
"+",
"planet2",
".",
"r",
")",
")",
";",
"}"
] | [
115,
0
] | [
120,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
( paginationType ) | null | y y /**
calcCloseButtonPos() calculate the position of pagination button based on button type.
@param { string } paginationType, "last" or "next".
@return { Object } pagination button position, { x: double, y: double, z: double }, relative to layer.
| y y /**
calcCloseButtonPos() calculate the position of pagination button based on button type. | function( paginationType ) {
if ( paginationType === "last" ) {
// "last" button is positioned in the left of the layer.
return {
x: - this.queueLength * this.unitLength / 2 - 5 * this.unitLength,
y: 0,
z: 0
};
} else {
// "next" button is positioned in the right of the layer.
return {
x: this.queueLength * this.unitLength / 2 + 5 * this.unitLength,
y: 0,
z: 0
};
}
} | [
"function",
"(",
"paginationType",
")",
"{",
"if",
"(",
"paginationType",
"===",
"\"last\"",
")",
"{",
"// \"last\" button is positioned in the left of the layer.",
"return",
"{",
"x",
":",
"-",
"this",
".",
"queueLength",
"*",
"this",
".",
"unitLength",
"/",
"2",
"-",
"5",
"*",
"this",
".",
"unitLength",
",",
"y",
":",
"0",
",",
"z",
":",
"0",
"}",
";",
"}",
"else",
"{",
"// \"next\" button is positioned in the right of the layer.",
"return",
"{",
"x",
":",
"this",
".",
"queueLength",
"*",
"this",
".",
"unitLength",
"/",
"2",
"+",
"5",
"*",
"this",
".",
"unitLength",
",",
"y",
":",
"0",
",",
"z",
":",
"0",
"}",
";",
"}",
"}"
] | [
1023,
26
] | [
1051,
2
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
mostrarDatosHtml | (indice, valor, tipo, categoria, esImagen = undefined) | null | Inserto los valores en cada elemento del html. | Inserto los valores en cada elemento del html. | function mostrarDatosHtml(indice, valor, tipo, categoria, esImagen = undefined) {
if (!esImagen) {
let articulo = document.querySelectorAll(`.articulo .${tipo}-articulo-${categoria}`);
articulo[indice].textContent = valor;
} else {
let articulo = document.querySelectorAll(`.articulo .${tipo}-articulo-${categoria}`);
articulo[indice].src = valor;
articulo[indice].alt = valor;
}
} | [
"function",
"mostrarDatosHtml",
"(",
"indice",
",",
"valor",
",",
"tipo",
",",
"categoria",
",",
"esImagen",
"=",
"undefined",
")",
"{",
"if",
"(",
"!",
"esImagen",
")",
"{",
"let",
"articulo",
"=",
"document",
".",
"querySelectorAll",
"(",
"`",
"${",
"tipo",
"}",
"${",
"categoria",
"}",
"`",
")",
";",
"articulo",
"[",
"indice",
"]",
".",
"textContent",
"=",
"valor",
";",
"}",
"else",
"{",
"let",
"articulo",
"=",
"document",
".",
"querySelectorAll",
"(",
"`",
"${",
"tipo",
"}",
"${",
"categoria",
"}",
"`",
")",
";",
"articulo",
"[",
"indice",
"]",
".",
"src",
"=",
"valor",
";",
"articulo",
"[",
"indice",
"]",
".",
"alt",
"=",
"valor",
";",
"}",
"}"
] | [
22,
0
] | [
31,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
perimetroCuadrado | (lado) | null | const ladoCuadrado = 5; console.log("Los lados del cuadrado miden: " + ladoCuadrado + "cm"); | const ladoCuadrado = 5; console.log("Los lados del cuadrado miden: " + ladoCuadrado + "cm"); | function perimetroCuadrado(lado){
return lado * 4;
} | [
"function",
"perimetroCuadrado",
"(",
"lado",
")",
"{",
"return",
"lado",
"*",
"4",
";",
"}"
] | [
5,
0
] | [
7,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
updateBadges | () | null | eliminar un archivo de tipo link y actualizacion de elementos pills | eliminar un archivo de tipo link y actualizacion de elementos pills | async function updateBadges() {
let closebadge = document.querySelectorAll(".closebadge");
let fieldDetails = document.querySelectorAll(".editbadge");
closebadge.forEach(async (val, indx) => {
closebadge[indx].addEventListener("click", async (e) => {
await deleteFieldInformation(e.currentTarget.dataset.fieldid);
});
});
fieldDetails.forEach(async (val, indx) => {
fieldDetails[indx].addEventListener("click", async (e) => {
await changeFieldInformation(e.currentTarget.dataset.fieldid);
});
});
} | [
"async",
"function",
"updateBadges",
"(",
")",
"{",
"let",
"closebadge",
"=",
"document",
".",
"querySelectorAll",
"(",
"\".closebadge\"",
")",
";",
"let",
"fieldDetails",
"=",
"document",
".",
"querySelectorAll",
"(",
"\".editbadge\"",
")",
";",
"closebadge",
".",
"forEach",
"(",
"async",
"(",
"val",
",",
"indx",
")",
"=>",
"{",
"closebadge",
"[",
"indx",
"]",
".",
"addEventListener",
"(",
"\"click\"",
",",
"async",
"(",
"e",
")",
"=>",
"{",
"await",
"deleteFieldInformation",
"(",
"e",
".",
"currentTarget",
".",
"dataset",
".",
"fieldid",
")",
";",
"}",
")",
";",
"}",
")",
";",
"fieldDetails",
".",
"forEach",
"(",
"async",
"(",
"val",
",",
"indx",
")",
"=>",
"{",
"fieldDetails",
"[",
"indx",
"]",
".",
"addEventListener",
"(",
"\"click\"",
",",
"async",
"(",
"e",
")",
"=>",
"{",
"await",
"changeFieldInformation",
"(",
"e",
".",
"currentTarget",
".",
"dataset",
".",
"fieldid",
")",
";",
"}",
")",
";",
"}",
")",
";",
"}"
] | [
308,
0
] | [
326,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
SegundosEnElAire | () | null | FIN DE LA FUNCIÓN inicio | FIN DE LA FUNCIÓN inicio | function SegundosEnElAire() {
contador=contador +1;
alert("Bienvenido a la UTN FRA, cantidad ="+contador);
} | [
"function",
"SegundosEnElAire",
"(",
")",
"{",
"contador",
"=",
"contador",
"+",
"1",
";",
"alert",
"(",
"\"Bienvenido a la UTN FRA, cantidad =\"",
"+",
"contador",
")",
";",
"}"
] | [
10,
0
] | [
15,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
tablaresultadosproducto | (limite) | null | Tabla resultados de la busqueda en el index de producto | Tabla resultados de la busqueda en el index de producto | function tablaresultadosproducto(limite)
{
var controlador = "";
var parametro = "";
var categoriatext = "";
var estadotext = "";
var categoriaestado = "";
var base_url = document.getElementById('base_url').value;
//al inicar carga con los ultimos 50 productos
if(limite == 1){
controlador = base_url+'producto/buscarproductosexistmin/';
// carga todos los productos de la BD
}else{
controlador = base_url+'producto/buscarproductosexistmin/';
var categoria = document.getElementById('categoria_id').value;
var estado = document.getElementById('estado_id').value;
if(categoria == 0){
categoriaestado = "";
}else{
categoriaestado = " and p.categoria_id = cp.categoria_id and p.categoria_id = "+categoria+" ";
categoriatext = $('select[name="categoria_id"] option:selected').text();
categoriatext = "Categoria: "+categoriatext;
}
if(estado == 0){
categoriaestado += "";
}else{
categoriaestado += " and p.estado_id = "+estado+" ";
estadotext = $('select[name="estado_id"] option:selected').text();
estadotext = "Estado: "+estadotext;
}
$("#busquedacategoria").html(categoriatext+" "+estadotext);
parametro = document.getElementById('filtrar').value;
}
document.getElementById('loader').style.display = 'block'; //muestra el bloque del loader
$.ajax({url: controlador,
type:"POST",
data:{parametro:parametro, categoriaestado:categoriaestado},
success:function(respuesta){
$("#encontrados").val("- 0 -");
var registros = JSON.parse(respuesta);
if (registros != null){
var formaimagen = document.getElementById('formaimagen').value;
var n = registros.length; //tamaño del arreglo de la consulta
$("#encontrados").val("- "+n+" -");
html = "";
for (var i = 0; i < n ; i++){
html += "<tr>";
html += "<td>"+(i+1)+"</td>";
html += "<td>";
html += "<div id='horizontal'>";
html += "<div id='contieneimg'>";
var mimagen = "";
if(registros[i]["producto_foto"] != null && registros[i]["producto_foto"] !=""){
mimagen += "<a class='btn btn-xs' data-toggle='modal' data-target='#mostrarimagen"+i+"' style='padding: 0px;'>";
mimagen += "<img src='"+base_url+"resources/images/productos/thumb_"+registros[i]["producto_foto"]+"' class='img img-"+formaimagen+"' width='50' height='50' />";
mimagen += "</a>";
//mimagen = nomfoto.split(".").join("_thumb.");77
}else{
mimagen = "<img src='"+base_url+"resources/images/productos/thumb_image.png' class='img img-"+formaimagen+"' width='50' height='50' />";
}
html += mimagen;
html += "</div>";
html += "<div style='padding-left: 4px'>";
html += "<b id='masgrande'>"+registros[i]["producto_nombre"]+"</b><br>";
html += ""+registros[i]["producto_unidad"]+" | "+registros[i]["producto_marca"]+" | "+registros[i]["producto_industria"]+"";
if(registros[i]["destino_id"] > 0){
html +="<br>Destino: "+registros[i]['destino_nombre'];
}
html += "</div>";
html += "</div>";
html += "</td>";
var escategoria="";
if(registros[i]["categoria_id"] == null || registros[i]["categoria_id"] == 0 || registros[i]["categoria_id"] ==""){
escategoria = "No definido";
}else{
escategoria = registros[i]["categoria_nombre"];
}
var esmoneda="";
if(registros[i]["moneda_id"] == null || registros[i]["moneda_id"] == 0 || registros[i]["moneda_id"] == ""){
esmoneda = "No definido";
}else{
esmoneda = registros[i]["moneda_descripcion"];
}
html += "<td><b>Cat.: </b>"+escategoria+"<br><b>Pres.: </b>"+registros[i]["producto_unidad"]+"<br>";
html += "<b>Cant. Min.: </b>";
var cantmin= 0;
if(registros[i]["producto_cantidadminima"] != null || registros[i]["producto_cantidadminima"] ==""){
cantmin = registros[i]["producto_cantidadminima"];
}
html += "<span style='color: #ff0084; font-weight: bold'>"+cantmin+"</span> <b>Exist: </b>";
html += "<span style='color: #ff0084; font-weight: bold'>"+registros[i]["existencia"]+"</span></td>";
html += "<td>";
var caracteristica = "";
if(registros[i]["producto_caracteristicas"] != null){
caracteristica = "<div style='word-wrap: break-word;'>"+registros[i]["producto_caracteristicas"]+"</div>";
}
html+= caracteristica+"</td>";
html += "<td>";
var sinconenvase = "";
var nombreenvase = "";
var costoenvase = "";
var precioenvase = "";
if(registros[i]["producto_envase"] == 1){
sinconenvase = "Con Envase Retornable"+"<br>";
if(registros[i]["producto_nombreenvase"] != "" || registros[i]["producto_nombreenvase"] != null){
nombreenvase = registros[i]["producto_nombreenvase"]+"<br>";
costoenvase = "Costo: "+Number(registros[i]["producto_costoenvase"]).toFixed(2)+"<br>";
precioenvase = "Precio: "+Number(registros[i]["producto_precioenvase"]).toFixed(2);
}
}else{
sinconenvase = "Sin Envase Retornable";
}
html += sinconenvase;
html += nombreenvase;
html += costoenvase;
html += precioenvase;
html += "</td>";
var codbarras = "";
if(!(registros[i]["producto_codigobarra"] == null)){
codbarras = registros[i]["producto_codigobarra"];
}
html += "<td>"+registros[i]["producto_codigo"]+"<br>"+ codbarras +"</td>";
html += "<td><b>Compra: </b>"+registros[i]["producto_costo"]+"<br>";
html += "<b>Venta: </b>"+registros[i]["producto_precio"]+"<br>";
html += "<b>Comisión: </b>"+registros[i]["producto_comision"];
html += "</td>";
html += "<td><b>Moneda: </b>"+esmoneda+"<br>";
html += "<b>T. Cambio: </b>";
var tipocambio= 0;
if(registros[i]["producto_tipocambio"] != null){ tipocambio = registros[i]["producto_tipocambio"]; }
html += tipocambio+"</td>";
html += "<td class='no-print' style='background-color: #"+registros[i]["estado_color"]+"'>"+registros[i]["estado_descripcion"]+"</td>";
html += "<!------------------------ INICIO modal para MOSTRAR imagen REAL ------------------->";
html += "<div class='modal fade' id='mostrarimagen"+i+"' tabindex='-1' role='dialog' aria-labelledby='mostrarimagenlabel"+i+"'>";
html += "<div class='modal-dialog' role='document'>";
html += "<br><br>";
html += "<div class='modal-content'>";
html += "<div class='modal-header'>";
html += "<button type='button' class='close' data-dismiss='modal' aria-label='Close'><span aria-hidden='true'>x</span></button>";
html += "<font size='3'><b>"+registros[i]["producto_nombre"]+"</b></font>";
html += "</div>";
html += "<div class='modal-body'>";
html += "<!------------------------------------------------------------------->";
html += "<img style='max-height: 100%; max-width: 100%' src='"+base_url+"resources/images/productos/"+registros[i]["producto_foto"]+"' />";
html += "<!------------------------------------------------------------------->";
html += "</div>";
html += "</div>";
html += "</div>";
html += "</div>";
html += "<!------------------------ FIN modal para MOSTRAR imagen REAL ------------------->";
html += "</td>";
html += "</tr>";
}
$("#tablaresultados").html(html);
document.getElementById('loader').style.display = 'none';
}
document.getElementById('loader').style.display = 'none'; //ocultar el bloque del loader
},
error:function(respuesta){
// alert("Algo salio mal...!!!");
html = "";
$("#tablaresultados").html(html);
},
complete: function (jqXHR, textStatus) {
document.getElementById('loader').style.display = 'none'; //ocultar el bloque del loader
//tabla_inventario();
}
});
} | [
"function",
"tablaresultadosproducto",
"(",
"limite",
")",
"{",
"var",
"controlador",
"=",
"\"\"",
";",
"var",
"parametro",
"=",
"\"\"",
";",
"var",
"categoriatext",
"=",
"\"\"",
";",
"var",
"estadotext",
"=",
"\"\"",
";",
"var",
"categoriaestado",
"=",
"\"\"",
";",
"var",
"base_url",
"=",
"document",
".",
"getElementById",
"(",
"'base_url'",
")",
".",
"value",
";",
"//al inicar carga con los ultimos 50 productos\r",
"if",
"(",
"limite",
"==",
"1",
")",
"{",
"controlador",
"=",
"base_url",
"+",
"'producto/buscarproductosexistmin/'",
";",
"// carga todos los productos de la BD \r",
"}",
"else",
"{",
"controlador",
"=",
"base_url",
"+",
"'producto/buscarproductosexistmin/'",
";",
"var",
"categoria",
"=",
"document",
".",
"getElementById",
"(",
"'categoria_id'",
")",
".",
"value",
";",
"var",
"estado",
"=",
"document",
".",
"getElementById",
"(",
"'estado_id'",
")",
".",
"value",
";",
"if",
"(",
"categoria",
"==",
"0",
")",
"{",
"categoriaestado",
"=",
"\"\"",
";",
"}",
"else",
"{",
"categoriaestado",
"=",
"\" and p.categoria_id = cp.categoria_id and p.categoria_id = \"",
"+",
"categoria",
"+",
"\" \"",
";",
"categoriatext",
"=",
"$",
"(",
"'select[name=\"categoria_id\"] option:selected'",
")",
".",
"text",
"(",
")",
";",
"categoriatext",
"=",
"\"Categoria: \"",
"+",
"categoriatext",
";",
"}",
"if",
"(",
"estado",
"==",
"0",
")",
"{",
"categoriaestado",
"+=",
"\"\"",
";",
"}",
"else",
"{",
"categoriaestado",
"+=",
"\" and p.estado_id = \"",
"+",
"estado",
"+",
"\" \"",
";",
"estadotext",
"=",
"$",
"(",
"'select[name=\"estado_id\"] option:selected'",
")",
".",
"text",
"(",
")",
";",
"estadotext",
"=",
"\"Estado: \"",
"+",
"estadotext",
";",
"}",
"$",
"(",
"\"#busquedacategoria\"",
")",
".",
"html",
"(",
"categoriatext",
"+",
"\" \"",
"+",
"estadotext",
")",
";",
"parametro",
"=",
"document",
".",
"getElementById",
"(",
"'filtrar'",
")",
".",
"value",
";",
"}",
"document",
".",
"getElementById",
"(",
"'loader'",
")",
".",
"style",
".",
"display",
"=",
"'block'",
";",
"//muestra el bloque del loader\r",
"$",
".",
"ajax",
"(",
"{",
"url",
":",
"controlador",
",",
"type",
":",
"\"POST\"",
",",
"data",
":",
"{",
"parametro",
":",
"parametro",
",",
"categoriaestado",
":",
"categoriaestado",
"}",
",",
"success",
":",
"function",
"(",
"respuesta",
")",
"{",
"$",
"(",
"\"#encontrados\"",
")",
".",
"val",
"(",
"\"- 0 -\"",
")",
";",
"var",
"registros",
"=",
"JSON",
".",
"parse",
"(",
"respuesta",
")",
";",
"if",
"(",
"registros",
"!=",
"null",
")",
"{",
"var",
"formaimagen",
"=",
"document",
".",
"getElementById",
"(",
"'formaimagen'",
")",
".",
"value",
";",
"var",
"n",
"=",
"registros",
".",
"length",
";",
"//tamaño del arreglo de la consulta\r",
"$",
"(",
"\"#encontrados\"",
")",
".",
"val",
"(",
"\"- \"",
"+",
"n",
"+",
"\" -\"",
")",
";",
"html",
"=",
"\"\"",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"n",
";",
"i",
"++",
")",
"{",
"html",
"+=",
"\"<tr>\"",
";",
"html",
"+=",
"\"<td>\"",
"+",
"(",
"i",
"+",
"1",
")",
"+",
"\"</td>\"",
";",
"html",
"+=",
"\"<td>\"",
";",
"html",
"+=",
"\"<div id='horizontal'>\"",
";",
"html",
"+=",
"\"<div id='contieneimg'>\"",
";",
"var",
"mimagen",
"=",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_foto\"",
"]",
"!=",
"null",
"&&",
"registros",
"[",
"i",
"]",
"[",
"\"producto_foto\"",
"]",
"!=",
"\"\"",
")",
"{",
"mimagen",
"+=",
"\"<a class='btn btn-xs' data-toggle='modal' data-target='#mostrarimagen\"",
"+",
"i",
"+",
"\"' style='padding: 0px;'>\"",
";",
"mimagen",
"+=",
"\"<img src='\"",
"+",
"base_url",
"+",
"\"resources/images/productos/thumb_\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_foto\"",
"]",
"+",
"\"' class='img img-\"",
"+",
"formaimagen",
"+",
"\"' width='50' height='50' />\"",
";",
"mimagen",
"+=",
"\"</a>\"",
";",
"//mimagen = nomfoto.split(\".\").join(\"_thumb.\");77\r",
"}",
"else",
"{",
"mimagen",
"=",
"\"<img src='\"",
"+",
"base_url",
"+",
"\"resources/images/productos/thumb_image.png' class='img img-\"",
"+",
"formaimagen",
"+",
"\"' width='50' height='50' />\"",
";",
"}",
"html",
"+=",
"mimagen",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"<div style='padding-left: 4px'>\"",
";",
"html",
"+=",
"\"<b id='masgrande'>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_nombre\"",
"]",
"+",
"\"</b><br>\"",
";",
"html",
"+=",
"\"\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_unidad\"",
"]",
"+",
"\" | \"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_marca\"",
"]",
"+",
"\" | \"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_industria\"",
"]",
"+",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"destino_id\"",
"]",
">",
"0",
")",
"{",
"html",
"+=",
"\"<br>Destino: \"",
"+",
"registros",
"[",
"i",
"]",
"[",
"'destino_nombre'",
"]",
";",
"}",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"</td>\"",
";",
"var",
"escategoria",
"=",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"categoria_id\"",
"]",
"==",
"null",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"categoria_id\"",
"]",
"==",
"0",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"categoria_id\"",
"]",
"==",
"\"\"",
")",
"{",
"escategoria",
"=",
"\"No definido\"",
";",
"}",
"else",
"{",
"escategoria",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"categoria_nombre\"",
"]",
";",
"}",
"var",
"esmoneda",
"=",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"moneda_id\"",
"]",
"==",
"null",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"moneda_id\"",
"]",
"==",
"0",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"moneda_id\"",
"]",
"==",
"\"\"",
")",
"{",
"esmoneda",
"=",
"\"No definido\"",
";",
"}",
"else",
"{",
"esmoneda",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"moneda_descripcion\"",
"]",
";",
"}",
"html",
"+=",
"\"<td><b>Cat.: </b>\"",
"+",
"escategoria",
"+",
"\"<br><b>Pres.: </b>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_unidad\"",
"]",
"+",
"\"<br>\"",
";",
"html",
"+=",
"\"<b>Cant. Min.: </b>\"",
";",
"var",
"cantmin",
"=",
"0",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_cantidadminima\"",
"]",
"!=",
"null",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"producto_cantidadminima\"",
"]",
"==",
"\"\"",
")",
"{",
"cantmin",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"producto_cantidadminima\"",
"]",
";",
"}",
"html",
"+=",
"\"<span style='color: #ff0084; font-weight: bold'>\"",
"+",
"cantmin",
"+",
"\"</span> <b>Exist: </b>\"",
";",
"html",
"+=",
"\"<span style='color: #ff0084; font-weight: bold'>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"existencia\"",
"]",
"+",
"\"</span></td>\"",
";",
"html",
"+=",
"\"<td>\"",
";",
"var",
"caracteristica",
"=",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_caracteristicas\"",
"]",
"!=",
"null",
")",
"{",
"caracteristica",
"=",
"\"<div style='word-wrap: break-word;'>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_caracteristicas\"",
"]",
"+",
"\"</div>\"",
";",
"}",
"html",
"+=",
"caracteristica",
"+",
"\"</td>\"",
";",
"html",
"+=",
"\"<td>\"",
";",
"var",
"sinconenvase",
"=",
"\"\"",
";",
"var",
"nombreenvase",
"=",
"\"\"",
";",
"var",
"costoenvase",
"=",
"\"\"",
";",
"var",
"precioenvase",
"=",
"\"\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_envase\"",
"]",
"==",
"1",
")",
"{",
"sinconenvase",
"=",
"\"Con Envase Retornable\"",
"+",
"\"<br>\"",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_nombreenvase\"",
"]",
"!=",
"\"\"",
"||",
"registros",
"[",
"i",
"]",
"[",
"\"producto_nombreenvase\"",
"]",
"!=",
"null",
")",
"{",
"nombreenvase",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"producto_nombreenvase\"",
"]",
"+",
"\"<br>\"",
";",
"costoenvase",
"=",
"\"Costo: \"",
"+",
"Number",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_costoenvase\"",
"]",
")",
".",
"toFixed",
"(",
"2",
")",
"+",
"\"<br>\"",
";",
"precioenvase",
"=",
"\"Precio: \"",
"+",
"Number",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_precioenvase\"",
"]",
")",
".",
"toFixed",
"(",
"2",
")",
";",
"}",
"}",
"else",
"{",
"sinconenvase",
"=",
"\"Sin Envase Retornable\"",
";",
"}",
"html",
"+=",
"sinconenvase",
";",
"html",
"+=",
"nombreenvase",
";",
"html",
"+=",
"costoenvase",
";",
"html",
"+=",
"precioenvase",
";",
"html",
"+=",
"\"</td>\"",
";",
"var",
"codbarras",
"=",
"\"\"",
";",
"if",
"(",
"!",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_codigobarra\"",
"]",
"==",
"null",
")",
")",
"{",
"codbarras",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"producto_codigobarra\"",
"]",
";",
"}",
"html",
"+=",
"\"<td>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_codigo\"",
"]",
"+",
"\"<br>\"",
"+",
"codbarras",
"+",
"\"</td>\"",
";",
"html",
"+=",
"\"<td><b>Compra: </b>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_costo\"",
"]",
"+",
"\"<br>\"",
";",
"html",
"+=",
"\"<b>Venta: </b>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_precio\"",
"]",
"+",
"\"<br>\"",
";",
"html",
"+=",
"\"<b>Comisión: </b>\"+",
"r",
"egistros[",
"i",
"]",
"[",
"\"",
"producto_comision\"]",
";",
"\r",
"html",
"+=",
"\"</td>\"",
";",
"html",
"+=",
"\"<td><b>Moneda: </b>\"",
"+",
"esmoneda",
"+",
"\"<br>\"",
";",
"html",
"+=",
"\"<b>T. Cambio: </b>\"",
";",
"var",
"tipocambio",
"=",
"0",
";",
"if",
"(",
"registros",
"[",
"i",
"]",
"[",
"\"producto_tipocambio\"",
"]",
"!=",
"null",
")",
"{",
"tipocambio",
"=",
"registros",
"[",
"i",
"]",
"[",
"\"producto_tipocambio\"",
"]",
";",
"}",
"html",
"+=",
"tipocambio",
"+",
"\"</td>\"",
";",
"html",
"+=",
"\"<td class='no-print' style='background-color: #\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"estado_color\"",
"]",
"+",
"\"'>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"estado_descripcion\"",
"]",
"+",
"\"</td>\"",
";",
"html",
"+=",
"\"<!------------------------ INICIO modal para MOSTRAR imagen REAL ------------------->\"",
";",
"html",
"+=",
"\"<div class='modal fade' id='mostrarimagen\"",
"+",
"i",
"+",
"\"' tabindex='-1' role='dialog' aria-labelledby='mostrarimagenlabel\"",
"+",
"i",
"+",
"\"'>\"",
";",
"html",
"+=",
"\"<div class='modal-dialog' role='document'>\"",
";",
"html",
"+=",
"\"<br><br>\"",
";",
"html",
"+=",
"\"<div class='modal-content'>\"",
";",
"html",
"+=",
"\"<div class='modal-header'>\"",
";",
"html",
"+=",
"\"<button type='button' class='close' data-dismiss='modal' aria-label='Close'><span aria-hidden='true'>x</span></button>\"",
";",
"html",
"+=",
"\"<font size='3'><b>\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_nombre\"",
"]",
"+",
"\"</b></font>\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"<div class='modal-body'>\"",
";",
"html",
"+=",
"\"<!------------------------------------------------------------------->\"",
";",
"html",
"+=",
"\"<img style='max-height: 100%; max-width: 100%' src='\"",
"+",
"base_url",
"+",
"\"resources/images/productos/\"",
"+",
"registros",
"[",
"i",
"]",
"[",
"\"producto_foto\"",
"]",
"+",
"\"' />\"",
";",
"html",
"+=",
"\"<!------------------------------------------------------------------->\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"</div>\"",
";",
"html",
"+=",
"\"<!------------------------ FIN modal para MOSTRAR imagen REAL ------------------->\"",
";",
"html",
"+=",
"\"</td>\"",
";",
"html",
"+=",
"\"</tr>\"",
";",
"}",
"$",
"(",
"\"#tablaresultados\"",
")",
".",
"html",
"(",
"html",
")",
";",
"document",
".",
"getElementById",
"(",
"'loader'",
")",
".",
"style",
".",
"display",
"=",
"'none'",
";",
"}",
"document",
".",
"getElementById",
"(",
"'loader'",
")",
".",
"style",
".",
"display",
"=",
"'none'",
";",
"//ocultar el bloque del loader\r",
"}",
",",
"error",
":",
"function",
"(",
"respuesta",
")",
"{",
"// alert(\"Algo salio mal...!!!\");\r",
"html",
"=",
"\"\"",
";",
"$",
"(",
"\"#tablaresultados\"",
")",
".",
"html",
"(",
"html",
")",
";",
"}",
",",
"complete",
":",
"function",
"(",
"jqXHR",
",",
"textStatus",
")",
"{",
"document",
".",
"getElementById",
"(",
"'loader'",
")",
".",
"style",
".",
"display",
"=",
"'none'",
";",
"//ocultar el bloque del loader \r",
"//tabla_inventario();\r",
"}",
"}",
")",
";",
"}"
] | [
44,
0
] | [
228,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
createSandiwch | (item) | null | Crea un nuevo sandwich en la base de datos | Crea un nuevo sandwich en la base de datos | function createSandiwch(item) {
axios
.post("http://127.0.0.1:8000/main/api/Sandwich/", item)
.then(res => console.log(res))
.catch(err => console.log(err));
} | [
"function",
"createSandiwch",
"(",
"item",
")",
"{",
"axios",
".",
"post",
"(",
"\"http://127.0.0.1:8000/main/api/Sandwich/\"",
",",
"item",
")",
".",
"then",
"(",
"res",
"=>",
"console",
".",
"log",
"(",
"res",
")",
")",
".",
"catch",
"(",
"err",
"=>",
"console",
".",
"log",
"(",
"err",
")",
")",
";",
"}"
] | [
264,
2
] | [
269,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | statement_block |
homeHandler | (request, response) | null | homeHandler es una funcion declarada de un forma especial | homeHandler es una funcion declarada de un forma especial | function homeHandler(request, response) {
response.send('Hello world');
} | [
"function",
"homeHandler",
"(",
"request",
",",
"response",
")",
"{",
"response",
".",
"send",
"(",
"'Hello world'",
")",
";",
"}"
] | [
10,
18
] | [
12,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | variable_declarator |
classifyVideo | () | null | 2. Clasificar los frames del video | 2. Clasificar los frames del video | function classifyVideo() {
classifier.classify(video, gotResults);
} | [
"function",
"classifyVideo",
"(",
")",
"{",
"classifier",
".",
"classify",
"(",
"video",
",",
"gotResults",
")",
";",
"}"
] | [
22,
0
] | [
24,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
registro_salida | () | null | para registrar la salida de la persona | para registrar la salida de la persona | function registro_salida (){
let visitante = JSON.parse(localStorage.getItem("visitor"));
let nombre = visitante.nombre;
let apellido = visitante.apellido;
access_salida.push(visitante);
console.log(access_salida);
$( "#permisos" ).slideUp("slow")
$('permisos').addClass("none");
$("#acceso__visita").append(`<section>
<h3>Muchas Gracias por tu visita</h3>
<p>${nombre} ${apellido}</p>
<div class=".login__container--success">
<button class="button button--volver" id="volver" onClick ="estado_inicial()">Regresar a Consulta
</button>
</div>
</section>`)
$('.login').addClass('salida__autorizada')
} | [
"function",
"registro_salida",
"(",
")",
"{",
"let",
"visitante",
"=",
"JSON",
".",
"parse",
"(",
"localStorage",
".",
"getItem",
"(",
"\"visitor\"",
")",
")",
";",
"let",
"nombre",
"=",
"visitante",
".",
"nombre",
";",
"let",
"apellido",
"=",
"visitante",
".",
"apellido",
";",
"access_salida",
".",
"push",
"(",
"visitante",
")",
";",
"console",
".",
"log",
"(",
"access_salida",
")",
";",
"$",
"(",
"\"#permisos\"",
")",
".",
"slideUp",
"(",
"\"slow\"",
")",
"$",
"(",
"'permisos'",
")",
".",
"addClass",
"(",
"\"none\"",
")",
";",
"$",
"(",
"\"#acceso__visita\"",
")",
".",
"append",
"(",
"`",
"${",
"nombre",
"}",
"${",
"apellido",
"}",
"`",
")",
"$",
"(",
"'.login'",
")",
".",
"addClass",
"(",
"'salida__autorizada'",
")",
"}"
] | [
192,
0
] | [
209,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
colocarEnInicioMapa | () | null | Función que hace que la posición y la orientación del jugador sea el origen del mapa actual | Función que hace que la posición y la orientación del jugador sea el origen del mapa actual | function colocarEnInicioMapa() {
partida.jugador.posicion.x = partida.mapas[partida.jugador.posicion.mapa].origen[0];
partida.jugador.posicion.y = partida.mapas[partida.jugador.posicion.mapa].origen[1];
partida.jugador.posicion.orientacion = partida.mapas[partida.jugador.posicion.mapa].orientacion;
} | [
"function",
"colocarEnInicioMapa",
"(",
")",
"{",
"partida",
".",
"jugador",
".",
"posicion",
".",
"x",
"=",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"origen",
"[",
"0",
"]",
";",
"partida",
".",
"jugador",
".",
"posicion",
".",
"y",
"=",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"origen",
"[",
"1",
"]",
";",
"partida",
".",
"jugador",
".",
"posicion",
".",
"orientacion",
"=",
"partida",
".",
"mapas",
"[",
"partida",
".",
"jugador",
".",
"posicion",
".",
"mapa",
"]",
".",
"orientacion",
";",
"}"
] | [
1,
0
] | [
5,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
publicarComentario_teacher | (key_msj) | null | funcion para poder guardar en BD los comentarios despues de ver los primeros comentario comentarios | funcion para poder guardar en BD los comentarios despues de ver los primeros comentario comentarios | function publicarComentario_teacher(key_msj) {
var usuario = $("#user").val();
var curso = $("#course").val();
var seccion = $("#section").val();
var msj = $("#mensaje_" + key_msj).val();
var key = key_msj;
var token = $("#token").val();
if (msj == "") {
toastr.options = {
closeButton: false,
debug: false,
newestOnTop: false,
progressBar: false,
positionClass: "toast-top-center",
preventDuplicates: false,
onclick: null,
showDuration: "500",
hideDuration: "1000",
timeOut: "5000",
extendedTimeOut: "1000",
showEasing: "swing",
hideEasing: "linear",
showMethod: "fadeIn",
hideMethod: "fadeOut",
};
toastr.error("debes ingresar un mensaje");
} else {
$.ajax({
url: "../../../../ajax/publicarComentario",
headers: token,
data: {
curso_id: curso,
seccion_id: seccion,
user_id: usuario,
mensaje: msj,
key_msj: key,
_token: token,
},
type: "POST",
datatype: "json",
beforeSend: function () {
$("#btn_publicar").attr("disabled", true);
$("#circle" + key_msj).circleProgress({
value: 0.75,
size: 80,
fill: {
gradient: ["red", "orange"],
},
});
},
complete: function () {
$("#circle" + key_msj).hide();
},
success: function (data) {
//console.log(response);
$("#mensaje_" + key_msj).val("");
$("#lista_" + key_msj)
.append(data)
.fadeIn(1000, function () {
$("#ver_comentarios_" + key_msj).css({
border: "2px solid lightblue",
"border-radius": "5px",
});
});
toastr.options = {
closeButton: false,
debug: false,
newestOnTop: false,
progressBar: false,
positionClass: "toast-top-center",
preventDuplicates: false,
onclick: null,
showDuration: "500",
hideDuration: "1000",
timeOut: "5000",
extendedTimeOut: "1000",
showEasing: "swing",
hideEasing: "linear",
showMethod: "fadeIn",
hideMethod: "fadeOut",
};
toastr.success("Mensaje publicado exitósamente");
$("#btn_publicar").attr("disabled", false);
},
error: function (response) {
console.log(response);
},
});
}
} | [
"function",
"publicarComentario_teacher",
"(",
"key_msj",
")",
"{",
"var",
"usuario",
"=",
"$",
"(",
"\"#user\"",
")",
".",
"val",
"(",
")",
";",
"var",
"curso",
"=",
"$",
"(",
"\"#course\"",
")",
".",
"val",
"(",
")",
";",
"var",
"seccion",
"=",
"$",
"(",
"\"#section\"",
")",
".",
"val",
"(",
")",
";",
"var",
"msj",
"=",
"$",
"(",
"\"#mensaje_\"",
"+",
"key_msj",
")",
".",
"val",
"(",
")",
";",
"var",
"key",
"=",
"key_msj",
";",
"var",
"token",
"=",
"$",
"(",
"\"#token\"",
")",
".",
"val",
"(",
")",
";",
"if",
"(",
"msj",
"==",
"\"\"",
")",
"{",
"toastr",
".",
"options",
"=",
"{",
"closeButton",
":",
"false",
",",
"debug",
":",
"false",
",",
"newestOnTop",
":",
"false",
",",
"progressBar",
":",
"false",
",",
"positionClass",
":",
"\"toast-top-center\"",
",",
"preventDuplicates",
":",
"false",
",",
"onclick",
":",
"null",
",",
"showDuration",
":",
"\"500\"",
",",
"hideDuration",
":",
"\"1000\"",
",",
"timeOut",
":",
"\"5000\"",
",",
"extendedTimeOut",
":",
"\"1000\"",
",",
"showEasing",
":",
"\"swing\"",
",",
"hideEasing",
":",
"\"linear\"",
",",
"showMethod",
":",
"\"fadeIn\"",
",",
"hideMethod",
":",
"\"fadeOut\"",
",",
"}",
";",
"toastr",
".",
"error",
"(",
"\"debes ingresar un mensaje\"",
")",
";",
"}",
"else",
"{",
"$",
".",
"ajax",
"(",
"{",
"url",
":",
"\"../../../../ajax/publicarComentario\"",
",",
"headers",
":",
"token",
",",
"data",
":",
"{",
"curso_id",
":",
"curso",
",",
"seccion_id",
":",
"seccion",
",",
"user_id",
":",
"usuario",
",",
"mensaje",
":",
"msj",
",",
"key_msj",
":",
"key",
",",
"_token",
":",
"token",
",",
"}",
",",
"type",
":",
"\"POST\"",
",",
"datatype",
":",
"\"json\"",
",",
"beforeSend",
":",
"function",
"(",
")",
"{",
"$",
"(",
"\"#btn_publicar\"",
")",
".",
"attr",
"(",
"\"disabled\"",
",",
"true",
")",
";",
"$",
"(",
"\"#circle\"",
"+",
"key_msj",
")",
".",
"circleProgress",
"(",
"{",
"value",
":",
"0.75",
",",
"size",
":",
"80",
",",
"fill",
":",
"{",
"gradient",
":",
"[",
"\"red\"",
",",
"\"orange\"",
"]",
",",
"}",
",",
"}",
")",
";",
"}",
",",
"complete",
":",
"function",
"(",
")",
"{",
"$",
"(",
"\"#circle\"",
"+",
"key_msj",
")",
".",
"hide",
"(",
")",
";",
"}",
",",
"success",
":",
"function",
"(",
"data",
")",
"{",
"//console.log(response);",
"$",
"(",
"\"#mensaje_\"",
"+",
"key_msj",
")",
".",
"val",
"(",
"\"\"",
")",
";",
"$",
"(",
"\"#lista_\"",
"+",
"key_msj",
")",
".",
"append",
"(",
"data",
")",
".",
"fadeIn",
"(",
"1000",
",",
"function",
"(",
")",
"{",
"$",
"(",
"\"#ver_comentarios_\"",
"+",
"key_msj",
")",
".",
"css",
"(",
"{",
"border",
":",
"\"2px solid lightblue\"",
",",
"\"border-radius\"",
":",
"\"5px\"",
",",
"}",
")",
";",
"}",
")",
";",
"toastr",
".",
"options",
"=",
"{",
"closeButton",
":",
"false",
",",
"debug",
":",
"false",
",",
"newestOnTop",
":",
"false",
",",
"progressBar",
":",
"false",
",",
"positionClass",
":",
"\"toast-top-center\"",
",",
"preventDuplicates",
":",
"false",
",",
"onclick",
":",
"null",
",",
"showDuration",
":",
"\"500\"",
",",
"hideDuration",
":",
"\"1000\"",
",",
"timeOut",
":",
"\"5000\"",
",",
"extendedTimeOut",
":",
"\"1000\"",
",",
"showEasing",
":",
"\"swing\"",
",",
"hideEasing",
":",
"\"linear\"",
",",
"showMethod",
":",
"\"fadeIn\"",
",",
"hideMethod",
":",
"\"fadeOut\"",
",",
"}",
";",
"toastr",
".",
"success",
"(",
"\"Mensaje publicado exitósamente\")",
";",
"",
"$",
"(",
"\"#btn_publicar\"",
")",
".",
"attr",
"(",
"\"disabled\"",
",",
"false",
")",
";",
"}",
",",
"error",
":",
"function",
"(",
"response",
")",
"{",
"console",
".",
"log",
"(",
"response",
")",
";",
"}",
",",
"}",
")",
";",
"}",
"}"
] | [
829,
0
] | [
923,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
llamada | (url) | null | Función para obtener datos y pintar la gráfica. | Función para obtener datos y pintar la gráfica. | function llamada(url){
fetch(url)
.then(res => res.json())
.then(dat => {
console.log(dat);
let lista = dat.list;
for(i = 0; i < lista.length; i++){
if(lista[i].dt_txt.slice(11) == "15:00:00"){
data.series[1].push(lista[i].main.temp_max);
data.series[2].push(lista[i].main.humidity);
data.labels.push(lista[i].dt_txt.slice(0,10));
}else if(lista[i].dt_txt.slice(11) == "03:00:00"){
data.series[0].push(lista[i].main.temp_min);
}
}
var chart = new Chartist.Bar('.ct-chart', data, options, responsiveOptions);
//Función para animar la grafica *MINIFICADA*
var seq=0,delays=50,durations=500;chart.on("created",function(){seq=0}),chart.on("draw",function(e){if(seq++,"bar"===e.type)e.element.animate({opacity:{begin:seq*delays+1e3,dur:durations,from:0,to:1}});else if("label"===e.type&&"x"===e.axis)e.element.animate({y:{begin:seq*delays,dur:durations,from:e.y+100,to:e.y,easing:"easeOutQuart"}});else if("label"===e.type&&"y"===e.axis)e.element.animate({x:{begin:seq*delays,dur:durations,from:e.x-100,to:e.x,easing:"easeOutQuart"}});else if("point"===e.type)e.element.animate({x1:{begin:seq*delays,dur:durations,from:e.x-10,to:e.x,easing:"easeOutQuart"},x2:{begin:seq*delays,dur:durations,from:e.x-10,to:e.x,easing:"easeOutQuart"},opacity:{begin:seq*delays,dur:durations,from:0,to:1,easing:"easeOutQuart"}});else if("grid"===e.type){var a={begin:seq*delays,dur:durations,from:e[e.axis.units.pos+"1"]-30,to:e[e.axis.units.pos+"1"],easing:"easeOutQuart"},s={begin:seq*delays,dur:durations,from:e[e.axis.units.pos+"2"]-100,to:e[e.axis.units.pos+"2"],easing:"easeOutQuart"},t={};t[e.axis.units.pos+"1"]=a,t[e.axis.units.pos+"2"]=s,t.opacity={begin:seq*delays,dur:durations,from:0,to:1,easing:"easeOutQuart"},e.element.animate(t)}});
})
.catch(err => console.log(`Error: ${err}`));
} | [
"function",
"llamada",
"(",
"url",
")",
"{",
"fetch",
"(",
"url",
")",
".",
"then",
"(",
"res",
"=>",
"res",
".",
"json",
"(",
")",
")",
".",
"then",
"(",
"dat",
"=>",
"{",
"console",
".",
"log",
"(",
"dat",
")",
";",
"let",
"lista",
"=",
"dat",
".",
"list",
";",
"for",
"(",
"i",
"=",
"0",
";",
"i",
"<",
"lista",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"lista",
"[",
"i",
"]",
".",
"dt_txt",
".",
"slice",
"(",
"11",
")",
"==",
"\"15:00:00\"",
")",
"{",
"data",
".",
"series",
"[",
"1",
"]",
".",
"push",
"(",
"lista",
"[",
"i",
"]",
".",
"main",
".",
"temp_max",
")",
";",
"data",
".",
"series",
"[",
"2",
"]",
".",
"push",
"(",
"lista",
"[",
"i",
"]",
".",
"main",
".",
"humidity",
")",
";",
"data",
".",
"labels",
".",
"push",
"(",
"lista",
"[",
"i",
"]",
".",
"dt_txt",
".",
"slice",
"(",
"0",
",",
"10",
")",
")",
";",
"}",
"else",
"if",
"(",
"lista",
"[",
"i",
"]",
".",
"dt_txt",
".",
"slice",
"(",
"11",
")",
"==",
"\"03:00:00\"",
")",
"{",
"data",
".",
"series",
"[",
"0",
"]",
".",
"push",
"(",
"lista",
"[",
"i",
"]",
".",
"main",
".",
"temp_min",
")",
";",
"}",
"}",
"var",
"chart",
"=",
"new",
"Chartist",
".",
"Bar",
"(",
"'.ct-chart'",
",",
"data",
",",
"options",
",",
"responsiveOptions",
")",
";",
"//Función para animar la grafica *MINIFICADA*",
"var",
"seq",
"=",
"0",
",",
"delays",
"=",
"50",
",",
"durations",
"=",
"500",
";",
"chart",
".",
"on",
"(",
"\"created\"",
",",
"function",
"(",
")",
"{",
"seq",
"=",
"0",
"}",
")",
",",
"chart",
".",
"on",
"(",
"\"draw\"",
",",
"function",
"(",
"e",
")",
"{",
"if",
"(",
"seq",
"++",
",",
"\"bar\"",
"===",
"e",
".",
"type",
")",
"e",
".",
"element",
".",
"animate",
"(",
"{",
"opacity",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
"+",
"1e3",
",",
"dur",
":",
"durations",
",",
"from",
":",
"0",
",",
"to",
":",
"1",
"}",
"}",
")",
";",
"else",
"if",
"(",
"\"label\"",
"===",
"e",
".",
"type",
"&&",
"\"x\"",
"===",
"e",
".",
"axis",
")",
"e",
".",
"element",
".",
"animate",
"(",
"{",
"y",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
".",
"y",
"+",
"100",
",",
"to",
":",
"e",
".",
"y",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
"}",
")",
";",
"else",
"if",
"(",
"\"label\"",
"===",
"e",
".",
"type",
"&&",
"\"y\"",
"===",
"e",
".",
"axis",
")",
"e",
".",
"element",
".",
"animate",
"(",
"{",
"x",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
".",
"x",
"-",
"100",
",",
"to",
":",
"e",
".",
"x",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
"}",
")",
";",
"else",
"if",
"(",
"\"point\"",
"===",
"e",
".",
"type",
")",
"e",
".",
"element",
".",
"animate",
"(",
"{",
"x1",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
".",
"x",
"-",
"10",
",",
"to",
":",
"e",
".",
"x",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
",",
"x2",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
".",
"x",
"-",
"10",
",",
"to",
":",
"e",
".",
"x",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
",",
"opacity",
":",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"0",
",",
"to",
":",
"1",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
"}",
")",
";",
"else",
"if",
"(",
"\"grid\"",
"===",
"e",
".",
"type",
")",
"{",
"var",
"a",
"=",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"1\"",
"]",
"-",
"30",
",",
"to",
":",
"e",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"1\"",
"]",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
",",
"s",
"=",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"e",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"2\"",
"]",
"-",
"100",
",",
"to",
":",
"e",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"2\"",
"]",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
",",
"t",
"=",
"{",
"}",
";",
"t",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"1\"",
"]",
"=",
"a",
",",
"t",
"[",
"e",
".",
"axis",
".",
"units",
".",
"pos",
"+",
"\"2\"",
"]",
"=",
"s",
",",
"t",
".",
"opacity",
"=",
"{",
"begin",
":",
"seq",
"*",
"delays",
",",
"dur",
":",
"durations",
",",
"from",
":",
"0",
",",
"to",
":",
"1",
",",
"easing",
":",
"\"easeOutQuart\"",
"}",
",",
"e",
".",
"element",
".",
"animate",
"(",
"t",
")",
"}",
"}",
")",
";",
"}",
")",
".",
"catch",
"(",
"err",
"=>",
"console",
".",
"log",
"(",
"`",
"${",
"err",
"}",
"`",
")",
")",
";",
"}"
] | [
7,
0
] | [
27,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
keyPressed | () | null | reproduce el impulso (sin convolución) | reproduce el impulso (sin convolución) | function keyPressed() {
rawImpulse.play();
} | [
"function",
"keyPressed",
"(",
")",
"{",
"rawImpulse",
".",
"play",
"(",
")",
";",
"}"
] | [
83,
0
] | [
85,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
catch_parameters | () | null | obtiene los datos del formulario | obtiene los datos del formulario | function catch_parameters() {
var data = $(".form-data").serialize();
data += "&user_id=" + user_id;
data += "&id=" + id;
//console.log(data);
return data;
} | [
"function",
"catch_parameters",
"(",
")",
"{",
"var",
"data",
"=",
"$",
"(",
"\".form-data\"",
")",
".",
"serialize",
"(",
")",
";",
"data",
"+=",
"\"&user_id=\"",
"+",
"user_id",
";",
"data",
"+=",
"\"&id=\"",
"+",
"id",
";",
"//console.log(data);",
"return",
"data",
";",
"}"
] | [
229,
0
] | [
236,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
getAll | () | null | FUNCION PARA COHER TODOS LOS CHARS(PERSONAJES) | FUNCION PARA COHER TODOS LOS CHARS(PERSONAJES) | function getAll(){
return axios
.get(`${apiUrl}/character`)
} | [
"function",
"getAll",
"(",
")",
"{",
"return",
"axios",
".",
"get",
"(",
"`",
"${",
"apiUrl",
"}",
"`",
")",
"}"
] | [
7,
0
] | [
10,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
calcular_tiempo_con_estilo | () | null | Especificaciones: Imprimir tu nombre usando console.log, console.info, console.warn | Especificaciones: Imprimir tu nombre usando console.log, console.info, console.warn | function calcular_tiempo_con_estilo () {
console.time();
console.log('%cJoaquin', 'font-family: Arial; font-weight: bold');
console.info('%cJoaquin', 'background: cyan');
console.warn('%cJoaquin', 'background: red; color: white; font-weight: bold; font-size: 16px');
console.timeEnd();
} | [
"function",
"calcular_tiempo_con_estilo",
"(",
")",
"{",
"console",
".",
"time",
"(",
")",
";",
"console",
".",
"log",
"(",
"'%cJoaquin'",
",",
"'font-family: Arial; font-weight: bold'",
")",
";",
"console",
".",
"info",
"(",
"'%cJoaquin'",
",",
"'background: cyan'",
")",
";",
"console",
".",
"warn",
"(",
"'%cJoaquin'",
",",
"'background: red; color: white; font-weight: bold; font-size: 16px'",
")",
";",
"console",
".",
"timeEnd",
"(",
")",
";",
"}"
] | [
8,
0
] | [
14,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
draw | () | null | Las instrucciones en draw() son ejecutadas hasta que el programa es parado. Cada instrucción es ejecutada en orden y luego de que la última línea es leída, se vuelve a ejecutar draw() desde el principio | Las instrucciones en draw() son ejecutadas hasta que el programa es parado. Cada instrucción es ejecutada en orden y luego de que la última línea es leída, se vuelve a ejecutar draw() desde el principio | function draw() {
background(0);
y = y - 4;
if (y < 0) {
y = height;
}
line(0, y, width, y);
} | [
"function",
"draw",
"(",
")",
"{",
"background",
"(",
"0",
")",
";",
"y",
"=",
"y",
"-",
"4",
";",
"if",
"(",
"y",
"<",
"0",
")",
"{",
"y",
"=",
"height",
";",
"}",
"line",
"(",
"0",
",",
"y",
",",
"width",
",",
"y",
")",
";",
"}"
] | [
21,
0
] | [
28,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
showOptionsGraph1 | () | null | Graph por año. | Graph por año. | function showOptionsGraph1() {
/*
document.getElementById("showornot1").style.display="block";
document.getElementById("showornot2").style.display="none";
document.getElementById("divoption").style.display="none";
document.getElementById("graphicDominioTagAnio").style.display="block";
document.getElementById("graphicDominioTagMes").style.display="none";
*/
$("#showornot1").show();
$("#showornot2").hide();
$("#divoption").hide();
$("#graphicDominioTagAnio").show();
$("#graphicDominioTagMes").hide();
} | [
"function",
"showOptionsGraph1",
"(",
")",
"{",
"/*\n document.getElementById(\"showornot1\").style.display=\"block\";\n document.getElementById(\"showornot2\").style.display=\"none\";\n document.getElementById(\"divoption\").style.display=\"none\";\n document.getElementById(\"graphicDominioTagAnio\").style.display=\"block\";\n document.getElementById(\"graphicDominioTagMes\").style.display=\"none\";\n */",
"$",
"(",
"\"#showornot1\"",
")",
".",
"show",
"(",
")",
";",
"$",
"(",
"\"#showornot2\"",
")",
".",
"hide",
"(",
")",
";",
"$",
"(",
"\"#divoption\"",
")",
".",
"hide",
"(",
")",
";",
"$",
"(",
"\"#graphicDominioTagAnio\"",
")",
".",
"show",
"(",
")",
";",
"$",
"(",
"\"#graphicDominioTagMes\"",
")",
".",
"hide",
"(",
")",
";",
"}"
] | [
32,
0
] | [
46,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
cargarLocalidades | (id) | null | Funciones al cambiar el cliente | Funciones al cambiar el cliente | function cargarLocalidades(id) {
$.get('/Localidades/mostrar/' + id, function(data) {
$('select[name=CliLocId').empty();
var texto = "";
for (var i = 0; i < data.length; i++) {
texto = '<option value="' + data[0].LocId + '">' + data[0].DesLoc + " - " + data[0].NomLoc + '</option>'
$('select[name=CliLocId').append(texto);
}
});
} | [
"function",
"cargarLocalidades",
"(",
"id",
")",
"{",
"$",
".",
"get",
"(",
"'/Localidades/mostrar/'",
"+",
"id",
",",
"function",
"(",
"data",
")",
"{",
"$",
"(",
"'select[name=CliLocId'",
")",
".",
"empty",
"(",
")",
";",
"var",
"texto",
"=",
"\"\"",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"data",
".",
"length",
";",
"i",
"++",
")",
"{",
"texto",
"=",
"'<option value=\"'",
"+",
"data",
"[",
"0",
"]",
".",
"LocId",
"+",
"'\">'",
"+",
"data",
"[",
"0",
"]",
".",
"DesLoc",
"+",
"\" - \"",
"+",
"data",
"[",
"0",
"]",
".",
"NomLoc",
"+",
"'</option>'",
"$",
"(",
"'select[name=CliLocId'",
")",
".",
"append",
"(",
"texto",
")",
";",
"}",
"}",
")",
";",
"}"
] | [
12,
0
] | [
22,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
perimetroCuadrado | (lado) | null | Abrir: Para agrupar los comandos JS const ladoCuadrado = 5; console.log("Los lados del cuadrado miden: " + ladoCuadrado + "cm"); | Abrir: Para agrupar los comandos JS const ladoCuadrado = 5; console.log("Los lados del cuadrado miden: " + ladoCuadrado + "cm"); | function perimetroCuadrado(lado){
return lado * 4;
} | [
"function",
"perimetroCuadrado",
"(",
"lado",
")",
"{",
"return",
"lado",
"*",
"4",
";",
"}"
] | [
5,
4
] | [
7,
5
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
eliminarCurso | (e) | null | eliminamos los cursos del carrito de compras si ya no lo queremos | eliminamos los cursos del carrito de compras si ya no lo queremos | function eliminarCurso(e) {
if (e.target.classList.contains('borrar-curso')) {
const dataID = e.target.getAttribute('data-id')
//eliminamos el curso seleccionado
articuloEliminar = articulosCarrito.find(curso => curso.id === dataID )
if (articuloEliminar.cantidad > 1 ) {
articuloEliminar.cantidad--
articuloEliminar.precio = articuloEliminar.cantidad * articuloEliminar.precioBase
} else {
articulosCarrito = articulosCarrito.filter(curso => curso.id !== dataID)
}
mostrarHTML()
}
} | [
"function",
"eliminarCurso",
"(",
"e",
")",
"{",
"if",
"(",
"e",
".",
"target",
".",
"classList",
".",
"contains",
"(",
"'borrar-curso'",
")",
")",
"{",
"const",
"dataID",
"=",
"e",
".",
"target",
".",
"getAttribute",
"(",
"'data-id'",
")",
"//eliminamos el curso seleccionado",
"articuloEliminar",
"=",
"articulosCarrito",
".",
"find",
"(",
"curso",
"=>",
"curso",
".",
"id",
"===",
"dataID",
")",
"if",
"(",
"articuloEliminar",
".",
"cantidad",
">",
"1",
")",
"{",
"articuloEliminar",
".",
"cantidad",
"--",
"articuloEliminar",
".",
"precio",
"=",
"articuloEliminar",
".",
"cantidad",
"*",
"articuloEliminar",
".",
"precioBase",
"}",
"else",
"{",
"articulosCarrito",
"=",
"articulosCarrito",
".",
"filter",
"(",
"curso",
"=>",
"curso",
".",
"id",
"!==",
"dataID",
")",
"}",
"mostrarHTML",
"(",
")",
"}",
"}"
] | [
49,
0
] | [
68,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
() | null | esto es para que walker sepa que funciones son las que tiene que ejecuctar | esto es para que walker sepa que funciones son las que tiene que ejecuctar | function() {
var instance = this,
template = instance.template,
SmartCommentsWalker = instance.SmartCommentsWalker,
default_function,
walkFunctions = template.walkFunctions();
walkFunctions.forEach(function(item, index){
default_function = function(node, parent, fieldName, siblings, index) {
var instance = template,
params = {
node: node,
parent: parent,
fieldName: fieldName,
siblings: siblings,
index: index
};
instance.executeWalk(item.name, params);
};
if(item.func){
//user custom function
default_function = func;
}
SmartCommentsWalker[item.name] = default_function;
});
} | [
"function",
"(",
")",
"{",
"var",
"instance",
"=",
"this",
",",
"template",
"=",
"instance",
".",
"template",
",",
"SmartCommentsWalker",
"=",
"instance",
".",
"SmartCommentsWalker",
",",
"default_function",
",",
"walkFunctions",
"=",
"template",
".",
"walkFunctions",
"(",
")",
";",
"walkFunctions",
".",
"forEach",
"(",
"function",
"(",
"item",
",",
"index",
")",
"{",
"default_function",
"=",
"function",
"(",
"node",
",",
"parent",
",",
"fieldName",
",",
"siblings",
",",
"index",
")",
"{",
"var",
"instance",
"=",
"template",
",",
"params",
"=",
"{",
"node",
":",
"node",
",",
"parent",
":",
"parent",
",",
"fieldName",
":",
"fieldName",
",",
"siblings",
":",
"siblings",
",",
"index",
":",
"index",
"}",
";",
"instance",
".",
"executeWalk",
"(",
"item",
".",
"name",
",",
"params",
")",
";",
"}",
";",
"if",
"(",
"item",
".",
"func",
")",
"{",
"//user custom function",
"default_function",
"=",
"func",
";",
"}",
"SmartCommentsWalker",
"[",
"item",
".",
"name",
"]",
"=",
"default_function",
";",
"}",
")",
";",
"}"
] | [
46,
28
] | [
73,
9
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
filtrarUsuarios | (usuarios, filtro) | null | Función para filtrar los planes de estudios. | Función para filtrar los planes de estudios. | function filtrarUsuarios(usuarios, filtro) {
if (filtro === "") {
return usuarios;
}
return usuarios.filter(
(u) =>
stringsMatch(`${u.nombre} ${u.apellido}`, filtro) ||
stringsMatch(u.matricula, filtro)
);
} | [
"function",
"filtrarUsuarios",
"(",
"usuarios",
",",
"filtro",
")",
"{",
"if",
"(",
"filtro",
"===",
"\"\"",
")",
"{",
"return",
"usuarios",
";",
"}",
"return",
"usuarios",
".",
"filter",
"(",
"(",
"u",
")",
"=>",
"stringsMatch",
"(",
"`",
"${",
"u",
".",
"nombre",
"}",
"${",
"u",
".",
"apellido",
"}",
"`",
",",
"filtro",
")",
"||",
"stringsMatch",
"(",
"u",
".",
"matricula",
",",
"filtro",
")",
")",
";",
"}"
] | [
35,
0
] | [
44,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
CambiarModo | (modo) | null | /*Mantiene la selección del modo en el nav y guarda el modo en el que se queda | /*Mantiene la selección del modo en el nav y guarda el modo en el que se queda | function CambiarModo(modo) {
ModoCambiado = true;
if (comprobarUso()) {
localStorage.setItem("Modo", modo);
var modos = document.getElementsByClassName("boton efectoclick");
for (var i = 0; i < modos.length; i++) {
modos[i].className = " boton";
}
document.getElementById(modo).className += " efectoclick";
tiempo = 0;
} else {
var modos = document.getElementsByClassName("boton efectoclick");
for (var i = 0; i < modos.length; i++) {
modos[i].focus();
}
}
} | [
"function",
"CambiarModo",
"(",
"modo",
")",
"{",
"ModoCambiado",
"=",
"true",
";",
"if",
"(",
"comprobarUso",
"(",
")",
")",
"{",
"localStorage",
".",
"setItem",
"(",
"\"Modo\"",
",",
"modo",
")",
";",
"var",
"modos",
"=",
"document",
".",
"getElementsByClassName",
"(",
"\"boton efectoclick\"",
")",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"modos",
".",
"length",
";",
"i",
"++",
")",
"{",
"modos",
"[",
"i",
"]",
".",
"className",
"=",
"\" boton\"",
";",
"}",
"document",
".",
"getElementById",
"(",
"modo",
")",
".",
"className",
"+=",
"\" efectoclick\"",
";",
"tiempo",
"=",
"0",
";",
"}",
"else",
"{",
"var",
"modos",
"=",
"document",
".",
"getElementsByClassName",
"(",
"\"boton efectoclick\"",
")",
";",
"for",
"(",
"var",
"i",
"=",
"0",
";",
"i",
"<",
"modos",
".",
"length",
";",
"i",
"++",
")",
"{",
"modos",
"[",
"i",
"]",
".",
"focus",
"(",
")",
";",
"}",
"}",
"}"
] | [
37,
0
] | [
53,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
dismissAddAnotherPopup | (win, newId, newRepr) | null | refresh de la edición cuando se vuelve del popup | refresh de la edición cuando se vuelve del popup | function dismissAddAnotherPopup(win, newId, newRepr) {
win.close();
location.reload();
} | [
"function",
"dismissAddAnotherPopup",
"(",
"win",
",",
"newId",
",",
"newRepr",
")",
"{",
"win",
".",
"close",
"(",
")",
";",
"location",
".",
"reload",
"(",
")",
";",
"}"
] | [
201,
0
] | [
204,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
validateUser | (req, res, next) | null | Para acceder a las rutas de peliculas hemos definido middleware para validar al usuario. | Para acceder a las rutas de peliculas hemos definido middleware para validar al usuario. | function validateUser(req, res, next) {
jwt.verify(
req.headers["x-access-token"],
req.app.get("secretKey"),
function (err, decoded) {
if (err) {
res.json({ status: "error", message: err.message, data: null });
} else {
// add user id to request
req.body.userId = decoded.id;
next();
}
}
);
} | [
"function",
"validateUser",
"(",
"req",
",",
"res",
",",
"next",
")",
"{",
"jwt",
".",
"verify",
"(",
"req",
".",
"headers",
"[",
"\"x-access-token\"",
"]",
",",
"req",
".",
"app",
".",
"get",
"(",
"\"secretKey\"",
")",
",",
"function",
"(",
"err",
",",
"decoded",
")",
"{",
"if",
"(",
"err",
")",
"{",
"res",
".",
"json",
"(",
"{",
"status",
":",
"\"error\"",
",",
"message",
":",
"err",
".",
"message",
",",
"data",
":",
"null",
"}",
")",
";",
"}",
"else",
"{",
"// add user id to request",
"req",
".",
"body",
".",
"userId",
"=",
"decoded",
".",
"id",
";",
"next",
"(",
")",
";",
"}",
"}",
")",
";",
"}"
] | [
29,
0
] | [
43,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
ComenzarIngreso | () | null | /*RISING BTL. Empresa dedicada a la toma de datos para realizar estadísticas y censos nos pide realizar una carga de datos validada e ingresada por ventanas emergentes solamente (para evitar hacking y cargas maliciosas) y luego asignarla a cuadros de textos.
12. Los datos requeridos son los siguientes:
A. Edad, entre 18 y 90 años inclusive.
B. Sexo, “M” para masculino y “F” para femenino
C. Estado civil, 1-para soltero, 2-para casados, 3-para divorciados y 4-para viudos
D. Sueldo bruto, no menor a 8000.
E. Número de legajo, numérico de 4 cifras, sin ceros a la izquierda.
F. Nacionalidad, “A” para argentinos, “E” para extranjeros, “N” para nacionalizados.
| /*RISING BTL. Empresa dedicada a la toma de datos para realizar estadísticas y censos nos pide realizar una carga de datos validada e ingresada por ventanas emergentes solamente (para evitar hacking y cargas maliciosas) y luego asignarla a cuadros de textos.
12. Los datos requeridos son los siguientes:
A. Edad, entre 18 y 90 años inclusive.
B. Sexo, “M” para masculino y “F” para femenino
C. Estado civil, 1-para soltero, 2-para casados, 3-para divorciados y 4-para viudos
D. Sueldo bruto, no menor a 8000.
E. Número de legajo, numérico de 4 cifras, sin ceros a la izquierda.
F. Nacionalidad, “A” para argentinos, “E” para extranjeros, “N” para nacionalizados.
| function ComenzarIngreso ()
{
} | [
"function",
"ComenzarIngreso",
"(",
")",
"{",
"}"
] | [
9,
0
] | [
12,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Producto | () | null | En enviar comentarios se debe hacer la petición al Back-End para añadir el comentario | En enviar comentarios se debe hacer la petición al Back-End para añadir el comentario | function Producto () {
const [value, setValue] = React.useState(2);
return (
<div>
<br></br>
<br></br>
<br></br>
<br></br>
<Container maxWidth="sm">
<Grid
container
direction="row"
justify="center"
alignItems="stretch"
>
<Typography variant="h2" component="h2" gutterBottom>
Dejanos tu opinión acerca de los servicios
</Typography>
</Grid>
<Divider />
<br />
<Grid
container
direction="column"
justify="center"
alignItems="center"
>
<SimpleDialog />
</Grid>
<Divider />
<br></br>
<Grid container direction="row" justify="center" alignItems="stretch">
<TextField
id="outlined-textarea"
label="Comentario"
placeholder="Ingrese su comentario"
multiline
variant="outlined"
/>
</Grid>
<br></br>
<Divider />
<br></br>
<Grid
container
direction="column"
justify="center"
alignItems="center"
>
<Box component="fieldset" mb={3} borderColor="transparent">
<Rating
name="simple-controlled"
value={value}
onChange={(event, newValue) => {
/* istanbul ignore next */
setValue(newValue);
}}
/>
</Box>
</Grid>
<Divider />
<br></br>
<Grid
container
direction="column"
justify="center"
alignItems="center"
>
<Button>
Enviar comentarios
</Button>
<br />
<Button
variant="contained"
color="primary"
href="https://web.whatsapp.com/"
>
Link a WhatsApp para hablar con el Vendedor
</Button>
</Grid>
</Container>
<br></br>
<br></br>
<br></br>
<br></br>
</div>
);
} | [
"function",
"Producto",
"(",
")",
"{",
"const",
"[",
"value",
",",
"setValue",
"]",
"=",
"React",
".",
"useState",
"(",
"2",
")",
";",
"return",
"(",
"<",
"div",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"Container",
"maxWidth",
"=",
"\"sm\"",
">",
"\n\t\t",
"<",
"Grid",
"container",
"direction",
"=",
"\"row\"",
"justify",
"=",
"\"center\"",
"alignItems",
"=",
"\"stretch\"",
">",
"\n\t\t",
"<",
"Typography",
"variant",
"=",
"\"h2\"",
"component",
"=",
"\"h2\"",
"gutterBottom",
">",
"\n Dejanos tu opinión acerca de los servicios\n ",
"<",
"/",
"Typography",
">",
"\n\t ",
"<",
"/",
"Grid",
">",
"\n\t ",
"<",
"Divider",
"/",
">",
"\n\t ",
"<",
"br",
"/",
">",
"\n ",
"<",
"Grid",
"container",
"direction",
"=",
"\"column\"",
"justify",
"=",
"\"center\"",
"alignItems",
"=",
"\"center\"",
">",
"\n ",
"<",
"SimpleDialog",
"/",
">",
"\n ",
"<",
"/",
"Grid",
">",
"\n\t\t ",
"<",
"Divider",
"/",
">",
"\n\t\t ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"Grid",
"container",
"direction",
"=",
"\"row\"",
"justify",
"=",
"\"center\"",
"alignItems",
"=",
"\"stretch\"",
">",
"\n ",
"<",
"TextField",
"id",
"=",
"\"outlined-textarea\"",
"label",
"=",
"\"Comentario\"",
"placeholder",
"=",
"\"Ingrese su comentario\"",
"multiline",
"variant",
"=",
"\"outlined\"",
"/",
">",
"\n ",
"<",
"/",
"Grid",
">",
"\n\t\t ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n\t\t ",
"<",
"Divider",
"/",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"Grid",
"container",
"direction",
"=",
"\"column\"",
"justify",
"=",
"\"center\"",
"alignItems",
"=",
"\"center\"",
">",
"\n\t\t ",
"<",
"Box",
"component",
"=",
"\"fieldset\"",
"mb",
"=",
"{",
"3",
"}",
"borderColor",
"=",
"\"transparent\"",
">",
"\n ",
"<",
"Rating",
"name",
"=",
"\"simple-controlled\"",
"value",
"=",
"{",
"value",
"}",
"onChange",
"=",
"{",
"(",
"event",
",",
"newValue",
")",
"=>",
"{",
"/* istanbul ignore next */",
"setValue",
"(",
"newValue",
")",
";",
"}",
"}",
"/",
">",
"\n ",
"<",
"/",
"Box",
">",
"\n ",
"<",
"/",
"Grid",
">",
"\n\t\t ",
"<",
"Divider",
"/",
">",
"\n\t\t ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"Grid",
"container",
"direction",
"=",
"\"column\"",
"justify",
"=",
"\"center\"",
"alignItems",
"=",
"\"center\"",
">",
"\n\t\t \t",
"<",
"Button",
">",
"\n\t\t\t Enviar comentarios\n\t\t\t",
"<",
"/",
"Button",
">",
"\n\t\t\t",
"<",
"br",
"/",
">",
"\n ",
"<",
"Button",
"variant",
"=",
"\"contained\"",
"color",
"=",
"\"primary\"",
"href",
"=",
"\"https://web.whatsapp.com/\"",
">",
"\n Link a WhatsApp para hablar con el Vendedor\n ",
"<",
"/",
"Button",
">",
"\n ",
"<",
"/",
"Grid",
">",
"\n ",
"<",
"/",
"Container",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"br",
">",
"<",
"/",
"br",
">",
"\n ",
"<",
"/",
"div",
">",
")",
";",
"}"
] | [
14,
0
] | [
102,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
remove_choice | (frontier) | null | remueve y retorna el costo | remueve y retorna el costo | function remove_choice(frontier) {
var index = find_min(frontier, function(path){
return path.cost;
});
var it = frontier[index];
frontier.splice(index, 1); // quita
return it;
} | [
"function",
"remove_choice",
"(",
"frontier",
")",
"{",
"var",
"index",
"=",
"find_min",
"(",
"frontier",
",",
"function",
"(",
"path",
")",
"{",
"return",
"path",
".",
"cost",
";",
"}",
")",
";",
"var",
"it",
"=",
"frontier",
"[",
"index",
"]",
";",
"frontier",
".",
"splice",
"(",
"index",
",",
"1",
")",
";",
"// quita",
"return",
"it",
";",
"}"
] | [
44,
0
] | [
51,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
handleEachSerie | (event) | null | Ahora cada vez que haga click en una serie, quiero que se cambie el color | Ahora cada vez que haga click en una serie, quiero que se cambie el color | function handleEachSerie(event) {
const selectedShow = event.currentTarget;
const myFavouriteShow = event.currentTarget.id;
const serieHighlighted = series.find((eachData) => {
return eachData.show.id === parseInt(myFavouriteShow);
});
//creamos un nuevo array donde meteremos los favoritos(la ponemos como global)
//NOTA SUPER IMPORTANTE: .find devuelve el primer objeto que encuentra que cumpla esa condición (en este caso que el id sea igual al id del elemento clickado)el id al ser unico, no tiene que seguir buscando tras encontrar el primero.(serie.show.id===parseInt(myFavouriteShow, que contiene el valor del elemento clickado))
const favouriteIsInVipSection = favourites.findIndex((eachItem) => {
return eachItem.show.id === parseInt(myFavouriteShow);
});
//console.log(favouriteIsInVipSection);
if (favouriteIsInVipSection === -1) {
favourites.push(serieHighlighted);
} else {
favourites.splice(favouriteIsInVipSection, 1);
}
setInLocalStorage();
addFavouritesInVipSection();
} | [
"function",
"handleEachSerie",
"(",
"event",
")",
"{",
"const",
"selectedShow",
"=",
"event",
".",
"currentTarget",
";",
"const",
"myFavouriteShow",
"=",
"event",
".",
"currentTarget",
".",
"id",
";",
"const",
"serieHighlighted",
"=",
"series",
".",
"find",
"(",
"(",
"eachData",
")",
"=>",
"{",
"return",
"eachData",
".",
"show",
".",
"id",
"===",
"parseInt",
"(",
"myFavouriteShow",
")",
";",
"}",
")",
";",
"//creamos un nuevo array donde meteremos los favoritos(la ponemos como global)",
"//NOTA SUPER IMPORTANTE: .find devuelve el primer objeto que encuentra que cumpla esa condición (en este caso que el id sea igual al id del elemento clickado)el id al ser unico, no tiene que seguir buscando tras encontrar el primero.(serie.show.id===parseInt(myFavouriteShow, que contiene el valor del elemento clickado))",
"const",
"favouriteIsInVipSection",
"=",
"favourites",
".",
"findIndex",
"(",
"(",
"eachItem",
")",
"=>",
"{",
"return",
"eachItem",
".",
"show",
".",
"id",
"===",
"parseInt",
"(",
"myFavouriteShow",
")",
";",
"}",
")",
";",
"//console.log(favouriteIsInVipSection);",
"if",
"(",
"favouriteIsInVipSection",
"===",
"-",
"1",
")",
"{",
"favourites",
".",
"push",
"(",
"serieHighlighted",
")",
";",
"}",
"else",
"{",
"favourites",
".",
"splice",
"(",
"favouriteIsInVipSection",
",",
"1",
")",
";",
"}",
"setInLocalStorage",
"(",
")",
";",
"addFavouritesInVipSection",
"(",
")",
";",
"}"
] | [
70,
0
] | [
90,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Mayus | (e) | null | METODOS NECESARIOS funcion para volver mayusculas | METODOS NECESARIOS funcion para volver mayusculas | function Mayus(e) {
e.value = e.value.toUpperCase();
} | [
"function",
"Mayus",
"(",
"e",
")",
"{",
"e",
".",
"value",
"=",
"e",
".",
"value",
".",
"toUpperCase",
"(",
")",
";",
"}"
] | [
224,
0
] | [
226,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
PriorityQueue | () | null | Cola de prioridad del paquete | Cola de prioridad del paquete | function PriorityQueue(){
// Para guardar los datos, encapsule una clase, la clase interna
function QueueElement(element, priority){
this,element = element;
this.priority = priority;
}
// Atributos del paquete
this.items = [];
// 1. Implementar el método de inserción
PriorityQueue.prototype.enqueue = function(element, priority){
// 1. Crear objeto QueueElement
let queueElement = new QueueElement(element, priority);
// 2. Determinar si la cola actual está vacía
if(this.items.length == 0){
this.items.push(queueElement);
} else{
let flag = false;
for(let i =0 ; i< this.items.length; i++){
if(queueElement.priority < this.items[i].priority){
this.items.splice(i,0,queueElement);
flag = true;
break;
}
}
if(!flag){
this.items.push(queueElement);
}
}
}
// 2. Eliminar elementos de front-end de la cola
PriorityQueue.prototype.dequeue = function(){
return this.items.shift()
}
// 3. Ver los elementos de la interfaz
PriorityQueue.prototype.front = function(){
return this.items[0];
}
// 4. Comprueba si la cola está vacía
PriorityQueue.prototype.isEmpty = function(){
return this.items.length == 0;
}
// 5. Ver el número de elementos en la cola
PriorityQueue.prototype.size = function(){
return this.items.length;
}
//6.toString método
PriorityQueue.prototype.toString = function(){
let resultString = '';
for(let i = 0; i < this.items.length; i++){
resultString += this.items[i] + ',';
}
return resultString;
}
} | [
"function",
"PriorityQueue",
"(",
")",
"{",
"// Para guardar los datos, encapsule una clase, la clase interna",
"function",
"QueueElement",
"(",
"element",
",",
"priority",
")",
"{",
"this",
",",
"element",
"=",
"element",
";",
"this",
".",
"priority",
"=",
"priority",
";",
"}",
"// Atributos del paquete",
"this",
".",
"items",
"=",
"[",
"]",
";",
"// 1. Implementar el método de inserción",
"PriorityQueue",
".",
"prototype",
".",
"enqueue",
"=",
"function",
"(",
"element",
",",
"priority",
")",
"{",
"// 1. Crear objeto QueueElement",
"let",
"queueElement",
"=",
"new",
"QueueElement",
"(",
"element",
",",
"priority",
")",
";",
"// 2. Determinar si la cola actual está vacía",
"if",
"(",
"this",
".",
"items",
".",
"length",
"==",
"0",
")",
"{",
"this",
".",
"items",
".",
"push",
"(",
"queueElement",
")",
";",
"}",
"else",
"{",
"let",
"flag",
"=",
"false",
";",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"this",
".",
"items",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"queueElement",
".",
"priority",
"<",
"this",
".",
"items",
"[",
"i",
"]",
".",
"priority",
")",
"{",
"this",
".",
"items",
".",
"splice",
"(",
"i",
",",
"0",
",",
"queueElement",
")",
";",
"flag",
"=",
"true",
";",
"break",
";",
"}",
"}",
"if",
"(",
"!",
"flag",
")",
"{",
"this",
".",
"items",
".",
"push",
"(",
"queueElement",
")",
";",
"}",
"}",
"}",
"// 2. Eliminar elementos de front-end de la cola",
"PriorityQueue",
".",
"prototype",
".",
"dequeue",
"=",
"function",
"(",
")",
"{",
"return",
"this",
".",
"items",
".",
"shift",
"(",
")",
"}",
"// 3. Ver los elementos de la interfaz",
"PriorityQueue",
".",
"prototype",
".",
"front",
"=",
"function",
"(",
")",
"{",
"return",
"this",
".",
"items",
"[",
"0",
"]",
";",
"}",
"// 4. Comprueba si la cola está vacía",
"PriorityQueue",
".",
"prototype",
".",
"isEmpty",
"=",
"function",
"(",
")",
"{",
"return",
"this",
".",
"items",
".",
"length",
"==",
"0",
";",
"}",
"// 5. Ver el número de elementos en la cola",
"PriorityQueue",
".",
"prototype",
".",
"size",
"=",
"function",
"(",
")",
"{",
"return",
"this",
".",
"items",
".",
"length",
";",
"}",
"//6.toString método",
"PriorityQueue",
".",
"prototype",
".",
"toString",
"=",
"function",
"(",
")",
"{",
"let",
"resultString",
"=",
"''",
";",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"this",
".",
"items",
".",
"length",
";",
"i",
"++",
")",
"{",
"resultString",
"+=",
"this",
".",
"items",
"[",
"i",
"]",
"+",
"','",
";",
"}",
"return",
"resultString",
";",
"}",
"}"
] | [
1,
4
] | [
58,
5
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
init | () | null | funcion que se ejecuta iniciando | funcion que se ejecuta iniciando | function init(){
mostarform();
$.post("http://172.16.32.209/general/information.html?kind=item", function(r){
var html = r;
var res = r.split('<div class="contentsGroup">');
console.log(res);
});
} | [
"function",
"init",
"(",
")",
"{",
"mostarform",
"(",
")",
";",
"$",
".",
"post",
"(",
"\"http://172.16.32.209/general/information.html?kind=item\"",
",",
"function",
"(",
"r",
")",
"{",
"var",
"html",
"=",
"r",
";",
"var",
"res",
"=",
"r",
".",
"split",
"(",
"'<div class=\"contentsGroup\">'",
")",
";",
"console",
".",
"log",
"(",
"res",
")",
";",
"}",
")",
";",
"}"
] | [
5,
0
] | [
14,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
finishOrder | () | null | Finaliza el pedido actualizando los valores | Finaliza el pedido actualizando los valores | function finishOrder() {
var currentdate = new Date();
let aux ={
id: idpedido,
porcentaje_oferta: descuento,
descrip_pedido: descripcion,
precio_pedido: newTotal,
fecha_pedido: currentdate.toISOString()
}
axios
.post("http://127.0.0.1:8000/main/api/Pedido/", aux)
.then(res => console.log(res))
.catch(err => console.log(err));
setOrder([]) // Reinicia el arreglo del pedido
setTotal(0)
setNewTotal(0)
setDescuento(0)
setInitModal(!initModal) // Se abre el modal inicial para iniciar una nueva orden
} | [
"function",
"finishOrder",
"(",
")",
"{",
"var",
"currentdate",
"=",
"new",
"Date",
"(",
")",
";",
"let",
"aux",
"=",
"{",
"id",
":",
"idpedido",
",",
"porcentaje_oferta",
":",
"descuento",
",",
"descrip_pedido",
":",
"descripcion",
",",
"precio_pedido",
":",
"newTotal",
",",
"fecha_pedido",
":",
"currentdate",
".",
"toISOString",
"(",
")",
"}",
"axios",
".",
"post",
"(",
"\"http://127.0.0.1:8000/main/api/Pedido/\"",
",",
"aux",
")",
".",
"then",
"(",
"res",
"=>",
"console",
".",
"log",
"(",
"res",
")",
")",
".",
"catch",
"(",
"err",
"=>",
"console",
".",
"log",
"(",
"err",
")",
")",
";",
"setOrder",
"(",
"[",
"]",
")",
"// Reinicia el arreglo del pedido",
"setTotal",
"(",
"0",
")",
"setNewTotal",
"(",
"0",
")",
"setDescuento",
"(",
"0",
")",
"setInitModal",
"(",
"!",
"initModal",
")",
"// Se abre el modal inicial para iniciar una nueva orden",
"}"
] | [
272,
2
] | [
291,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | statement_block |
Edit | (id) | null | captura los datos | captura los datos | function Edit(id) {
$.ajax({
url: "Store/{Store}/edit",
method: 'get',
data: {
id: id
},
success: function (result) {
show_data(result);
},
error: function (result) {
toastr.error(result + ' CONTACTE A SU PROVEEDOR POR FAVOR.');
console.log(result);
},
});
} | [
"function",
"Edit",
"(",
"id",
")",
"{",
"$",
".",
"ajax",
"(",
"{",
"url",
":",
"\"Store/{Store}/edit\"",
",",
"method",
":",
"'get'",
",",
"data",
":",
"{",
"id",
":",
"id",
"}",
",",
"success",
":",
"function",
"(",
"result",
")",
"{",
"show_data",
"(",
"result",
")",
";",
"}",
",",
"error",
":",
"function",
"(",
"result",
")",
"{",
"toastr",
".",
"error",
"(",
"result",
"+",
"' CONTACTE A SU PROVEEDOR POR FAVOR.'",
")",
";",
"console",
".",
"log",
"(",
"result",
")",
";",
"}",
",",
"}",
")",
";",
"}"
] | [
116,
0
] | [
131,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
getLocalStorage | () | null | Buscar en localStorage para no hacer petición al servidor cada vez que cargue la página | Buscar en localStorage para no hacer petición al servidor cada vez que cargue la página | function getLocalStorage() {
//obtenemos lo que hay en el LS
const localStorageFav = localStorage.getItem("favorites");
//comprobar si son datos válidos, si es la primera vez que entro será null
if (localStorageFav === null) {
//al no tener datos, llamo a la Api
getFromApi();
} else {
//si hay datos, los parseo a un array y lo guard oen la variable global
const arrayFav = JSON.parse(localStorageFav);
favorites = arrayFav;
//cada vez que modifico el array vuelvo a pintar
renderFavourite();
}
} | [
"function",
"getLocalStorage",
"(",
")",
"{",
"//obtenemos lo que hay en el LS",
"const",
"localStorageFav",
"=",
"localStorage",
".",
"getItem",
"(",
"\"favorites\"",
")",
";",
"//comprobar si son datos válidos, si es la primera vez que entro será null",
"if",
"(",
"localStorageFav",
"===",
"null",
")",
"{",
"//al no tener datos, llamo a la Api",
"getFromApi",
"(",
")",
";",
"}",
"else",
"{",
"//si hay datos, los parseo a un array y lo guard oen la variable global",
"const",
"arrayFav",
"=",
"JSON",
".",
"parse",
"(",
"localStorageFav",
")",
";",
"favorites",
"=",
"arrayFav",
";",
"//cada vez que modifico el array vuelvo a pintar",
"renderFavourite",
"(",
")",
";",
"}",
"}"
] | [
128,
0
] | [
142,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
showPasswordConfirmation | () | null | Mostrar la Contraseña de Confirmación | Mostrar la Contraseña de Confirmación | function showPasswordConfirmation() {
var change = document.getElementById('new-password-confirm');
$('#show_password_confirmation').unbind('click').click(function () {
if (change.type === "password") {
change.type = "text";
$('i').removeClass('fa fa-eye-slash').addClass('fa fa-eye');
} else {
change.type = "password";
$('i').removeClass('fa fa-eye').addClass('fa fa-eye-slash');
}
});
} | [
"function",
"showPasswordConfirmation",
"(",
")",
"{",
"var",
"change",
"=",
"document",
".",
"getElementById",
"(",
"'new-password-confirm'",
")",
";",
"$",
"(",
"'#show_password_confirmation'",
")",
".",
"unbind",
"(",
"'click'",
")",
".",
"click",
"(",
"function",
"(",
")",
"{",
"if",
"(",
"change",
".",
"type",
"===",
"\"password\"",
")",
"{",
"change",
".",
"type",
"=",
"\"text\"",
";",
"$",
"(",
"'i'",
")",
".",
"removeClass",
"(",
"'fa fa-eye-slash'",
")",
".",
"addClass",
"(",
"'fa fa-eye'",
")",
";",
"}",
"else",
"{",
"change",
".",
"type",
"=",
"\"password\"",
";",
"$",
"(",
"'i'",
")",
".",
"removeClass",
"(",
"'fa fa-eye'",
")",
".",
"addClass",
"(",
"'fa fa-eye-slash'",
")",
";",
"}",
"}",
")",
";",
"}"
] | [
74,
4
] | [
85,
5
] | null | javascript | es | ['es', 'es', 'es'] | True | true | statement_block |
generate | () | null | El proceso de crear una nueva generación | El proceso de crear una nueva generación | function generate() {
//Primero crear un arreglo vacío para los nuevos valores
let nextgen = Array(cells.length);
// Por cada lugar, determinar el nuevo estado según el examen del estado actual y de los estados vecinos
// Ignorar bordes que solo tienen un vecino
for (let i = 1; i < cells.length-1; i++) {
let left = cells[i-1]; // Estado del vecino izquierdo
let me = cells[i]; // Estado actual
let right = cells[i+1]; // Estado del vecino derecho
nextgen[i] = rules(left, me, right); // Calcular el estado siguiente generación basado en el conjunto de reglas
}
// La generación actual es la nueva generación
cells = nextgen;
generation++;
} | [
"function",
"generate",
"(",
")",
"{",
"//Primero crear un arreglo vacío para los nuevos valores",
"let",
"nextgen",
"=",
"Array",
"(",
"cells",
".",
"length",
")",
";",
"// Por cada lugar, determinar el nuevo estado según el examen del estado actual y de los estados vecinos",
"// Ignorar bordes que solo tienen un vecino",
"for",
"(",
"let",
"i",
"=",
"1",
";",
"i",
"<",
"cells",
".",
"length",
"-",
"1",
";",
"i",
"++",
")",
"{",
"let",
"left",
"=",
"cells",
"[",
"i",
"-",
"1",
"]",
";",
"// Estado del vecino izquierdo",
"let",
"me",
"=",
"cells",
"[",
"i",
"]",
";",
"// Estado actual",
"let",
"right",
"=",
"cells",
"[",
"i",
"+",
"1",
"]",
";",
"// Estado del vecino derecho",
"nextgen",
"[",
"i",
"]",
"=",
"rules",
"(",
"left",
",",
"me",
",",
"right",
")",
";",
"// Calcular el estado siguiente generación basado en el conjunto de reglas",
"}",
"// La generación actual es la nueva generación",
"cells",
"=",
"nextgen",
";",
"generation",
"++",
";",
"}"
] | [
42,
0
] | [
56,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
soloNumeros | (e) | null | Validaciones Numeros | Validaciones Numeros | function soloNumeros(e) {
key = e.keyCode || e.which;
teclado = String.fromCharCode(key);
numeros = "0123456789";
especiales = ["8","9","37","38","46"]; //array especiales
teclado_especial = false;
for(var i in especiales)
{
if(key == especiales[i])
{
teclado_especial = true;
}
}
if(numeros.indexOf(teclado) == -1 && !teclado_especial){
return false;
}
} | [
"function",
"soloNumeros",
"(",
"e",
")",
"{",
"key",
"=",
"e",
".",
"keyCode",
"||",
"e",
".",
"which",
";",
"teclado",
"=",
"String",
".",
"fromCharCode",
"(",
"key",
")",
";",
"numeros",
"=",
"\"0123456789\"",
";",
"especiales",
"=",
"[",
"\"8\"",
",",
"\"9\"",
",",
"\"37\"",
",",
"\"38\"",
",",
"\"46\"",
"]",
";",
"//array especiales",
"teclado_especial",
"=",
"false",
";",
"for",
"(",
"var",
"i",
"in",
"especiales",
")",
"{",
"if",
"(",
"key",
"==",
"especiales",
"[",
"i",
"]",
")",
"{",
"teclado_especial",
"=",
"true",
";",
"}",
"}",
"if",
"(",
"numeros",
".",
"indexOf",
"(",
"teclado",
")",
"==",
"-",
"1",
"&&",
"!",
"teclado_especial",
")",
"{",
"return",
"false",
";",
"}",
"}"
] | [
627,
0
] | [
647,
1
] | null | javascript | es | ['es', 'es', 'es'] | False | true | program |
isPrime | (number) | null | La función booleana devuelve true/false en dependencia de si el número pasado es o no primo | La función booleana devuelve true/false en dependencia de si el número pasado es o no primo | function isPrime(number){
for (i = 2; i <= number; i++){
if(number % i === 0 && number!= i){
return false;
}
}
return true;
} | [
"function",
"isPrime",
"(",
"number",
")",
"{",
"for",
"(",
"i",
"=",
"2",
";",
"i",
"<=",
"number",
";",
"i",
"++",
")",
"{",
"if",
"(",
"number",
"%",
"i",
"===",
"0",
"&&",
"number",
"!=",
"i",
")",
"{",
"return",
"false",
";",
"}",
"}",
"return",
"true",
";",
"}"
] | [
3,
2
] | [
11,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
detectar | () | null | funcion para detectar el id y la plataforma (youtube, vimeo o dailymotion) de los videos | funcion para detectar el id y la plataforma (youtube, vimeo o dailymotion) de los videos | function detectar(){
var getDialog = document.getElementsByClassName('cke_dialog_contents').item(0);
var url = getDialog.getElementsByTagName('input').item(0).value;
var id = '';
var reproductor = '';
var url_comprobar = '';
if(url.indexOf('youtu.be') >= 0){
reproductor = 'youtube';
id = url.substring(url.lastIndexOf("/")+1, url.length);
}
if(url.indexOf("youtube") >= 0){
reproductor = 'youtube'
if(url.indexOf("</iframe>") >= 0){
var fin = url.substring(url.indexOf("embed/")+6, url.length)
id = fin.substring(fin.indexOf('"'), 0);
}else{
if(url.indexOf("&") >= 0)
id = url.substring(url.indexOf("?v=")+3, url.indexOf("&"));
else
id = url.substring(url.indexOf("?v=")+3, url.length);
}
url_comprobar = "https://gdata.youtube.com/feeds/api/videos/" + id + "?v=2&alt=json";
//"https://gdata.youtube.com/feeds/api/videos/" + id + "?v=2&alt=json"
}
if(url.indexOf("vimeo") >= 0){
reproductor = 'vimeo'
if(url.indexOf("</iframe>") >= 0){
var fin = url.substring(url.lastIndexOf('vimeo.com/"')+6, url.indexOf('>'))
id = fin.substring(fin.lastIndexOf('/')+1, fin.indexOf('"',fin.lastIndexOf('/')+1))
}else{
id = url.substring(url.lastIndexOf("/")+1, url.length)
}
url_comprobar = 'http://vimeo.com/api/v2/video/' + id + '.json';
//'http://vimeo.com/api/v2/video/' + video_id + '.json';
}
if(url.indexOf('dai.ly') >= 0){
reproductor = 'dailymotion';
id = url.substring(url.lastIndexOf("/")+1, url.length);
}
if(url.indexOf("dailymotion") >= 0){
reproductor = 'dailymotion';
if(url.indexOf("</iframe>") >= 0){
var fin = url.substring(url.indexOf('dailymotion.com/')+16, url.indexOf('></iframe>'))
id = fin.substring(fin.lastIndexOf('/')+1, fin.lastIndexOf('"'))
}else{
if(url.indexOf('_') >= 0)
id = url.substring(url.lastIndexOf('/')+1, url.indexOf('_'))
else
id = url.substring(url.lastIndexOf('/')+1, url.length);
}
url_comprobar = 'https://api.dailymotion.com/video/' + id;
// https://api.dailymotion.com/video/x26ezrb
}
return {'reproductor':reproductor,'id_video':id};
} | [
"function",
"detectar",
"(",
")",
"{",
"var",
"getDialog",
"=",
"document",
".",
"getElementsByClassName",
"(",
"'cke_dialog_contents'",
")",
".",
"item",
"(",
"0",
")",
";",
"var",
"url",
"=",
"getDialog",
".",
"getElementsByTagName",
"(",
"'input'",
")",
".",
"item",
"(",
"0",
")",
".",
"value",
";",
"var",
"id",
"=",
"''",
";",
"var",
"reproductor",
"=",
"''",
";",
"var",
"url_comprobar",
"=",
"''",
";",
"if",
"(",
"url",
".",
"indexOf",
"(",
"'youtu.be'",
")",
">=",
"0",
")",
"{",
"reproductor",
"=",
"'youtube'",
";",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"\"/\"",
")",
"+",
"1",
",",
"url",
".",
"length",
")",
";",
"}",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"youtube\"",
")",
">=",
"0",
")",
"{",
"reproductor",
"=",
"'youtube'",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"</iframe>\"",
")",
">=",
"0",
")",
"{",
"var",
"fin",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"indexOf",
"(",
"\"embed/\"",
")",
"+",
"6",
",",
"url",
".",
"length",
")",
"id",
"=",
"fin",
".",
"substring",
"(",
"fin",
".",
"indexOf",
"(",
"'\"'",
")",
",",
"0",
")",
";",
"}",
"else",
"{",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"&\"",
")",
">=",
"0",
")",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"indexOf",
"(",
"\"?v=\"",
")",
"+",
"3",
",",
"url",
".",
"indexOf",
"(",
"\"&\"",
")",
")",
";",
"else",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"indexOf",
"(",
"\"?v=\"",
")",
"+",
"3",
",",
"url",
".",
"length",
")",
";",
"}",
"url_comprobar",
"=",
"\"https://gdata.youtube.com/feeds/api/videos/\"",
"+",
"id",
"+",
"\"?v=2&alt=json\"",
";",
"//\"https://gdata.youtube.com/feeds/api/videos/\" + id + \"?v=2&alt=json\"",
"}",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"vimeo\"",
")",
">=",
"0",
")",
"{",
"reproductor",
"=",
"'vimeo'",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"</iframe>\"",
")",
">=",
"0",
")",
"{",
"var",
"fin",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"'vimeo.com/\"'",
")",
"+",
"6",
",",
"url",
".",
"indexOf",
"(",
"'>'",
")",
")",
"id",
"=",
"fin",
".",
"substring",
"(",
"fin",
".",
"lastIndexOf",
"(",
"'/'",
")",
"+",
"1",
",",
"fin",
".",
"indexOf",
"(",
"'\"'",
",",
"fin",
".",
"lastIndexOf",
"(",
"'/'",
")",
"+",
"1",
")",
")",
"}",
"else",
"{",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"\"/\"",
")",
"+",
"1",
",",
"url",
".",
"length",
")",
"}",
"url_comprobar",
"=",
"'http://vimeo.com/api/v2/video/'",
"+",
"id",
"+",
"'.json'",
";",
"//'http://vimeo.com/api/v2/video/' + video_id + '.json';",
"}",
"if",
"(",
"url",
".",
"indexOf",
"(",
"'dai.ly'",
")",
">=",
"0",
")",
"{",
"reproductor",
"=",
"'dailymotion'",
";",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"\"/\"",
")",
"+",
"1",
",",
"url",
".",
"length",
")",
";",
"}",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"dailymotion\"",
")",
">=",
"0",
")",
"{",
"reproductor",
"=",
"'dailymotion'",
";",
"if",
"(",
"url",
".",
"indexOf",
"(",
"\"</iframe>\"",
")",
">=",
"0",
")",
"{",
"var",
"fin",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"indexOf",
"(",
"'dailymotion.com/'",
")",
"+",
"16",
",",
"url",
".",
"indexOf",
"(",
"'></iframe>'",
")",
")",
"id",
"=",
"fin",
".",
"substring",
"(",
"fin",
".",
"lastIndexOf",
"(",
"'/'",
")",
"+",
"1",
",",
"fin",
".",
"lastIndexOf",
"(",
"'\"'",
")",
")",
"}",
"else",
"{",
"if",
"(",
"url",
".",
"indexOf",
"(",
"'_'",
")",
">=",
"0",
")",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"'/'",
")",
"+",
"1",
",",
"url",
".",
"indexOf",
"(",
"'_'",
")",
")",
"else",
"id",
"=",
"url",
".",
"substring",
"(",
"url",
".",
"lastIndexOf",
"(",
"'/'",
")",
"+",
"1",
",",
"url",
".",
"length",
")",
";",
"}",
"url_comprobar",
"=",
"'https://api.dailymotion.com/video/'",
"+",
"id",
";",
"// https://api.dailymotion.com/video/x26ezrb",
"}",
"return",
"{",
"'reproductor'",
":",
"reproductor",
",",
"'id_video'",
":",
"id",
"}",
";",
"}"
] | [
87,
0
] | [
142,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
valida | (text) | null | valida que el campo no este vacio y no tenga solo espacios en blanco | valida que el campo no este vacio y no tenga solo espacios en blanco | function valida(text) {
if( vacio(text) == false ) {
return false;
} else {
return true;
}
} | [
"function",
"valida",
"(",
"text",
")",
"{",
"if",
"(",
"vacio",
"(",
"text",
")",
"==",
"false",
")",
"{",
"return",
"false",
";",
"}",
"else",
"{",
"return",
"true",
";",
"}",
"}"
] | [
271,
0
] | [
278,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
validEmail | (email) | null | Función para validar los emails | Función para validar los emails | function validEmail(email){
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if (re.test(String(email).toLowerCase())) {
return true;
} else {
return false;
}
} | [
"function",
"validEmail",
"(",
"email",
")",
"{",
"var",
"re",
"=",
"/",
"^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$",
"/",
";",
"if",
"(",
"re",
".",
"test",
"(",
"String",
"(",
"email",
")",
".",
"toLowerCase",
"(",
")",
")",
")",
"{",
"return",
"true",
";",
"}",
"else",
"{",
"return",
"false",
";",
"}",
"}"
] | [
18,
0
] | [
25,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
reqconcepto | (cheked) | null | checkbox requiere solicitud interempresas | checkbox requiere solicitud interempresas | function reqconcepto(cheked) {
rconcepto = document.getElementById('conceptostable');
var checkfield = cheked.checked;
console.log(checkfield);
if (checkfield == true){
rconcepto.style.display ='block';
document.getElementById("concepto").value = "SOLICITUD INTEREMPRESAS";
$('#cantidad').prop('required',true);
$('#unidadmedidasat').prop('required',true);
$('#cantidad').prop('required',true);
$('#claveprod').prop('required',true);
$('#descripcion').prop('required',true);
$('#montoconcepto').prop('required',true);
$('#csubtotal').prop('required',true);
$('#civa').prop('required',true);
$('#Total').prop('required',true);
$('#catemp_id').prop('required',true);
}
else
{
rconcepto.style.display = 'none';
$('#cantidad').prop('required',false);
$('#unidadmedidasat').prop('required',false);
$('#cantidad').prop('required',false);
$('#claveprod').prop('required',false);
$('#descripcion').prop('required',false);
$('#montoconcepto').prop('required',false);
$('#csubtotal').prop('required',false);
$('#civa').prop('required',false);
$('#Total').prop('required',false);
$('#catemp_id').prop('required',false);
}
} | [
"function",
"reqconcepto",
"(",
"cheked",
")",
"{",
"rconcepto",
"=",
"document",
".",
"getElementById",
"(",
"'conceptostable'",
")",
";",
"var",
"checkfield",
"=",
"cheked",
".",
"checked",
";",
"console",
".",
"log",
"(",
"checkfield",
")",
";",
"if",
"(",
"checkfield",
"==",
"true",
")",
"{",
"rconcepto",
".",
"style",
".",
"display",
"=",
"'block'",
";",
"document",
".",
"getElementById",
"(",
"\"concepto\"",
")",
".",
"value",
"=",
"\"SOLICITUD INTEREMPRESAS\"",
";",
"$",
"(",
"'#cantidad'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#unidadmedidasat'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#cantidad'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#claveprod'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#descripcion'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#montoconcepto'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#csubtotal'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#civa'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#Total'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"$",
"(",
"'#catemp_id'",
")",
".",
"prop",
"(",
"'required'",
",",
"true",
")",
";",
"}",
"else",
"{",
"rconcepto",
".",
"style",
".",
"display",
"=",
"'none'",
";",
"$",
"(",
"'#cantidad'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#unidadmedidasat'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#cantidad'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#claveprod'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#descripcion'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#montoconcepto'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#csubtotal'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#civa'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#Total'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"$",
"(",
"'#catemp_id'",
")",
".",
"prop",
"(",
"'required'",
",",
"false",
")",
";",
"}",
"}"
] | [
1,
0
] | [
35,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
areaCuadrado | (lado) | null | console.log("El perímetro del cuadrado es: " + perimetroCuadrado + "cm"); const areaCuadrado = ladoCuadrado * ladoCuadrado; | console.log("El perímetro del cuadrado es: " + perimetroCuadrado + "cm"); const areaCuadrado = ladoCuadrado * ladoCuadrado; | function areaCuadrado(lado) {
return lado * lado;
} | [
"function",
"areaCuadrado",
"(",
"lado",
")",
"{",
"return",
"lado",
"*",
"lado",
";",
"}"
] | [
11,
0
] | [
13,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
(fatorVencimento) | null | calcularDigitoVerificador | calcularDigitoVerificador | function (fatorVencimento) {
var addDias = function (dias, data) {
data = angular.copy(data);
if (typeof data === 'number') {
data = $filter('utc')(data);
}
return data.setTime(data.getTime() + (parseInt(dias) * 24 * 60 * 60 * 1000));
};
var diffDias = function (first, second) {
return Math.ceil((second - first) / (24 * 60 * 60 * 1000));
};
var dataBase = $filter('utc')('1997-10-07T00:00:00Z');
// comunicado FEBRABAN de n° 082/2012 de 14/06/2012
var dataParaValidacao = $filter('utc')(scope.validarVencimento);
var fatorTesteDataBase = diffDias(dataBase, dataParaValidacao);
if (fatorTesteDataBase > 9999) {
console.log('Data dentro do limite normalizado no comunicado FEBRABAN de n° 082/2012 de 14/06/2012.', scope.validarVencimento);
var novaDataBase = $filter('utc')(addDias(9000, dataBase));
dataBase = angular.copy(novaDataBase);
}
// Fim - comunicado FEBRABAN de n° 082/2012 de 14/06/2012
return addDias(fatorVencimento, dataBase);
} | [
"function",
"(",
"fatorVencimento",
")",
"{",
"var",
"addDias",
"=",
"function",
"(",
"dias",
",",
"data",
")",
"{",
"data",
"=",
"angular",
".",
"copy",
"(",
"data",
")",
";",
"if",
"(",
"typeof",
"data",
"===",
"'number'",
")",
"{",
"data",
"=",
"$filter",
"(",
"'utc'",
")",
"(",
"data",
")",
";",
"}",
"return",
"data",
".",
"setTime",
"(",
"data",
".",
"getTime",
"(",
")",
"+",
"(",
"parseInt",
"(",
"dias",
")",
"*",
"24",
"*",
"60",
"*",
"60",
"*",
"1000",
")",
")",
";",
"}",
";",
"var",
"diffDias",
"=",
"function",
"(",
"first",
",",
"second",
")",
"{",
"return",
"Math",
".",
"ceil",
"(",
"(",
"second",
"-",
"first",
")",
"/",
"(",
"24",
"*",
"60",
"*",
"60",
"*",
"1000",
")",
")",
";",
"}",
";",
"var",
"dataBase",
"=",
"$filter",
"(",
"'utc'",
")",
"(",
"'1997-10-07T00:00:00Z'",
")",
";",
"// comunicado FEBRABAN de n° 082/2012 de 14/06/2012",
"var",
"dataParaValidacao",
"=",
"$filter",
"(",
"'utc'",
")",
"(",
"scope",
".",
"validarVencimento",
")",
";",
"var",
"fatorTesteDataBase",
"=",
"diffDias",
"(",
"dataBase",
",",
"dataParaValidacao",
")",
";",
"if",
"(",
"fatorTesteDataBase",
">",
"9999",
")",
"{",
"console",
".",
"log",
"(",
"'Data dentro do limite normalizado no comunicado FEBRABAN de n° 082/2012 de 14/06/2012.',",
" ",
"cope.",
"v",
"alidarVencimento)",
";",
"",
"var",
"novaDataBase",
"=",
"$filter",
"(",
"'utc'",
")",
"(",
"addDias",
"(",
"9000",
",",
"dataBase",
")",
")",
";",
"dataBase",
"=",
"angular",
".",
"copy",
"(",
"novaDataBase",
")",
";",
"}",
"// Fim - comunicado FEBRABAN de n° 082/2012 de 14/06/2012",
"return",
"addDias",
"(",
"fatorVencimento",
",",
"dataBase",
")",
";",
"}"
] | [
167,
42
] | [
193,
9
] | null | javascript | es | ['es', 'es', 'es'] | False | true | variable_declarator |
|
getMyFollows | (req, res) | null | Devolver listados de usuarios | Devolver listados de usuarios | function getMyFollows(req, res){
var userId = req.user.sub;
var find = Follow.find({user: userId});
if(req.params.followed){
find = Follow.find({followed: userId});
}
find.populate('user followed').exec((err, follows) => {
if(err) return res.status(500).send({message: 'Error al mostrar los seguimientos.'});
if(!follows) return res.status(404).send({message: 'No sigue a ningún usuario.'});
return res.status(200).send({follows});
});
} | [
"function",
"getMyFollows",
"(",
"req",
",",
"res",
")",
"{",
"var",
"userId",
"=",
"req",
".",
"user",
".",
"sub",
";",
"var",
"find",
"=",
"Follow",
".",
"find",
"(",
"{",
"user",
":",
"userId",
"}",
")",
";",
"if",
"(",
"req",
".",
"params",
".",
"followed",
")",
"{",
"find",
"=",
"Follow",
".",
"find",
"(",
"{",
"followed",
":",
"userId",
"}",
")",
";",
"}",
"find",
".",
"populate",
"(",
"'user followed'",
")",
".",
"exec",
"(",
"(",
"err",
",",
"follows",
")",
"=>",
"{",
"if",
"(",
"err",
")",
"return",
"res",
".",
"status",
"(",
"500",
")",
".",
"send",
"(",
"{",
"message",
":",
"'Error al mostrar los seguimientos.'",
"}",
")",
";",
"if",
"(",
"!",
"follows",
")",
"return",
"res",
".",
"status",
"(",
"404",
")",
".",
"send",
"(",
"{",
"message",
":",
"'No sigue a ningún usuario.'}",
")",
";",
"",
"return",
"res",
".",
"status",
"(",
"200",
")",
".",
"send",
"(",
"{",
"follows",
"}",
")",
";",
"}",
")",
";",
"}"
] | [
100,
0
] | [
111,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Mostrar | () | null | /*Debemos lograr tomar nombre y edad por ID y mostrarlos concatenados
ej.: "Usted se llama José y tiene 66 años" | /*Debemos lograr tomar nombre y edad por ID y mostrarlos concatenados
ej.: "Usted se llama José y tiene 66 años" | function Mostrar()
{
var nombre;
var edad;
nombre = document.getElementById("elNombre").value;
edad = document.getElementById("laEdad").value;
alert ("Usted se llama " + nombre + " y tiene " + edad + " años");
} | [
"function",
"Mostrar",
"(",
")",
"{",
"var",
"nombre",
";",
"var",
"edad",
";",
"nombre",
"=",
"document",
".",
"getElementById",
"(",
"\"elNombre\"",
")",
".",
"value",
";",
"edad",
"=",
"document",
".",
"getElementById",
"(",
"\"laEdad\"",
")",
".",
"value",
";",
"alert",
"(",
"\"Usted se llama \"",
"+",
"nombre",
"+",
"\" y tiene \"",
"+",
"edad",
"+",
"\" años\")",
";",
"",
"}"
] | [
2,
0
] | [
9,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
showCollapseAllStations | () | null | /*FIN Pintar Collapse cuando no se ha seleccionado ninguna estación ------------------------------------ /*Desplegar collapse de todas las estaciones. --------------------------------------------------------- | /*FIN Pintar Collapse cuando no se ha seleccionado ninguna estación ------------------------------------ /*Desplegar collapse de todas las estaciones. --------------------------------------------------------- | function showCollapseAllStations() {
/*Se obtiene o crea el elemento collapse y se abre automáticamente para poder visualizar la información.*/
let collapseElement = document.getElementById('collapseAllStations');
let collapseInstance = bootstrap.Collapse.getOrCreateInstance(collapseElement);
collapseInstance.show();
} | [
"function",
"showCollapseAllStations",
"(",
")",
"{",
"/*Se obtiene o crea el elemento collapse y se abre automáticamente para poder visualizar la información.*/",
"let",
"collapseElement",
"=",
"document",
".",
"getElementById",
"(",
"'collapseAllStations'",
")",
";",
"let",
"collapseInstance",
"=",
"bootstrap",
".",
"Collapse",
".",
"getOrCreateInstance",
"(",
"collapseElement",
")",
";",
"collapseInstance",
".",
"show",
"(",
")",
";",
"}"
] | [
308,
0
] | [
313,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
mapDispatchToProps | (dispatch) | null | Para que puede ser utilizada en el componente | Para que puede ser utilizada en el componente | function mapDispatchToProps(dispatch){
return bindActionCreators({
getUsers
}, dispatch )
} | [
"function",
"mapDispatchToProps",
"(",
"dispatch",
")",
"{",
"return",
"bindActionCreators",
"(",
"{",
"getUsers",
"}",
",",
"dispatch",
")",
"}"
] | [
270,
0
] | [
274,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
newFunction | ( input ) | null | Ejemplo de una función nueva | Ejemplo de una función nueva | function newFunction( input ) {
// El nombre de esta funcion es "newFunction" y tiene una variable de entrada llamada "input"
// Ejemplo para usar esta función: newFunction("Hola")
} | [
"function",
"newFunction",
"(",
"input",
")",
"{",
"// El nombre de esta funcion es \"newFunction\" y tiene una variable de entrada llamada \"input\"",
"// Ejemplo para usar esta función: newFunction(\"Hola\")",
"}"
] | [
115,
0
] | [
118,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Mostrar | () | null | /*Debemos lograr tomar un nombre con 'prompt'
y luego mostrarlo por 'alert' al presionar el botón 'MOSTRAR' | /*Debemos lograr tomar un nombre con 'prompt'
y luego mostrarlo por 'alert' al presionar el botón 'MOSTRAR' | function Mostrar()
{
var nombre;
nombre = prompt ("Ingrese su nombre");
alert ("Su nombre es " + nombre);
} | [
"function",
"Mostrar",
"(",
")",
"{",
"var",
"nombre",
";",
"nombre",
"=",
"prompt",
"(",
"\"Ingrese su nombre\"",
")",
";",
"alert",
"(",
"\"Su nombre es \"",
"+",
"nombre",
")",
";",
"}"
] | [
2,
0
] | [
7,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
playRound | (e) | null | Inicio Funcion para comparar los resultados// | Inicio Funcion para comparar los resultados// | function playRound(e){
playerSelection = e.target.id; //seleccion del usuario//
computerSelection = myArray[Math.floor(Math.random()*myArray.length)]; //variable con random para la seleccion de la comutadora//
//Comparacion de selecciones de la maquina y el usuario//
//cuando son iguales//
if (computerSelection == playerSelection){
p.textContent = `Try Again, it's a tie`;
}else {
//cuando gana el usuario/
if ((computerSelection==`rock` && playerSelection.toLowerCase()==`paper`)||
(computerSelection==`paper` && playerSelection.toLowerCase()==`scissors`)||
(computerSelection==`scissors` && playerSelection.toLowerCase()==`rock`)){
p.textContent = `User Wins! PLAYER CHOICE ${playerSelection} COMPUTER CHOICE ${computerSelection}.`;
++counterUser;
//cuando gana la maquina//
}else if ((computerSelection==`rock` && playerSelection.toLowerCase()==`scissors`)||
(computerSelection==`paper` && playerSelection.toLowerCase()==`rock`)||
(computerSelection==`scissors` && playerSelection.toLowerCase()==`paper`)){
p.textContent = `Computer Wins! PLAYER CHOICE ${playerSelection} COMPUTER CHOICE ${computerSelection}.`;
counterComputer++;
}else {alert(`Please select a valid answer`)};
};
//poner el valor del contador para el usuario
userCount.textContent = `User: ${counterUser}`;
//poner el valor del contador para la computadora
computerCount.textContent = `User: ${counterComputer}`;
winner();
} | [
"function",
"playRound",
"(",
"e",
")",
"{",
"playerSelection",
"=",
"e",
".",
"target",
".",
"id",
";",
"//seleccion del usuario//",
"computerSelection",
"=",
"myArray",
"[",
"Math",
".",
"floor",
"(",
"Math",
".",
"random",
"(",
")",
"*",
"myArray",
".",
"length",
")",
"]",
";",
"//variable con random para la seleccion de la comutadora//",
"//Comparacion de selecciones de la maquina y el usuario//",
"//cuando son iguales//",
"if",
"(",
"computerSelection",
"==",
"playerSelection",
")",
"{",
"p",
".",
"textContent",
"=",
"`",
"`",
";",
"}",
"else",
"{",
"//cuando gana el usuario/",
"if",
"(",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
"||",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
"||",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
")",
"{",
"p",
".",
"textContent",
"=",
"`",
"${",
"playerSelection",
"}",
"${",
"computerSelection",
"}",
"`",
";",
"++",
"counterUser",
";",
"//cuando gana la maquina//",
"}",
"else",
"if",
"(",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
"||",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
"||",
"(",
"computerSelection",
"==",
"`",
"`",
"&&",
"playerSelection",
".",
"toLowerCase",
"(",
")",
"==",
"`",
"`",
")",
")",
"{",
"p",
".",
"textContent",
"=",
"`",
"${",
"playerSelection",
"}",
"${",
"computerSelection",
"}",
"`",
";",
"counterComputer",
"++",
";",
"}",
"else",
"{",
"alert",
"(",
"`",
"`",
")",
"}",
";",
"}",
";",
"//poner el valor del contador para el usuario",
"userCount",
".",
"textContent",
"=",
"`",
"${",
"counterUser",
"}",
"`",
";",
"//poner el valor del contador para la computadora",
"computerCount",
".",
"textContent",
"=",
"`",
"${",
"counterComputer",
"}",
"`",
";",
"winner",
"(",
")",
";",
"}"
] | [
8,
0
] | [
40,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
saveMessage | (req, res) | null | Método para enviar mensajes entre usuarios | Método para enviar mensajes entre usuarios | function saveMessage(req, res){
var params = req.body;
if(!params.text || !params.receiver)
return res.status(200).send({message: 'Envia los datos necesarios.'});
var message = new Message();
message.emitter = req.user.sub;
message.receiver = params.receiver;
message.text = params.text;
message.created_at = moment().unix();
message.viewed = 'false';
message.save((err, messageStored) => {
if(err) return res.status(500).send({message: 'Error en la petición.'});
if(!messageStored) return res.status(404).send({message: 'Error al enviar el mensaje.'});
return res.status(200).send({message: messageStored});
});
} | [
"function",
"saveMessage",
"(",
"req",
",",
"res",
")",
"{",
"var",
"params",
"=",
"req",
".",
"body",
";",
"if",
"(",
"!",
"params",
".",
"text",
"||",
"!",
"params",
".",
"receiver",
")",
"return",
"res",
".",
"status",
"(",
"200",
")",
".",
"send",
"(",
"{",
"message",
":",
"'Envia los datos necesarios.'",
"}",
")",
";",
"var",
"message",
"=",
"new",
"Message",
"(",
")",
";",
"message",
".",
"emitter",
"=",
"req",
".",
"user",
".",
"sub",
";",
"message",
".",
"receiver",
"=",
"params",
".",
"receiver",
";",
"message",
".",
"text",
"=",
"params",
".",
"text",
";",
"message",
".",
"created_at",
"=",
"moment",
"(",
")",
".",
"unix",
"(",
")",
";",
"message",
".",
"viewed",
"=",
"'false'",
";",
"message",
".",
"save",
"(",
"(",
"err",
",",
"messageStored",
")",
"=>",
"{",
"if",
"(",
"err",
")",
"return",
"res",
".",
"status",
"(",
"500",
")",
".",
"send",
"(",
"{",
"message",
":",
"'Error en la petición.'}",
")",
";",
"",
"if",
"(",
"!",
"messageStored",
")",
"return",
"res",
".",
"status",
"(",
"404",
")",
".",
"send",
"(",
"{",
"message",
":",
"'Error al enviar el mensaje.'",
"}",
")",
";",
"return",
"res",
".",
"status",
"(",
"200",
")",
".",
"send",
"(",
"{",
"message",
":",
"messageStored",
"}",
")",
";",
"}",
")",
";",
"}"
] | [
17,
0
] | [
35,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
game | (event) | null | función que arranca el juego | función que arranca el juego | function game(event) {
event.preventDefault();
guessNumber();
} | [
"function",
"game",
"(",
"event",
")",
"{",
"event",
".",
"preventDefault",
"(",
")",
";",
"guessNumber",
"(",
")",
";",
"}"
] | [
49,
0
] | [
52,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
check_totales_asientos | (total_cargos,total_abonos) | null | ****************** funciones de ayuda ****************** | ****************** funciones de ayuda ****************** | function check_totales_asientos(total_cargos,total_abonos){
if(parseFloat(total_cargos) != parseFloat(total_abonos)){
return false;
}else{
return true
}
} | [
"function",
"check_totales_asientos",
"(",
"total_cargos",
",",
"total_abonos",
")",
"{",
"if",
"(",
"parseFloat",
"(",
"total_cargos",
")",
"!=",
"parseFloat",
"(",
"total_abonos",
")",
")",
"{",
"return",
"false",
";",
"}",
"else",
"{",
"return",
"true",
"}",
"}"
] | [
694,
2
] | [
700,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
(amount, decimals) | null | Convertir montos a decimal con separadores de miles | Convertir montos a decimal con separadores de miles | function(amount, decimals) {
amount += ''; // por si pasan un numero en vez de un string
amount = parseFloat(amount.replace(/[^0-9\.]/g, '')); // elimino cualquier cosa que no sea numero o punto
decimals = decimals || 0; // por si la variable no fue fue pasada
// si no es un numero o es igual a cero retorno el mismo cero
if (isNaN(amount) || amount === 0)
return parseFloat(0).toFixed(decimals);
// si es mayor o menor que cero retorno el valor formateado como numero
amount = '' + amount.toFixed(decimals);
var amount_parts = amount.split('.'),
regexp = /(\d+)(\d{3})/;
while (regexp.test(amount_parts[0]))
amount_parts[0] = amount_parts[0].replace(regexp, '$1' + ',' + '$2');
return amount_parts.join('.');
} | [
"function",
"(",
"amount",
",",
"decimals",
")",
"{",
"amount",
"+=",
"''",
";",
"// por si pasan un numero en vez de un string",
"amount",
"=",
"parseFloat",
"(",
"amount",
".",
"replace",
"(",
"/",
"[^0-9\\.]",
"/",
"g",
",",
"''",
")",
")",
";",
"// elimino cualquier cosa que no sea numero o punto",
"decimals",
"=",
"decimals",
"||",
"0",
";",
"// por si la variable no fue fue pasada",
"// si no es un numero o es igual a cero retorno el mismo cero",
"if",
"(",
"isNaN",
"(",
"amount",
")",
"||",
"amount",
"===",
"0",
")",
"return",
"parseFloat",
"(",
"0",
")",
".",
"toFixed",
"(",
"decimals",
")",
";",
"// si es mayor o menor que cero retorno el valor formateado como numero",
"amount",
"=",
"''",
"+",
"amount",
".",
"toFixed",
"(",
"decimals",
")",
";",
"var",
"amount_parts",
"=",
"amount",
".",
"split",
"(",
"'.'",
")",
",",
"regexp",
"=",
"/",
"(\\d+)(\\d{3})",
"/",
";",
"while",
"(",
"regexp",
".",
"test",
"(",
"amount_parts",
"[",
"0",
"]",
")",
")",
"amount_parts",
"[",
"0",
"]",
"=",
"amount_parts",
"[",
"0",
"]",
".",
"replace",
"(",
"regexp",
",",
"'$1'",
"+",
"','",
"+",
"'$2'",
")",
";",
"return",
"amount_parts",
".",
"join",
"(",
"'.'",
")",
";",
"}"
] | [
14,
19
] | [
28,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | variable_declarator |
|
toggleVid | () | null | reproduce o pausa el video dependiendo de su estado actual | reproduce o pausa el video dependiendo de su estado actual | function toggleVid() {
if (playing) {
fingers.pause();
button.html('play');
} else {
fingers.loop();
button.html('pause');
}
playing = !playing;
} | [
"function",
"toggleVid",
"(",
")",
"{",
"if",
"(",
"playing",
")",
"{",
"fingers",
".",
"pause",
"(",
")",
";",
"button",
".",
"html",
"(",
"'play'",
")",
";",
"}",
"else",
"{",
"fingers",
".",
"loop",
"(",
")",
";",
"button",
".",
"html",
"(",
"'pause'",
")",
";",
"}",
"playing",
"=",
"!",
"playing",
";",
"}"
] | [
17,
0
] | [
26,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
() | null | Ajax Para comletar los Select | Ajax Para comletar los Select | function(){
var urlZonas = '/ajax/listar/zonas/';
axios.get( urlZonas).then( response => {
this.zonas = response.data;
});
} | [
"function",
"(",
")",
"{",
"var",
"urlZonas",
"=",
"'/ajax/listar/zonas/'",
";",
"axios",
".",
"get",
"(",
"urlZonas",
")",
".",
"then",
"(",
"response",
"=>",
"{",
"this",
".",
"zonas",
"=",
"response",
".",
"data",
";",
"}",
")",
";",
"}"
] | [
121,
21
] | [
126,
9
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
deleteTask | (id, row) | null | Método para borrar una tarea en el microservicio | Método para borrar una tarea en el microservicio | async function deleteTask(id, row) {
fetch(`http://localhost:3001/api/imbox/${id}`, { method: 'DELETE' })
setTasks([].concat(tasks.slice(0, row), tasks.slice(row + 1)))
} | [
"async",
"function",
"deleteTask",
"(",
"id",
",",
"row",
")",
"{",
"fetch",
"(",
"`",
"${",
"id",
"}",
"`",
",",
"{",
"method",
":",
"'DELETE'",
"}",
")",
"setTasks",
"(",
"[",
"]",
".",
"concat",
"(",
"tasks",
".",
"slice",
"(",
"0",
",",
"row",
")",
",",
"tasks",
".",
"slice",
"(",
"row",
"+",
"1",
")",
")",
")",
"}"
] | [
83,
2
] | [
86,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | statement_block |
countUserMessages | (userId) | null | Número de posts publicados por un usuario. | Número de posts publicados por un usuario. | async function countUserMessages(userId) {
const posts = await getPosts();
return posts.filter((post) => post.userId === userId).length;
} | [
"async",
"function",
"countUserMessages",
"(",
"userId",
")",
"{",
"const",
"posts",
"=",
"await",
"getPosts",
"(",
")",
";",
"return",
"posts",
".",
"filter",
"(",
"(",
"post",
")",
"=>",
"post",
".",
"userId",
"===",
"userId",
")",
".",
"length",
";",
"}"
] | [
15,
0
] | [
18,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
sendRequest | (getDataObj) | null | Crear url de la card | Crear url de la card | function sendRequest(getDataObj) {
console.log(getDataObj);
fetch("https://us-central1-awesome-cards-cf6f0.cloudfunctions.net/card/", {
method: "POST",
body: JSON.stringify(getDataObj),
headers: {
"Content-Type": "application/json"
}
})
.then(function (resp) {
return resp.json();
})
.then(function (result) {
showURL(result);
})
.catch(function (error) {
console.log(error);
});
} | [
"function",
"sendRequest",
"(",
"getDataObj",
")",
"{",
"console",
".",
"log",
"(",
"getDataObj",
")",
";",
"fetch",
"(",
"\"https://us-central1-awesome-cards-cf6f0.cloudfunctions.net/card/\"",
",",
"{",
"method",
":",
"\"POST\"",
",",
"body",
":",
"JSON",
".",
"stringify",
"(",
"getDataObj",
")",
",",
"headers",
":",
"{",
"\"Content-Type\"",
":",
"\"application/json\"",
"}",
"}",
")",
".",
"then",
"(",
"function",
"(",
"resp",
")",
"{",
"return",
"resp",
".",
"json",
"(",
")",
";",
"}",
")",
".",
"then",
"(",
"function",
"(",
"result",
")",
"{",
"showURL",
"(",
"result",
")",
";",
"}",
")",
".",
"catch",
"(",
"function",
"(",
"error",
")",
"{",
"console",
".",
"log",
"(",
"error",
")",
";",
"}",
")",
";",
"}"
] | [
47,
0
] | [
65,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Cliente | () | null | NOTA : hacer logica para el login y crear un rol admin | NOTA : hacer logica para el login y crear un rol admin | function Cliente() {
const history = useHistory();
var routesFinal = [];
React.useEffect(() => {
routes.map((prop, key) => {
if (prop.layout == "/cliente") {
routesFinal.push(prop);
}
});
const usuario = JSON.parse(localStorage.getItem("usuario"));
console.log(usuario);
if (usuario === null) {
history.push({
pathname: "/login",
});
return;
}
if (usuario.usuario.rol == "ADMIN") {
history.push({
pathname: "/admin",
});
}
}, []);
const location = useLocation();
const mainPanelRef = React.useRef(null);
const [sidebarOpened, setsidebarOpened] = React.useState(
document.documentElement.className.indexOf("nav-open") !== -1
);
React.useEffect(() => {
if (navigator.platform.indexOf("Win") > -1) {
document.documentElement.className += " perfect-scrollbar-on";
document.documentElement.classList.remove("perfect-scrollbar-off");
}
// Specify how to clean up after this effect:
return function cleanup() {
if (navigator.platform.indexOf("Win") > -1) {
document.documentElement.classList.add("perfect-scrollbar-off");
document.documentElement.classList.remove("perfect-scrollbar-on");
}
};
});
React.useEffect(() => {
if (navigator.platform.indexOf("Win") > -1) {
let tables = document.querySelectorAll(".table-responsive");
for (let i = 0; i < tables.length; i++) {
ps = new PerfectScrollbar(tables[i]);
}
}
document.documentElement.scrollTop = 0;
document.scrollingElement.scrollTop = 0;
if (mainPanelRef.current) {
mainPanelRef.current.scrollTop = 0;
}
}, [location]);
// this function opens and closes the sidebar on small devices
const toggleSidebar = () => {
document.documentElement.classList.toggle("nav-open");
setsidebarOpened(!sidebarOpened);
};
const getRoutes = (routes) => {
return routes.map((prop, key) => {
if (prop.layout === "/cliente") {
return (
<Route
path={prop.layout + prop.path}
component={prop.component}
key={key}
/>
);
} else {
return null;
}
});
};
const getBrandText = (path) => {
for (let i = 0; i < routes.length; i++) {
if (location.pathname.indexOf(routes[i].layout + routes[i].path) !== -1) {
return routes[i].name;
}
}
return "Brand";
};
return (
<BackgroundColorContext.Consumer>
{({ color, changeColor }) => (
<React.Fragment>
<div className="wrapper">
<Sidebar routes={routes} toggleSidebar={toggleSidebar} />
<div className="main-panel" ref={mainPanelRef} data={color}>
<AdminNavbar
brandText={getBrandText(location.pathname)}
toggleSidebar={toggleSidebar}
sidebarOpened={sidebarOpened}
/>
<Switch>
{getRoutes(routes)}
<Redirect from="*" to="/cliente/formulario" />
</Switch>
</div>
</div>
</React.Fragment>
)}
</BackgroundColorContext.Consumer>
);
} | [
"function",
"Cliente",
"(",
")",
"{",
"const",
"history",
"=",
"useHistory",
"(",
")",
";",
"var",
"routesFinal",
"=",
"[",
"]",
";",
"React",
".",
"useEffect",
"(",
"(",
")",
"=>",
"{",
"routes",
".",
"map",
"(",
"(",
"prop",
",",
"key",
")",
"=>",
"{",
"if",
"(",
"prop",
".",
"layout",
"==",
"\"/cliente\"",
")",
"{",
"routesFinal",
".",
"push",
"(",
"prop",
")",
";",
"}",
"}",
")",
";",
"const",
"usuario",
"=",
"JSON",
".",
"parse",
"(",
"localStorage",
".",
"getItem",
"(",
"\"usuario\"",
")",
")",
";",
"console",
".",
"log",
"(",
"usuario",
")",
";",
"if",
"(",
"usuario",
"===",
"null",
")",
"{",
"history",
".",
"push",
"(",
"{",
"pathname",
":",
"\"/login\"",
",",
"}",
")",
";",
"return",
";",
"}",
"if",
"(",
"usuario",
".",
"usuario",
".",
"rol",
"==",
"\"ADMIN\"",
")",
"{",
"history",
".",
"push",
"(",
"{",
"pathname",
":",
"\"/admin\"",
",",
"}",
")",
";",
"}",
"}",
",",
"[",
"]",
")",
";",
"const",
"location",
"=",
"useLocation",
"(",
")",
";",
"const",
"mainPanelRef",
"=",
"React",
".",
"useRef",
"(",
"null",
")",
";",
"const",
"[",
"sidebarOpened",
",",
"setsidebarOpened",
"]",
"=",
"React",
".",
"useState",
"(",
"document",
".",
"documentElement",
".",
"className",
".",
"indexOf",
"(",
"\"nav-open\"",
")",
"!==",
"-",
"1",
")",
";",
"React",
".",
"useEffect",
"(",
"(",
")",
"=>",
"{",
"if",
"(",
"navigator",
".",
"platform",
".",
"indexOf",
"(",
"\"Win\"",
")",
">",
"-",
"1",
")",
"{",
"document",
".",
"documentElement",
".",
"className",
"+=",
"\" perfect-scrollbar-on\"",
";",
"document",
".",
"documentElement",
".",
"classList",
".",
"remove",
"(",
"\"perfect-scrollbar-off\"",
")",
";",
"}",
"// Specify how to clean up after this effect:",
"return",
"function",
"cleanup",
"(",
")",
"{",
"if",
"(",
"navigator",
".",
"platform",
".",
"indexOf",
"(",
"\"Win\"",
")",
">",
"-",
"1",
")",
"{",
"document",
".",
"documentElement",
".",
"classList",
".",
"add",
"(",
"\"perfect-scrollbar-off\"",
")",
";",
"document",
".",
"documentElement",
".",
"classList",
".",
"remove",
"(",
"\"perfect-scrollbar-on\"",
")",
";",
"}",
"}",
";",
"}",
")",
";",
"React",
".",
"useEffect",
"(",
"(",
")",
"=>",
"{",
"if",
"(",
"navigator",
".",
"platform",
".",
"indexOf",
"(",
"\"Win\"",
")",
">",
"-",
"1",
")",
"{",
"let",
"tables",
"=",
"document",
".",
"querySelectorAll",
"(",
"\".table-responsive\"",
")",
";",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"tables",
".",
"length",
";",
"i",
"++",
")",
"{",
"ps",
"=",
"new",
"PerfectScrollbar",
"(",
"tables",
"[",
"i",
"]",
")",
";",
"}",
"}",
"document",
".",
"documentElement",
".",
"scrollTop",
"=",
"0",
";",
"document",
".",
"scrollingElement",
".",
"scrollTop",
"=",
"0",
";",
"if",
"(",
"mainPanelRef",
".",
"current",
")",
"{",
"mainPanelRef",
".",
"current",
".",
"scrollTop",
"=",
"0",
";",
"}",
"}",
",",
"[",
"location",
"]",
")",
";",
"// this function opens and closes the sidebar on small devices",
"const",
"toggleSidebar",
"=",
"(",
")",
"=>",
"{",
"document",
".",
"documentElement",
".",
"classList",
".",
"toggle",
"(",
"\"nav-open\"",
")",
";",
"setsidebarOpened",
"(",
"!",
"sidebarOpened",
")",
";",
"}",
";",
"const",
"getRoutes",
"=",
"(",
"routes",
")",
"=>",
"{",
"return",
"routes",
".",
"map",
"(",
"(",
"prop",
",",
"key",
")",
"=>",
"{",
"if",
"(",
"prop",
".",
"layout",
"===",
"\"/cliente\"",
")",
"{",
"return",
"(",
"<",
"Route",
"path",
"=",
"{",
"prop",
".",
"layout",
"+",
"prop",
".",
"path",
"}",
"component",
"=",
"{",
"prop",
".",
"component",
"}",
"key",
"=",
"{",
"key",
"}",
"/",
">",
")",
";",
"}",
"else",
"{",
"return",
"null",
";",
"}",
"}",
")",
";",
"}",
";",
"const",
"getBrandText",
"=",
"(",
"path",
")",
"=>",
"{",
"for",
"(",
"let",
"i",
"=",
"0",
";",
"i",
"<",
"routes",
".",
"length",
";",
"i",
"++",
")",
"{",
"if",
"(",
"location",
".",
"pathname",
".",
"indexOf",
"(",
"routes",
"[",
"i",
"]",
".",
"layout",
"+",
"routes",
"[",
"i",
"]",
".",
"path",
")",
"!==",
"-",
"1",
")",
"{",
"return",
"routes",
"[",
"i",
"]",
".",
"name",
";",
"}",
"}",
"return",
"\"Brand\"",
";",
"}",
";",
"return",
"(",
"<",
"BackgroundColorContext",
".",
"Consumer",
">",
"\n ",
"{",
"(",
"{",
"color",
",",
"changeColor",
"}",
")",
"=>",
"(",
"<",
"React",
".",
"Fragment",
">",
"\n ",
"<",
"div",
"className",
"=",
"\"wrapper\"",
">",
"\n ",
"<",
"Sidebar",
"routes",
"=",
"{",
"routes",
"}",
"toggleSidebar",
"=",
"{",
"toggleSidebar",
"}",
"/",
">",
"\n ",
"<",
"div",
"className",
"=",
"\"main-panel\"",
"ref",
"=",
"{",
"mainPanelRef",
"}",
"data",
"=",
"{",
"color",
"}",
">",
"\n ",
"<",
"AdminNavbar",
"brandText",
"=",
"{",
"getBrandText",
"(",
"location",
".",
"pathname",
")",
"}",
"toggleSidebar",
"=",
"{",
"toggleSidebar",
"}",
"sidebarOpened",
"=",
"{",
"sidebarOpened",
"}",
"/",
">",
"\n ",
"<",
"Switch",
">",
"\n ",
"{",
"getRoutes",
"(",
"routes",
")",
"}",
"\n ",
"<",
"Redirect",
"from",
"=",
"\"*\"",
"to",
"=",
"\"/cliente/formulario\"",
"/",
">",
"\n ",
"<",
"/",
"Switch",
">",
"\n ",
"<",
"/",
"div",
">",
"\n ",
"<",
"/",
"div",
">",
"\n ",
"<",
"/",
"React",
".",
"Fragment",
">",
")",
"}",
"\n ",
"<",
"/",
"BackgroundColorContext",
".",
"Consumer",
">",
")",
";",
"}"
] | [
41,
0
] | [
149,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
(id) | null | Metodo accesor, cambia el estado dle identificador. | Metodo accesor, cambia el estado dle identificador. | function (id) {
this._id = id;
} | [
"function",
"(",
"id",
")",
"{",
"this",
".",
"_id",
"=",
"id",
";",
"}"
] | [
28,
13
] | [
30,
9
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
Sub | () | null | /* eslint no-unreachable: 0 | /* eslint no-unreachable: 0 | function Sub() { } | [
"function",
"Sub",
"(",
")",
"{",
"}"
] | [
104,
8
] | [
104,
26
] | null | javascript | es | ['es', 'es', 'es'] | True | true | statement_block |
valor_variable | (variable) | null | /* valor_variable - si la variable no está definida le asinga un valor nulo | /* valor_variable - si la variable no está definida le asinga un valor nulo | function valor_variable(variable){
return typeof variable === 'undefined' ? null : variable;
} | [
"function",
"valor_variable",
"(",
"variable",
")",
"{",
"return",
"typeof",
"variable",
"===",
"'undefined'",
"?",
"null",
":",
"variable",
";",
"}"
] | [
102,
0
] | [
104,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
(par_c) | null | to-do: las transiciones streaptease de la chica (y si lleva libro se lo quitan) /*
Acción: go(source, target)
Precondicción: source == "sala_baile" && target == "hall"
Reacción: { transición ("sala_baile", "hall"), continueDefaultAction }
Acción: go(source, target)
Precondicción: source == "hall" && target == "comedor" && x_firsttime(target)
Reacción: {desc "flashback primera vez"}
Acción: go(source, target)
Precondicción:& source == "hall" && target == "consigna_seguridad" & x_firsttime(target)
Reacción: { menu = usr.getChoicesConsigna() }
Acción: go(source, target)
Precondicción: source == "hall" && target == "consigna_seguridad" && not x_firsttime(target) && usr_movileEncendido()
Reacción: { escena "Rabioso ataca la fuente de luz", endGame}
| to-do: las transiciones streaptease de la chica (y si lleva libro se lo quitan) /*
Acción: go(source, target)
Precondicción: source == "sala_baile" && target == "hall"
Reacción: { transición ("sala_baile", "hall"), continueDefaultAction } | function (par_c) {
if (par_c.loc == primitives.IT_X("sala_baile")) {
primitives.GD_CreateMsg ("es", "sales_sala_baile", "Alguien te intenta impedir la salida y te arranca una penda de ropa, pero consigues salir.<br/>")
primitives.CA_ShowMsg ("sales_sala_baile");
return false
}
if (par_c.loc == primitives.IT_X("hall") && par_c.target == primitives.IT_X("pasillo_superior")) {
primitives.GD_CreateMsg ("es", "subes", "Afortunadamente los rabiosos parecen ser muy ruidosos también y te vale evitar sus gemidos para no caer en sus brazos. Llegas a la planta alta, pero la luz ya no se encuentra ahí arriba.<br/>")
primitives.CA_ShowMsg ("subes");
return false
}
if (par_c.loc == primitives.IT_X("hall") && par_c.target == primitives.IT_X("comedor")) {
// to-do: sólo la primera vez
primitives.GD_CreateMsg ("es", "recuerdo", "Entre sombras atraviesas el arco. Han pasado apenas dos horas desde el momento en que atravesásteis la alfombra roja desde el rolls que os recogió en el yate privado como si fuérais estrellas de Hollywood. Las fuertes medidas de seguridad te hicieron entonces temblar las piernas y tuviste entre ganas de salir corriendo y una gran excitación sexual imagiándote una orgía glamurosa rodeada de champán y caviar del caro.<br/><br/>¡Pero céntrate, piensa! Lo que de verdad te llamó la atención fueron las dichosas pastillitas. En cada sitio de las mesas junto con los cubiertos había dos documentos. En uno te comprometías a guardar silencio y te prometía una viaje sensorial memorable que haría efecto después de la cena si probabas las pastillas: a más pastillas, mayor intensidad de la experiencia. En el otro documento también te comprometías a no hablar, pero te invitaban a abandonar la mansión después de cenar, sin probar las pastillas. Unos impecables camareros uniformados de librea iban repartiendo los preciosos pastilleros a cambio del primer documento firmado. De entre el medio centenar de invitados, muy pocos se retiraron de sus asientos.<br/>")
primitives.CA_ShowMsg ("recuerdo");
return false
}
if (par_c.loc == primitives.IT_X("hall") && par_c.target == primitives.IT_X("exterior_mansión")) {
primitives.GD_CreateMsg ("es", "no_puedes_salir", "La robusta puerta de salida está aguantando las embestidas de varios rabiosos que se pelean entre sí por momentos o colaboran a ratos para intentar abrirla y salir fuera de la mansión. No es muy seguro acercarse a esa puerta por el momento.<br/>")
primitives.CA_ShowMsg ("no_puedes_salir");
return true
}
return false; // se ejecuta reacción por defecto
} | [
"function",
"(",
"par_c",
")",
"{",
"if",
"(",
"par_c",
".",
"loc",
"==",
"primitives",
".",
"IT_X",
"(",
"\"sala_baile\"",
")",
")",
"{",
"primitives",
".",
"GD_CreateMsg",
"(",
"\"es\"",
",",
"\"sales_sala_baile\"",
",",
"\"Alguien te intenta impedir la salida y te arranca una penda de ropa, pero consigues salir.<br/>\"",
")",
"primitives",
".",
"CA_ShowMsg",
"(",
"\"sales_sala_baile\"",
")",
";",
"return",
"false",
"}",
"if",
"(",
"par_c",
".",
"loc",
"==",
"primitives",
".",
"IT_X",
"(",
"\"hall\"",
")",
"&&",
"par_c",
".",
"target",
"==",
"primitives",
".",
"IT_X",
"(",
"\"pasillo_superior\"",
")",
")",
"{",
"primitives",
".",
"GD_CreateMsg",
"(",
"\"es\"",
",",
"\"subes\"",
",",
"\"Afortunadamente los rabiosos parecen ser muy ruidosos también y te vale evitar sus gemidos para no caer en sus brazos. Llegas a la planta alta, pero la luz ya no se encuentra ahí arriba.<br/>\")",
"",
"primitives",
".",
"CA_ShowMsg",
"(",
"\"subes\"",
")",
";",
"return",
"false",
"}",
"if",
"(",
"par_c",
".",
"loc",
"==",
"primitives",
".",
"IT_X",
"(",
"\"hall\"",
")",
"&&",
"par_c",
".",
"target",
"==",
"primitives",
".",
"IT_X",
"(",
"\"comedor\"",
")",
")",
"{",
"// to-do: sólo la primera vez",
"primitives",
".",
"GD_CreateMsg",
"(",
"\"es\"",
",",
"\"recuerdo\"",
",",
"\"Entre sombras atraviesas el arco. Han pasado apenas dos horas desde el momento en que atravesásteis la alfombra roja desde el rolls que os recogió en el yate privado como si fuérais estrellas de Hollywood. Las fuertes medidas de seguridad te hicieron entonces temblar las piernas y tuviste entre ganas de salir corriendo y una gran excitación sexual imagiándote una orgía glamurosa rodeada de champán y caviar del caro.<br/><br/>¡Pero céntrate, piensa! Lo que de verdad te llamó la atención fueron las dichosas pastillitas. En cada sitio de las mesas junto con los cubiertos había dos documentos. En uno te comprometías a guardar silencio y te prometía una viaje sensorial memorable que haría efecto después de la cena si probabas las pastillas: a más pastillas, mayor intensidad de la experiencia. En el otro documento también te comprometías a no hablar, pero te invitaban a abandonar la mansión después de cenar, sin probar las pastillas. Unos impecables camareros uniformados de librea iban repartiendo los preciosos pastilleros a cambio del primer documento firmado. De entre el medio centenar de invitados, muy pocos se retiraron de sus asientos.<br/>\")",
"",
"primitives",
".",
"CA_ShowMsg",
"(",
"\"recuerdo\"",
")",
";",
"return",
"false",
"}",
"if",
"(",
"par_c",
".",
"loc",
"==",
"primitives",
".",
"IT_X",
"(",
"\"hall\"",
")",
"&&",
"par_c",
".",
"target",
"==",
"primitives",
".",
"IT_X",
"(",
"\"exterior_mansión\")",
")",
" ",
"",
"primitives",
".",
"GD_CreateMsg",
"(",
"\"es\"",
",",
"\"no_puedes_salir\"",
",",
"\"La robusta puerta de salida está aguantando las embestidas de varios rabiosos que se pelean entre sí por momentos o colaboran a ratos para intentar abrirla y salir fuera de la mansión. No es muy seguro acercarse a esa puerta por el momento.<br/>\")",
"",
"primitives",
".",
"CA_ShowMsg",
"(",
"\"no_puedes_salir\"",
")",
";",
"return",
"true",
"}",
"return",
"false",
";",
"// se ejecuta reacción por defecto",
"}"
] | [
306,
12
] | [
334,
3
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
listTodos | () | null | Listar todos los todos | Listar todos los todos | async function listTodos() {
const currentTodos = await readTodoList();
console.log();
console.log(chalk.blue(listTitle[process.env.LANGUAGE]));
for (const [index, task] of currentTodos.tasks.entries()) {
const taskStatus = task.done ? "☑" : "☐";
const taskHumanDate = formatDistance(
new Date(task.added),
new Date(),
dateLocaleConfig
);
const taskText = task.done ? chalk.strikethrough(task.text) : task.text;
const taskDisplay = chalk` ${
index + 1
} - ${taskStatus} ${taskText} (añadida ${taskHumanDate})`;
if (task.priority === "high") {
console.log(chalk.red(taskDisplay));
} else {
console.log(chalk.green(taskDisplay));
}
}
console.log();
} | [
"async",
"function",
"listTodos",
"(",
")",
"{",
"const",
"currentTodos",
"=",
"await",
"readTodoList",
"(",
")",
";",
"console",
".",
"log",
"(",
")",
";",
"console",
".",
"log",
"(",
"chalk",
".",
"blue",
"(",
"listTitle",
"[",
"process",
".",
"env",
".",
"LANGUAGE",
"]",
")",
")",
";",
"for",
"(",
"const",
"[",
"index",
",",
"task",
"]",
"of",
"currentTodos",
".",
"tasks",
".",
"entries",
"(",
")",
")",
"{",
"const",
"taskStatus",
"=",
"task",
".",
"done",
"?",
"\"☑\" :",
"\"",
"\";",
"",
"const",
"taskHumanDate",
"=",
"formatDistance",
"(",
"new",
"Date",
"(",
"task",
".",
"added",
")",
",",
"new",
"Date",
"(",
")",
",",
"dateLocaleConfig",
")",
";",
"const",
"taskText",
"=",
"task",
".",
"done",
"?",
"chalk",
".",
"strikethrough",
"(",
"task",
".",
"text",
")",
":",
"task",
".",
"text",
";",
"const",
"taskDisplay",
"=",
"chalk",
"`",
"${",
"index",
"+",
"1",
"}",
"${",
"taskStatus",
"}",
"${",
"taskText",
"}",
"{t",
"askHumanDate}",
")",
";",
"",
"if",
"(",
"task",
".",
"priority",
"===",
"\"high\"",
")",
"{",
"console",
".",
"log",
"(",
"chalk",
".",
"red",
"(",
"taskDisplay",
")",
")",
";",
"}",
"else",
"{",
"console",
".",
"log",
"(",
"chalk",
".",
"green",
"(",
"taskDisplay",
")",
")",
";",
"}",
"}",
"console",
".",
"log",
"(",
")",
";",
"}"
] | [
73,
0
] | [
101,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
getFromApi | () | null | /////////////////////////////////// Funciones para escuchar el input, crear response.json y pintar los resultados en la zona de resultados con imagen y título. | /////////////////////////////////// Funciones para escuchar el input, crear response.json y pintar los resultados en la zona de resultados con imagen y título. | function getFromApi() {
let search = input.value;
fetch(`http://api.tvmaze.com/search/shows?q=${search}`)
.then((response) => response.json())
.then((data) => {
dataSeries = data;
renderSearch();
});
} | [
"function",
"getFromApi",
"(",
")",
"{",
"let",
"search",
"=",
"input",
".",
"value",
";",
"fetch",
"(",
"`",
"${",
"search",
"}",
"`",
")",
".",
"then",
"(",
"(",
"response",
")",
"=>",
"response",
".",
"json",
"(",
")",
")",
".",
"then",
"(",
"(",
"data",
")",
"=>",
"{",
"dataSeries",
"=",
"data",
";",
"renderSearch",
"(",
")",
";",
"}",
")",
";",
"}"
] | [
14,
0
] | [
22,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
Rectangulo | () | null | /*2. Para el departamento de Construcción:
A. Mostrar la cantidad de alambre a comprar si se ingresara el largo y el ancho de un terreno rectangular y se debe alambra con tres hilos de alambre.
B. Mostrar la cantidad de alambre a comprar si se ingresara el radio de un terreno circular y se debe alambra con tres hilos de alambre.
C. Para hacer un contrapiso de 1m x 1m se necesitan 2 bolsas de cemento y 3 de cal, debemos mostrar cuantas bolsas se necesitan de cada uno para las medidas que nos ingresen.
| /*2. Para el departamento de Construcción:
A. Mostrar la cantidad de alambre a comprar si se ingresara el largo y el ancho de un terreno rectangular y se debe alambra con tres hilos de alambre.
B. Mostrar la cantidad de alambre a comprar si se ingresara el radio de un terreno circular y se debe alambra con tres hilos de alambre.
C. Para hacer un contrapiso de 1m x 1m se necesitan 2 bolsas de cemento y 3 de cal, debemos mostrar cuantas bolsas se necesitan de cada uno para las medidas que nos ingresen.
| function Rectangulo ()
{
} | [
"function",
"Rectangulo",
"(",
")",
"{",
"}"
] | [
6,
0
] | [
9,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
($el) | null | define a constructor | define a constructor | function($el) {
this.$el = $el;
} | [
"function",
"(",
"$el",
")",
"{",
"this",
".",
"$el",
"=",
"$el",
";",
"}"
] | [
7,
28
] | [
9,
5
] | null | javascript | es | ['es', 'es', 'es'] | True | true | variable_declarator |
|
esPar | (numero) | null | funciones helpers | funciones helpers | function esPar(numero){
return (numero % 2 === 0);
} | [
"function",
"esPar",
"(",
"numero",
")",
"{",
"return",
"(",
"numero",
"%",
"2",
"===",
"0",
")",
";",
"}"
] | [
1,
0
] | [
3,
1
] | null | javascript | es | ['es', 'es', 'es'] | False | true | program |
setRule | () | null | Funcion para establecer la regla | Funcion para establecer la regla | function setRule() {
var new_rule = new Array;
//Se elige la regla
answer = prompt("Desea poner una regla de tipo de carta 1. si 2. no\n");
//Preguntas para las reglas de colores
if (answer == "1") {
new_rule.push(0);
answer = prompt("Elija una de reglas existentes con colores: \n"
+ "1. Los tipos de carta que elija no estaran permitidos\n"
+ "2. Un orden que usted desea\n");
if (answer == "1") {
var color_rule = prompt("Ingrese hasta tres tipos de carta que desee prohibir\nS= Spade\nC= Club\nH= Heart\nD= Diamond\n");
new_rule.push(0);
new_rule.push(color_rule.toUpperCase());
}
else {
var color_rule = prompt("Ingrese el orden que desee (si no usa todos los tipos, no estaran permitidos)\nS= Spade\nC= Club\nH= Heart\nD= Diamond\n");
new_rule.push(1);
new_rule.push(color_rule.toUpperCase());
}
}
//Preguntas para las reglas de numeros
else {
new_rule.push(1);
answer = prompt("Elija una de reglas existentes con numeros: \n1. multiplos del numero que usted elija\n2. mayor al numero que usted elija\n3. menor al numero que usted desee\n4. prohibir un numero\n");
if (answer == "1") {
var number_rule = prompt("Ingrese el numero que desee menor o igual a 13: ");
new_rule.push(0);
new_rule.push(number_rule);
}
else if (answer == "2") {
var number_rule = prompt("Ingrese el numero que desee menor o igual a 13: ");
new_rule.push(1);
new_rule.push(number_rule);
}
else if (answer == "3") {
var number_rule = prompt("Ingrese el numero que desee menor o igual a 13:");
new_rule.push(2);
new_rule.push(number_rule);
}
else {
var number_rule = prompt("Ingrese el numero que desea prohibir");
new_rule.push(3);
new_rule.push(number_rule);
}
}
return new_rule;
} | [
"function",
"setRule",
"(",
")",
"{",
"var",
"new_rule",
"=",
"new",
"Array",
";",
"//Se elige la regla",
"answer",
"=",
"prompt",
"(",
"\"Desea poner una regla de tipo de carta 1. si 2. no\\n\"",
")",
";",
"//Preguntas para las reglas de colores",
"if",
"(",
"answer",
"==",
"\"1\"",
")",
"{",
"new_rule",
".",
"push",
"(",
"0",
")",
";",
"answer",
"=",
"prompt",
"(",
"\"Elija una de reglas existentes con colores: \\n\"",
"+",
"\"1. Los tipos de carta que elija no estaran permitidos\\n\"",
"+",
"\"2. Un orden que usted desea\\n\"",
")",
";",
"if",
"(",
"answer",
"==",
"\"1\"",
")",
"{",
"var",
"color_rule",
"=",
"prompt",
"(",
"\"Ingrese hasta tres tipos de carta que desee prohibir\\nS= Spade\\nC= Club\\nH= Heart\\nD= Diamond\\n\"",
")",
";",
"new_rule",
".",
"push",
"(",
"0",
")",
";",
"new_rule",
".",
"push",
"(",
"color_rule",
".",
"toUpperCase",
"(",
")",
")",
";",
"}",
"else",
"{",
"var",
"color_rule",
"=",
"prompt",
"(",
"\"Ingrese el orden que desee (si no usa todos los tipos, no estaran permitidos)\\nS= Spade\\nC= Club\\nH= Heart\\nD= Diamond\\n\"",
")",
";",
"new_rule",
".",
"push",
"(",
"1",
")",
";",
"new_rule",
".",
"push",
"(",
"color_rule",
".",
"toUpperCase",
"(",
")",
")",
";",
"}",
"}",
"//Preguntas para las reglas de numeros",
"else",
"{",
"new_rule",
".",
"push",
"(",
"1",
")",
";",
"answer",
"=",
"prompt",
"(",
"\"Elija una de reglas existentes con numeros: \\n1. multiplos del numero que usted elija\\n2. mayor al numero que usted elija\\n3. menor al numero que usted desee\\n4. prohibir un numero\\n\"",
")",
";",
"if",
"(",
"answer",
"==",
"\"1\"",
")",
"{",
"var",
"number_rule",
"=",
"prompt",
"(",
"\"Ingrese el numero que desee menor o igual a 13: \"",
")",
";",
"new_rule",
".",
"push",
"(",
"0",
")",
";",
"new_rule",
".",
"push",
"(",
"number_rule",
")",
";",
"}",
"else",
"if",
"(",
"answer",
"==",
"\"2\"",
")",
"{",
"var",
"number_rule",
"=",
"prompt",
"(",
"\"Ingrese el numero que desee menor o igual a 13: \"",
")",
";",
"new_rule",
".",
"push",
"(",
"1",
")",
";",
"new_rule",
".",
"push",
"(",
"number_rule",
")",
";",
"}",
"else",
"if",
"(",
"answer",
"==",
"\"3\"",
")",
"{",
"var",
"number_rule",
"=",
"prompt",
"(",
"\"Ingrese el numero que desee menor o igual a 13:\"",
")",
";",
"new_rule",
".",
"push",
"(",
"2",
")",
";",
"new_rule",
".",
"push",
"(",
"number_rule",
")",
";",
"}",
"else",
"{",
"var",
"number_rule",
"=",
"prompt",
"(",
"\"Ingrese el numero que desea prohibir\"",
")",
";",
"new_rule",
".",
"push",
"(",
"3",
")",
";",
"new_rule",
".",
"push",
"(",
"number_rule",
")",
";",
"}",
"}",
"return",
"new_rule",
";",
"}"
] | [
290,
0
] | [
337,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
mostrar_grafica | () | null | /*function cambiar_fecha_grafica(){
var anio_sel=$("#anio_sel").val();
var mes_sel=$("#mes_sel").val();
cargar_grafica_barras(anio_sel,mes_sel);
cargar_grafica_lineas(anio_sel,mes_sel);
cargar_grafica_pie(anio_sel,mes_sel);
} | /*function cambiar_fecha_grafica(){ | function mostrar_grafica(){
var hoy = new Date();
var anio_sel = hoy.getFullYear();
var mes_sel = hoy.getMonth()+1;
//$("#anio_sel").val(anio_sel);
//$("#mes_sel").val(mes_sel);
//alert(anio_sel+" - "+mes_sel);
cargar_grafica_barras(anio_sel,mes_sel);
cargar_grafica_lineas(anio_sel,mes_sel);
//cargar_grafica_pie(anio_sel,mes_sel);
} | [
"function",
"mostrar_grafica",
"(",
")",
"{",
"var",
"hoy",
"=",
"new",
"Date",
"(",
")",
";",
"var",
"anio_sel",
"=",
"hoy",
".",
"getFullYear",
"(",
")",
";",
"var",
"mes_sel",
"=",
"hoy",
".",
"getMonth",
"(",
")",
"+",
"1",
";",
"//$(\"#anio_sel\").val(anio_sel);\r",
"//$(\"#mes_sel\").val(mes_sel);\r",
"//alert(anio_sel+\" - \"+mes_sel);\r",
"cargar_grafica_barras",
"(",
"anio_sel",
",",
"mes_sel",
")",
";",
"cargar_grafica_lineas",
"(",
"anio_sel",
",",
"mes_sel",
")",
";",
"//cargar_grafica_pie(anio_sel,mes_sel);\r",
"}"
] | [
20,
0
] | [
32,
1
] | null | javascript | es | ['es', 'es', 'es'] | False | true | program |
iniciarJuego | () | null | ///////////////Funciones///////////////////////// Funcion que carga los diferentes elementos del juego y muestra la pantalla de inicio | ///////////////Funciones///////////////////////// Funcion que carga los diferentes elementos del juego y muestra la pantalla de inicio | function iniciarJuego(){
//Si los recursos no se han cargado todavia, los cargamos
if(!recursosCargados){
canvas = document.getElementById("lienzo"); //Cargamos el canvas
contexto = canvas.getContext("2d"); //Cargamos el contexto de canvas
canvas.addEventListener("mousemove", pasarRaton, false); //Cargamos la funcion correspondiente al movimiento del raton
canvas.addEventListener("click", clickRaton, false); //Cargamos la funcion correspondiente al clicj del raton
anchoEscena = canvas.width-anchoBorde; //El ancho de la escena sera el ancho del canvas menos el ancho del borde
altoEscena = canvas.height-anchoSuperior; //El alto de la escena sera el alto del canvas menos el ancho del top
recursosCargados = true; //Indicamos que ya hemos cargado los recursos
}
pararJuego(0); //Si el juego esta iniciado, lo paramos
paused = true; //Indicamos que el juego esta pausado
//Dibujamos los diferentes elementos del fondo
contexto.drawImage(imagen1, 0, 0, canvas.width, canvas.height);
contexto.drawImage(imagen3, 0, 0, canvas.width, anchoSuperior);
contexto.drawImage(imagen4, 0, anchoSuperior, anchoBorde, canvas.height-anchoSuperior);
contexto.drawImage(imagen5, canvas.width-anchoBorde, anchoSuperior, anchoBorde, canvas.height-anchoSuperior);
//Escribimos lo correspondiente a la pantalla de inicio
contexto.font = "bold 60px comic-sans";
contexto.fillStyle = "rgb(160, 90, 0)";
contexto.fillText("Para jugar pulsa Inicio",canvas.width/6,canvas.height/3);
contexto.font = "bold 45px comic-sans";
contexto.fillStyle = "rgb(160, 90, 0)";
contexto.fillText("Usa el raton para mover la paleta ",canvas.width/5.5,canvas.height/2);
contexto.fillText("Pulsa el click izq para lanzar una pelota",canvas.width/8.1,canvas.height*2/3);
} | [
"function",
"iniciarJuego",
"(",
")",
"{",
"//Si los recursos no se han cargado todavia, los cargamos",
"if",
"(",
"!",
"recursosCargados",
")",
"{",
"canvas",
"=",
"document",
".",
"getElementById",
"(",
"\"lienzo\"",
")",
";",
"//Cargamos el canvas ",
"contexto",
"=",
"canvas",
".",
"getContext",
"(",
"\"2d\"",
")",
";",
"//Cargamos el contexto de canvas",
"canvas",
".",
"addEventListener",
"(",
"\"mousemove\"",
",",
"pasarRaton",
",",
"false",
")",
";",
"//Cargamos la funcion correspondiente al movimiento del raton",
"canvas",
".",
"addEventListener",
"(",
"\"click\"",
",",
"clickRaton",
",",
"false",
")",
";",
"//Cargamos la funcion correspondiente al clicj del raton",
"anchoEscena",
"=",
"canvas",
".",
"width",
"-",
"anchoBorde",
";",
"//El ancho de la escena sera el ancho del canvas menos el ancho del borde",
"altoEscena",
"=",
"canvas",
".",
"height",
"-",
"anchoSuperior",
";",
"//El alto de la escena sera el alto del canvas menos el ancho del top",
"recursosCargados",
"=",
"true",
";",
"//Indicamos que ya hemos cargado los recursos",
"}",
"pararJuego",
"(",
"0",
")",
";",
"//Si el juego esta iniciado, lo paramos",
"paused",
"=",
"true",
";",
"//Indicamos que el juego esta pausado",
"//Dibujamos los diferentes elementos del fondo",
"contexto",
".",
"drawImage",
"(",
"imagen1",
",",
"0",
",",
"0",
",",
"canvas",
".",
"width",
",",
"canvas",
".",
"height",
")",
";",
"contexto",
".",
"drawImage",
"(",
"imagen3",
",",
"0",
",",
"0",
",",
"canvas",
".",
"width",
",",
"anchoSuperior",
")",
";",
"contexto",
".",
"drawImage",
"(",
"imagen4",
",",
"0",
",",
"anchoSuperior",
",",
"anchoBorde",
",",
"canvas",
".",
"height",
"-",
"anchoSuperior",
")",
";",
"contexto",
".",
"drawImage",
"(",
"imagen5",
",",
"canvas",
".",
"width",
"-",
"anchoBorde",
",",
"anchoSuperior",
",",
"anchoBorde",
",",
"canvas",
".",
"height",
"-",
"anchoSuperior",
")",
";",
"//Escribimos lo correspondiente a la pantalla de inicio",
"contexto",
".",
"font",
"=",
"\"bold 60px comic-sans\"",
";",
"contexto",
".",
"fillStyle",
"=",
"\"rgb(160, 90, 0)\"",
";",
"contexto",
".",
"fillText",
"(",
"\"Para jugar pulsa Inicio\"",
",",
"canvas",
".",
"width",
"/",
"6",
",",
"canvas",
".",
"height",
"/",
"3",
")",
";",
"contexto",
".",
"font",
"=",
"\"bold 45px comic-sans\"",
";",
"contexto",
".",
"fillStyle",
"=",
"\"rgb(160, 90, 0)\"",
";",
"contexto",
".",
"fillText",
"(",
"\"Usa el raton para mover la paleta \"",
",",
"canvas",
".",
"width",
"/",
"5.5",
",",
"canvas",
".",
"height",
"/",
"2",
")",
";",
"contexto",
".",
"fillText",
"(",
"\"Pulsa el click izq para lanzar una pelota\"",
",",
"canvas",
".",
"width",
"/",
"8.1",
",",
"canvas",
".",
"height",
"*",
"2",
"/",
"3",
")",
";",
"}"
] | [
493,
0
] | [
519,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
(btn) | null | Funcion para setear datos de formulario pasar cuenta a otra mesa | Funcion para setear datos de formulario pasar cuenta a otra mesa | function(btn) {
var mesa = $(btn).data('mesa');
var cuenta = $(btn).data('cuenta');
$.ajax({
type: "POST",
url: "cuenta/getDatosMesa/"+cuenta,
success: function(response){
$('#formPasarCuenta input[name=cuenta]').val('Cuenta #'+response.cuenta.id);
$('#formPasarCuenta input[name=idcuenta]').val(response.cuenta.id);
$('#formPasarCuenta input[name=mesaactual]').val(response.cuenta.mesa);
console.log(response.cuenta);
for (d in response.cuenta.detalle){
console.log(response.cuenta.detalle[d].producto);
console.log(response.cuenta.detalle[d].precio);
}
},
error: function(){
alert('Error al obtener datos de la cuenta...');
}
});
} | [
"function",
"(",
"btn",
")",
"{",
"var",
"mesa",
"=",
"$",
"(",
"btn",
")",
".",
"data",
"(",
"'mesa'",
")",
";",
"var",
"cuenta",
"=",
"$",
"(",
"btn",
")",
".",
"data",
"(",
"'cuenta'",
")",
";",
"$",
".",
"ajax",
"(",
"{",
"type",
":",
"\"POST\"",
",",
"url",
":",
"\"cuenta/getDatosMesa/\"",
"+",
"cuenta",
",",
"success",
":",
"function",
"(",
"response",
")",
"{",
"$",
"(",
"'#formPasarCuenta input[name=cuenta]'",
")",
".",
"val",
"(",
"'Cuenta #'",
"+",
"response",
".",
"cuenta",
".",
"id",
")",
";",
"$",
"(",
"'#formPasarCuenta input[name=idcuenta]'",
")",
".",
"val",
"(",
"response",
".",
"cuenta",
".",
"id",
")",
";",
"$",
"(",
"'#formPasarCuenta input[name=mesaactual]'",
")",
".",
"val",
"(",
"response",
".",
"cuenta",
".",
"mesa",
")",
";",
"console",
".",
"log",
"(",
"response",
".",
"cuenta",
")",
";",
"for",
"(",
"d",
"in",
"response",
".",
"cuenta",
".",
"detalle",
")",
"{",
"console",
".",
"log",
"(",
"response",
".",
"cuenta",
".",
"detalle",
"[",
"d",
"]",
".",
"producto",
")",
";",
"console",
".",
"log",
"(",
"response",
".",
"cuenta",
".",
"detalle",
"[",
"d",
"]",
".",
"precio",
")",
";",
"}",
"}",
",",
"error",
":",
"function",
"(",
")",
"{",
"alert",
"(",
"'Error al obtener datos de la cuenta...'",
")",
";",
"}",
"}",
")",
";",
"}"
] | [
233,
19
] | [
253,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | variable_declarator |
|
init | () | null | Toda la lógica de inicialización en una única función que LUEGO HAY QUE LLAMAR | Toda la lógica de inicialización en una única función que LUEGO HAY QUE LLAMAR | function init() {
counterElem.innerText = counter;
randomNumber = getRandomNumber(100);
// Imprimimos el número aleatorio generado en consola
console.log(`El número aleatorio es: ${randomNumber}`);
// Asociamos al botón la función que se encarga de comprobar el número del usuario
testButton = document.body.querySelector('#test-button');
testButton.addEventListener('click', testGuess);
} | [
"function",
"init",
"(",
")",
"{",
"counterElem",
".",
"innerText",
"=",
"counter",
";",
"randomNumber",
"=",
"getRandomNumber",
"(",
"100",
")",
";",
"// Imprimimos el número aleatorio generado en consola",
"console",
".",
"log",
"(",
"`",
"{r",
"andomNumber}",
"`",
")",
";",
"",
"// Asociamos al botón la función que se encarga de comprobar el número del usuario",
"testButton",
"=",
"document",
".",
"body",
".",
"querySelector",
"(",
"'#test-button'",
")",
";",
"testButton",
".",
"addEventListener",
"(",
"'click'",
",",
"testGuess",
")",
";",
"}"
] | [
9,
0
] | [
19,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
render | (data) | null | funcion que renderiza la info | funcion que renderiza la info | function render(data){
var html = data.map(function(message,index){
return(`
<div class="message">
<strong>${message.nickname}</strong>
<p>${message.text}</p>
</div>
`);
}).join(' ');
document.getElementById('messages').innerHTML = html;
} | [
"function",
"render",
"(",
"data",
")",
"{",
"var",
"html",
"=",
"data",
".",
"map",
"(",
"function",
"(",
"message",
",",
"index",
")",
"{",
"return",
"(",
"`",
"${",
"message",
".",
"nickname",
"}",
"${",
"message",
".",
"text",
"}",
"`",
")",
";",
"}",
")",
".",
"join",
"(",
"' '",
")",
";",
"document",
".",
"getElementById",
"(",
"'messages'",
")",
".",
"innerHTML",
"=",
"html",
";",
"}"
] | [
10,
0
] | [
21,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |
() | null | y y /**
calcCloseButtonPos() abstract method
Called by initCloseButton function in abstract class "Layer", get close button position.
Override this function to implement layer's own button position calculation strategy.
@return { Object } close button position, { x: double, y: double, z: double }, relative to layer.
| y y /**
calcCloseButtonPos() abstract method
Called by initCloseButton function in abstract class "Layer", get close button position. | function() {
return {
x: 0,
y: 0,
z: 0
};
} | [
"function",
"(",
")",
"{",
"return",
"{",
"x",
":",
"0",
",",
"y",
":",
"0",
",",
"z",
":",
"0",
"}",
";",
"}"
] | [
703,
21
] | [
713,
2
] | null | javascript | es | ['es', 'es', 'es'] | True | true | pair |
|
annadirCarrito | (form) | null | Añade productos al carrito del fondo de la pagina, muestra el simbolo del carrito | Añade productos al carrito del fondo de la pagina, muestra el simbolo del carrito | function annadirCarrito(form) {
if (form.elements[4].value != "") {
$('#scroller').fadeIn("slow");
$('#scroller').addClass("fixed-top carrito-position hoverItem");
$("#noProductos").remove();
$("#carritoLista").removeClass("card");
if ($("#cambiar" + form.elements[0].value).length) {
cambiarUnidades(form.elements[0].value, 1, form.elements[4].value, form.elements[3].value);
$('#modalProductos').modal("hide");
} else {
let totalProductos = Number.parseInt($('#numeroProductosCarrito').text(), 10) + Number.parseInt(form.elements[4].value, 10);
$("#numeroProductosCarrito").replaceWith("<span id='numeroProductosCarrito' class='badge badge-dark badge-pill badge-position'>" + totalProductos + "</span>");
$("#carritoLista").append("<li id='eliminar" + form.elements[0].value + "' class='p-4 list-group-item item-separation'><span class='nombreProductoCarrito'>" + form.elements[2].value + "</span><span><img id='hoverItem' class='mr-2' src='img/minus.svg' height='25' onclick='cambiarUnidades(" + form.elements[0].value + ",0,1," + form.elements[3].value + ")'><img id='hoverItem' class='mr-3 mt-0' src='img/plus.svg' height='25' onclick='cambiarUnidades(" + form.elements[0].value + ",1,1," + form.elements[3].value + ")'><span id='cambiar" + form.elements[0].value + "'>" + form.elements[4].value + "</span> Unidades <img id='hoverItem' class='mr-2' src='img/delete.svg' height='25' onclick='cambiarUnidades(" + form.elements[0].value + ",0,1,999)'></span></li>");
$('#modalProductos').modal("hide");
$("#carritobtn").show();
actualizarCookie();
}
$('#modalProductos').modal('hide');
} else {
$("#errorMsg").text("Ponga un número de productos válido.");
}
return false;
} | [
"function",
"annadirCarrito",
"(",
"form",
")",
"{",
"if",
"(",
"form",
".",
"elements",
"[",
"4",
"]",
".",
"value",
"!=",
"\"\"",
")",
"{",
"$",
"(",
"'#scroller'",
")",
".",
"fadeIn",
"(",
"\"slow\"",
")",
";",
"$",
"(",
"'#scroller'",
")",
".",
"addClass",
"(",
"\"fixed-top carrito-position hoverItem\"",
")",
";",
"$",
"(",
"\"#noProductos\"",
")",
".",
"remove",
"(",
")",
";",
"$",
"(",
"\"#carritoLista\"",
")",
".",
"removeClass",
"(",
"\"card\"",
")",
";",
"if",
"(",
"$",
"(",
"\"#cambiar\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
")",
".",
"length",
")",
"{",
"cambiarUnidades",
"(",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
",",
"1",
",",
"form",
".",
"elements",
"[",
"4",
"]",
".",
"value",
",",
"form",
".",
"elements",
"[",
"3",
"]",
".",
"value",
")",
";",
"$",
"(",
"'#modalProductos'",
")",
".",
"modal",
"(",
"\"hide\"",
")",
";",
"}",
"else",
"{",
"let",
"totalProductos",
"=",
"Number",
".",
"parseInt",
"(",
"$",
"(",
"'#numeroProductosCarrito'",
")",
".",
"text",
"(",
")",
",",
"10",
")",
"+",
"Number",
".",
"parseInt",
"(",
"form",
".",
"elements",
"[",
"4",
"]",
".",
"value",
",",
"10",
")",
";",
"$",
"(",
"\"#numeroProductosCarrito\"",
")",
".",
"replaceWith",
"(",
"\"<span id='numeroProductosCarrito' class='badge badge-dark badge-pill badge-position'>\"",
"+",
"totalProductos",
"+",
"\"</span>\"",
")",
";",
"$",
"(",
"\"#carritoLista\"",
")",
".",
"append",
"(",
"\"<li id='eliminar\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
"+",
"\"' class='p-4 list-group-item item-separation'><span class='nombreProductoCarrito'>\"",
"+",
"form",
".",
"elements",
"[",
"2",
"]",
".",
"value",
"+",
"\"</span><span><img id='hoverItem' class='mr-2' src='img/minus.svg' height='25' onclick='cambiarUnidades(\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
"+",
"\",0,1,\"",
"+",
"form",
".",
"elements",
"[",
"3",
"]",
".",
"value",
"+",
"\")'><img id='hoverItem' class='mr-3 mt-0' src='img/plus.svg' height='25' onclick='cambiarUnidades(\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
"+",
"\",1,1,\"",
"+",
"form",
".",
"elements",
"[",
"3",
"]",
".",
"value",
"+",
"\")'><span id='cambiar\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
"+",
"\"'>\"",
"+",
"form",
".",
"elements",
"[",
"4",
"]",
".",
"value",
"+",
"\"</span> Unidades <img id='hoverItem' class='mr-2' src='img/delete.svg' height='25' onclick='cambiarUnidades(\"",
"+",
"form",
".",
"elements",
"[",
"0",
"]",
".",
"value",
"+",
"\",0,1,999)'></span></li>\"",
")",
";",
"$",
"(",
"'#modalProductos'",
")",
".",
"modal",
"(",
"\"hide\"",
")",
";",
"$",
"(",
"\"#carritobtn\"",
")",
".",
"show",
"(",
")",
";",
"actualizarCookie",
"(",
")",
";",
"}",
"$",
"(",
"'#modalProductos'",
")",
".",
"modal",
"(",
"'hide'",
")",
";",
"}",
"else",
"{",
"$",
"(",
"\"#errorMsg\"",
")",
".",
"text",
"(",
"\"Ponga un número de productos válido.\");",
"",
"",
"}",
"return",
"false",
";",
"}"
] | [
11,
0
] | [
38,
1
] | null | javascript | es | ['es', 'es', 'es'] | True | true | program |