PERMS["resumen_diario"] = "Resumen diario (Solo docentes!)";
PAGES.resumen_diario = {
icon: "static/appico/Newspaper.svg",
navcss: "btn3",
AccessControl: true,
Title: "Resumen Diario",
index: function () {
var data_Comedor = safeuuid();
var data_Tareas = safeuuid();
var data_Diario = safeuuid();
var data_Weather = safeuuid();
if (!checkRole("resumen_diario")) {
setUrlHash("index");
return;
}
container.innerHTML = `
Resumen Diario ${CurrentISODate()}
Menú Comedor:
Cargando...
Tareas:
Cargando...
Diario:
Cargando...
Clima:
`;
//#region Cargar Clima
// Get location from gun.get("settings").get("weather_location"), if missing ask user and save it
// url format: https://wttr.in/?F0m
gun
.get("settings")
.get("weather_location")
.once((loc) => {
if (!loc) {
loc = prompt("Introduce tu ubicación para el clima (ciudad, país):", "Madrid, Spain");
if (loc) {
betterGunPut(gun.get("settings").get("weather_location"), loc);
}
}
if (loc) {
document.getElementById(data_Weather).src = "https://wttr.in/" + encodeURIComponent(loc) + "_IF0m_background=FFFFFF.png";
} else {
document.getElementById(data_Weather).src = "https://wttr.in/_IF0m_background=FFFFFF.png";
}
});
//#endregion Cargar Clima
//#region Cargar Comedor
gun
.get(TABLE)
.get("comedor")
.get(CurrentISODate())
.once((data, key) => {
function add_row(data) {
// Fix newlines
data.Platos = data.Platos || "No hay platos registrados para hoy.";
// Display platos
document.getElementById(data_Comedor).innerHTML = data.Platos.replace(
/\n/g,
"
"
);
}
if (typeof data == "string") {
TS_decrypt(data, SECRET, (data) => {
add_row(data || {});
});
} else {
add_row(data || {});
}
});
//#endregion Cargar Comedor
//#region Cargar Tareas
gun
.get(TABLE)
.get("notas")
.get("tareas")
.once((data, key) => {
function add_row(data) {
// Fix newlines
data.Contenido = data.Contenido || "No hay tareas.";
// Display platos
document.getElementById(data_Tareas).innerHTML = data.Contenido.replace(
/\n/g,
"
"
);
}
if (typeof data == "string") {
TS_decrypt(data, SECRET, (data) => {
add_row(data || {});
});
} else {
add_row(data || {});
}
});
//#endregion Cargar Tareas
//#region Cargar Diario
gun
.get(TABLE)
.get("aulas_informes")
.get("diario-" + CurrentISODate())
.once((data, key) => {
function add_row(data) {
// Fix newlines
data.Contenido = data.Contenido || "No hay un diario.";
// Display platos
document.getElementById(data_Diario).innerHTML = data.Contenido.replace(
/\n/g,
"
"
);
}
if (typeof data == "string") {
TS_decrypt(data, SECRET, (data) => {
add_row(data || {});
});
} else {
add_row(data || {});
}
});
//#endregion Cargar Diario
},
};